|
@@ -6,6 +6,7 @@ import (
|
|
"github.com/golang-jwt/jwt"
|
|
"github.com/golang-jwt/jwt"
|
|
"github.com/mojocn/base64Captcha"
|
|
"github.com/mojocn/base64Captcha"
|
|
"github.com/satori/go.uuid"
|
|
"github.com/satori/go.uuid"
|
|
|
|
+ "iot_manager_service/app/system/dao"
|
|
"iot_manager_service/app/system/service"
|
|
"iot_manager_service/app/system/service"
|
|
"strconv"
|
|
"strconv"
|
|
"time"
|
|
"time"
|
|
@@ -95,7 +96,7 @@ func (c *auth) Token(ctx *gin.Context) {
|
|
|
|
|
|
func (c *auth) Logout(ctx *gin.Context) {
|
|
func (c *auth) Logout(ctx *gin.Context) {
|
|
emptyKeyFunc := func(t *jwt.Token) (interface{}, error) { return []byte(config.Instance().Server.TokenSign), nil }
|
|
emptyKeyFunc := func(t *jwt.Token) (interface{}, error) { return []byte(config.Instance().Server.TokenSign), nil }
|
|
- authorization := ctx.GetHeader("Authorization")
|
|
|
|
|
|
+ authorization := ctx.GetHeader(model.HeaderKey)
|
|
token, err := jwt.ParseWithClaims(authorization, &model.JwtToken{}, emptyKeyFunc)
|
|
token, err := jwt.ParseWithClaims(authorization, &model.JwtToken{}, emptyKeyFunc)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, err.Error(), nil))
|
|
ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, err.Error(), nil))
|
|
@@ -127,13 +128,16 @@ func (c *auth) Clear(ctx *gin.Context) {
|
|
|
|
|
|
func (c *auth) Login(ctx *gin.Context) {
|
|
func (c *auth) Login(ctx *gin.Context) {
|
|
passKey := ctx.Query("passKey")
|
|
passKey := ctx.Query("passKey")
|
|
- tenant, err := service.TenantService.Get(passKey)
|
|
|
|
|
|
+ tenant, err := service.TenantService.GetTenantByPasskey(passKey)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(model.TenantNotFound, nil))
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(model.TenantNotFound, nil))
|
|
return
|
|
return
|
|
}
|
|
}
|
|
rsp := model.RspLogin{
|
|
rsp := model.RspLogin{
|
|
- ID: tenant.TenantId,
|
|
|
|
|
|
+ ID: tenant.TenantId,
|
|
|
|
+ Name: tenant.LoginDisplayName,
|
|
|
|
+ BackgroundUrl: tenant.BackgroundUrl,
|
|
|
|
+ SysLogoUrl: tenant.SysLogoUrl,
|
|
}
|
|
}
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(util.Success, rsp))
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(util.Success, rsp))
|
|
}
|
|
}
|
|
@@ -200,17 +204,19 @@ func grant(token model.Token, ctx *gin.Context) (*model.UserInfo, *util.Errors)
|
|
|
|
|
|
if token.UserName != "" && token.Password != "" {
|
|
if token.UserName != "" && token.Password != "" {
|
|
// 获取租户信息
|
|
// 获取租户信息
|
|
- //Tenant tenant = tenantService.getByTenantId(tenantId);
|
|
|
|
- //if (TokenUtil.judgeTenant(tenant)) {
|
|
|
|
- // throw new ServiceException(TokenUtil.USER_HAS_NO_TENANT_PERMISSION);
|
|
|
|
- //}
|
|
|
|
|
|
+ tenant, _ := service.TenantService.GetOne(token.TenantId)
|
|
|
|
+ if tenant == nil {
|
|
|
|
+ return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenant, nil)
|
|
|
|
+ }
|
|
|
|
+ if judgeTenant(tenant) {
|
|
|
|
+ return nil, util.NormalResponse(http.StatusOK, model.UserHasNoTenantPermission, nil)
|
|
|
|
+ }
|
|
// 获取用户类型
|
|
// 获取用户类型
|
|
// 根据不同用户类型调用对应的接口返回数据,用户可自行拓展
|
|
// 根据不同用户类型调用对应的接口返回数据,用户可自行拓展
|
|
- // info.Auth = userService.GetUser(auth.tenantId, auth.UserName, auth.password)
|
|
|
|
|
|
+ info.User, _ = service.UserService.GetOne(token.TenantId, token.UserName, token.Password)
|
|
}
|
|
}
|
|
|
|
|
|
//测试代码start
|
|
//测试代码start
|
|
-
|
|
|
|
info.TenantId = "000000"
|
|
info.TenantId = "000000"
|
|
info.ID = 11112222
|
|
info.ID = 11112222
|
|
info.Roles = []string{"admin"}
|
|
info.Roles = []string{"admin"}
|
|
@@ -219,6 +225,16 @@ func grant(token model.Token, ctx *gin.Context) (*model.UserInfo, *util.Errors)
|
|
return info, nil
|
|
return info, nil
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func judgeTenant(tenant *dao.Tenant) bool {
|
|
|
|
+ if tenant.TenantId == model.AdminTenantId {
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ if tenant.ExpireTime.IsZero() || tenant.ExpireTime.Before(time.Now()) {
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
|
|
+ return false
|
|
|
|
+}
|
|
|
|
+
|
|
func getAccessTokenKey(tenantId string, uId int64, random string) string {
|
|
func getAccessTokenKey(tenantId string, uId int64, random string) string {
|
|
return fmt.Sprintf("access_token_%s_%d_%s", tenantId, uId, random)
|
|
return fmt.Sprintf("access_token_%s_%d_%s", tenantId, uId, random)
|
|
}
|
|
}
|