c7aab03b60c0d80341e2a0a7f7c8e35f797b3e1a
[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.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.mdcWebCoroutineScope
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     suspend fun ping(): String = mdcWebCoroutineScope { "Success" }
43
44     @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
45     @ResponseBody
46     suspend fun messagePrioritization(@PathVariable(value = "id") id: String) = mdcWebCoroutineScope {
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     suspend fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) =
56         mdcWebCoroutineScope {
57             messagePrioritizationStateService.saveMessage(messagePrioritization)
58         }
59
60     @PostMapping(
61         path = ["/prioritize"], produces = [MediaType.APPLICATION_JSON_VALUE],
62         consumes = [MediaType.APPLICATION_JSON_VALUE]
63     )
64     @ResponseBody
65     suspend fun prioritize(@RequestBody messagePrioritization: MessagePrioritization) = mdcWebCoroutineScope {
66         messagePrioritizationService.prioritize(messagePrioritization)
67     }
68
69     @PostMapping(
70         path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
71         consumes = [MediaType.APPLICATION_JSON_VALUE]
72     )
73     suspend fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
74         mdcWebCoroutineScope {
75             messagePrioritizationStateService.setMessageState(
76                 updateMessageState.id,
77                 updateMessageState.state!!
78             )
79         }
80 }