blob: d215183fa9f88d50f3d1612b6bafe2ec41856ed4 [file] [log] [blame]
Michael Landodd603392017-07-12 00:54:52 +03001/*-
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
Michael Landoa5445102018-03-04 14:53:33 +020021import * as _ from "lodash";
Arielk802bd2a2018-04-16 15:37:39 +030022import {Module, AttributeModel, ResourceInstance, PropertyModel, InputFEModel, OperationModel} from "../models";
Michael Landoed64b5e2017-06-09 03:19:04 +030023import {ComponentInstanceFactory} from "./component-instance-factory";
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030024import {InputBEModel, PropertyBEModel, RelationshipModel} from "app/models";
Michael Landoa5445102018-03-04 14:53:33 +020025import { PolicyInstance } from "app/models/graph/zones/policy-instance";
Michael Lando5b593492018-07-29 16:13:45 +030026import { GroupInstance } from "../models/graph/zones/group-instance";
Michael Landoed64b5e2017-06-09 03:19:04 +030027
28export class CommonUtils {
29
30 static initProperties(propertiesObj:Array<PropertyModel>, uniqueId?:string):Array<PropertyModel> {
31
32 let properties = new Array<PropertyModel>();
33 if (propertiesObj) {
34 _.forEach(propertiesObj, (property:PropertyModel):void => {
35 if (uniqueId) {
36 property.readonly = property.parentUniqueId != uniqueId;
37 }
38 properties.push(new PropertyModel(property));
39 });
40 }
41 return properties;
42 };
43
44 static initAttributes(attributesObj:Array<AttributeModel>, uniqueId?:string):Array<AttributeModel> {
45
46 let attributes = new Array<AttributeModel>();
47 if (attributesObj) {
48 _.forEach(attributesObj, (attribute:AttributeModel):void => {
49 if (uniqueId) {
50 attribute.readonly = attribute.parentUniqueId != uniqueId;
51 }
52 attributes.push(new AttributeModel(attribute));
53 });
54 }
55 return attributes;
56 };
57
58 static initComponentInstances(componentInstanceObj:Array<ResourceInstance>):Array<ResourceInstance> {
59
60 let componentInstances = new Array<ResourceInstance>();
61 if (componentInstanceObj) {
62 _.forEach(componentInstanceObj, (instance:ResourceInstance):void => {
63 componentInstances.push(ComponentInstanceFactory.createComponentInstance(instance));
64 });
65 }
66 return componentInstances;
67 };
68
69 static initModules(moduleArrayObj:Array<Module>):Array<Module> {
70
71 let modules = new Array<Module>();
72
73 if (moduleArrayObj) {
74 _.forEach(moduleArrayObj, (module:Module):void => {
75 if (module.type === "org.openecomp.groups.VfModule") {
76 modules.push(new Module(module));
77 }
78 });
79 }
80 return modules;
81 };
82
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030083 static initInputs(inputsObj: Array<InputBEModel>): Array<InputBEModel> {
Michael Landoed64b5e2017-06-09 03:19:04 +030084
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030085 let inputs = new Array<InputBEModel>();
Michael Landoed64b5e2017-06-09 03:19:04 +030086
87 if(inputsObj) {
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030088 _.forEach(inputsObj, (input: InputBEModel):void => {
89 inputs.push(new InputBEModel(input));
Michael Landoed64b5e2017-06-09 03:19:04 +030090 })
91 }
92
93 return inputs;
94 }
95
96 static initBeProperties(propertiesObj: Array<PropertyBEModel>): Array<PropertyBEModel> {
97
98 let properties = new Array<PropertyBEModel>();
99
100 if (propertiesObj) {
101 _.forEach(propertiesObj, (property: PropertyBEModel): void => {
102 properties.push(new PropertyBEModel(property));
103 })
104 }
105
106 return properties;
107 }
108
109 static initComponentInstanceRelations = (componentInstanceRelationsObj:Array<RelationshipModel>):Array<RelationshipModel> => {
110 if (componentInstanceRelationsObj) {
111 let componentInstancesRelations: Array<RelationshipModel> = [];
112 _.forEach(componentInstanceRelationsObj, (instanceRelation:RelationshipModel):void => {
113 componentInstancesRelations.push(new RelationshipModel(instanceRelation));
114 });
115 return componentInstancesRelations;
116 }
117 };
Michael Landoa5445102018-03-04 14:53:33 +0200118
119 static initPolicies = (policiesObj: Array<PolicyInstance>):Array<PolicyInstance> => {
120 let policies = new Array<PolicyInstance>();
121
122 if (policiesObj) {
123 _.forEach(policiesObj, (policy: PolicyInstance): void => {
124 policies.push(new PolicyInstance(policy));
125 })
126 }
127
128 return policies;
129 }
Michael Lando5b593492018-07-29 16:13:45 +0300130 static initGroups = (groupsObj: Array<GroupInstance>):Array<GroupInstance> => {
131 let groups = new Array<GroupInstance>();
132
133 if(groupsObj) {
134 _.forEach(groupsObj, (group: GroupInstance):void => {
135 groups.push(new GroupInstance(group));
136 });
137 }
138
139 return groups;
140 }
Arielk802bd2a2018-04-16 15:37:39 +0300141
142 static initInterfaceOperations(interfaces: any): Array<OperationModel> {
143
144 return _.reduce(interfaces, (acc, interf: any) => {
145
146 return acc.concat(
147 _.map(interf.operations,
148 ({description, name, uniqueId, inputs, outputs}) => {
149 const operation = new OperationModel({
150 description,
151 operationType: name,
152 uniqueId
153 });
154 if (inputs) {
155 const inputParams = _.map(inputs.listToscaDataDefinition, (input:any) => {
156 return {paramName: input.name, paramId: input.inputId};
157 });
158 operation.createInputParamsList(inputParams);
159 }
160 if (outputs) {
161 const outputParams = _.map(outputs.listToscaDataDefinition, (output:any) => {
162 return {paramName: output.name, paramId: output.outputId};
163 });
164 operation.createOutputParamsList(outputParams);
165 }
166 return operation;
167 }
168 )
169 );
170
171 }, []);
172 }
Michael Landoed64b5e2017-06-09 03:19:04 +0300173}
174