Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-validation / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / validation / BluePrintDesignTimeValidatorService.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2018 IBM.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.controllerblueprints.validation
19
20 import com.att.eelf.configuration.EELFLogger
21 import com.att.eelf.configuration.EELFManager
22 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
23 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
24 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintTypeValidatorService
25 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintValidatorService
26 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintRuntimeService
27 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
29 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDefinition
30 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDictionaryConstants
31 import org.onap.ccsdk.cds.controllerblueprints.validation.extension.ResourceDefinitionValidator
32 import org.springframework.stereotype.Service
33 import java.io.File
34 import java.util.*
35
36
37 @Service
38 open class BluePrintDesignTimeValidatorService(private val bluePrintTypeValidatorService: BluePrintTypeValidatorService,
39                                                private val resourceDefinitionValidator: ResourceDefinitionValidator)
40     : BluePrintValidatorService {
41
42     private val log: EELFLogger = EELFManager.getInstance().getLogger(BluePrintDesignTimeValidatorService::class.toString())
43
44     override fun validateBluePrints(basePath: String): Boolean {
45
46         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime(UUID.randomUUID().toString(), basePath)
47         return validateBluePrints(bluePrintRuntimeService)
48     }
49
50     override fun validateBluePrints(bluePrintRuntimeService: BluePrintRuntimeService<*>): Boolean {
51
52         bluePrintTypeValidatorService.validateServiceTemplate(bluePrintRuntimeService, "service_template",
53                 bluePrintRuntimeService.bluePrintContext().serviceTemplate)
54
55         // Validate Resource Definitions
56         validateResourceDefinitions(bluePrintRuntimeService)
57
58         if (bluePrintRuntimeService.getBluePrintError().errors.size > 0) {
59             throw BluePrintException("failed in blueprint validation : ${bluePrintRuntimeService.getBluePrintError().errors.joinToString("\n")}")
60         }
61         return true
62     }
63
64     private fun validateResourceDefinitions(bluePrintRuntimeService: BluePrintRuntimeService<*>) {
65         // Validate Resource Dictionary
66         val blueprintBasePath = bluePrintRuntimeService.bluePrintContext().rootPath
67
68         val resourceDefinitionsPath = blueprintBasePath.plus(File.separator)
69                 .plus(BluePrintConstants.TOSCA_DEFINITIONS_DIR).plus(File.separator)
70                 .plus("${ResourceDictionaryConstants.PATH_RESOURCE_DEFINITION_TYPE}.json")
71
72         val resourceDefinitionFile = File(resourceDefinitionsPath)
73
74         if (resourceDefinitionFile.exists()) {
75             val resourceDefinitionMap = JacksonUtils.getMapFromFile(resourceDefinitionFile, ResourceDefinition::class.java)
76
77             resourceDefinitionMap?.forEach { resourceDefinitionName, resourceDefinition ->
78                 resourceDefinitionValidator.validate(bluePrintRuntimeService, resourceDefinitionName, resourceDefinition)
79             }
80         }
81     }
82 }