Message prioritization error handling
[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.UpdateStateRequest
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.db.MessagePrioritization
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.service.MessagePrioritizationStateService
22 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.monoMdc
23 import org.springframework.http.MediaType
24 import org.springframework.web.bind.annotation.*
25
26 @RestController
27 @RequestMapping(value = ["/api/v1/message-prioritization"])
28 open class MessagePrioritizationApi(private val messagePrioritizationStateService: MessagePrioritizationStateService) {
29
30     @GetMapping(path = ["/ping"], produces = [MediaType.APPLICATION_JSON_VALUE])
31     @ResponseBody
32     fun ping(): String = "Success"
33
34
35     @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
36     @ResponseBody
37     fun messagePrioritization(@PathVariable(value = "id") id: String) = monoMdc {
38         messagePrioritizationStateService.getMessage(id)
39     }
40
41     @PostMapping(path = ["/"], produces = [MediaType.APPLICATION_JSON_VALUE],
42             consumes = [MediaType.APPLICATION_JSON_VALUE])
43     @ResponseBody
44     fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) = monoMdc {
45         messagePrioritizationStateService.saveMessage(messagePrioritization)
46     }
47
48     @PostMapping(path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
49             consumes = [MediaType.APPLICATION_JSON_VALUE])
50     fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
51             monoMdc {
52                 messagePrioritizationStateService.setMessageState(updateMessageState.id,
53                         updateMessageState.state!!)
54             }
55 }