|
@@ -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)
|
|
|
}
|