token.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package model
  2. import (
  3. "github.com/golang-jwt/jwt"
  4. "iot_manager_service/app/system/dao"
  5. )
  6. type JwtToken struct {
  7. jwt.StandardClaims
  8. TenantId string `json:"tenant_id"`
  9. UserId int64 `json:"user_id"`
  10. TokenType string `json:"token_type"`
  11. ClientId string `json:"client_id"`
  12. RoleId string `json:"role_id"`
  13. RoleName string `json:"role_name"`
  14. DeptId string `json:"dept_id"`
  15. PostId string `json:"post_id"`
  16. OauthId string `json:"oauth_id"`
  17. Account string `json:"account"`
  18. UserName string `json:"user_name"`
  19. NickName string `json:"nick_name"`
  20. Random string `json:"random"`
  21. }
  22. type Token struct {
  23. TenantId string
  24. UserName string
  25. Password string
  26. GrantType string
  27. RefreshToken string
  28. UserType string
  29. }
  30. type UserInfo struct {
  31. dao.User //用户基础信息
  32. Permissions []string //权限标识集合
  33. Roles []string //角色集合
  34. OauthId string //第三方授权id
  35. }
  36. type RspToken struct {
  37. TenantId string `json:"tenant_id"`
  38. UserId string `json:"user_id"`
  39. DeptId string `json:"dept_id"`
  40. PostId string `json:"post_id"`
  41. RoleId string `json:"role_id"`
  42. OauthId string `json:"oauth_id"`
  43. Account string `json:"account"`
  44. UserName string `json:"user_name"`
  45. NickName string `json:"nick_name"`
  46. RoleName string `json:"role_name"`
  47. Avatar string `json:"avatar"`
  48. AccessToken string `json:"access_token"`
  49. RefreshToken string `json:"refresh_token"`
  50. TokenType string `json:"token_type"`
  51. ExpiresIn int `json:"expires_in"`
  52. License string `json:"license"`
  53. }
  54. type RspCaptcha struct {
  55. Key string `json:"key"`
  56. Image string `json:"image"`
  57. }
  58. // JWT
  59. const (
  60. Iss = "iss"
  61. Aud = "aud"
  62. TenantId = "tenant_id"
  63. RoleName = "role_name"
  64. PostId = "post_id"
  65. UserId = "user_id"
  66. RoleId = "role_id"
  67. UserName = "user_name"
  68. OauthID = "oauth_id"
  69. NickName = "nick_name"
  70. TokenType = "token_type"
  71. DeptId = "dept_id"
  72. Account = "account"
  73. ClientId = "client_id"
  74. Exp = "exp"
  75. Nbf = "nbf"
  76. BEARER = "bearer"
  77. )
  78. const (
  79. CaptchaHeaderKey = "Captcha-Key"
  80. CaptchaHeaderCode = "Captcha-Code"
  81. CaptchaNotCorrect = "验证码不正确"
  82. UserTypeHeaderKey = "User-Type"
  83. UserNotFound = "用户名或密码错误"
  84. UserHasNoRole = "未获得用户的角色信息"
  85. USER_HAS_NO_TENANT = "未获得用户的租户信息"
  86. USER_HAS_NO_TENANT_PERMISSION = "租户授权已过期,请联系管理员"
  87. HEADER_KEY = "Authorization"
  88. HEADER_PREFIX = "Basic "
  89. DEFAULT_AVATAR = "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png"
  90. )