2 * Copyright © 2018-2019 AT&T Intellectual Property.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.api
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
34 @RequestMapping(value = ["/api/v1/message-prioritization"])
35 open class MessagePrioritizationApi(
36 private val messagePrioritizationStateService: MessagePrioritizationStateService,
37 private val messagePrioritizationService: MessagePrioritizationService
40 @GetMapping(path = ["/ping"], produces = [MediaType.APPLICATION_JSON_VALUE])
42 suspend fun ping(): String = mdcWebCoroutineScope { "Success" }
44 @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
46 suspend fun messagePrioritization(@PathVariable(value = "id") id: String) = mdcWebCoroutineScope {
47 messagePrioritizationStateService.getMessage(id)
51 path = ["/"], produces = [MediaType.APPLICATION_JSON_VALUE],
52 consumes = [MediaType.APPLICATION_JSON_VALUE]
55 suspend fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) =
56 mdcWebCoroutineScope {
57 messagePrioritizationStateService.saveMessage(messagePrioritization)
61 path = ["/prioritize"], produces = [MediaType.APPLICATION_JSON_VALUE],
62 consumes = [MediaType.APPLICATION_JSON_VALUE]
65 suspend fun prioritize(@RequestBody messagePrioritization: MessagePrioritization) = mdcWebCoroutineScope {
66 messagePrioritizationService.prioritize(messagePrioritization)
70 path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
71 consumes = [MediaType.APPLICATION_JSON_VALUE]
73 suspend fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
74 mdcWebCoroutineScope {
75 messagePrioritizationStateService.setMessageState(
76 updateMessageState.id,
77 updateMessageState.state!!