0eb29f4cc875baf39563f498663c90b27d1116a0
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2019 Bell Canada Intellectual Property.
3  * Modifications Copyright © 2019 IBM.
4  * Modifications Copyright © 2019 Orange.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api
20
21 import io.swagger.annotations.ApiOperation
22 import io.swagger.annotations.ApiParam
23 import org.jetbrains.annotations.NotNull
24 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModelSearch
25 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.handler.BluePrintModelHandler
26 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.utils.BlueprintSortByOption
27 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.monoMdc
28 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
29 import org.springframework.core.io.Resource
30 import org.springframework.data.domain.Page
31 import org.springframework.data.domain.PageRequest
32 import org.springframework.data.domain.Sort
33 import org.springframework.http.HttpStatus
34 import org.springframework.http.MediaType
35 import org.springframework.http.ResponseEntity
36 import org.springframework.http.codec.multipart.FilePart
37 import org.springframework.security.access.prepost.PreAuthorize
38 import org.springframework.web.bind.annotation.DeleteMapping
39 import org.springframework.web.bind.annotation.GetMapping
40 import org.springframework.web.bind.annotation.PathVariable
41 import org.springframework.web.bind.annotation.PostMapping
42 import org.springframework.web.bind.annotation.RequestBody
43 import org.springframework.web.bind.annotation.RequestMapping
44 import org.springframework.web.bind.annotation.RequestParam
45 import org.springframework.web.bind.annotation.RequestPart
46 import org.springframework.web.bind.annotation.ResponseBody
47 import org.springframework.web.bind.annotation.RestController
48 import reactor.core.publisher.Mono
49
50 /**
51  * BlueprintModelController Purpose: Handle controllerBlueprint API request
52  *
53  * @author Vinal Patel
54  * @version 1.0
55  */
56 @RestController
57 @RequestMapping("/api/v1/blueprint-model")
58 open class BlueprintModelController(private val bluePrintModelHandler: BluePrintModelHandler) {
59
60     @PostMapping(
61         path = arrayOf("/bootstrap"), produces = arrayOf(MediaType.APPLICATION_JSON_VALUE),
62         consumes = arrayOf(MediaType.APPLICATION_JSON_VALUE)
63     )
64     @ResponseBody
65     @Throws(BluePrintException::class)
66     @PreAuthorize("hasRole('USER')")
67     fun bootstrap(@RequestBody bootstrapRequest: BootstrapRequest): Mono<Unit> = monoMdc {
68         bluePrintModelHandler.bootstrapBlueprint(bootstrapRequest)
69     }
70
71     @PostMapping("", produces = [MediaType.APPLICATION_JSON_VALUE], consumes = [MediaType.MULTIPART_FORM_DATA_VALUE])
72     @ResponseBody
73     @Throws(BluePrintException::class)
74     @PreAuthorize("hasRole('USER')")
75     fun saveBlueprint(@RequestPart("file") filePart: FilePart): Mono<BlueprintModelSearch> = monoMdc {
76         bluePrintModelHandler.saveBlueprintModel(filePart)
77     }
78
79     @GetMapping("", produces = [MediaType.APPLICATION_JSON_VALUE])
80     @ResponseBody
81     @PreAuthorize("hasRole('USER')")
82     fun allBlueprintModel(): List<BlueprintModelSearch> {
83         return this.bluePrintModelHandler.allBlueprintModel()
84     }
85
86     @GetMapping("/paged", produces = [MediaType.APPLICATION_JSON_VALUE])
87     @ResponseBody
88     @PreAuthorize("hasRole('USER')")
89     fun allBlueprintModel(
90         @RequestParam(defaultValue = "20") limit: Int,
91         @RequestParam(defaultValue = "0") offset: Int,
92         @RequestParam(defaultValue = "DATE") sort: BlueprintSortByOption
93     ): Page<BlueprintModelSearch> {
94         val pageRequest = PageRequest.of(offset, limit, Sort.Direction.ASC, sort.columnName)
95         return this.bluePrintModelHandler.allBlueprintModel(pageRequest)
96     }
97
98     @GetMapping("meta-data/{keyword}", produces = [MediaType.APPLICATION_JSON_VALUE])
99     @ResponseBody
100     @PreAuthorize("hasRole('USER')")
101     fun allBlueprintModelMetaData(@NotNull @PathVariable(value = "keyword") keyWord: String): List<BlueprintModelSearch> {
102         return this.bluePrintModelHandler.searchBluePrintModelsByKeyWord(keyWord)
103     }
104
105     @GetMapping("/paged/meta-data/{keyword}", produces = [MediaType.APPLICATION_JSON_VALUE])
106     @ResponseBody
107     @PreAuthorize("hasRole('USER')")
108     fun allBlueprintModelMetaDataPaged(
109         @NotNull @PathVariable(value = "keyword") keyWord: String,
110         @RequestParam(defaultValue = "20") limit: Int,
111         @RequestParam(defaultValue = "0") offset: Int,
112         @RequestParam(defaultValue = "DATE") sort: BlueprintSortByOption
113     ): Page<BlueprintModelSearch> {
114         val pageRequest = PageRequest.of(offset, limit, Sort.Direction.ASC, sort.columnName)
115         return this.bluePrintModelHandler.searchBluePrintModelsByKeyWordPaged(keyWord, pageRequest)
116     }
117
118     @DeleteMapping("/{id}")
119     @Throws(BluePrintException::class)
120     @PreAuthorize("hasRole('USER')")
121     fun deleteBlueprint(@PathVariable(value = "id") id: String) {
122         this.bluePrintModelHandler.deleteBlueprintModel(id)
123     }
124
125     @GetMapping("/by-name/{name}/version/{version}", produces = [MediaType.APPLICATION_JSON_VALUE])
126     @ResponseBody
127     @Throws(BluePrintException::class)
128     @PreAuthorize("hasRole('USER')")
129     fun getBlueprintByNameAndVersion(
130         @PathVariable(value = "name") name: String,
131         @PathVariable(value = "version") version: String
132     ):
133             Mono<ResponseEntity<BlueprintModelSearch>> = monoMdc {
134         var bluePrintModel: BlueprintModelSearch? = bluePrintModelHandler.getBlueprintModelSearchByNameAndVersion(name, version)
135         if (bluePrintModel != null)
136             ResponseEntity(bluePrintModel, HttpStatus.OK)
137         else
138             ResponseEntity(HttpStatus.NO_CONTENT)
139     }
140
141     @GetMapping("/download/by-name/{name}/version/{version}", produces = [MediaType.APPLICATION_JSON_VALUE])
142     @ResponseBody
143     @Throws(BluePrintException::class)
144     @PreAuthorize("hasRole('USER')")
145     fun downloadBlueprintByNameAndVersion(
146         @PathVariable(value = "name") name: String,
147         @PathVariable(value = "version") version: String
148     ):
149             Mono<ResponseEntity<Resource>> = monoMdc {
150         bluePrintModelHandler.downloadBlueprintModelFileByNameAndVersion(name, version)
151     }
152
153     @GetMapping("/{id}", produces = [MediaType.APPLICATION_JSON_VALUE])
154     @ResponseBody
155     @Throws(BluePrintException::class)
156     @PreAuthorize("hasRole('USER')")
157     fun getBlueprintModel(@PathVariable(value = "id") id: String): BlueprintModelSearch {
158         return this.bluePrintModelHandler.getBlueprintModelSearch(id)
159     }
160
161     @GetMapping("/download/{id}", produces = [MediaType.APPLICATION_JSON_VALUE])
162     @ResponseBody
163     @Throws(BluePrintException::class)
164     @PreAuthorize("hasRole('USER')")
165     fun downloadBluePrint(@PathVariable(value = "id") id: String): Mono<ResponseEntity<Resource>> = monoMdc {
166         bluePrintModelHandler.downloadBlueprintModelFile(id)
167     }
168
169     @PostMapping(
170         "/enrich", produces = [MediaType.APPLICATION_JSON_VALUE], consumes = [MediaType
171             .MULTIPART_FORM_DATA_VALUE]
172     )
173     @ResponseBody
174     @Throws(BluePrintException::class)
175     @PreAuthorize("hasRole('USER')")
176     fun enrichBlueprint(@RequestPart("file") file: FilePart): Mono<ResponseEntity<Resource>> = monoMdc {
177         bluePrintModelHandler.enrichBlueprint(file)
178     }
179
180     @PostMapping("/publish", produces = [MediaType.APPLICATION_JSON_VALUE])
181     @ResponseBody
182     @Throws(BluePrintException::class)
183     @PreAuthorize("hasRole('USER')")
184     fun publishBlueprint(@RequestPart("file") file: FilePart): Mono<BlueprintModelSearch> = monoMdc {
185         bluePrintModelHandler.publishBlueprint(file)
186     }
187
188     @GetMapping("/search/{tags}", produces = [MediaType.APPLICATION_JSON_VALUE])
189     @ResponseBody
190     @PreAuthorize("hasRole('USER')")
191     fun searchBlueprintModels(@PathVariable(value = "tags") tags: String): List<BlueprintModelSearch> {
192         return this.bluePrintModelHandler.searchBlueprintModels(tags)
193     }
194
195     @DeleteMapping("/name/{name}/version/{version}")
196     @ApiOperation(
197         value = "Delete a CBA",
198         notes = "Delete the CBA package identified by its name and version.",
199         produces = MediaType.APPLICATION_JSON_VALUE
200     )
201     @PreAuthorize("hasRole('USER')")
202     fun deleteBlueprint(
203         @ApiParam(value = "Name of the CBA.", required = true)
204         @PathVariable(value = "name") name: String,
205         @ApiParam(value = "Version of the CBA.", required = true)
206         @PathVariable(value = "version") version: String
207     ) = monoMdc {
208         bluePrintModelHandler.deleteBlueprintModel(name, version)
209     }
210 }