PlatformController.kt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. package com.swagger.rest.controllers
  2. import com.swagger.rest.models.Bug
  3. import com.swagger.rest.models.Platform
  4. import com.swagger.rest.models.PlatformInput
  5. import com.swagger.rest.models.PlatformOutput
  6. import com.swagger.rest.repositories.*
  7. import jakarta.persistence.criteria.Predicate
  8. import org.springframework.data.domain.PageRequest
  9. import org.springframework.data.domain.Pageable
  10. import org.springframework.data.domain.Sort
  11. import org.springframework.data.jpa.domain.Specification
  12. import org.springframework.http.HttpStatus
  13. import org.springframework.http.ResponseEntity
  14. import org.springframework.security.core.context.SecurityContextHolder
  15. import org.springframework.web.bind.annotation.*
  16. @RestController
  17. @RequestMapping("/api/v1")
  18. class PlatformController(
  19. private val platformRepository: PlatformRepository,
  20. private val projectRepository: ProjectRepository,
  21. private val memberRepository: MemberRepository,
  22. private val userRepository: UserRepository,
  23. private val bugRepository: BugRepository
  24. ) {
  25. private fun getSortDirection(direction: String): Sort.Direction {
  26. if (direction == "asc") {
  27. return Sort.Direction.ASC
  28. } else if (direction == "desc") {
  29. return Sort.Direction.DESC
  30. }
  31. return Sort.Direction.ASC
  32. }
  33. @GetMapping("/platforms")
  34. fun getPlatformByProjectId(
  35. @RequestParam(required = false) project: String? = "",
  36. @RequestParam(defaultValue = 0.toString()) page: Int,
  37. @RequestParam(defaultValue = 3.toString()) limit: Int,
  38. @RequestParam(defaultValue = "platform_id, desc") sort: Array<String>
  39. ): Any {
  40. return try {
  41. val userId = userRepository.getUserByUsername(SecurityContextHolder.getContext().authentication.name)
  42. val orders: MutableList<Sort.Order> = ArrayList()
  43. val column = listOf("platform_id", "name", "project_id")
  44. val sort2 = if (!sort.contains(",")) {
  45. sort + ",desc"
  46. } else {
  47. sort
  48. }
  49. if (!column.contains(sort2[0])) {
  50. ResponseEntity<Platform>(HttpStatus.BAD_REQUEST)
  51. } else {
  52. if (sort2[0].contains(",")) {
  53. // will sort more than 2 fields
  54. // sortOrder="field, direction"
  55. for (sortOrder in sort2) {
  56. val _sort = sortOrder.split(",".toRegex()).dropLastWhile { it.isEmpty() }.toTypedArray()
  57. orders.add(Sort.Order(getSortDirection(_sort[1]), _sort[0]))
  58. }
  59. } else {
  60. // sort=[field, direction]
  61. orders.add(Sort.Order(getSortDirection(sort2[1]), sort2[0]))
  62. }
  63. val pagingSort: Pageable = PageRequest.of(page, limit, Sort.by(orders as List<Sort.Order>))
  64. val platforms = if (project == null) {
  65. platformRepository.findOwnerOrMember(userId.id.toString(), "", pagingSort)
  66. } else {
  67. platformRepository.findOwnerOrMember(userId.id.toString(), project, pagingSort)
  68. }
  69. // val platforms = platformRepository.findOwnerOrMember(userId.id.toString(), project, pagingSort)
  70. val output = platforms.map {
  71. PlatformOutput(
  72. id = it.id, name = it.name, project = it.project!!.description
  73. )
  74. }
  75. val ret: List<PlatformOutput?> = output.content
  76. val response: MutableMap<String, Any> = HashMap()
  77. response["currentPage"] = platforms.number
  78. response["totalRecord"] = platforms.totalElements
  79. response["totalPage"] = platforms.totalPages
  80. response["results"] = ret
  81. if (ret.isNotEmpty()) {
  82. ResponseEntity(response, HttpStatus.OK)
  83. } else {
  84. arrayOf<String>()
  85. }
  86. }
  87. } catch (e: Exception) {
  88. e.printStackTrace()
  89. ResponseEntity(e, HttpStatus.INTERNAL_SERVER_ERROR)
  90. }
  91. }
  92. @GetMapping("/platforms/{id}")
  93. fun getPlatformById(@PathVariable("id") id: Long): Any {
  94. val platformData = platformRepository.findById(id)
  95. val output = platformData.map {
  96. PlatformOutput(
  97. id = it.id, name = it.name, project = it.project!!.description
  98. )
  99. }
  100. return if (platformData.isPresent) {
  101. ResponseEntity<PlatformOutput>(output.get(), HttpStatus.OK)
  102. } else {
  103. ResponseEntity<PlatformOutput>(HttpStatus.NOT_FOUND)
  104. }
  105. }
  106. @PostMapping("/platforms")
  107. fun addPlatformByProjectId(
  108. @RequestBody platform: PlatformInput
  109. ): Any {
  110. val proj = (projectRepository.countByName(platform.project_name))
  111. return if (proj > 0 && platform.project_name!!.isNotBlank()) {
  112. val foundProject = projectRepository.findByName(platform.project_name)
  113. val found = platformRepository.findByName(platform.name, foundProject.id.toString()).size
  114. val userId = userRepository.getUserByUsername(SecurityContextHolder.getContext().authentication.name)
  115. val validOwner = projectRepository.validOwner(foundProject.id.toString(), userId.id.toString())
  116. val validAdmin = memberRepository.validRole(foundProject.id.toString(), userId.id.toString(), "2")
  117. if (validOwner > 0 || validAdmin > 0) {
  118. if (platform.name!!.isNotBlank()) {
  119. if (platform.name!!.length > 100) {//too long
  120. ResponseEntity<Platform>(HttpStatus.PAYLOAD_TOO_LARGE)
  121. } else if (found > 0) {//duplicate
  122. ResponseEntity<Platform>(HttpStatus.CONFLICT)
  123. } else {
  124. val newPlatform = Platform()
  125. newPlatform.name = platform.name!!.trim()
  126. newPlatform.project = foundProject
  127. val save = platformRepository.save(newPlatform)
  128. if (listOf(save).isNotEmpty()) {
  129. val output = PlatformOutput(
  130. id = newPlatform.id,
  131. name = newPlatform.name,
  132. project = newPlatform.project!!.description
  133. )
  134. ResponseEntity(output, HttpStatus.CREATED)
  135. } else {
  136. ResponseEntity(null, HttpStatus.INTERNAL_SERVER_ERROR)
  137. }
  138. }
  139. } else {//invalid name
  140. ResponseEntity<Platform>(HttpStatus.BAD_REQUEST)
  141. }
  142. } else {
  143. ResponseEntity<Platform>(HttpStatus.FORBIDDEN)
  144. }
  145. } else {
  146. ResponseEntity<Platform>(HttpStatus.NOT_FOUND)
  147. }
  148. }
  149. @PutMapping("/platforms/{id}")
  150. fun updatePlatformById(@PathVariable("id") id: Long, @RequestBody input: PlatformInput): Any {
  151. val targetProj = projectRepository.countByName(input.project_name)
  152. return if (targetProj > 0) {
  153. val targetProject = projectRepository.findByName(input.project_name)//target project
  154. val platformExist = platformRepository.findById(id)//exist data
  155. val userId = userRepository.getUserByUsername(SecurityContextHolder.getContext().authentication.name)
  156. val validOwner = projectRepository.validOwner(targetProject.id.toString(), userId.id.toString())
  157. val validAdmin = memberRepository.validRole(targetProject.id.toString(), userId.id.toString(), "2")
  158. if (validOwner > 0 || validAdmin > 0) {
  159. if (input.name!!.isNotBlank()) {
  160. if (input.name!!.length > 100) {//too long
  161. ResponseEntity<Platform>(HttpStatus.PAYLOAD_TOO_LARGE)
  162. } else if (targetProject.name.isEmpty() || platformExist.isEmpty) {//target project not found
  163. ResponseEntity<Platform>(HttpStatus.NOT_FOUND)
  164. } else {
  165. val check = platformRepository.findByName(input.name, targetProject.id.toString())
  166. if (check.isEmpty() || (input.name == platformExist.get().name && targetProject.id.toString() == platformExist.get().project!!.id.toString())) {//tidak ada yg sama
  167. val savePlatform = platformExist.get()
  168. savePlatform.project = targetProject
  169. savePlatform.name = input.name!!.trim()
  170. ResponseEntity<Platform>(platformRepository.save(savePlatform), HttpStatus.OK)
  171. } else {
  172. ResponseEntity<Platform>(HttpStatus.CONFLICT)
  173. }
  174. }
  175. } else {
  176. ResponseEntity<Platform>(HttpStatus.BAD_REQUEST)
  177. }
  178. } else {//invalid name
  179. ResponseEntity<Platform>(HttpStatus.FORBIDDEN)
  180. }
  181. } else {
  182. ResponseEntity<Platform>(HttpStatus.NOT_FOUND)
  183. }
  184. }
  185. @DeleteMapping("/platforms/{id}")
  186. fun deletePlatformById(@PathVariable("id") id: Long): Any {
  187. val count = platformRepository.findById(id).isPresent
  188. return try {
  189. if (count) {
  190. val find = platformRepository.findById(id).get()
  191. val spec = Specification<Bug> { root, _, builder ->
  192. val list: MutableList<Predicate> = mutableListOf()
  193. list.add(builder.equal(root.get<Platform>("platform").get<Long>("id"), find.id))
  194. builder.and(*list.toTypedArray())
  195. }
  196. val used = bugRepository.count(spec)
  197. val userId = userRepository.getUserByUsername(SecurityContextHolder.getContext().authentication.name)
  198. val validOwner = projectRepository.validOwner(find.project!!.id.toString(), userId.id.toString())
  199. val validAdmin =
  200. memberRepository.validRole(find.project!!.id.toString(), userId.id.toString(), "2")
  201. if (validOwner > 0 || validAdmin > 0) {
  202. if (used > 0) {
  203. ResponseEntity(HttpStatus.RESET_CONTENT)
  204. } else if (listOf(find).isNotEmpty()) {
  205. platformRepository.deleteById(id)
  206. ResponseEntity(HttpStatus.OK)
  207. } else {
  208. ResponseEntity(HttpStatus.NOT_FOUND)
  209. }
  210. } else {
  211. ResponseEntity(HttpStatus.FORBIDDEN)
  212. }
  213. } else {
  214. ResponseEntity(HttpStatus.NOT_FOUND)
  215. }
  216. } catch (e: Exception) {
  217. e.printStackTrace()
  218. ResponseEntity(e, HttpStatus.INTERNAL_SERVER_ERROR)
  219. }
  220. }
  221. }