|
@@ -15,6 +15,7 @@ import com.tofly.base.entity.*;
|
|
|
import com.tofly.base.feign.ProjectResultIdFeign;
|
|
|
import com.tofly.base.service.*;
|
|
|
import com.tofly.base.utils.DesUtils;
|
|
|
+import com.tofly.base.utils.SmsUtils;
|
|
|
import com.tofly.common.core.constant.CommonConstants;
|
|
|
import com.tofly.common.core.constant.SecurityConstants;
|
|
|
import com.tofly.common.core.entity.ResultRespone;
|
|
@@ -429,6 +430,9 @@ public class UserController {
|
|
|
if(id!=null){
|
|
|
u = userService.getById(id);
|
|
|
}else{
|
|
|
+ if(SmsUtils.isPhoneNumber(user2.getUsername())) {
|
|
|
+ user2.setUsername(DesUtils.encrypt(user2.getUsername(), "toflysxgk"));
|
|
|
+ }
|
|
|
u = userService.getUserByName(user2.getUsername());
|
|
|
}
|
|
|
id=u.getId();
|
|
@@ -934,12 +938,14 @@ public class UserController {
|
|
|
}
|
|
|
|
|
|
private void checkHandler(Long userid) {
|
|
|
- log.info("验证级别的时候,当前用户级别:"+SecurityUtils.getUser().getUserLevel());
|
|
|
- if (CommonConstants.SUPER_ADMIN_ULEVEL.equals(SecurityUtils.getUser().getUserLevel())) {
|
|
|
- return ;
|
|
|
- }
|
|
|
- if (SecurityUtils.getUserId().equals(userid)) {
|
|
|
- return ;
|
|
|
+ if(SecurityUtils.getUser()!=null){
|
|
|
+ log.info("验证级别的时候,当前用户级别:"+SecurityUtils.getUser().getUserLevel());
|
|
|
+ if (CommonConstants.SUPER_ADMIN_ULEVEL.equals(SecurityUtils.getUser().getUserLevel())) {
|
|
|
+ return ;
|
|
|
+ }
|
|
|
+ if (SecurityUtils.getUserId().equals(userid)) {
|
|
|
+ return ;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
User user = userService.getById(userid);
|