token.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. package controller
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "github.com/golang-jwt/jwt"
  6. "github.com/mojocn/base64Captcha"
  7. "github.com/satori/go.uuid"
  8. "iot_manager_service/app/middleware"
  9. "iot_manager_service/app/system/dao"
  10. "iot_manager_service/app/system/service"
  11. "strconv"
  12. "time"
  13. "iot_manager_service/app/system/model"
  14. "iot_manager_service/config"
  15. "iot_manager_service/util"
  16. "net/http"
  17. "strings"
  18. )
  19. var Auth = new(auth)
  20. type auth struct{}
  21. var driver = &base64Captcha.DriverString{
  22. Height: 48,
  23. Width: 130,
  24. NoiseCount: 100,
  25. ShowLineOptions: 2,
  26. Length: 5,
  27. BgColor: nil,
  28. }
  29. func (c *auth) Token(ctx *gin.Context) {
  30. tenantId := ctx.Query("tenantId")
  31. userName := ctx.Query("username")
  32. password := ctx.Query("password")
  33. grantType := ctx.Query("grant_type")
  34. refreshToken := ctx.Query("refresh_token")
  35. // 校验连续登录失败次数
  36. checkLock()
  37. tId, _ := strconv.Atoi(tenantId)
  38. userType := ctx.GetHeader(model.UserTypeHeaderKey)
  39. token := model.Token{
  40. TenantId: tId,
  41. UserName: userName,
  42. Password: password,
  43. GrantType: grantType,
  44. RefreshToken: refreshToken,
  45. UserType: userType,
  46. }
  47. var userInfo *model.UserInfo
  48. var err *util.Errors
  49. if grantType == "captcha" {
  50. userInfo, err = captchaGrant(token, ctx)
  51. if err != nil {
  52. ctx.JSON(http.StatusOK, err)
  53. return
  54. }
  55. } else if grantType == "refresh_token" {
  56. userInfo, err = refreshGrant(token)
  57. if err != nil {
  58. ctx.JSON(http.StatusOK, err)
  59. return
  60. }
  61. }
  62. if userInfo == nil || userInfo.User == nil {
  63. ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.UserNotFound, nil))
  64. return
  65. }
  66. if len(userInfo.Roles) == 0 {
  67. ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.UserHasNoRole, nil))
  68. return
  69. }
  70. // access token过期时间2小时
  71. random := util.RandomString(8)
  72. jwtToken, e := middleware.GetAccessToken(userInfo.ID, userInfo.RoleId, userInfo.TenantId, userInfo.Account, random)
  73. if e != nil {
  74. ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, e.Error(), nil))
  75. return
  76. }
  77. // redis记录缓存2小时
  78. util.Redis.Set(getAccessTokenKey(userInfo.TenantId, userInfo.ID, random), jwtToken, 2*time.Hour)
  79. ctx.JSON(http.StatusOK, model.RspToken{
  80. TenantId: userInfo.TenantId,
  81. UserId: userInfo.ID,
  82. RoleId: userInfo.RoleId,
  83. OauthId: userInfo.OauthId,
  84. Account: userInfo.Account,
  85. UserName: userInfo.Name,
  86. NickName: userInfo.RealName,
  87. RoleName: userInfo.Roles[0],
  88. Avatar: userInfo.Avatar,
  89. AccessToken: jwtToken,
  90. RefreshToken: getRefreshToken(*userInfo),
  91. TokenType: model.BEARER,
  92. ExpiresIn: 7200,
  93. License: "",
  94. })
  95. }
  96. func (c *auth) Logout(ctx *gin.Context) {
  97. value, isExist := ctx.Get(middleware.Authorization)
  98. if !isExist || value == nil {
  99. ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
  100. return
  101. }
  102. jwtToken := value.(*middleware.Claims)
  103. _ = util.Redis.Del(getAccessTokenKey(jwtToken.TenantId, jwtToken.UserId, jwtToken.Random)).Err()
  104. //todo 操作记录
  105. ctx.JSON(http.StatusOK, util.SuccessResponse("", nil))
  106. }
  107. func (c *auth) Captcha(ctx *gin.Context) {
  108. id := uuid.NewV1().String()
  109. code := util.RandomString2(5)
  110. gotItem, _ := driver.DrawCaptcha(code)
  111. image := gotItem.EncodeB64string()
  112. rsp := model.RspCaptcha{
  113. Key: id,
  114. Image: image,
  115. }
  116. util.Redis.Set(getCaptchaKey(id), code, 5*time.Minute)
  117. ctx.JSON(http.StatusOK, rsp)
  118. }
  119. func (c *auth) Clear(ctx *gin.Context) {
  120. //todo clear redis
  121. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Success, nil))
  122. }
  123. func (c *auth) Login(ctx *gin.Context) {
  124. passKey := ctx.Query("passKey")
  125. tenant, err := service.TenantService.GetTenantByPasskey(passKey)
  126. if err != nil {
  127. ctx.JSON(http.StatusOK, util.SuccessResponse(model.TenantNotFound, nil))
  128. return
  129. }
  130. rsp := model.RspLogin{
  131. ID: tenant.TenantId,
  132. Name: tenant.LoginDisplayName,
  133. BackgroundUrl: tenant.BackgroundUrl,
  134. SysLogoUrl: tenant.SysLogoUrl,
  135. }
  136. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Success, rsp))
  137. }
  138. //checkLock 校验用户登录失败次数
  139. func checkLock() {
  140. }
  141. func getRefreshToken(info model.UserInfo) string {
  142. claims := jwt.NewWithClaims(jwt.SigningMethodHS512, jwt.MapClaims{
  143. model.Iss: model.Issuer,
  144. model.Aud: model.Audience,
  145. model.ClientId: model.Saber,
  146. model.TokenType: model.RefreshToken,
  147. model.UserId: info.ID,
  148. model.Exp: time.Now().Add(7 * 24 * time.Hour).Unix(),
  149. model.Nbf: time.Now().Unix(),
  150. })
  151. token, _ := claims.SignedString([]byte(config.Instance().Server.TokenSign))
  152. return token
  153. }
  154. func parseRefreshToken(refreshToken string) *jwt.MapClaims {
  155. token, err := jwt.ParseWithClaims(refreshToken, &jwt.MapClaims{}, middleware.EmptyKeyFunc)
  156. if err != nil {
  157. return nil
  158. }
  159. return token.Claims.(*jwt.MapClaims)
  160. }
  161. func captchaGrant(token model.Token, ctx *gin.Context) (*model.UserInfo, *util.Errors) {
  162. info := &model.UserInfo{}
  163. key := ctx.GetHeader(model.CaptchaHeaderKey)
  164. code := ctx.GetHeader(model.CaptchaHeaderCode)
  165. // 获取验证码
  166. result, err := util.Redis.Get(getCaptchaKey(key)).Result()
  167. if err != nil {
  168. return nil, util.NormalResponse(http.StatusBadRequest, model.CaptchaNotCorrect, nil)
  169. }
  170. redisCode := result
  171. // 判断验证码
  172. if config.Instance().Server.CodeEnabled && (key == "" || code == "" || !strings.EqualFold(redisCode, code)) {
  173. return nil, util.NormalResponse(http.StatusBadRequest, model.CaptchaNotCorrect, nil)
  174. }
  175. if token.UserName != "" && token.Password != "" {
  176. // 获取租户信息
  177. tenant, _ := service.TenantService.GetOne(token.TenantId)
  178. if tenant == nil {
  179. return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenant, nil)
  180. }
  181. if judgeTenant(tenant) {
  182. return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenantPermission, nil)
  183. }
  184. // 获取用户类型
  185. // 根据不同用户类型调用对应的接口返回数据,用户可自行拓展
  186. info.User = service.UserService.GetOne(token.TenantId, token.UserName, token.Password)
  187. info.TenantId = token.TenantId
  188. info.Roles = []string{"admin"}
  189. }
  190. //todo 操作记录
  191. return info, nil
  192. }
  193. func refreshGrant(token model.Token) (*model.UserInfo, *util.Errors) {
  194. info := &model.UserInfo{}
  195. jwtToken := parseRefreshToken(token.RefreshToken)
  196. if jwtToken == nil || len(*jwtToken) != 7 {
  197. return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenantPermission, nil)
  198. }
  199. // 获取租户信息
  200. tenant, _ := service.TenantService.GetOne(token.TenantId)
  201. if tenant == nil {
  202. return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenant, nil)
  203. }
  204. if judgeTenant(tenant) {
  205. return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenantPermission, nil)
  206. }
  207. info.User = service.UserService.GetOneByTenantId(token.TenantId)
  208. info.Roles = []string{"admin"}
  209. //todo 操作记录
  210. return info, nil
  211. }
  212. func judgeTenant(tenant *dao.Tenant) bool {
  213. if tenant.TenantId == model.AdminTenantId {
  214. return false
  215. }
  216. if tenant.ExpireTime.IsZero() || !tenant.ExpireTime.Before(time.Now()) {
  217. return false
  218. }
  219. return true
  220. }
  221. func getAccessTokenKey(tenantId int, uId int64, random string) string {
  222. return fmt.Sprintf("access_token_%d_%d_%s", tenantId, uId, random)
  223. }
  224. func getCaptchaKey(uId string) string {
  225. return fmt.Sprintf("auth:captcha:%s", uId)
  226. }