262dcb402fe49bdc15e726284274e777edd8589b
[ccsdk/cds.git] /
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.GetMapping
25 import org.springframework.web.bind.annotation.PathVariable
26 import org.springframework.web.bind.annotation.PostMapping
27 import org.springframework.web.bind.annotation.RequestBody
28 import org.springframework.web.bind.annotation.RequestMapping
29 import org.springframework.web.bind.annotation.ResponseBody
30 import org.springframework.web.bind.annotation.RestController
31
32 @RestController
33 @RequestMapping(value = ["/api/v1/message-prioritization"])
34 open class MessagePrioritizationApi(private val messagePrioritizationStateService: MessagePrioritizationStateService) {
35
36     @GetMapping(path = ["/ping"], produces = [MediaType.APPLICATION_JSON_VALUE])
37     @ResponseBody
38     fun ping(): String = "Success"
39
40     @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
41     @ResponseBody
42     fun messagePrioritization(@PathVariable(value = "id") id: String) = monoMdc {
43         messagePrioritizationStateService.getMessage(id)
44     }
45
46     @PostMapping(
47         path = ["/"], produces = [MediaType.APPLICATION_JSON_VALUE],
48         consumes = [MediaType.APPLICATION_JSON_VALUE]
49     )
50     @ResponseBody
51     fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) = monoMdc {
52         messagePrioritizationStateService.saveMessage(messagePrioritization)
53     }
54
55     @PostMapping(
56         path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
57         consumes = [MediaType.APPLICATION_JSON_VALUE]
58     )
59     fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
60         monoMdc {
61             messagePrioritizationStateService.setMessageState(
62                 updateMessageState.id,
63                 updateMessageState.state!!
64             )
65         }
66 }