Merge "Enable https for cds-ui"
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / netconf-executor / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / netconf / executor / ComponentNetconfExecutor.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Modifications Copyright © 2019 IBM, Bell Canada.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor
20
21 import com.fasterxml.jackson.databind.node.ArrayNode
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
24 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentFunctionScriptingService
26 import org.onap.ccsdk.cds.controllerblueprints.core.getAsString
27 import org.springframework.beans.factory.config.ConfigurableBeanFactory
28 import org.springframework.context.annotation.Scope
29 import org.springframework.stereotype.Component
30
31 @Component("component-netconf-executor")
32 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
33 open class ComponentNetconfExecutor(private var componentFunctionScriptingService: ComponentFunctionScriptingService)
34     : AbstractComponentFunction() {
35
36     companion object {
37         const val SCRIPT_TYPE = "script-type"
38         const val SCRIPT_CLASS_REFERENCE = "script-class-reference"
39         const val INSTANCE_DEPENDENCIES = "instance-dependencies"
40     }
41
42     lateinit var scriptComponent: NetconfComponentFunction
43
44     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
45
46         val scriptType = operationInputs.getAsString(SCRIPT_TYPE)
47         val scriptClassReference = operationInputs.getAsString(SCRIPT_CLASS_REFERENCE)
48         val instanceDependenciesNode = operationInputs.get(INSTANCE_DEPENDENCIES) as? ArrayNode
49
50         val scriptDependencies: MutableList<String> = arrayListOf()
51         scriptDependencies.add(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
52
53         instanceDependenciesNode?.forEach { instanceName ->
54             scriptDependencies.add(instanceName.textValue())
55         }
56
57         scriptComponent = componentFunctionScriptingService.scriptInstance<NetconfComponentFunction>(this, scriptType,
58                 scriptClassReference, scriptDependencies)
59
60
61         checkNotNull(scriptComponent) { "failed to get netconf script component" }
62
63         // Handles both script processing and error handling
64         scriptComponent.executeScript(executionServiceInput)
65     }
66
67     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
68         bluePrintRuntimeService.getBluePrintError()
69                 .addError("Failed in ComponentNetconfExecutor : ${runtimeException.message}")
70
71     }
72 }