Add dynamic-properties as python script arg
[ccsdk/cds.git] / components / model-catalog / blueprint-model / test-blueprint / capability_cli / Scripts / kotlin / CapabilityCli.kt
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 cba.scripts.capability.cli
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
20 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
21 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
22 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.sshClientService
23 import org.onap.ccsdk.cds.controllerblueprints.core.*
24 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
25
26
27 open class Check : AbstractScriptComponentFunction() {
28
29     private val log = logger(Check::class)
30
31     override fun getName(): String {
32         return "Check"
33     }
34
35     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
36         log.info("Executing process : ${executionRequest.payload}")
37
38         val data = executionRequest.payload.at("/check-request/data")
39
40         log.info("Data : ${data.asJsonString()}")
41
42         val checkCommands = mashTemplateNData("command-template", data.asJsonString())
43
44         log.info("Check Commands :$checkCommands")
45
46         // Get the Device Information from the DSL Model
47         val deviceInformation = bluePrintRuntimeService.resolveDSLExpression("device-properties")
48
49         log.info("Device Info :$deviceInformation")
50
51         // Get the Client Service
52         val sshClientService = BluePrintDependencyService.sshClientService(deviceInformation)
53
54         log.info("Client service is ready")
55
56     }
57
58     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
59         log.info("Executing Recovery")
60     }
61 }