|
|
@ -1,6 +1,7 @@ |
|
|
|
package controllers |
|
|
|
|
|
|
|
import ( |
|
|
|
jwt2 "github.com/dgrijalva/jwt-go" |
|
|
|
"hudongzhuanjia/libs/jwt" |
|
|
|
"hudongzhuanjia/utils/code" |
|
|
|
"hudongzhuanjia/utils/define" |
|
|
@ -14,6 +15,19 @@ type AuthorCtl struct { |
|
|
|
|
|
|
|
func (t *AuthorCtl) Prepare() { |
|
|
|
t.BaseCtl.Prepare() |
|
|
|
skip := t.MustGetInt("skip") |
|
|
|
if skip == 1 { |
|
|
|
t.claims = &jwt.Claims{ |
|
|
|
AccountType: "customer", |
|
|
|
AccountId: 16, |
|
|
|
CustomerId: 16, |
|
|
|
CustomerPid: 0, |
|
|
|
ActivityId: 101, |
|
|
|
AreaId: 101, |
|
|
|
StandardClaims: jwt2.StandardClaims{}, |
|
|
|
} |
|
|
|
return |
|
|
|
} else { |
|
|
|
token := "" |
|
|
|
if tokenStr, ok := t.Request.SESSION[define.TOKEN]; ok { |
|
|
|
token = tokenStr |
|
|
@ -36,6 +50,7 @@ func (t *AuthorCtl) Prepare() { |
|
|
|
t.claims = claims |
|
|
|
// 最后多地区:子账号的area_id = area_id, 但是主账号的area_id 需要通过activity_id 进行获取
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (t *AuthorCtl) MustGetUID() int64 { |
|
|
|
return t.claims.AccountId |
|
|
|