|
@@ -6,11 +6,13 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-
|
|
|
import com.google.code.kaptcha.impl.DefaultKaptcha;
|
|
|
import com.gree.mall.manager.bean.ExcelData;
|
|
|
import com.gree.mall.manager.bean.SVerification;
|
|
|
-import com.gree.mall.manager.bean.admin.*;
|
|
|
+import com.gree.mall.manager.bean.admin.AdminModuleTree;
|
|
|
+import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
|
+import com.gree.mall.manager.bean.admin.AdminWebsitGrantBean;
|
|
|
+import com.gree.mall.manager.bean.admin.ExternalMapBean;
|
|
|
import com.gree.mall.manager.bean.admin.reqDto.AdminUserAddReqBean;
|
|
|
import com.gree.mall.manager.bean.admin.reqDto.AdminUserPermissions;
|
|
|
import com.gree.mall.manager.commonmapper.AdminMapper;
|
|
@@ -176,7 +178,10 @@ public class AdminUserLogic {
|
|
|
isAdd = false;
|
|
|
}
|
|
|
|
|
|
- AdminUserCom admin = commonLogic.getAdminUser(request);
|
|
|
+ AdminUserCom curLoginAmin = commonLogic.getAdminUser(request);
|
|
|
+
|
|
|
+
|
|
|
+ this.checkCreateAdminUserParams(adminUser, curLoginAmin, isAdd);
|
|
|
|
|
|
if (StringUtils.isEmpty(adminUser.getUserName())
|
|
|
|| (isAdd && StringUtils.isEmpty(adminUser.getPassword()))) {
|
|
@@ -195,14 +200,6 @@ public class AdminUserLogic {
|
|
|
adminUser.setAdminUserId(IdWorker.getIdStr());
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- AdminRole addUserRole;
|
|
|
- if (StringUtils.isEmpty(adminUser.getRoleId()) ||
|
|
|
- (addUserRole = adminRoleService.getById(adminUser.getRoleId())) == null) {
|
|
|
- throw new RemoteServiceException("请为用户选择角色");
|
|
|
- }
|
|
|
- adminUser.setRoleName(addUserRole.getName());
|
|
|
-
|
|
|
|
|
|
this.dataPermissionsHandle(adminUser, adminUser.getPermissions());
|
|
|
|
|
@@ -213,6 +210,43 @@ public class AdminUserLogic {
|
|
|
adminUserService.saveOrUpdate(adminUser);
|
|
|
}
|
|
|
|
|
|
+ private void checkCreateAdminUserParams(AdminUserAddReqBean adminUser, AdminUserCom curLoginAmin, boolean isAdd) {
|
|
|
+
|
|
|
+ if (curLoginAmin.getType() == 2 || curLoginAmin.getType() == 4) {
|
|
|
+
|
|
|
+ if (isAdd) {
|
|
|
+
|
|
|
+ adminUser.setType(4);
|
|
|
+ }
|
|
|
+ } else if (curLoginAmin.getType() == 1 || curLoginAmin.getType() == 3) {
|
|
|
+
|
|
|
+ if (adminUser.getType() == 0) {
|
|
|
+
|
|
|
+ throw new RemoteServiceException("创建者不能选择账号类型为“平台账号”");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ AdminRole addUserRole;
|
|
|
+ if (StringUtils.isEmpty(adminUser.getRoleId()) ||
|
|
|
+ (addUserRole = adminRoleService.getById(adminUser.getRoleId())) == null) {
|
|
|
+ throw new RemoteServiceException("请为用户选择角色");
|
|
|
+ }
|
|
|
+ int requireSelectRoleType;
|
|
|
+ if (adminUser.getType() == 2 || adminUser.getType() == 4) {
|
|
|
+ requireSelectRoleType = 2;
|
|
|
+ } else if (adminUser.getType() == 1 || adminUser.getType() == 3) {
|
|
|
+ requireSelectRoleType = 1;
|
|
|
+ } else {
|
|
|
+ requireSelectRoleType = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (requireSelectRoleType != addUserRole.getType()) {
|
|
|
+ throw new RemoteServiceException("账号类型与角色类型不匹配");
|
|
|
+ }
|
|
|
+
|
|
|
+ adminUser.setRoleName(addUserRole.getName());
|
|
|
+ }
|
|
|
+
|
|
|
private void dataPermissionsHandle(AdminUserAddReqBean adminUser, List<AdminUserPermissions> permissions) {
|
|
|
if (CollectionUtil.isEmpty(permissions)) {
|
|
|
throw new RemoteServiceException("请选择至少1个数据权限");
|