package com.ruoyi.project.system.role.controller;
|
|
import com.ruoyi.common.constant.UserConstants;
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
import com.ruoyi.common.utils.security.ShiroUtils;
|
import com.ruoyi.framework.aspectj.lang.annotation.Log;
|
import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
|
import com.ruoyi.framework.web.controller.BaseController;
|
import com.ruoyi.framework.web.domain.AjaxResult;
|
import com.ruoyi.framework.web.page.TableDataInfo;
|
import com.ruoyi.project.system.role.domain.Role;
|
import com.ruoyi.project.system.role.service.IRoleService;
|
import com.ruoyi.project.system.user.domain.User;
|
import com.ruoyi.project.system.user.domain.UserRole;
|
import com.ruoyi.project.system.user.service.IUserService;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.ui.ModelMap;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.util.List;
|
|
/**
|
* 角色信息
|
*
|
* @author ruoyi
|
*/
|
@Controller
|
@RequestMapping("/system/role")
|
public class RoleController extends BaseController
|
{
|
private String prefix = "system/role";
|
|
@Autowired
|
private IRoleService roleService;
|
|
@Autowired
|
private IUserService userService;
|
|
@RequiresPermissions("system:role:view")
|
@GetMapping()
|
public String role()
|
{
|
return prefix + "/role";
|
}
|
|
@RequiresPermissions("system:role:list")
|
@PostMapping("/list")
|
@ResponseBody
|
public TableDataInfo list(Role role)
|
{
|
startPage();
|
List<Role> list = roleService.selectRoleList(role);
|
return getDataTable(list);
|
}
|
|
@Log(title = "角色管理", businessType = BusinessType.EXPORT)
|
@RequiresPermissions("system:role:export")
|
@PostMapping("/export")
|
@ResponseBody
|
public AjaxResult export(Role role)
|
{
|
List<Role> list = roleService.selectRoleList(role);
|
ExcelUtil<Role> util = new ExcelUtil<Role>(Role.class);
|
return util.exportExcel(list, "角色数据");
|
}
|
|
/**
|
* 新增角色
|
*/
|
@GetMapping("/add")
|
public String add()
|
{
|
return prefix + "/add";
|
}
|
|
/**
|
* 新增保存角色
|
*/
|
@RequiresPermissions("system:role:add")
|
@Log(title = "角色管理", businessType = BusinessType.INSERT)
|
@PostMapping("/add")
|
@ResponseBody
|
public AjaxResult addSave(@Validated Role role)
|
{
|
if (UserConstants.ROLE_NAME_NOT_UNIQUE.equals(roleService.checkRoleNameUnique(role)))
|
{
|
return error("新增角色'" + role.getRoleName() + "'失败,角色名称已存在");
|
}
|
else if (UserConstants.ROLE_KEY_NOT_UNIQUE.equals(roleService.checkRoleKeyUnique(role)))
|
{
|
return error("新增角色'" + role.getRoleName() + "'失败,角色权限已存在");
|
}
|
return toAjax(roleService.insertRole(role));
|
|
}
|
|
/**
|
* 修改角色
|
*/
|
@GetMapping("/edit/{roleId}")
|
public String edit(@PathVariable("roleId") Long roleId, ModelMap mmap)
|
{
|
mmap.put("role", roleService.selectRoleById(roleId));
|
return prefix + "/edit";
|
}
|
|
/**
|
* 修改保存角色
|
*/
|
@RequiresPermissions("system:role:edit")
|
@Log(title = "角色管理", businessType = BusinessType.UPDATE)
|
@PostMapping("/edit")
|
@ResponseBody
|
public AjaxResult editSave(@Validated Role role)
|
{
|
roleService.checkRoleAllowed(role);
|
if (UserConstants.ROLE_NAME_NOT_UNIQUE.equals(roleService.checkRoleNameUnique(role)))
|
{
|
return error("修改角色'" + role.getRoleName() + "'失败,角色名称已存在");
|
}
|
else if (UserConstants.ROLE_KEY_NOT_UNIQUE.equals(roleService.checkRoleKeyUnique(role)))
|
{
|
return error("修改角色'" + role.getRoleName() + "'失败,角色权限已存在");
|
}
|
return toAjax(roleService.updateRole(role));
|
}
|
|
/**
|
* 角色分配数据权限
|
*/
|
@GetMapping("/authDataScope/{roleId}")
|
public String authDataScope(@PathVariable("roleId") Long roleId, ModelMap mmap)
|
{
|
mmap.put("role", roleService.selectRoleById(roleId));
|
return prefix + "/dataScope";
|
}
|
|
/**
|
* 保存角色分配数据权限
|
*/
|
@RequiresPermissions("system:role:edit")
|
@Log(title = "角色管理", businessType = BusinessType.UPDATE)
|
@PostMapping("/authDataScope")
|
@ResponseBody
|
public AjaxResult authDataScopeSave(Role role)
|
{
|
roleService.checkRoleAllowed(role);
|
if (roleService.authDataScope(role) > 0)
|
{
|
setSysUser(userService.selectUserById(getSysUser().getUserId()));
|
return success();
|
}
|
return error();
|
}
|
|
@RequiresPermissions("system:role:remove")
|
@Log(title = "角色管理", businessType = BusinessType.DELETE)
|
@PostMapping("/remove")
|
@ResponseBody
|
public AjaxResult remove(String ids)
|
{
|
try
|
{
|
return toAjax(roleService.deleteRoleByIds(ids));
|
}
|
catch (Exception e)
|
{
|
return error(e.getMessage());
|
}
|
}
|
|
/**
|
* 校验角色名称
|
*/
|
@PostMapping("/checkRoleNameUnique")
|
@ResponseBody
|
public String checkRoleNameUnique(Role role)
|
{
|
return roleService.checkRoleNameUnique(role);
|
}
|
|
/**
|
* 校验角色权限
|
*/
|
@PostMapping("/checkRoleKeyUnique")
|
@ResponseBody
|
public String checkRoleKeyUnique(Role role)
|
{
|
return roleService.checkRoleKeyUnique(role);
|
}
|
|
/**
|
* 选择菜单树
|
*/
|
@GetMapping("/selectMenuTree")
|
public String selectMenuTree()
|
{
|
return prefix + "/tree";
|
}
|
|
/**
|
* 角色状态修改
|
*/
|
@Log(title = "角色管理", businessType = BusinessType.UPDATE)
|
@RequiresPermissions("system:role:edit")
|
@PostMapping("/changeStatus")
|
@ResponseBody
|
public AjaxResult changeStatus(Role role)
|
{
|
roleService.checkRoleAllowed(role);
|
return toAjax(roleService.changeStatus(role));
|
}
|
|
/**
|
* 分配用户
|
*/
|
@RequiresPermissions("system:role:edit")
|
@GetMapping("/authUser/{roleId}")
|
public String authUser(@PathVariable("roleId") Long roleId, ModelMap mmap)
|
{
|
mmap.put("role", roleService.selectRoleById(roleId));
|
return prefix + "/authUser";
|
}
|
|
/**
|
* 查询已分配用户角色列表
|
*/
|
@RequiresPermissions("system:role:list")
|
@PostMapping("/authUser/allocatedList")
|
@ResponseBody
|
public TableDataInfo allocatedList(User user)
|
{
|
startPage();
|
List<User> list = userService.selectAllocatedList(user);
|
return getDataTable(list);
|
}
|
|
/**
|
* 取消授权
|
*/
|
@Log(title = "角色管理", businessType = BusinessType.GRANT)
|
@PostMapping("/authUser/cancel")
|
@ResponseBody
|
public AjaxResult cancelAuthUser(UserRole userRole)
|
{
|
return toAjax(roleService.deleteAuthUser(userRole));
|
}
|
|
/**
|
* 批量取消授权
|
*/
|
@Log(title = "角色管理", businessType = BusinessType.GRANT)
|
@PostMapping("/authUser/cancelAll")
|
@ResponseBody
|
public AjaxResult cancelAuthUserAll(Long roleId, String userIds)
|
{
|
return toAjax(roleService.deleteAuthUsers(roleId, userIds));
|
}
|
|
/**
|
* 选择用户
|
*/
|
@GetMapping("/authUser/selectUser/{roleId}")
|
public String selectUser(@PathVariable("roleId") Long roleId, ModelMap mmap)
|
{
|
mmap.put("role", roleService.selectRoleById(roleId));
|
return prefix + "/selectUser";
|
}
|
|
/**
|
* 查询未分配用户角色列表
|
*/
|
@RequiresPermissions("system:role:list")
|
@PostMapping("/authUser/unallocatedList")
|
@ResponseBody
|
public TableDataInfo unallocatedList(User user)
|
{
|
startPage();
|
List<User> list = userService.selectUnallocatedList(user);
|
return getDataTable(list);
|
}
|
|
/**
|
* 批量选择用户授权
|
*/
|
@Log(title = "角色管理", businessType = BusinessType.GRANT)
|
@PostMapping("/authUser/selectAll")
|
@ResponseBody
|
public AjaxResult selectAuthUserAll(Long roleId, String userIds)
|
{
|
return toAjax(roleService.insertAuthUsers(roleId, userIds));
|
}
|
|
|
@GetMapping("/roleByCompanyId")
|
public String roleByCompanyId(ModelMap mmap)
|
{
|
mmap.put("companyId", ShiroUtils.getSysUser().getCompanyId());
|
return prefix + "/roleByCompanyId";
|
}
|
|
|
/**
|
* 新增角色
|
*/
|
@GetMapping("/addByCompanyId")
|
public String addByCompanyId(ModelMap mmap)
|
{
|
mmap.put("companyId", ShiroUtils.getSysUser().getCompanyId());
|
return prefix + "/addByCompanyId";
|
}
|
|
|
/**
|
* 修改角色
|
*/
|
@GetMapping("/editByCompanyId/{roleId}")
|
public String editByCompanyId(@PathVariable("roleId") Long roleId, ModelMap mmap)
|
{
|
mmap.put("role", roleService.selectRoleById(roleId));
|
return prefix + "/editByCompanyId";
|
}
|
}
|