|  |  | 
 |  |  |  | 
 |  |  | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; | 
 |  |  | import com.github.xiaoymin.knife4j.annotations.ApiSupport; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | import io.swagger.annotations.ApiOperation; | 
 |  |  | import io.swagger.annotations.ApiParam; | 
 |  |  | import io.swagger.annotations.*; | 
 |  |  | import org.apache.commons.lang3.ArrayUtils; | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | import org.springframework.security.access.prepost.PreAuthorize; | 
 |  |  | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * 用户信息 | 
 |  |  |  *  | 
 |  |  |  * | 
 |  |  |  * @author ruoyi | 
 |  |  |  */ | 
 |  |  | @Api(tags = "用户信息") | 
 |  |  | @RestController | 
 |  |  | @RequestMapping("/system/user") | 
 |  |  | @Api(tags = "用户信息") | 
 |  |  | public class SysUserController extends BaseController | 
 |  |  | { | 
 |  |  | public class SysUserController extends BaseController { | 
 |  |  |     @Autowired | 
 |  |  |     private ISysUserService userService; | 
 |  |  |  | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 获取用户列表 | 
 |  |  |      */ | 
 |  |  |  | 
 |  |  |     @ApiOperationSupport(includeParameters={"user.userId"}) | 
 |  |  |     @ApiOperation("获取用户列表") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:list')") | 
 |  |  |     @GetMapping("/list") | 
 |  |  |     public TableDataInfo list(SysUser user) | 
 |  |  |     { | 
 |  |  |     public TableDataInfo list(SysUser user) { | 
 |  |  |         startPage(); | 
 |  |  |         List<SysUser> list = userService.selectUserList(user); | 
 |  |  |         return getDataTable(list); | 
 |  |  | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.EXPORT) | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:export')") | 
 |  |  |     @PostMapping("/export") | 
 |  |  |     public void export(HttpServletResponse response, SysUser user) | 
 |  |  |     { | 
 |  |  |     public void export(HttpServletResponse response, SysUser user) { | 
 |  |  |         List<SysUser> list = userService.selectUserList(user); | 
 |  |  |         ExcelUtil<SysUser> util = new ExcelUtil<SysUser>(SysUser.class); | 
 |  |  |         util.exportExcel(response, list, "用户数据"); | 
 |  |  | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.IMPORT) | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:import')") | 
 |  |  |     @PostMapping("/importData") | 
 |  |  |     public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception | 
 |  |  |     { | 
 |  |  |     public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception { | 
 |  |  |         ExcelUtil<SysUser> util = new ExcelUtil<SysUser>(SysUser.class); | 
 |  |  |         List<SysUser> userList = util.importExcel(file.getInputStream()); | 
 |  |  |         String operName = getUsername(); | 
 |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @PostMapping("/importTemplate") | 
 |  |  |     public void importTemplate(HttpServletResponse response) | 
 |  |  |     { | 
 |  |  |     public void importTemplate(HttpServletResponse response) { | 
 |  |  |         ExcelUtil<SysUser> util = new ExcelUtil<SysUser>(SysUser.class); | 
 |  |  |         util.importTemplateExcel(response, "用户数据"); | 
 |  |  |     } | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据用户编号获取详细信息 | 
 |  |  |      */ | 
 |  |  |     @ApiOperation("根据用户编号获取详细信息") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:query')") | 
 |  |  |     @GetMapping(value = { "/", "/{userId}" }) | 
 |  |  |     public AjaxResult getInfo(@PathVariable(value = "userId", required = false) String userId) | 
 |  |  |     { | 
 |  |  |     @GetMapping(value = {"/", "/{userId}"}) | 
 |  |  |     public AjaxResult getInfo(@PathVariable(value = "userId", required = false) String userId) { | 
 |  |  |         userService.checkUserDataScope(userId); | 
 |  |  |         AjaxResult ajax = AjaxResult.success(); | 
 |  |  |         List<SysRole> roles = roleService.selectRoleAll(); | 
 |  |  |         ajax.put("roles", SysUser.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList())); | 
 |  |  |         ajax.put("posts", postService.selectPostAll()); | 
 |  |  |         if (StringUtils.isNotNull(userId)) | 
 |  |  |         { | 
 |  |  |         if (StringUtils.isNotNull(userId)) { | 
 |  |  |             SysUser sysUser = userService.selectUserById(userId); | 
 |  |  |             ajax.put(AjaxResult.DATA_TAG, sysUser); | 
 |  |  |             ajax.put("postIds", postService.selectPostListByUserId(userId)); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:add')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.INSERT) | 
 |  |  |     @PostMapping | 
 |  |  |     public AjaxResult add(@Validated @RequestBody SysUser user) | 
 |  |  |     { | 
 |  |  |         if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(user))) | 
 |  |  |         { | 
 |  |  |     public AjaxResult add(@Validated @RequestBody SysUser user) { | 
 |  |  |         if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(user))) { | 
 |  |  |             return error("新增用户'" + user.getUserName() + "'失败,登录账号已存在"); | 
 |  |  |         } | 
 |  |  |         else if (StringUtils.isNotEmpty(user.getPhonenumber()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user))) | 
 |  |  |         { | 
 |  |  |         } else if (StringUtils.isNotEmpty(user.getPhonenumber()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user))) { | 
 |  |  |             return error("新增用户'" + user.getUserName() + "'失败,手机号码已存在"); | 
 |  |  |         } | 
 |  |  |         else if (StringUtils.isNotEmpty(user.getEmail()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkEmailUnique(user))) | 
 |  |  |         { | 
 |  |  |         } else if (StringUtils.isNotEmpty(user.getEmail()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkEmailUnique(user))) { | 
 |  |  |             return error("新增用户'" + user.getUserName() + "'失败,邮箱账号已存在"); | 
 |  |  |         } | 
 |  |  |         user.setCreateBy(getUsername()); | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 修改用户 | 
 |  |  |      */ | 
 |  |  |  | 
 |  |  |     @ApiOperation("修改用户") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:edit')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.UPDATE) | 
 |  |  |     @PutMapping | 
 |  |  |     public AjaxResult edit(@Validated @RequestBody SysUser user) | 
 |  |  |     { | 
 |  |  |     public AjaxResult edit(@Validated @RequestBody SysUser user) { | 
 |  |  |         userService.checkUserAllowed(user); | 
 |  |  |         userService.checkUserDataScope(user.getUserId()); | 
 |  |  |         if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(user))) | 
 |  |  |         { | 
 |  |  |         if (UserConstants.NOT_UNIQUE.equals(userService.checkUserNameUnique(user))) { | 
 |  |  |             return error("修改用户'" + user.getUserName() + "'失败,登录账号已存在"); | 
 |  |  |         } | 
 |  |  |         else if (StringUtils.isNotEmpty(user.getPhonenumber()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user))) | 
 |  |  |         { | 
 |  |  |         } else if (StringUtils.isNotEmpty(user.getPhonenumber()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkPhoneUnique(user))) { | 
 |  |  |             return error("修改用户'" + user.getUserName() + "'失败,手机号码已存在"); | 
 |  |  |         } | 
 |  |  |         else if (StringUtils.isNotEmpty(user.getEmail()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkEmailUnique(user))) | 
 |  |  |         { | 
 |  |  |         } else if (StringUtils.isNotEmpty(user.getEmail()) | 
 |  |  |                 && UserConstants.NOT_UNIQUE.equals(userService.checkEmailUnique(user))) { | 
 |  |  |             return error("修改用户'" + user.getUserName() + "'失败,邮箱账号已存在"); | 
 |  |  |         } | 
 |  |  |         user.setUpdateBy(getUsername()); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:remove')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.DELETE) | 
 |  |  |     @DeleteMapping("/{userIds}") | 
 |  |  |     public AjaxResult remove(@PathVariable String[] userIds) | 
 |  |  |     { | 
 |  |  |         if (ArrayUtils.contains(userIds, getUserId())) | 
 |  |  |         { | 
 |  |  |     public AjaxResult remove(@PathVariable String[] userIds) { | 
 |  |  |         if (ArrayUtils.contains(userIds, getUserId())) { | 
 |  |  |             return error("当前用户不能删除"); | 
 |  |  |         } | 
 |  |  |         return toAjax(userService.deleteUserByIds(userIds)); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:resetPwd')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.UPDATE) | 
 |  |  |     @PutMapping("/resetPwd") | 
 |  |  |     public AjaxResult resetPwd(@RequestBody SysUser user) | 
 |  |  |     { | 
 |  |  |     public AjaxResult resetPwd(@RequestBody SysUser user) { | 
 |  |  |         userService.checkUserAllowed(user); | 
 |  |  |         userService.checkUserDataScope(user.getUserId()); | 
 |  |  |         user.setPassword(SecurityUtils.encryptPassword(user.getPassword())); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:edit')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.UPDATE) | 
 |  |  |     @PutMapping("/changeStatus") | 
 |  |  |     public AjaxResult changeStatus(@RequestBody SysUser user) | 
 |  |  |     { | 
 |  |  |     public AjaxResult changeStatus(@RequestBody SysUser user) { | 
 |  |  |         userService.checkUserAllowed(user); | 
 |  |  |         userService.checkUserDataScope(user.getUserId()); | 
 |  |  |         user.setUpdateBy(getUsername()); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:query')") | 
 |  |  |     @GetMapping("/authRole/{userId}") | 
 |  |  |     @ApiOperation("根据用户编号获取授权角色") | 
 |  |  |     public AjaxResult authRole(@PathVariable("userId") String userId) | 
 |  |  |     { | 
 |  |  |     public AjaxResult authRole(@PathVariable("userId") String userId) { | 
 |  |  |         AjaxResult ajax = AjaxResult.success(); | 
 |  |  |         SysUser user = userService.selectUserById(userId); | 
 |  |  |         List<SysRole> roles = roleService.selectRolesByUserId(userId); | 
 |  |  | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:edit')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.GRANT) | 
 |  |  |     @PutMapping("/authRole") | 
 |  |  |     public AjaxResult insertAuthRole(String userId, Long[] roleIds) | 
 |  |  |     { | 
 |  |  |     public AjaxResult insertAuthRole(String userId, Long[] roleIds) { | 
 |  |  |         userService.checkUserDataScope(userId); | 
 |  |  |         userService.insertUserAuth(userId, roleIds); | 
 |  |  |         return success(); | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:list')") | 
 |  |  |     @GetMapping("/deptTree") | 
 |  |  |     public AjaxResult deptTree(SysDept dept) | 
 |  |  |     { | 
 |  |  |     public AjaxResult deptTree(SysDept dept) { | 
 |  |  |         return success(deptService.selectDeptTreeList(dept)); | 
 |  |  |     } | 
 |  |  | } |