Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / restconf-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / restconf / executor / RestconfComponentFunction.kt
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.cds.blueprintsprocessor.functions.restconf.executor
19
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
22 import org.onap.ccsdk.cds.blueprintsprocessor.rest.RestLibConstants
23 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BluePrintRestLibPropertyService
24 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
26
27
28 abstract class RestconfComponentFunction : AbstractScriptComponentFunction() {
29
30     open fun bluePrintRestLibPropertyService(): BluePrintRestLibPropertyService =
31             functionDependencyInstanceAsType(RestLibConstants.SERVICE_BLUEPRINT_REST_LIB_PROPERTY)
32
33     open fun resourceResolutionService(): ResourceResolutionService =
34             functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
35
36
37     fun restClientService(selector: String): BlueprintWebClientService {
38         return bluePrintRestLibPropertyService().blueprintWebClientService(selector)
39     }
40
41     fun resolveFromDatabase(resolutionKey: String, artifactName: String): String {
42         return resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
43     }
44
45     fun generateMessage(artifactName: String): String {
46         return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
47     }
48
49     fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String {
50         return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
51                 artifactMapping, artifactTemplate)
52     }
53
54     fun resolveAndGenerateMessage(artifactPrefix: String): String {
55         return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
56                 artifactPrefix, mapOf())
57     }
58 }