DeptController.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Copyright 2019-2020 Zheng Jie
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package me.zhengjie.modules.system.rest;
  17. import cn.hutool.core.collection.CollectionUtil;
  18. import io.swagger.annotations.Api;
  19. import io.swagger.annotations.ApiOperation;
  20. import lombok.RequiredArgsConstructor;
  21. import me.zhengjie.annotation.Log;
  22. import me.zhengjie.exception.BadRequestException;
  23. import me.zhengjie.modules.system.domain.Dept;
  24. import me.zhengjie.modules.system.service.DeptService;
  25. import me.zhengjie.modules.system.service.dto.DeptDto;
  26. import me.zhengjie.modules.system.service.dto.DeptQueryCriteria;
  27. import me.zhengjie.utils.PageUtil;
  28. import org.springframework.data.domain.Pageable;
  29. import org.springframework.data.domain.Sort;
  30. import org.springframework.data.web.PageableDefault;
  31. import org.springframework.data.web.SortDefault;
  32. import org.springframework.http.HttpStatus;
  33. import org.springframework.http.ResponseEntity;
  34. import org.springframework.security.access.prepost.PreAuthorize;
  35. import org.springframework.validation.annotation.Validated;
  36. import org.springframework.web.bind.annotation.*;
  37. import javax.servlet.http.HttpServletResponse;
  38. import java.util.*;
  39. /**
  40. * @author Zheng Jie
  41. * @date 2019-03-25
  42. */
  43. @RestController
  44. @RequiredArgsConstructor
  45. @Api(tags = "系统:部门管理")
  46. @RequestMapping("/api/dept")
  47. public class DeptController {
  48. private final DeptService deptService;
  49. private static final String ENTITY_NAME = "dept";
  50. @ApiOperation("导出部门数据")
  51. @GetMapping(value = "/download")
  52. @PreAuthorize("@el.check('dept:list')")
  53. public void download(HttpServletResponse response, DeptQueryCriteria criteria) throws Exception {
  54. deptService.download(deptService.queryAll(criteria, false), response);
  55. }
  56. @ApiOperation("查询部门")
  57. @GetMapping
  58. @PreAuthorize("@el.check('user:list','dept:list')")
  59. public ResponseEntity<Object> query(DeptQueryCriteria criteria,
  60. String[] sort
  61. ) throws Exception {
  62. // List<DeptDto> deptDtos = deptService.queryAll2(criteria, sort,true);
  63. List<DeptDto> deptDtos = deptService.queryAll(criteria, true);
  64. return new ResponseEntity<>(PageUtil.toPage(deptDtos, deptDtos.size()),HttpStatus.OK);
  65. }
  66. @ApiOperation("查询部门:根据ID获取同级与上级数据")
  67. @PostMapping("/superior")
  68. @PreAuthorize("@el.check('user:list','dept:list')")
  69. public ResponseEntity<Object> getSuperior(@RequestBody List<Long> ids) {
  70. Set<DeptDto> deptDtos = new LinkedHashSet<>();
  71. for (Long id : ids) {
  72. DeptDto deptDto = deptService.findById(id);
  73. List<DeptDto> depts = deptService.getSuperior(deptDto, new ArrayList<>());
  74. deptDtos.addAll(depts);
  75. }
  76. return new ResponseEntity<>(deptService.buildTree(new ArrayList<>(deptDtos)),HttpStatus.OK);
  77. }
  78. @Log("新增部门")
  79. @ApiOperation("新增部门")
  80. @PostMapping
  81. @PreAuthorize("@el.check('dept:add')")
  82. public ResponseEntity<Object> create(@Validated @RequestBody Dept resources){
  83. if (resources.getId() != null) {
  84. throw new BadRequestException("A new "+ ENTITY_NAME +" cannot already have an ID");
  85. }
  86. deptService.create(resources);
  87. return new ResponseEntity<>(HttpStatus.CREATED);
  88. }
  89. @Log("修改部门")
  90. @ApiOperation("修改部门")
  91. @PutMapping
  92. @PreAuthorize("@el.check('dept:edit')")
  93. public ResponseEntity<Object> update(@Validated(Dept.Update.class) @RequestBody Dept resources){
  94. deptService.update(resources);
  95. return new ResponseEntity<>(HttpStatus.NO_CONTENT);
  96. }
  97. @Log("删除部门")
  98. @ApiOperation("删除部门")
  99. @DeleteMapping
  100. @PreAuthorize("@el.check('dept:del')")
  101. public ResponseEntity<Object> delete(@RequestBody Set<Long> ids){
  102. Set<DeptDto> deptDtos = new HashSet<>();
  103. for (Long id : ids) {
  104. List<Dept> deptList = deptService.findByPid(id);
  105. deptDtos.add(deptService.findById(id));
  106. if(CollectionUtil.isNotEmpty(deptList)){
  107. deptDtos = deptService.getDeleteDepts(deptList, deptDtos);
  108. }
  109. }
  110. // 验证是否被角色或用户关联
  111. deptService.verification(deptDtos);
  112. Map<String,Object> map = deptService.delete(deptDtos);
  113. return new ResponseEntity<>(map, HttpStatus.OK);
  114. }
  115. }