package cn.lihu.jh.module.system.controller.admin.permission; 
 | 
  
 | 
import cn.lihu.jh.framework.apilog.core.annotation.ApiAccessLog; 
 | 
import cn.lihu.jh.framework.common.enums.CommonStatusEnum; 
 | 
import cn.lihu.jh.framework.common.pojo.CommonResult; 
 | 
import cn.lihu.jh.framework.common.pojo.PageParam; 
 | 
import cn.lihu.jh.framework.common.pojo.PageResult; 
 | 
import cn.lihu.jh.framework.common.util.object.BeanUtils; 
 | 
import cn.lihu.jh.framework.excel.core.util.ExcelUtils; 
 | 
import cn.lihu.jh.module.system.controller.admin.permission.vo.role.*; 
 | 
import cn.lihu.jh.module.system.dal.dataobject.permission.RoleDO; 
 | 
import cn.lihu.jh.module.system.service.permission.RoleService; 
 | 
import io.swagger.v3.oas.annotations.Operation; 
 | 
import io.swagger.v3.oas.annotations.Parameter; 
 | 
import io.swagger.v3.oas.annotations.tags.Tag; 
 | 
import org.springframework.security.access.prepost.PreAuthorize; 
 | 
import org.springframework.validation.annotation.Validated; 
 | 
import org.springframework.web.bind.annotation.*; 
 | 
  
 | 
import javax.annotation.Resource; 
 | 
import javax.servlet.http.HttpServletResponse; 
 | 
import javax.validation.Valid; 
 | 
import java.io.IOException; 
 | 
import java.util.Comparator; 
 | 
import java.util.List; 
 | 
  
 | 
import static cn.lihu.jh.framework.apilog.core.enums.OperateTypeEnum.EXPORT; 
 | 
import static cn.lihu.jh.framework.common.pojo.CommonResult.success; 
 | 
import static java.util.Collections.singleton; 
 | 
  
 | 
@Tag(name = "管理后台 - 角色") 
 | 
@RestController 
 | 
@RequestMapping("/system/role") 
 | 
@Validated 
 | 
public class RoleController { 
 | 
  
 | 
    @Resource 
 | 
    private RoleService roleService; 
 | 
  
 | 
    @PostMapping("/create") 
 | 
    @Operation(summary = "创建角色") 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:create')") 
 | 
    public CommonResult<Long> createRole(@Valid @RequestBody RoleSaveReqVO createReqVO) { 
 | 
        return success(roleService.createRole(createReqVO, null)); 
 | 
    } 
 | 
  
 | 
    @PutMapping("/update") 
 | 
    @Operation(summary = "修改角色") 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:update')") 
 | 
    public CommonResult<Boolean> updateRole(@Valid @RequestBody RoleSaveReqVO updateReqVO) { 
 | 
        roleService.updateRole(updateReqVO); 
 | 
        return success(true); 
 | 
    } 
 | 
  
 | 
    @DeleteMapping("/delete") 
 | 
    @Operation(summary = "删除角色") 
 | 
    @Parameter(name = "id", description = "角色编号", required = true, example = "1024") 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:delete')") 
 | 
    public CommonResult<Boolean> deleteRole(@RequestParam("id") Long id) { 
 | 
        roleService.deleteRole(id); 
 | 
        return success(true); 
 | 
    } 
 | 
  
 | 
    @GetMapping("/get") 
 | 
    @Operation(summary = "获得角色信息") 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:query')") 
 | 
    public CommonResult<RoleRespVO> getRole(@RequestParam("id") Long id) { 
 | 
        RoleDO role = roleService.getRole(id); 
 | 
        return success(BeanUtils.toBean(role, RoleRespVO.class)); 
 | 
    } 
 | 
  
 | 
    @GetMapping("/page") 
 | 
    @Operation(summary = "获得角色分页") 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:query')") 
 | 
    public CommonResult<PageResult<RoleRespVO>> getRolePage(RolePageReqVO pageReqVO) { 
 | 
        PageResult<RoleDO> pageResult = roleService.getRolePage(pageReqVO); 
 | 
        return success(BeanUtils.toBean(pageResult, RoleRespVO.class)); 
 | 
    } 
 | 
  
 | 
    @GetMapping({"/list-all-simple", "/simple-list"}) 
 | 
    @Operation(summary = "获取角色精简信息列表", description = "只包含被开启的角色,主要用于前端的下拉选项") 
 | 
    public CommonResult<List<RoleRespVO>> getSimpleRoleList() { 
 | 
        List<RoleDO> list = roleService.getRoleListByStatus(singleton(CommonStatusEnum.ENABLE.getStatus())); 
 | 
        list.sort(Comparator.comparing(RoleDO::getSort)); 
 | 
        return success(BeanUtils.toBean(list, RoleRespVO.class)); 
 | 
    } 
 | 
  
 | 
    @GetMapping("/export-excel") 
 | 
    @Operation(summary = "导出角色 Excel") 
 | 
    @ApiAccessLog(operateType = EXPORT) 
 | 
    @PreAuthorize("@ss.hasPermission('system:role:export')") 
 | 
    public void export(HttpServletResponse response, @Validated RolePageReqVO exportReqVO) throws IOException { 
 | 
        exportReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); 
 | 
        List<RoleDO> list = roleService.getRolePage(exportReqVO).getList(); 
 | 
        // 输出 
 | 
        ExcelUtils.write(response, "角色数据.xls", "数据", RoleRespVO.class, 
 | 
                BeanUtils.toBean(list, RoleRespVO.class)); 
 | 
    } 
 | 
  
 | 
} 
 |