| | |
| | | import cn.hutool.core.lang.Dict; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.oying.modules.system.domain.Role; |
| | | import com.oying.utils.R; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.Collections; |
| | |
| | | @ApiOperation("获取单个role") |
| | | @GetMapping(value = "/{id}") |
| | | @PreAuthorize("@el.check('roles:list')") |
| | | public ResponseEntity<Role> findRoleById(@PathVariable Long id){ |
| | | return new ResponseEntity<>(roleService.findById(id), HttpStatus.OK); |
| | | public ResponseEntity<Object> findRoleById(@PathVariable Long id) { |
| | | return new ResponseEntity<>(R.success(roleService.findById(id)), HttpStatus.OK); |
| | | } |
| | | |
| | | @ApiOperation("导出角色数据") |
| | |
| | | @ApiOperation("返回全部的角色") |
| | | @GetMapping(value = "/all") |
| | | @PreAuthorize("@el.check('roles:list','user:add','user:edit')") |
| | | public ResponseEntity<List<Role>> queryAllRole(){ |
| | | return new ResponseEntity<>(roleService.queryAll(),HttpStatus.OK); |
| | | public ResponseEntity<Object> queryAllRole() { |
| | | return new ResponseEntity<>(R.success(roleService.queryAll()), HttpStatus.OK); |
| | | } |
| | | |
| | | @ApiOperation("查询角色") |
| | | @GetMapping |
| | | @PreAuthorize("@el.check('roles:list')") |
| | | public ResponseEntity<PageResult<Role>> queryRole(RoleQueryCriteria criteria){ |
| | | public ResponseEntity<Object> queryRole(RoleQueryCriteria criteria) { |
| | | Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize()); |
| | | return new ResponseEntity<>(roleService.queryAll(criteria, page),HttpStatus.OK); |
| | | return new ResponseEntity<>(R.success(roleService.queryAll(criteria, page)), HttpStatus.OK); |
| | | } |
| | | |
| | | @ApiOperation("获取用户级别") |
| | | @GetMapping(value = "/level") |
| | | public ResponseEntity<Object> getRoleLevel(){ |
| | | return new ResponseEntity<>(Dict.create().set("level", getLevels(null)),HttpStatus.OK); |
| | | return new ResponseEntity<>(R.success(Dict.create().set("level", getLevels(null))), HttpStatus.OK); |
| | | } |
| | | |
| | | @Log("新增角色") |
| | |
| | | } |
| | | getLevels(resources.getLevel()); |
| | | roleService.create(resources); |
| | | return new ResponseEntity<>(HttpStatus.CREATED); |
| | | return new ResponseEntity<>(R.success(), HttpStatus.CREATED); |
| | | } |
| | | |
| | | @Log("修改角色") |
| | |
| | | public ResponseEntity<Object> updateRole(@Validated(Role.Update.class) @RequestBody Role resources){ |
| | | getLevels(resources.getLevel()); |
| | | roleService.update(resources); |
| | | return new ResponseEntity<>(HttpStatus.NO_CONTENT); |
| | | return new ResponseEntity<>(R.success(), HttpStatus.NO_CONTENT); |
| | | } |
| | | |
| | | @Log("修改角色菜单") |
| | |
| | | Role role = roleService.getById(resources.getId()); |
| | | getLevels(role.getLevel()); |
| | | roleService.updateMenu(resources); |
| | | return new ResponseEntity<>(HttpStatus.NO_CONTENT); |
| | | return new ResponseEntity<>(R.success(), HttpStatus.NO_CONTENT); |
| | | } |
| | | |
| | | @Log("删除角色") |
| | |
| | | // 验证是否被用户关联 |
| | | roleService.verification(ids); |
| | | roleService.delete(ids); |
| | | return new ResponseEntity<>(HttpStatus.OK); |
| | | return new ResponseEntity<>(R.success(), HttpStatus.OK); |
| | | } |
| | | |
| | | /** |
| | | * 获取用户的角色级别 |
| | | * |
| | | * @return / |
| | | */ |
| | | private int getLevels(Integer level){ |