Merge branch 'dev-lwl/add_poseidon' into test

This commit is contained in:
lwl0608 2024-12-24 17:53:23 +08:00
commit 441072b03a
1 changed files with 21 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package middleware
import (
"fmt"
"gitlab.tiefen.fun/ironfan/poseidon/actions"
"service/api/base"
"service/library/logger"
@ -26,6 +27,26 @@ func InitJwtAuthenticator(verifyFunc func(*gin.Context, string) (int64, error))
ctx.Next()
}
// 增加埋点
xopt := map[string]any{
"did": baseRequest.GetBaseRequest().Did,
"ver": baseRequest.GetBaseRequest().Version,
"dt": baseRequest.GetBaseRequest().DevType,
"ch": baseRequest.GetBaseRequest().Channel,
"model": baseRequest.GetBaseRequest().Model,
"nt": baseRequest.GetBaseRequest().NetType,
}
_ = actions.AddActionLog(
"tiefen",
baseRequest.GetBaseRequest().Mid,
"",
"auth",
"token",
baseRequest.GetBaseRequest().Channel,
ctx.ClientIP(),
xopt,
)
//2.校验
id, err := verifyFunc(ctx, tokenString)
if !base.CheckBadRequest(ctx, err) {