Bläddra i källkod

update tanpa perubahan

athrainsky 1 år sedan
förälder
incheckning
277ae2741c

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

@@ -4,6 +4,7 @@ import com.swagger.rest.models.Platform
 import com.swagger.rest.models.PlatformInput
 import com.swagger.rest.repositories.PlatformRepository
 import com.swagger.rest.repositories.ProjectRepository
+import org.aspectj.asm.internal.ProgramElement.trim
 import org.springframework.http.HttpStatus
 import org.springframework.http.ResponseEntity
 import org.springframework.web.bind.annotation.*
@@ -59,6 +60,7 @@ class PlatformController(
                     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)
                 }
@@ -80,22 +82,12 @@ class PlatformController(
             } else if (targetProject.isEmpty || platformExist.isEmpty) {//target project not found
                 ResponseEntity<Platform>(HttpStatus.NOT_FOUND)
             } else {
-                val savePlatform = platformExist.get()
-                savePlatform.project_id = targetProject.get()
-                savePlatform.name = input.name!!
-                if (input.project_id.toString() !== platformExist.get().project_id.toString()) {
-                    val check = platformRepository.findByName(input.name, input.project_id.toString())
-                    if (check!!.isNotEmpty()) {
-                        ResponseEntity<Platform>(HttpStatus.CONFLICT)
-                    } else {
-                        ResponseEntity<Platform>(platformRepository.save(savePlatform), HttpStatus.OK)
-                    }
-                } else if (input.name !== platformExist.get().name) {
-                    if (targetProject.isEmpty) {
-                        ResponseEntity<Platform>(platformRepository.save(savePlatform), HttpStatus.OK)
-                    } else {
-                        ResponseEntity<Platform>(HttpStatus.CONFLICT)
-                    }
+                val check = platformRepository.findByName(input.name, input.project_id.toString())
+                if (check!!.isEmpty() || (input.name == platformExist.get().name && input.project_id.toString() == platformExist.get().project_id!!.id.toString())) {//tidak ada yg sama
+                    val savePlatform = platformExist.get()
+                    savePlatform.project_id = targetProject.get()
+                    savePlatform.name = trim(input.name!!)
+                    ResponseEntity<Platform>(platformRepository.save(savePlatform), HttpStatus.OK)
                 } else {
                     ResponseEntity<Platform>(HttpStatus.CONFLICT)
                 }

+ 3 - 1
src/main/kotlin/com/swagger/rest/controllers/ProjectController.kt

@@ -3,6 +3,7 @@ package com.swagger.rest.controllers
 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
 import org.springframework.http.HttpStatus
 import org.springframework.http.ResponseEntity
 import org.springframework.web.bind.annotation.*
@@ -50,6 +51,7 @@ class ProjectController(
                 } else if (found > 0) {//duplicate
                     ResponseEntity<Project>(HttpStatus.CONFLICT)
                 } else {
+                    project.name = trim(project.name)
                     val saveProject: Project = projectRepository.save(project)
                     ResponseEntity<Project>(saveProject, HttpStatus.CREATED)
                 }
@@ -71,7 +73,7 @@ class ProjectController(
             } else if (projectData.isPresent) {
                 if ((project.name == projectData.get().name && found > 0) || (project.name !== projectData.get().name && found == 0)) {
                     val saveProject = projectData.get()
-                    saveProject.name = project.name
+                    saveProject.name = trim(project.name)
                     saveProject.description = project.description
                     ResponseEntity<Any?>(projectRepository.save(saveProject), HttpStatus.OK)
                 } else {//duplicate