c3f2253afbea29e3386ff33ab533b9fee0632be3
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2018 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 @file:Suppress("unused")
17
18 package org.onap.ccsdk.apps.blueprintsprocessor.functions.restconf.executor
19
20 import com.fasterxml.jackson.databind.JsonNode
21 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
22 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
23 import org.onap.ccsdk.apps.blueprintsprocessor.rest.RestLibConstants
24 import org.onap.ccsdk.apps.blueprintsprocessor.rest.service.BluePrintRestLibPropertyService
25 import org.onap.ccsdk.apps.blueprintsprocessor.rest.service.BlueprintWebClientService
26 import org.onap.ccsdk.apps.blueprintsprocessor.services.execution.AbstractComponentFunction
27
28
29 abstract class RestconfComponentFunction : AbstractComponentFunction() {
30
31     open fun bluePrintRestLibPropertyService(): BluePrintRestLibPropertyService =
32             functionDependencyInstanceAsType(RestLibConstants.SERVICE_BLUEPRINT_REST_LIB_PROPERTY)
33
34     open fun resourceResolutionService(): ResourceResolutionService =
35             functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
36
37
38     fun restClientService(selector: String): BlueprintWebClientService {
39         return bluePrintRestLibPropertyService().blueprintWebClientService(selector)
40     }
41
42     fun getDynamicProperties(key: String): JsonNode {
43         return operationInputs["dynamic-properties"]!!.get(key)
44     }
45
46     fun resolveFromDatabase(resolutionKey: String, artifactName: String): String {
47         return resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
48     }
49
50     fun generateMessage(artifactName: String): String {
51         return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
52     }
53
54     fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String {
55         return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
56                 artifactMapping, artifactTemplate)
57     }
58
59     fun resolveAndGenerateMessage(artifactPrefix: String): String {
60         return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
61                 artifactPrefix, mapOf())
62     }
63 }