jwt.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package api
  2. import (
  3. "cr-svc/conf"
  4. "fmt"
  5. "log"
  6. "time"
  7. jwt "github.com/appleboy/gin-jwt/v2"
  8. "github.com/gin-gonic/gin"
  9. )
  10. var identityKey = "id"
  11. type UtilsJwt struct {
  12. jwt *jwt.GinJWTMiddleware
  13. }
  14. func (j *UtilsJwt) MiddleFunc() gin.HandlerFunc {
  15. return j.jwt.MiddlewareFunc()
  16. }
  17. func (j *UtilsJwt) JwtCreateToken(data interface{}) (string, time.Time, error) {
  18. return j.jwt.TokenGenerator(data)
  19. }
  20. func NewUitlsJwt(app *conf.AppConf) *UtilsJwt {
  21. var utils = &UtilsJwt{
  22. jwt: nil,
  23. }
  24. var jwtImpl *jwt.GinJWTMiddleware
  25. jwtImpl, err := jwt.New(&jwt.GinJWTMiddleware{
  26. Realm: app.Jwt.Realm,
  27. Key: []byte(app.Jwt.Key),
  28. Timeout: time.Hour * time.Duration(app.Jwt.TimeoutHour),
  29. MaxRefresh: time.Hour * time.Duration(app.Jwt.TimeoutHour),
  30. IdentityKey: identityKey,
  31. PayloadFunc: func(data interface{}) jwt.MapClaims {
  32. if v, ok := data.(*JWTUser); ok {
  33. return jwt.MapClaims{
  34. "id": v.ID,
  35. }
  36. }
  37. return jwt.MapClaims{}
  38. },
  39. IdentityHandler: func(c *gin.Context) interface{} {
  40. claims := jwt.ExtractClaims(c)
  41. // lg.Debug().Msgf("token: %v\n", claims)
  42. u := &JWTUser{
  43. ID: claims["id"].(string), //uint32(claims["id"].(float64)),
  44. }
  45. return u
  46. },
  47. Authenticator: func(c *gin.Context) (interface{}, error) {
  48. return &JWTUser{Phone: "empty"}, nil
  49. },
  50. Authorizator: func(data interface{}, _ *gin.Context) bool {
  51. u := data.(*JWTUser)
  52. return u.State > 0
  53. },
  54. LoginResponse: func(c *gin.Context, status int, token string, expire time.Time) {
  55. t, _ := jwtImpl.ParseTokenString(token)
  56. fmt.Println("LoginResponse==>", status, token)
  57. ResultSuc(c, map[string]interface{}{
  58. "user": t.Claims,
  59. "token": token,
  60. "expire": expire.Format(time.RFC3339),
  61. })
  62. },
  63. LogoutResponse: func(c *gin.Context, _ int) {
  64. ResultSuc(c, true)
  65. },
  66. RefreshResponse: func(c *gin.Context, status int, token string, expire time.Time) {
  67. ResultSuc(c, map[string]interface{}{
  68. "status": status,
  69. "token": token,
  70. "expire": expire.Format(time.RFC3339),
  71. })
  72. },
  73. Unauthorized: func(c *gin.Context, status int, token string) {
  74. if token == "用户名/密码 不正确" {
  75. ResultFail401(c, "账号密码不对", map[string]interface{}{
  76. "status": -1,
  77. "token": token,
  78. })
  79. return
  80. }
  81. fmt.Println("xxxxx")
  82. fmt.Println(token, status)
  83. ResultFail401(c, token, map[string]interface{}{
  84. "status": status,
  85. "token": token,
  86. })
  87. },
  88. HTTPStatusMessageFunc: func(e error, _ *gin.Context) string {
  89. // if e == jwt.ErrFailedAuthentication {
  90. // return "用户名/密码 不正确"
  91. // }
  92. fmt.Println("HTTPStatusMessageFunc", e)
  93. return e.Error()
  94. },
  95. // TokenLookup is a string in the form of "<source>:<name>" that is used
  96. // to extract token from the request.
  97. // Optional. Default value "header:Authorization".
  98. // Possible values:
  99. // - "header:<name>"
  100. // - "query:<name>"
  101. // - "cookie:<name>"
  102. // - "param:<name>"
  103. TokenLookup: "header: Authorization, query: token, cookie: jwt",
  104. // TokenLookup: "query:token",
  105. // TokenLookup: "cookie:token",
  106. // TokenHeadName is a string in the header. Default value is "Bearer"
  107. TokenHeadName: "Bearer",
  108. // TimeFunc provides the current time. You can override it to use another time value. This is useful for testing or if your server uses a different time zone than your tokens.
  109. TimeFunc: time.Now,
  110. })
  111. if err != nil {
  112. log.Fatal("JWT Error:" + err.Error())
  113. }
  114. utils.jwt = jwtImpl
  115. return utils
  116. }