Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / selfservice-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / selfservice / api / utils / Utils.kt
1 /*
2  * Copyright (C) 2019 Bell Canada.
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 org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api.utils
17
18 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
19 import org.springframework.http.HttpStatus
20 import org.springframework.http.codec.multipart.FilePart
21 import org.springframework.util.StringUtils
22 import java.io.File
23 import java.io.IOException
24 import java.nio.file.Path
25 import java.util.UUID
26
27 const val INTERNAL_SERVER_ERROR_HTTP_STATUS_CODE = 500
28
29 @Throws(BluePrintException::class, IOException::class)
30 fun saveCBAFile(filePart: FilePart, targetDirectory: Path): Path {
31
32     val fileName = StringUtils.cleanPath(filePart.filename())
33
34     if (StringUtils.getFilenameExtension(fileName) != "zip") {
35         throw BluePrintException("Invalid file extension required ZIP")
36     }
37
38     val changedFileName = UUID.randomUUID().toString() + ".zip"
39
40     val targetLocation = targetDirectory.resolve(changedFileName)
41
42     val file = File(targetLocation.toString())
43     if (file.exists()) {
44         file.delete()
45     }
46     file.createNewFile()
47
48     filePart.transferTo(file)
49
50     return targetLocation
51 }
52
53 fun determineHttpStatusCode(statusCode: Int): HttpStatus {
54
55     try {
56         return HttpStatus.valueOf(statusCode)
57     } catch (exception: Exception) {
58         // if statusCode cannot be converted to a proper HttpStatus, the resource still needs to assign a HTTP status
59         // code to the response. In this case, a 500 Internal Server Error will be returned as default.
60         return HttpStatus.valueOf(INTERNAL_SERVER_ERROR_HTTP_STATUS_CODE)
61     }
62 }