package com.luckyframe.project.system.role.controller; import java.util.List; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.transaction.annotation.Transactional; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import com.luckyframe.common.utils.poi.ExcelUtil; import com.luckyframe.framework.aspectj.lang.annotation.Log; import com.luckyframe.framework.aspectj.lang.enums.BusinessType; import com.luckyframe.framework.web.controller.BaseController; import com.luckyframe.framework.web.domain.AjaxResult; import com.luckyframe.framework.web.page.TableDataInfo; import com.luckyframe.project.system.project.service.IProjectService; import com.luckyframe.project.system.role.domain.Role; import com.luckyframe.project.system.role.service.IRoleService; /** * 角色信息 * * @author ruoyi */ @Controller @RequestMapping("/system/role") public class RoleController extends BaseController { @Autowired private IRoleService roleService; @Autowired private IProjectService projectService; @RequiresPermissions("system:role:view") @GetMapping() public String role() { return "system/role/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.class); return util.exportExcel(list, "角色数据"); } /** * 新增角色 */ @GetMapping("/add") public String add(ModelMap mmap) { mmap.put("projects", projectService.selectProjectAll(0)); return "system/role/add"; } /** * 新增保存角色 */ @RequiresPermissions("system:role:add") @Log(title = "角色管理", businessType = BusinessType.INSERT) @PostMapping("/add") @Transactional(rollbackFor = Exception.class) @ResponseBody public AjaxResult addSave(Role role) { return toAjax(roleService.insertRole(role)); } /** * 修改角色 */ @GetMapping("/edit/{roleId}") public String edit(@PathVariable("roleId") Long roleId, ModelMap mmap) { mmap.put("projects", projectService.selectProjectsByRoleId(roleId.intValue())); mmap.put("role", roleService.selectRoleById(roleId)); return "system/role/edit"; } /** * 修改保存角色 */ @RequiresPermissions("system:role:edit") @Log(title = "角色管理", businessType = BusinessType.UPDATE) @PostMapping("/edit") @Transactional(rollbackFor = Exception.class) @ResponseBody public AjaxResult editSave(Role role) { return toAjax(roleService.updateRole(role)); } /** * 新增数据权限 */ @GetMapping("/rule/{roleId}") public String rule(@PathVariable("roleId") Long roleId, ModelMap mmap) { mmap.put("role", roleService.selectRoleById(roleId)); return "system/role/rule"; } /** * 修改保存数据权限 */ @RequiresPermissions("system:role:edit") @Log(title = "角色管理", businessType = BusinessType.UPDATE) @PostMapping("/rule") @Transactional(rollbackFor = Exception.class) @ResponseBody public AjaxResult ruleSave(Role role) { return toAjax(roleService.updateRule(role)); } @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 "system/role/tree"; } /** * 角色状态修改 */ @Log(title = "角色管理", businessType = BusinessType.UPDATE) @RequiresPermissions("system:role:edit") @PostMapping("/changeStatus") @ResponseBody public AjaxResult changeStatus(Role role) { return toAjax(roleService.changeStatus(role)); } }