UserController.java 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Copyright 2019-2020 Zheng Jie
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package me.zhengjie.modules.system.rest;
  17. import cn.hutool.core.collection.CollectionUtil;
  18. import io.swagger.annotations.Api;
  19. import io.swagger.annotations.ApiOperation;
  20. import lombok.RequiredArgsConstructor;
  21. import me.zhengjie.annotation.AnonymousAccess;
  22. import me.zhengjie.annotation.Log;
  23. import me.zhengjie.config.RsaProperties;
  24. import me.zhengjie.modules.dm.user.domain.DmUser;
  25. import me.zhengjie.modules.dm.user.service.DmUserService;
  26. import me.zhengjie.modules.dm.user.service.dto.DmUserDto;
  27. import me.zhengjie.modules.system.domain.Dept;
  28. import me.zhengjie.modules.system.service.DataService;
  29. import me.zhengjie.modules.system.domain.User;
  30. import me.zhengjie.exception.BadRequestException;
  31. import me.zhengjie.modules.system.domain.vo.UserPassVo;
  32. import me.zhengjie.modules.system.service.DeptService;
  33. import me.zhengjie.modules.system.service.RoleService;
  34. import me.zhengjie.modules.system.service.dto.RoleSmallDto;
  35. import me.zhengjie.modules.system.service.dto.UserDto;
  36. import me.zhengjie.modules.system.service.dto.UserQueryCriteria;
  37. import me.zhengjie.modules.system.service.VerifyService;
  38. import me.zhengjie.utils.*;
  39. import me.zhengjie.modules.system.service.UserService;
  40. import me.zhengjie.utils.enums.CodeEnum;
  41. import org.springframework.data.domain.Pageable;
  42. import org.springframework.http.HttpStatus;
  43. import org.springframework.http.ResponseEntity;
  44. import org.springframework.security.access.prepost.PreAuthorize;
  45. import org.springframework.security.crypto.password.PasswordEncoder;
  46. import org.springframework.util.CollectionUtils;
  47. import org.springframework.util.ObjectUtils;
  48. import org.springframework.validation.annotation.Validated;
  49. import org.springframework.web.bind.annotation.*;
  50. import org.springframework.web.multipart.MultipartFile;
  51. import javax.servlet.http.HttpServletResponse;
  52. import java.io.IOException;
  53. import java.util.*;
  54. import java.util.stream.Collectors;
  55. /**
  56. * @author Zheng Jie
  57. * @date 2018-11-23
  58. */
  59. @Api(tags = "系统:用户管理")
  60. @RestController
  61. @RequestMapping("/api/users")
  62. @RequiredArgsConstructor
  63. public class UserController {
  64. private final PasswordEncoder passwordEncoder;
  65. private final UserService userService;
  66. private final DataService dataService;
  67. private final DeptService deptService;
  68. private final RoleService roleService;
  69. private final VerifyService verificationCodeService;
  70. private final DmUserService dmUserService;
  71. @ApiOperation("导出用户数据")
  72. @GetMapping(value = "/download")
  73. @PreAuthorize("@el.check('user:list')")
  74. public void download(HttpServletResponse response, UserQueryCriteria criteria) throws IOException {
  75. userService.download(userService.queryAll(criteria), response);
  76. }
  77. @ApiOperation("查询用户")
  78. @GetMapping
  79. @PreAuthorize("@el.check('user:list')")
  80. public ResponseEntity<Object> query(UserQueryCriteria criteria, Pageable pageable){
  81. if (!ObjectUtils.isEmpty(criteria.getDeptId())) {
  82. criteria.getDeptIds().add(criteria.getDeptId());
  83. criteria.getDeptIds().addAll(deptService.getDeptChildren(deptService.findByPid(criteria.getDeptId())));
  84. }
  85. // 数据权限
  86. List<String> dataScopes = dataService.getDeptIds(userService.findByName(SecurityUtils.getCurrentUsername()));
  87. // criteria.getDeptIds() 不为空并且数据权限不为空则取交集
  88. if (!CollectionUtils.isEmpty(criteria.getDeptIds()) && !CollectionUtils.isEmpty(dataScopes)){
  89. // 取交集
  90. criteria.getDeptIds().retainAll(dataScopes);
  91. if(!CollectionUtil.isEmpty(criteria.getDeptIds())){
  92. return new ResponseEntity<>(userService.queryAll(criteria,pageable),HttpStatus.OK);
  93. }
  94. } else {
  95. // 否则取并集
  96. criteria.getDeptIds().addAll(dataScopes);
  97. return new ResponseEntity<>(userService.queryAll(criteria,pageable),HttpStatus.OK);
  98. }
  99. return new ResponseEntity<>(PageUtil.toPage(null,0),HttpStatus.OK);
  100. }
  101. @Log("新增用户")
  102. @ApiOperation("新增用户")
  103. @PostMapping
  104. @PreAuthorize("@el.check('user:add')")
  105. public ResponseEntity<Object> create(@Validated @RequestBody User resources){
  106. checkLevel(resources);
  107. // 默认密码 123456
  108. /*resources.setPassword(passwordEncoder.encode("123456"));*/
  109. resources.setPassword(passwordEncoder.encode(resources.getOrgPassword()));
  110. userService.create(resources);
  111. return new ResponseEntity<>(HttpStatus.CREATED);
  112. }
  113. @Log("修改用户")
  114. @ApiOperation("修改用户")
  115. @PutMapping
  116. @PreAuthorize("@el.check('user:edit')")
  117. public ResponseEntity<Object> update(@Validated(User.Update.class) @RequestBody User resources) throws Exception {
  118. checkLevel(resources);
  119. userService.update(resources);
  120. return new ResponseEntity<>(HttpStatus.NO_CONTENT);
  121. }
  122. @Log("修改用户:个人中心")
  123. @ApiOperation("修改用户:个人中心")
  124. @PutMapping(value = "center")
  125. public ResponseEntity<Object> center(@Validated(User.Update.class) @RequestBody User resources){
  126. if(!resources.getId().equals(SecurityUtils.getCurrentUserId())){
  127. throw new BadRequestException("不能修改他人资料");
  128. }
  129. userService.updateCenter(resources);
  130. return new ResponseEntity<>(HttpStatus.NO_CONTENT);
  131. }
  132. @Log("删除用户")
  133. @ApiOperation("删除用户")
  134. @DeleteMapping
  135. @PreAuthorize("@el.check('user:del')")
  136. public ResponseEntity<Object> delete(@RequestBody Set<String> ids){
  137. for (String id : ids) {
  138. Integer currentLevel = Collections.min(roleService.findByUsersId(SecurityUtils.getCurrentUserId()).stream().map(RoleSmallDto::getLevel).collect(Collectors.toList()));
  139. Integer optLevel = Collections.min(roleService.findByUsersId(id).stream().map(RoleSmallDto::getLevel).collect(Collectors.toList()));
  140. if (currentLevel > optLevel) {
  141. throw new BadRequestException("角色权限不足,不能删除:" + userService.findById(id).getUsername());
  142. }
  143. }
  144. userService.delete(ids);
  145. return new ResponseEntity<>(HttpStatus.OK);
  146. }
  147. @ApiOperation("修改密码")
  148. @PostMapping(value = "/updatePass")
  149. public ResponseEntity<Object> updatePass(@RequestBody UserPassVo passVo) throws Exception {
  150. String oldPass = RsaUtils.decryptByPrivateKey(RsaProperties.privateKey,passVo.getOldPass());
  151. String newPass = RsaUtils.decryptByPrivateKey(RsaProperties.privateKey,passVo.getNewPass());
  152. UserDto user = userService.findByName(SecurityUtils.getCurrentUsername());
  153. if(!passwordEncoder.matches(oldPass, user.getPassword())){
  154. throw new BadRequestException("修改失败,旧密码错误");
  155. }
  156. if(passwordEncoder.matches(newPass, user.getPassword())){
  157. throw new BadRequestException("新密码不能与旧密码相同");
  158. }
  159. userService.updatePass(user.getUsername(),passwordEncoder.encode(newPass));
  160. return new ResponseEntity<>(HttpStatus.OK);
  161. }
  162. @ApiOperation("修改头像")
  163. @PostMapping(value = "/updateAvatar")
  164. public ResponseEntity<Object> updateAvatar(@RequestParam MultipartFile avatar){
  165. return new ResponseEntity<>(userService.updateAvatar(avatar), HttpStatus.OK);
  166. }
  167. @Log("修改邮箱")
  168. @ApiOperation("修改邮箱")
  169. @PostMapping(value = "/updateEmail/{code}")
  170. public ResponseEntity<Object> updateEmail(@PathVariable String code,@RequestBody User user) throws Exception {
  171. String password = RsaUtils.decryptByPrivateKey(RsaProperties.privateKey,user.getPassword());
  172. UserDto userDto = userService.findByName(SecurityUtils.getCurrentUsername());
  173. if(!passwordEncoder.matches(password, userDto.getPassword())){
  174. throw new BadRequestException("密码错误");
  175. }
  176. verificationCodeService.validated(CodeEnum.EMAIL_RESET_EMAIL_CODE.getKey() + user.getEmail(), code);
  177. userService.updateEmail(userDto.getUsername(),user.getEmail());
  178. return new ResponseEntity<>(HttpStatus.OK);
  179. }
  180. /**
  181. * 如果当前用户的角色级别低于创建用户的角色级别,则抛出权限不足的错误
  182. * @param resources /
  183. */
  184. private void checkLevel(User resources) {
  185. Integer currentLevel = Collections.min(roleService.findByUsersId(SecurityUtils.getCurrentUserId()).stream().map(RoleSmallDto::getLevel).collect(Collectors.toList()));
  186. Integer optLevel = roleService.findByRoles(resources.getRoles());
  187. if (currentLevel > optLevel) {
  188. throw new BadRequestException("角色权限不足");
  189. }
  190. }
  191. @ApiOperation("解绑用户")
  192. @PostMapping(value = "/unBindDmUser")
  193. @Log("解绑账号用户")
  194. public ResponseEntity<Object> unBindDmUser(@RequestBody Set<String> ids) throws Exception{
  195. userService.unBindDmUser(ids);
  196. return new ResponseEntity<>(HttpStatus.OK);
  197. }
  198. }