7510d1d96154a85dc6a8c894cd7f40a6935b3d7f
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2019 IBM.
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.grpc.service
18
19 import com.fasterxml.jackson.databind.JsonNode
20 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintProperties
21 import org.onap.ccsdk.cds.blueprintsprocessor.grpc.BasicAuthGrpcClientProperties
22 import org.onap.ccsdk.cds.blueprintsprocessor.grpc.GRPCLibConstants
23 import org.onap.ccsdk.cds.blueprintsprocessor.grpc.GrpcClientProperties
24 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
25 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
26 import org.springframework.stereotype.Service
27
28 @Service(GRPCLibConstants.SERVICE_BLUEPRINT_GRPC_LIB_PROPERTY)
29 open class BluePrintGrpcLibPropertyService(private var bluePrintProperties: BluePrintProperties) {
30
31     fun grpcClientProperties(jsonNode: JsonNode): GrpcClientProperties {
32         val type = jsonNode.get("type").textValue()
33         return when (type) {
34             GRPCLibConstants.TYPE_BASIC_AUTH -> {
35                 JacksonUtils.readValue(jsonNode, BasicAuthGrpcClientProperties::class.java)!!
36             }
37             else -> {
38                 throw BluePrintProcessorException("Grpc type($type) not supported")
39             }
40         }
41     }
42
43     fun grpcClientProperties(prefix: String): GrpcClientProperties {
44         val type = bluePrintProperties.propertyBeanType(
45                 "$prefix.type", String::class.java)
46         return when (type) {
47             GRPCLibConstants.TYPE_BASIC_AUTH -> {
48                 basicAuthGrpcClientProperties(prefix)
49             }
50             else -> {
51                 throw BluePrintProcessorException("Grpc type($type) not supported")
52
53             }
54         }
55     }
56
57     private fun basicAuthGrpcClientProperties(prefix: String): BasicAuthGrpcClientProperties {
58         return bluePrintProperties.propertyBeanType(prefix, BasicAuthGrpcClientProperties::class.java)
59     }
60 }