7bda62810641fc2641861668f460696f101e48cf
[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 cba.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.ssh.sshClientService
22 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
23 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonString
24 import org.onap.ccsdk.cds.controllerblueprints.core.logger
25 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
26
27
28 open class Check : AbstractScriptComponentFunction() {
29
30     private val log = logger(Check::class)
31
32     override fun getName(): String {
33         return "Check"
34     }
35
36     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
37         log.info("Executing process : ${executionRequest.payload}")
38
39         val data = requestPayloadActionProperty("data")?.first()
40             ?: throw BluePrintProcessorException("Failed to load payload data properties.")
41
42         log.info("Data : ${data.asJsonString()}")
43
44         val checkCommands = mashTemplateNData("command-template", data.asJsonString())
45
46         log.info("Check Commands :$checkCommands")
47
48         // Get the Device Information from the DSL Model
49         val deviceInformation = bluePrintRuntimeService.resolveDSLExpression("device-properties")
50
51         log.info("Device Info :$deviceInformation")
52
53         // Get the Client Service
54         val sshClientService = BluePrintDependencyService.sshClientService(deviceInformation)
55
56         log.info("Client service is ready")
57
58     }
59
60     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
61         log.info("Executing Recovery")
62     }
63 }