Sfoglia il codice sorgente

1. get kosong return array kosong
2. post nda pake query tapi masuk request body

athrainsky 1 anno fa
parent
commit
779759f089

+ 16 - 13
src/main/kotlin/com/swagger/rest/controllers/PlatformController.kt

@@ -2,6 +2,7 @@ package com.swagger.rest.controllers
 
 import com.swagger.rest.models.Platform
 import com.swagger.rest.models.PlatformInput
+import com.swagger.rest.models.Project
 import com.swagger.rest.repositories.PlatformRepository
 import com.swagger.rest.repositories.ProjectRepository
 import org.aspectj.asm.internal.ProgramElement.trim
@@ -18,7 +19,7 @@ class PlatformController(
 ) {
 
     @GetMapping("/platforms")
-    fun getPlatformByProjectId(@RequestParam(required = false) project: String?): ResponseEntity<List<Platform>?> {
+    fun getPlatformByProjectId(@RequestParam(required = false) project: String?): Any? {
         return try {
             val platforms: List<Platform> =
                 if (project == null) {
@@ -26,9 +27,11 @@ class PlatformController(
                 } else {
                     platformRepository.findByProject(project) as List<Platform>
                 }
-            if (platforms.isEmpty()) {
-                ResponseEntity<List<Platform>?>(HttpStatus.NO_CONTENT)
-            } else ResponseEntity<List<Platform>?>(platforms, HttpStatus.OK)
+            if (platforms.isNotEmpty()) {
+                ResponseEntity<List<Platform>?>(platforms, HttpStatus.OK)
+            } else {
+                arrayOf<String>()
+            }
         } catch (e: Exception) {
             ResponseEntity<List<Platform>?>(null, HttpStatus.INTERNAL_SERVER_ERROR)
         }
@@ -46,23 +49,23 @@ class PlatformController(
 
     @PostMapping("/platforms")
     fun addPlatformByProjectId(
-        @RequestBody platform: Platform, @RequestParam project: String
+        @RequestBody platform: PlatformInput
     ): ResponseEntity<Platform> {
         return try {
-            val found = platformRepository.findByName(platform.name, project)!!.size
-            val foundProject = projectRepository.findById(project.toLong()).isPresent
-            if (platform.name.isNotBlank()) {
+            val found = platformRepository.findByName(platform.name, platform.project_id.toString())!!.size
+            val foundProject = projectRepository.findById(platform.project_id!!.toLong()).isPresent
+            if (platform.name!!.isNotBlank()) {
                 if (!foundProject) {//project not found
                     ResponseEntity<Platform>(HttpStatus.NOT_FOUND)
-                } else if (platform.name.length > 100) {//too long
+                } else if (platform.name!!.length > 100) {//too long
                     ResponseEntity<Platform>(HttpStatus.PAYLOAD_TOO_LARGE)
                 } else if (found > 0) {//duplicate
                     ResponseEntity<Platform>(HttpStatus.CONFLICT)
                 } else {
-                    platform.project_id = projectRepository.findById(project.toLong()).get()
-                    platform.name = trim(platform.name)
-                    val savePlatform: Platform = platformRepository.save(platform)
-                    ResponseEntity<Platform>(savePlatform, HttpStatus.CREATED)
+                    val newPlatform = Platform()
+                    newPlatform.name = trim(platform.name)
+                    newPlatform.project_id = projectRepository.findById(platform.project_id!!).get()
+                    ResponseEntity<Platform>(platformRepository.save(newPlatform), HttpStatus.CREATED)
                 }
             } else {//invalid name
                 ResponseEntity<Platform>(HttpStatus.BAD_REQUEST)

+ 3 - 9
swagger3 project.yml

@@ -108,21 +108,12 @@ paths:
                 type: array
                 items: 
                   $ref: '#/components/schemas/Platform'
-        204:
-          $ref: '#/components/responses/204'
     post:
       tags: 
       - platforms
       summary: Add new platform for a project
       description: add new platform for a project
       operationId: addPlatformByProjectId
-      parameters: 
-        - name: project
-          in: query
-          description: Project ID
-          required: true
-          schema:
-            type: integer
       requestBody:
         description: Platform object
         required: true
@@ -134,6 +125,9 @@ paths:
                 name:
                   type: string
                   example: web
+                project_id:
+                  type: integer
+                  example: 1
       responses:
         201:
           description: record successfully added