Support a custom yaml value in tosca function
[sdc.git] / catalog-ui / src / app / ng2 / pages / properties-assignment / services / properties.utils.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, PropertyFEModel, PropertyBEModel, InstanceBePropertiesMap, InstanceFePropertiesMap, DerivedFEProperty,  DerivedPropertyType, InputFEModel} from "app/models";
24 import { DataTypeService } from "app/ng2/services/data-type.service";
25 import { PropertiesService } from "app/ng2/services/properties.service";
26 import { PROPERTY_TYPES, PROPERTY_DATA } from "app/utils";
27
28 @Injectable()
29 export class PropertiesUtils {
30
31     constructor(private dataTypeService:DataTypeService, private propertiesService: PropertiesService) {}
32
33     /**
34      * Entry point when getting properties from server
35      * For each instance, loop through each property, and:
36      * 1. Create flattened children
37      * 2. Check against inputs to see if any props are declared and disable them
38      * 3. Initialize valueObj (which also creates any new list/map flattened children as needed)
39      * Returns InstanceFePropertiesMap
40      */
41     public convertPropertiesMapToFEAndCreateChildren = (instancePropertiesMap:InstanceBePropertiesMap, isVF:boolean, inputs?:Array<InputFEModel>, model?:string): InstanceFePropertiesMap => {
42         let instanceFePropertiesMap:InstanceFePropertiesMap = new InstanceFePropertiesMap();
43         angular.forEach(instancePropertiesMap, (properties:Array<PropertyBEModel>, instanceId:string) => {
44             let propertyFeArray: Array<PropertyFEModel> = [];
45             _.forEach(properties, (property: PropertyBEModel) => {
46         
47                 if (this.dataTypeService.getDataTypeByModelAndTypeName(model, property.type)) { // if type not exist in data types remove property from list
48
49                     let newFEProp: PropertyFEModel = new PropertyFEModel(property); //Convert property to FE
50                     if (!newFEProp.parentUniqueId) {
51                         newFEProp.parentUniqueId = instanceId;
52                     }
53                     this.initValueObjectRef(newFEProp); //initialize valueObj AND creates flattened children
54                     propertyFeArray.push(newFEProp);
55                     newFEProp.updateExpandedChildPropertyId(newFEProp.name); //display only the first level of children
56                     this.dataTypeService.checkForCustomBehavior(newFEProp);
57
58                     if (newFEProp.isToscaFunction()) {
59                         return;
60                     }
61                     //if this prop (or any children) are declared, set isDeclared and disable checkbox on parents/children
62                     if (newFEProp.getInputValues && newFEProp.getInputValues.length) {
63                         newFEProp.getInputValues.forEach(propInputDetail => {
64                             let inputPath = propInputDetail.inputPath;
65                             if (!inputPath) { //TODO: this is a workaround until Marina adds inputPath
66                                 let input = inputs.find(input => input.uniqueId == propInputDetail.inputId);
67                                 if (!input) { console.log("CANNOT FIND INPUT FOR " + propInputDetail.inputId); return; }
68                                 else inputPath = input.inputPath;
69                             }
70                             if (inputPath == newFEProp.name) inputPath = undefined; // if not complex we need to remove the inputPath from FEModel so we not look for a child
71                             newFEProp.setAsDeclared(inputPath); //if a path is sent, its a child prop. this param is optional
72                             this.propertiesService.disableRelatedProperties(newFEProp, inputPath);
73                         });
74                     }
75                     if (newFEProp.getPolicyValues && newFEProp.getPolicyValues.length) {
76                         newFEProp.setAsDeclared(newFEProp.inputPath); //if a path is sent, its a child prop. this param is optional
77                         this.propertiesService.disableRelatedProperties(newFEProp, newFEProp.inputPath);
78                     }
79                 }
80             });
81             instanceFePropertiesMap[instanceId] = propertyFeArray;
82
83         });
84         return instanceFePropertiesMap;
85     }
86
87     public convertAddPropertyBAToPropertyFE = (property: PropertyBEModel): PropertyFEModel => {
88         const newFEProp: PropertyFEModel = new PropertyFEModel(property); //Convert property to FE
89         this.initValueObjectRef(newFEProp);
90         newFEProp.updateExpandedChildPropertyId(newFEProp.name); //display only the first level of children
91         this.dataTypeService.checkForCustomBehavior(newFEProp);
92         return newFEProp;
93     }
94
95     public createListOrMapChildren = (property:PropertyFEModel | DerivedFEProperty, key: string, valueObj: any): Array<DerivedFEProperty> => {
96         let newProps: Array<DerivedFEProperty> = [];
97         let parentProp = new DerivedFEProperty(property, property.propertiesName, true, key, valueObj);
98         newProps.push(parentProp);
99
100         if (!property.schema.property.isSimpleType) {
101             let additionalChildren:Array<DerivedFEProperty> = this.createFlattenedChildren(property.schema.property.type, parentProp.propertiesName);
102             this.assignFlattenedChildrenValues(parentProp.valueObj, additionalChildren, parentProp.propertiesName);
103             additionalChildren.forEach(prop => prop.canBeDeclared = false);
104             newProps.push(...additionalChildren);
105         }
106         return newProps;
107     }
108
109     /**
110      * Creates derivedFEProperties of a specified type and returns them.
111      */
112     private createFlattenedChildren = (type: string, parentName: string):Array<DerivedFEProperty> => {
113         let tempProps: Array<DerivedFEProperty> = [];
114         let dataTypeObj: DataTypeModel = this.dataTypeService.getDataTypeByTypeName(type);
115         this.dataTypeService.getDerivedDataTypeProperties(dataTypeObj, tempProps, parentName);
116         return _.sortBy(tempProps, ['propertiesName']);
117     }
118
119     /* Sets the valueObj of parent property and its children.
120     * Note: This logic is different than assignflattenedchildrenvalues - here we merge values, there we pick either the parents value, props value, or default value - without merging.
121     */
122     public initValueObjectRef = (property: PropertyFEModel): void => {
123         property.resetValueObjValidation();
124         if (property.isDeclared) { //if property is declared, it gets a simple input instead. List and map values and pseudo-children will be handled in property component
125             property.valueObj = property.value || property.defaultValue || null;  // use null for empty value object
126             if (property.valueObj && typeof property.valueObj == 'object') {
127                 property.valueObj = JSON.stringify(property.valueObj);
128             }
129         } else {
130             property.valueObj = property.getValueObj();
131             if (property.derivedDataType == DerivedPropertyType.LIST || property.derivedDataType == DerivedPropertyType.MAP) {
132                 property.flattenedChildren = [];
133                 Object.keys(property.valueObj).forEach((key) => {
134                     property.flattenedChildren.push(...this.createListOrMapChildren(property, key, property.valueObj[key]));
135                     const lastCreatedChild = property.flattenedChildren.slice(-1)[0];
136                     if (property.schemaType == PROPERTY_TYPES.MAP && property.valueObj[key]){
137                         const nestedValue:object = property.valueObj[key];
138                         Object.keys(nestedValue).forEach((keyNested) => {
139                             property.flattenedChildren.push(...this.createListOrMapChildren(lastCreatedChild, keyNested, nestedValue[keyNested]));
140                         });
141                     };
142                 });
143             } else if (property.derivedDataType === DerivedPropertyType.COMPLEX) {
144                 property.flattenedChildren = this.createFlattenedChildren(property.type, property.name);
145                 this.assignFlattenedChildrenValues(property.valueObj, property.flattenedChildren, property.name);
146                 property.flattenedChildren.forEach((childProp) => {
147                     property.childPropUpdated(childProp);
148                 });
149             }
150         }
151         property.updateValueObjOrig();
152     };
153
154     /*
155     * Loops through flattened properties array and to assign values
156     * Then, convert any neccessary strings to objects, and vis-versa
157     * For list or map property, creates new children props if valueObj has values
158     */
159     public assignFlattenedChildrenValues = (parentValueJSON: any, derivedPropArray: Array<DerivedFEProperty>, parentName: string) => {
160         if (!derivedPropArray || !parentName) return;
161         let propsToPushMap: Map<number, Array<DerivedFEProperty>> = new Map<number, Array<DerivedFEProperty>>();
162         derivedPropArray.forEach((prop, index) => {
163
164             let propNameInObj = prop.propertiesName.substring(prop.propertiesName.indexOf(parentName) + parentName.length + 1).split('#').join('.'); //extract everything after parent name
165             prop.valueObj = _.get(parentValueJSON, propNameInObj, prop.value || prop.defaultValue || null); //assign value -first value of parent if exists. If not, prop.value if not, prop.defaultvalue
166             prop.value = (prop.valueObj !== null && (typeof prop.valueObj) != 'string') ? JSON.stringify(prop.valueObj) : prop.valueObj;
167
168             if ((prop.isDeclared || prop.type == PROPERTY_TYPES.STRING || prop.type == PROPERTY_TYPES.JSON)) { //Stringify objects of items that are declared or from type string/json
169                 prop.valueObj = (prop.valueObj !== null && typeof prop.valueObj == 'object') ? JSON.stringify(prop.valueObj) : prop.valueObj;
170             } else if(prop.type == PROPERTY_TYPES.INTEGER || prop.type == PROPERTY_TYPES.FLOAT || prop.type == PROPERTY_TYPES.BOOLEAN){ //parse ints and non-string simple types
171                 prop.valueObj = (prop.valueObj !== null && typeof prop.valueObj == PROPERTY_TYPES.STRING) ? JSON.parse(prop.valueObj) : prop.valueObj;
172             } else { //parse strings that should be objects
173                 if (prop.derivedDataType == DerivedPropertyType.COMPLEX) {
174                     prop.valueObj = (prop.valueObj === null || typeof prop.valueObj != 'object') ? JSON.parse(prop.valueObj || '{}') : prop.valueObj;
175                 } else if (prop.derivedDataType == DerivedPropertyType.LIST) {
176                     prop.valueObj = (prop.valueObj === null || typeof prop.valueObj != 'object') ? JSON.parse(prop.valueObj || '[]') : prop.valueObj;
177                 } else if (prop.derivedDataType == DerivedPropertyType.MAP) {
178                     if (!prop.isChildOfListOrMap || !prop.schema.property.isSimpleType) {
179                         prop.valueObj = (prop.valueObj === null || typeof prop.valueObj != 'object') ? JSON.parse(prop.valueObj || '{}') : prop.valueObj;
180                     }
181                 }
182                 if ((prop.derivedDataType == DerivedPropertyType.LIST || prop.derivedDataType == DerivedPropertyType.MAP) && typeof prop.valueObj == 'object' && prop.valueObj !== null && Object.keys(prop.valueObj).length) {
183                     let newProps: Array<DerivedFEProperty> = [];
184                     Object.keys(prop.valueObj).forEach((key) => {
185                         newProps.push(...this.createListOrMapChildren(prop, key, prop.valueObj[key]));//create new children, assign their values, and then add to array
186                     });
187                     propsToPushMap[index + 1] = newProps;
188                 }
189             }
190
191             prop.valueObj = PropertyFEModel.cleanValueObj(prop.valueObj);
192         });
193
194         //add props after we're done looping (otherwise our loop gets messed up). Push in reverse order, so we dont mess up indexes.
195         Object.keys(propsToPushMap).reverse().forEach((indexToInsert) => {
196             derivedPropArray.splice(+indexToInsert, 0, ...propsToPushMap[indexToInsert]); //slacker parsing
197         });
198     }
199
200     public resetPropertyValue = (property: PropertyFEModel, newValue: string, nestedPath?: string): void => {
201         property.value = newValue;
202         if (nestedPath) {
203             let newProp = property.flattenedChildren.find(prop => prop.propertiesName == nestedPath);
204             newProp && this.assignFlattenedChildrenValues(JSON.parse(newValue), [newProp], property.name);
205             property.updateValueObjOrig();
206         } else {
207             this.initValueObjectRef(property);
208         }
209     }
210
211 }