|
@@ -1,6 +1,5 @@
|
|
|
package com.gree.mall.manager.logic.admin;
|
|
|
|
|
|
-import cn.hutool.json.JSONObject;
|
|
|
import com.aliyuncs.utils.StringUtils;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
@@ -13,11 +12,9 @@ import com.gree.mall.manager.bean.admin.AdminModuleTree;
|
|
|
import com.gree.mall.manager.bean.admin.AdminUserBean;
|
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
|
import com.gree.mall.manager.bean.admin.ExternalMapBean;
|
|
|
-import com.gree.mall.manager.bean.admin.reqDto.AdminCompanyWechatReqBean;
|
|
|
import com.gree.mall.manager.bean.admin.reqDto.AdminUserAddReqBean;
|
|
|
import com.gree.mall.manager.commonmapper.AdminMapper;
|
|
|
import com.gree.mall.manager.enums.RedisPrefixEnum;
|
|
|
-import com.gree.mall.manager.enums.RoleTypeEnum;
|
|
|
import com.gree.mall.manager.exception.RemoteServiceException;
|
|
|
import com.gree.mall.manager.logic.common.CommonLogic;
|
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
@@ -85,7 +82,7 @@ public class AdminUserLogic {
|
|
|
String baseStr = Base64.getEncoder().encodeToString(b);
|
|
|
//生成一个token
|
|
|
String code = UUID.randomUUID().toString();
|
|
|
- redisUtil.set(RedisPrefixEnum.TOKEN_VERIFICATION + code, text, 2 * 60);
|
|
|
+ redisUtil.set(RedisPrefixEnum.TOKEN_NEW_VERIFICATION + code, text, 2 * 60);
|
|
|
SVerification verification = new SVerification();
|
|
|
verification.setCode(code);
|
|
|
verification.setPic(baseStr);
|
|
@@ -96,7 +93,7 @@ public class AdminUserLogic {
|
|
|
* 登录
|
|
|
*/
|
|
|
public AdminUserBean login(String userName, String password, String code, String codeValue) throws RemoteServiceException {
|
|
|
- String value = (String) redisUtil.get(RedisPrefixEnum.TOKEN_VERIFICATION + code);
|
|
|
+ String value = (String) redisUtil.get(RedisPrefixEnum.TOKEN_NEW_VERIFICATION + code);
|
|
|
if (!value.equals(codeValue)) {
|
|
|
throw new RemoteServiceException("验证码错误");
|
|
|
}
|
|
@@ -119,7 +116,7 @@ public class AdminUserLogic {
|
|
|
List<AdminUserCompanyRela> list = adminUserCompanyRelaService.lambdaQuery().eq(AdminUserCompanyRela::getAdminUserId, adminUser.getAdminUserId()).list();
|
|
|
adminUserBean.setAdminUserCompanyRelaList(list);
|
|
|
//存放到redis
|
|
|
- redisUtil.set(RedisPrefixEnum.TOKEN_MGR.toString() + adminUserBean.getToken(), adminUser, 20 * 60 * 60 * 1000);
|
|
|
+ redisUtil.set(RedisPrefixEnum.TOKEN_NEW_MGR.toString() + adminUserBean.getToken(), adminUser, 20 * 60 * 60 * 1000);
|
|
|
return adminUserBean;
|
|
|
}
|
|
|
|
|
@@ -440,7 +437,7 @@ public class AdminUserLogic {
|
|
|
*/
|
|
|
public void logout(HttpServletRequest request) {
|
|
|
String token = CommonUtils.getToken(request);
|
|
|
- redisUtil.del(RedisPrefixEnum.TOKEN_MGR + token);
|
|
|
+ redisUtil.del(RedisPrefixEnum.TOKEN_NEW_MGR + token);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -601,7 +598,7 @@ public class AdminUserLogic {
|
|
|
adminUserBean.setToken(JwtUtils.createJWT(adminUser.getAdminUserId(), adminUser.getNickName(), adminUser.getUserName(), 20 * 60 * 60 * 1000));
|
|
|
|
|
|
//存放到redis
|
|
|
- redisUtil.set(RedisPrefixEnum.TOKEN_MGR.toString() + adminUserBean.getToken(), adminUser, 20 * 60 * 60 * 1000);
|
|
|
+ redisUtil.set(RedisPrefixEnum.TOKEN_NEW_MGR.toString() + adminUserBean.getToken(), adminUser, 20 * 60 * 60 * 1000);
|
|
|
|
|
|
// 返回结果
|
|
|
ExternalMapBean bean = new ExternalMapBean();
|