You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.0 KiB
54 lines
1.0 KiB
package http |
|
|
|
import ( |
|
"go-common/app/service/main/identify/api/grpc" |
|
"go-common/library/ecode" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// const ( |
|
// _actionChangePWD = "changePwd" |
|
// _actionLoginOut = "loginOut" |
|
// ) |
|
|
|
func accessCookie(c *bm.Context) { |
|
cookie := c.Request.Header.Get("Cookie") |
|
if cookie == "" { |
|
c.JSON(nil, ecode.NoLogin) |
|
return |
|
} |
|
res, err := srv.GetCookieInfo(c, cookie) |
|
if err == nil { |
|
c.Set("mid", res.Mid) |
|
} |
|
c.JSON(res, err) |
|
} |
|
|
|
func accessToken(c *bm.Context) { |
|
token := new(v1.GetTokenInfoReq) |
|
if err := c.Bind(token); err != nil { |
|
c.JSON(nil, ecode.NoLogin) |
|
return |
|
} |
|
res, err := srv.GetTokenInfo(c, token) |
|
if err == nil { |
|
c.Set("mid", res.Mid) |
|
} |
|
c.JSON(res, err) |
|
} |
|
|
|
func delCache(c *bm.Context) { |
|
// query := c.Request.Form |
|
// action := query.Get("modifiedAttr") |
|
// if action != _actionChangePWD && action != _actionLoginOut { |
|
// return |
|
// } |
|
// key := query.Get("access_token") |
|
// if key == "" { |
|
// key = query.Get("session") |
|
// } |
|
// if key == "" { |
|
// return |
|
// } |
|
c.JSON(nil, nil) |
|
}
|
|
|