70555a5efde4b341b6f529b5b1586f7b089ef500
[sdc.git] / catalog-ui / src / app / ng2 / services / data-type.service.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 import * as _ from "lodash";
22 import { Injectable } from '@angular/core';
23 import { DataTypeModel, DataTypesMap, PropertyFEModel, DerivedFEProperty} from "app/models";
24 import { DataTypesService } from "app/services/data-types-service";
25 import { PROPERTY_DATA } from "app/utils";
26 import {DerivedFEAttribute} from "../../models/attributes-outputs/derived-fe-attribute";
27
28 /** This is a new service for NG2, to eventually replace app/services/data-types-service.ts
29  *
30  *  This service is a singleton that holds a map of all DataTypes, recieved from server on load.
31  *  It also contains convenience methods to check if a string is a valid dataType, and to retrieve a dataType's properties recursively
32  */
33
34 @Injectable()
35 export class DataTypeService {
36     public dataTypes: DataTypesMap;
37
38     constructor(private dataTypeService: DataTypesService) {
39         this.dataTypes = dataTypeService.getAllDataTypes(); //This should eventually be replaced by an NG2 call to the backend instead of utilizing Angular1 downgraded component.
40     }
41
42     public getDataTypeByModelAndTypeName(modelName: string, typeName: string): DataTypeModel {
43         this.dataTypes = this.dataTypeService.getAllDataTypesFromModel(modelName);
44         let dataTypeFound = this.dataTypes[typeName];
45         if (!dataTypeFound) {
46             console.log("MISSING Datatype for model " + modelName + " and type: " + typeName);
47         }
48         return dataTypeFound;
49     }
50
51     public getDataTypeByTypeName(typeName: string): DataTypeModel {
52         if(!this.dataTypes){
53             this.dataTypes = this.dataTypeService.getAllDataTypes();
54         }
55         if (!this.dataTypes[typeName]) console.log("MISSING Datatype: " + typeName);
56         return this.dataTypes[typeName];
57     }
58
59     public getDataTypeByModel(modelName: string): DataTypesMap {
60         return this.dataTypeService.getAllDataTypesFromModel(modelName);
61     }
62
63     public findAllDataTypesByModel(modelName: string): Promise<Map<string, DataTypeModel>> {
64         return this.dataTypeService.findAllDataTypesByModel(modelName);
65     }
66
67     public getConstraintsByParentTypeAndUniqueID(rootPropertyType, propertyName){
68         // const property = this.dataTypes[rootPropertyType].properties.filter(property =>
69         //     property.name == propertyName);
70         // return property[0] && property[0].constraints ? property[0].constraints[0].validValues : null;
71         return null;
72     }
73
74     public getDerivedDataTypeProperties(dataTypeObj: DataTypeModel, propertiesArray: Array<DerivedFEProperty>, parentName: string) {
75         //push all child properties to array
76         if (!dataTypeObj) return;
77         if (dataTypeObj.properties) {
78             dataTypeObj.properties.forEach((derivedProperty) => {
79                 if(dataTypeObj.name !== PROPERTY_DATA.OPENECOMP_ROOT || derivedProperty.name !== PROPERTY_DATA.SUPPLEMENTAL_DATA){//The requirement is to not display the property supplemental_data
80                     propertiesArray.push(new DerivedFEProperty(derivedProperty, parentName));
81                 }
82                 let derivedDataTypeObj: DataTypeModel = this.getDataTypeByTypeName(derivedProperty.type);
83                 this.getDerivedDataTypeProperties(derivedDataTypeObj, propertiesArray, parentName + "#" + derivedProperty.name);
84             });
85         }
86         //recurse parent (derivedFrom), in case one of parents contains properties
87         if (dataTypeObj.derivedFrom && PROPERTY_DATA.ROOT_DATA_TYPE !== dataTypeObj.derivedFrom.name) {
88             this.getDerivedDataTypeProperties(dataTypeObj.derivedFrom, propertiesArray, parentName);
89         }
90     }
91
92     public getDerivedDataTypeAttributes(dataTypeObj: DataTypeModel, attributesArray: Array<DerivedFEAttribute>, parentName: string) {
93         //push all child properties to array
94         if (!dataTypeObj) return;
95         if (dataTypeObj.attributes) {
96             dataTypeObj.attributes.forEach((derivedAttribute) => {
97                 if(dataTypeObj.name !== PROPERTY_DATA.OPENECOMP_ROOT || derivedAttribute.name !== PROPERTY_DATA.SUPPLEMENTAL_DATA){//The requirement is to not display the property supplemental_data
98                     attributesArray.push(new DerivedFEAttribute(derivedAttribute, parentName));
99                 }
100                 let derivedDataTypeObj: DataTypeModel = this.getDataTypeByTypeName(derivedAttribute.type);
101                 this.getDerivedDataTypeAttributes(derivedDataTypeObj, attributesArray, parentName + "#" + derivedAttribute.name);
102             });
103         }
104         //recurse parent (derivedFrom), in case one of parents contains properties
105         if (dataTypeObj.derivedFrom && PROPERTY_DATA.ROOT_DATA_TYPE !== dataTypeObj.derivedFrom.name) {
106             this.getDerivedDataTypeAttributes(dataTypeObj.derivedFrom, attributesArray, parentName);
107         }
108     }
109
110     /**
111      * Checks for custom behavior for a given data type by checking if a function exists within data-type.service with that name
112      * Additional custom behavior can be added by adding a function with the given dataType name
113      */
114     public checkForCustomBehavior = (property:PropertyFEModel) => {
115         let shortTypeName:string = property.type.split('.').pop();
116         if (this[shortTypeName]) {
117             this[shortTypeName](property); //execute function for given type, pass property as param
118         }
119     }
120
121     public Naming = (property: PropertyFEModel) => {
122         let generatedNamingVal: boolean = _.get(property.valueObj, 'ecomp_generated_naming', true);
123         property.flattenedChildren.forEach((prop) => {
124             if (prop.name == 'naming_policy') prop.hidden = !generatedNamingVal;
125             if (prop.name == 'instance_name') prop.hidden = generatedNamingVal;
126         });
127     }
128
129 }
130