|
|
@@ -1,302 +0,0 @@
|
|
|
-package org.dromara.subject.controller.system;
|
|
|
-
|
|
|
-import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
-import cn.dev33.satoken.secure.BCrypt;
|
|
|
-import cn.hutool.core.lang.tree.Tree;
|
|
|
-import cn.hutool.core.util.ArrayUtil;
|
|
|
-import cn.hutool.core.util.ObjectUtil;
|
|
|
-import jakarta.servlet.http.HttpServletResponse;
|
|
|
-import jakarta.validation.constraints.NotNull;
|
|
|
-import lombok.RequiredArgsConstructor;
|
|
|
-import org.dromara.common.core.constant.UserConstants;
|
|
|
-import org.dromara.common.core.domain.R;
|
|
|
-import org.dromara.common.core.domain.model.LoginUser;
|
|
|
-import org.dromara.common.core.utils.StreamUtils;
|
|
|
-import org.dromara.common.core.utils.StringUtils;
|
|
|
-import org.dromara.common.encrypt.annotation.ApiEncrypt;
|
|
|
-import org.dromara.common.excel.core.ExcelResult;
|
|
|
-import org.dromara.common.excel.utils.ExcelUtil;
|
|
|
-import org.dromara.common.log.annotation.Log;
|
|
|
-import org.dromara.common.log.enums.BusinessType;
|
|
|
-import org.dromara.common.mybatis.core.page.PageQuery;
|
|
|
-import org.dromara.common.mybatis.core.page.TableDataInfo;
|
|
|
-import org.dromara.common.satoken.utils.LoginHelper;
|
|
|
-import org.dromara.common.tenant.helper.TenantHelper;
|
|
|
-import org.dromara.common.web.core.BaseController;
|
|
|
-import org.dromara.subject.domain.bo.SysDeptBo;
|
|
|
-import org.dromara.subject.domain.bo.SysPostBo;
|
|
|
-import org.dromara.subject.domain.bo.SysRoleBo;
|
|
|
-import org.dromara.subject.domain.bo.SysUserBo;
|
|
|
-import org.dromara.subject.domain.vo.*;
|
|
|
-import org.dromara.subject.service.*;
|
|
|
-import org.dromara.subject.domain.vo.*;
|
|
|
-import org.dromara.subject.listener.SysUserImportListener;
|
|
|
-import org.dromara.subject.service.*;
|
|
|
-import org.springframework.http.MediaType;
|
|
|
-import org.springframework.validation.annotation.Validated;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
-
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-/**
|
|
|
- * 用户信息
|
|
|
- *
|
|
|
- * @author Lion Li
|
|
|
- */
|
|
|
-@Validated
|
|
|
-@RequiredArgsConstructor
|
|
|
-@RestController
|
|
|
-@RequestMapping("/system/user")
|
|
|
-public class SysUserController extends BaseController {
|
|
|
-
|
|
|
- private final ISysUserService userService;
|
|
|
- private final ISysRoleService roleService;
|
|
|
- private final ISysPostService postService;
|
|
|
- private final ISysDeptService deptService;
|
|
|
- private final ISysTenantService tenantService;
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取用户列表
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:list")
|
|
|
- @GetMapping("/list")
|
|
|
- public TableDataInfo<SysUserVo> list(SysUserBo user, PageQuery pageQuery) {
|
|
|
- return userService.selectPageUserList(user, pageQuery);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 导出用户列表
|
|
|
- */
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.EXPORT)
|
|
|
- @SaCheckPermission("system:user:export")
|
|
|
- @PostMapping("/export")
|
|
|
- public void export(SysUserBo user, HttpServletResponse response) {
|
|
|
- List<SysUserExportVo> list = userService.selectUserExportList(user);
|
|
|
- ExcelUtil.exportExcel(list, "用户数据", SysUserExportVo.class, response);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 导入数据
|
|
|
- *
|
|
|
- * @param file 导入文件
|
|
|
- * @param updateSupport 是否更新已存在数据
|
|
|
- */
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.IMPORT)
|
|
|
- @SaCheckPermission("system:user:import")
|
|
|
- @PostMapping(value = "/importData", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
|
- public R<Void> importData(@RequestPart("file") MultipartFile file, boolean updateSupport) throws Exception {
|
|
|
- ExcelResult<SysUserImportVo> result = ExcelUtil.importExcel(file.getInputStream(), SysUserImportVo.class, new SysUserImportListener(updateSupport));
|
|
|
- return R.ok(result.getAnalysis());
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取导入模板
|
|
|
- */
|
|
|
- @PostMapping("/importTemplate")
|
|
|
- public void importTemplate(HttpServletResponse response) {
|
|
|
- ExcelUtil.exportExcel(new ArrayList<>(), "用户数据", SysUserImportVo.class, response);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取用户信息
|
|
|
- *
|
|
|
- * @return 用户信息
|
|
|
- */
|
|
|
- @GetMapping("/getInfo")
|
|
|
- public R<UserInfoVo> getInfo() {
|
|
|
- UserInfoVo userInfoVo = new UserInfoVo();
|
|
|
- LoginUser loginUser = LoginHelper.getLoginUser();
|
|
|
- if (TenantHelper.isEnable() && LoginHelper.isSuperAdmin()) {
|
|
|
- // 超级管理员 如果重新加载用户信息需清除动态租户
|
|
|
- TenantHelper.clearDynamic();
|
|
|
- }
|
|
|
- SysUserVo user = userService.selectUserById(loginUser.getUserId());
|
|
|
- if (ObjectUtil.isNull(user)) {
|
|
|
- return R.fail("没有权限访问用户数据!");
|
|
|
- }
|
|
|
- userInfoVo.setUser(user);
|
|
|
- userInfoVo.setPermissions(loginUser.getMenuPermission());
|
|
|
- userInfoVo.setRoles(loginUser.getRolePermission());
|
|
|
- return R.ok(userInfoVo);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 根据用户编号获取详细信息
|
|
|
- *
|
|
|
- * @param userId 用户ID
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:query")
|
|
|
- @GetMapping(value = {"/", "/{userId}"})
|
|
|
- public R<SysUserInfoVo> getInfo(@PathVariable(value = "userId", required = false) Long userId) {
|
|
|
- userService.checkUserDataScope(userId);
|
|
|
- SysUserInfoVo userInfoVo = new SysUserInfoVo();
|
|
|
- SysRoleBo roleBo = new SysRoleBo();
|
|
|
- roleBo.setStatus(UserConstants.ROLE_NORMAL);
|
|
|
- List<SysRoleVo> roles = roleService.selectRoleList(roleBo);
|
|
|
- userInfoVo.setRoles(LoginHelper.isSuperAdmin(userId) ? roles : StreamUtils.filter(roles, r -> !r.isSuperAdmin()));
|
|
|
- if (ObjectUtil.isNotNull(userId)) {
|
|
|
- SysUserVo sysUser = userService.selectUserById(userId);
|
|
|
- userInfoVo.setUser(sysUser);
|
|
|
- userInfoVo.setRoleIds(roleService.selectRoleListByUserId(userId));
|
|
|
- Long deptId = sysUser.getDeptId();
|
|
|
- if (ObjectUtil.isNotNull(deptId)) {
|
|
|
- SysPostBo postBo = new SysPostBo();
|
|
|
- postBo.setDeptId(deptId);
|
|
|
- userInfoVo.setPosts(postService.selectPostList(postBo));
|
|
|
- userInfoVo.setPostIds(postService.selectPostListByUserId(userId));
|
|
|
- }
|
|
|
- }
|
|
|
- return R.ok(userInfoVo);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增用户
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:add")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.INSERT)
|
|
|
- @PostMapping
|
|
|
- public R<Void> add(@Validated @RequestBody SysUserBo user) {
|
|
|
- deptService.checkDeptDataScope(user.getDeptId());
|
|
|
- if (!userService.checkUserNameUnique(user)) {
|
|
|
- return R.fail("新增用户'" + user.getUserName() + "'失败,登录账号已存在");
|
|
|
- } else if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(user)) {
|
|
|
- return R.fail("新增用户'" + user.getUserName() + "'失败,手机号码已存在");
|
|
|
- } else if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(user)) {
|
|
|
- return R.fail("新增用户'" + user.getUserName() + "'失败,邮箱账号已存在");
|
|
|
- }
|
|
|
- if (TenantHelper.isEnable()) {
|
|
|
- if (!tenantService.checkAccountBalance(TenantHelper.getTenantId())) {
|
|
|
- return R.fail("当前租户下用户名额不足,请联系管理员");
|
|
|
- }
|
|
|
- }
|
|
|
- user.setPassword(BCrypt.hashpw(user.getPassword()));
|
|
|
- return toAjax(userService.insertUser(user));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改用户
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:edit")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping
|
|
|
- public R<Void> edit(@Validated @RequestBody SysUserBo user) {
|
|
|
- userService.checkUserAllowed(user.getUserId());
|
|
|
- userService.checkUserDataScope(user.getUserId());
|
|
|
- deptService.checkDeptDataScope(user.getDeptId());
|
|
|
- if (!userService.checkUserNameUnique(user)) {
|
|
|
- return R.fail("修改用户'" + user.getUserName() + "'失败,登录账号已存在");
|
|
|
- } else if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(user)) {
|
|
|
- return R.fail("修改用户'" + user.getUserName() + "'失败,手机号码已存在");
|
|
|
- } else if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(user)) {
|
|
|
- return R.fail("修改用户'" + user.getUserName() + "'失败,邮箱账号已存在");
|
|
|
- }
|
|
|
- return toAjax(userService.updateUser(user));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 删除用户
|
|
|
- *
|
|
|
- * @param userIds 角色ID串
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:remove")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.DELETE)
|
|
|
- @DeleteMapping("/{userIds}")
|
|
|
- public R<Void> remove(@PathVariable Long[] userIds) {
|
|
|
- if (ArrayUtil.contains(userIds, LoginHelper.getUserId())) {
|
|
|
- return R.fail("当前用户不能删除");
|
|
|
- }
|
|
|
- return toAjax(userService.deleteUserByIds(userIds));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 根据用户ID串批量获取用户基础信息
|
|
|
- *
|
|
|
- * @param userIds 用户ID串
|
|
|
- * @param deptId 部门ID
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:query")
|
|
|
- @GetMapping("/optionselect")
|
|
|
- public R<List<SysUserVo>> optionselect(@RequestParam(required = false) Long[] userIds,
|
|
|
- @RequestParam(required = false) Long deptId) {
|
|
|
- return R.ok(userService.selectUserByIds(userIds == null ? null : List.of(userIds), deptId));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 重置密码
|
|
|
- */
|
|
|
- @ApiEncrypt
|
|
|
- @SaCheckPermission("system:user:resetPwd")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping("/resetPwd")
|
|
|
- public R<Void> resetPwd(@RequestBody SysUserBo user) {
|
|
|
- userService.checkUserAllowed(user.getUserId());
|
|
|
- userService.checkUserDataScope(user.getUserId());
|
|
|
- user.setPassword(BCrypt.hashpw(user.getPassword()));
|
|
|
- return toAjax(userService.resetUserPwd(user.getUserId(), user.getPassword()));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 状态修改
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:edit")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping("/changeStatus")
|
|
|
- public R<Void> changeStatus(@RequestBody SysUserBo user) {
|
|
|
- userService.checkUserAllowed(user.getUserId());
|
|
|
- userService.checkUserDataScope(user.getUserId());
|
|
|
- return toAjax(userService.updateUserStatus(user.getUserId(), user.getStatus()));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 根据用户编号获取授权角色
|
|
|
- *
|
|
|
- * @param userId 用户ID
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:query")
|
|
|
- @GetMapping("/authRole/{userId}")
|
|
|
- public R<SysUserInfoVo> authRole(@PathVariable Long userId) {
|
|
|
- userService.checkUserDataScope(userId);
|
|
|
- SysUserVo user = userService.selectUserById(userId);
|
|
|
- List<SysRoleVo> roles = roleService.selectRolesAuthByUserId(userId);
|
|
|
- SysUserInfoVo userInfoVo = new SysUserInfoVo();
|
|
|
- userInfoVo.setUser(user);
|
|
|
- userInfoVo.setRoles(LoginHelper.isSuperAdmin(userId) ? roles : StreamUtils.filter(roles, r -> !r.isSuperAdmin()));
|
|
|
- return R.ok(userInfoVo);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 用户授权角色
|
|
|
- *
|
|
|
- * @param userId 用户Id
|
|
|
- * @param roleIds 角色ID串
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:edit")
|
|
|
- @Log(title = "用户管理", businessType = BusinessType.GRANT)
|
|
|
- @PutMapping("/authRole")
|
|
|
- public R<Void> insertAuthRole(Long userId, Long[] roleIds) {
|
|
|
- userService.checkUserDataScope(userId);
|
|
|
- userService.insertUserAuth(userId, roleIds);
|
|
|
- return R.ok();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取部门树列表
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:list")
|
|
|
- @GetMapping("/deptTree")
|
|
|
- public R<List<Tree<Long>>> deptTree(SysDeptBo dept) {
|
|
|
- return R.ok(deptService.selectDeptTreeList(dept));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取部门下的所有用户信息
|
|
|
- */
|
|
|
- @SaCheckPermission("system:user:list")
|
|
|
- @GetMapping("/list/dept/{deptId}")
|
|
|
- public R<List<SysUserVo>> listByDept(@PathVariable @NotNull Long deptId) {
|
|
|
- return R.ok(userService.selectUserListByDept(deptId));
|
|
|
- }
|
|
|
-
|
|
|
-}
|