e90771fb8f13283cf85d7730400d5165d618b5a1
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / message-prioritizaion / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / message / prioritization / api / MessagePrioritizationApi.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
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
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.api
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.MessagePrioritizationService
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.MessagePrioritizationStateService
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.UpdateStateRequest
22 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.db.MessagePrioritization
23 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.monoMdc
24 import org.springframework.http.MediaType
25 import org.springframework.web.bind.annotation.GetMapping
26 import org.springframework.web.bind.annotation.PathVariable
27 import org.springframework.web.bind.annotation.PostMapping
28 import org.springframework.web.bind.annotation.RequestBody
29 import org.springframework.web.bind.annotation.RequestMapping
30 import org.springframework.web.bind.annotation.ResponseBody
31 import org.springframework.web.bind.annotation.RestController
32
33 @RestController
34 @RequestMapping(value = ["/api/v1/message-prioritization"])
35 open class MessagePrioritizationApi(
36     private val messagePrioritizationStateService: MessagePrioritizationStateService,
37     private val messagePrioritizationService: MessagePrioritizationService
38 ) {
39
40     @GetMapping(path = ["/ping"], produces = [MediaType.APPLICATION_JSON_VALUE])
41     @ResponseBody
42     fun ping(): String = "Success"
43
44     @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
45     @ResponseBody
46     fun messagePrioritization(@PathVariable(value = "id") id: String) = monoMdc {
47         messagePrioritizationStateService.getMessage(id)
48     }
49
50     @PostMapping(
51         path = ["/"], produces = [MediaType.APPLICATION_JSON_VALUE],
52         consumes = [MediaType.APPLICATION_JSON_VALUE]
53     )
54     @ResponseBody
55     fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) = monoMdc {
56         messagePrioritizationStateService.saveMessage(messagePrioritization)
57     }
58
59     @PostMapping(
60         path = ["/prioritize"], produces = [MediaType.APPLICATION_JSON_VALUE],
61         consumes = [MediaType.APPLICATION_JSON_VALUE]
62     )
63     @ResponseBody
64     fun prioritize(@RequestBody messagePrioritization: MessagePrioritization) = monoMdc {
65         messagePrioritizationService.prioritize(messagePrioritization)
66     }
67
68     @PostMapping(
69         path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
70         consumes = [MediaType.APPLICATION_JSON_VALUE]
71     )
72     fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
73         monoMdc {
74             messagePrioritizationStateService.setMessageState(
75                 updateMessageState.id,
76                 updateMessageState.state!!
77             )
78         }
79 }