|
@@ -6,18 +6,18 @@ import (
|
|
|
"strconv"
|
|
|
"time"
|
|
|
|
|
|
- "iot_manager_service/app/user/model"
|
|
|
+ "iot_manager_service/app/system/model"
|
|
|
"iot_manager_service/config"
|
|
|
"iot_manager_service/util"
|
|
|
"net/http"
|
|
|
"strings"
|
|
|
)
|
|
|
|
|
|
-var Auth = new(auth)
|
|
|
+var Token = new(token)
|
|
|
|
|
|
-type auth struct{}
|
|
|
+type token struct{}
|
|
|
|
|
|
-func (c *auth) Token(ctx *gin.Context) {
|
|
|
+func (c *token) Token(ctx *gin.Context) {
|
|
|
tenantId := ctx.Query("tenantId")
|
|
|
userName := ctx.Query("username")
|
|
|
password := ctx.Query("password")
|
|
@@ -26,7 +26,7 @@ func (c *auth) Token(ctx *gin.Context) {
|
|
|
|
|
|
checkLock()
|
|
|
|
|
|
- userType := ctx.GetHeader(model.USER_TYPE_HEADER_KEY)
|
|
|
+ userType := ctx.GetHeader(model.UserTypeHeaderKey)
|
|
|
token := model.Token{
|
|
|
TenantId: tenantId,
|
|
|
UserName: userName,
|
|
@@ -41,11 +41,11 @@ func (c *auth) Token(ctx *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
if userInfo == nil || userInfo.User == nil {
|
|
|
- ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.USER_NOT_FOUND, nil))
|
|
|
+ ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.UserNotFound, nil))
|
|
|
return
|
|
|
}
|
|
|
if len(userInfo.Roles) == 0 {
|
|
|
- ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.USER_HAS_NO_ROLE, nil))
|
|
|
+ ctx.JSON(http.StatusOK, util.NormalResponse(http.StatusBadRequest, model.UserHasNoRole, nil))
|
|
|
return
|
|
|
}
|
|
|
|
|
@@ -116,13 +116,13 @@ func getRefreshToken(info model.UserInfo) string {
|
|
|
|
|
|
func grant(token model.Token, ctx *gin.Context) (*model.UserInfo, *util.Errors) {
|
|
|
info := &model.UserInfo{}
|
|
|
- key := ctx.GetHeader(model.CAPTCHA_HEADER_KEY)
|
|
|
- code := ctx.GetHeader(model.CAPTCHA_HEADER_CODE)
|
|
|
+ key := ctx.GetHeader(model.CaptchaHeaderKey)
|
|
|
+ code := ctx.GetHeader(model.CaptchaHeaderCode)
|
|
|
// 获取验证码
|
|
|
- redisCode := util.Redis.Get(model.CAPTCHA_KEY + key).String()
|
|
|
+ redisCode := util.Redis.Get(model.CaptchaKey + key).String()
|
|
|
// 判断验证码
|
|
|
if config.Instance().Server.CodeEnable && (code == "" || !strings.EqualFold(redisCode, code)) {
|
|
|
- return nil, util.NormalResponse(http.StatusBadRequest, model.CAPTCHA_NOT_CORRECT, nil)
|
|
|
+ return nil, util.NormalResponse(http.StatusBadRequest, model.CaptchaNotCorrect, nil)
|
|
|
}
|
|
|
|
|
|
if token.UserName != "" && token.Password != "" {
|
|
@@ -133,7 +133,11 @@ func grant(token model.Token, ctx *gin.Context) (*model.UserInfo, *util.Errors)
|
|
|
//}
|
|
|
// 获取用户类型
|
|
|
// 根据不同用户类型调用对应的接口返回数据,用户可自行拓展
|
|
|
- // info.User = userService.GetUser(token.tenantId, token.UserName, token.password)
|
|
|
+ // info.Token = userService.GetUser(token.tenantId, token.UserName, token.password)
|
|
|
}
|
|
|
return info, nil
|
|
|
}
|
|
|
+
|
|
|
+func (c *token) Captcha(ctx *gin.Context) {
|
|
|
+
|
|
|
+}
|