token.go 7.5 KB

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