Rework deploy/undeploy UI
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / CldsModelService.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * 
22  */
23 app
24 .service(
25 'cldsModelService',
26 [
27         'alertService',
28         '$http',
29         '$q',
30         '$rootScope',
31         function(alertService, $http, $q, $rootScope) {
32
33                 function checkIfElementType(name) {
34                 //This will open the methods located in the app.js
35                         if (undefined == name) {
36                                 return;
37                         }else if (name.toLowerCase().indexOf("policy") >= 0){
38                                 PolicyWindow();
39                         } else {
40                                 $rootScope.selectedBoxName = name;
41                                 ToscaModelWindow();
42                         }
43                 }
44                 this.toggleDeploy = function(uiAction, modelName) {
45                         var svcAction = uiAction.toLowerCase();
46                         var deployUrl = "/restservices/clds/v2/loop/" + svcAction + "Loop/" + modelName;
47                         var def = $q.defer();
48                         var sets = [];
49                         $http.put(deployUrl).success(
50                                 function(data) {
51                                         def.resolve(data);
52                                         alertService.alertMessage("Action Successful: " + svcAction, 1)
53                                         // update deploymentID, lastUpdatedStatus
54                                         setLastUpdatedStatus(data.lastUpdatedStatus);
55                                         setDeploymentStatusURL(data.dcaeDeploymentStatusUrl);
56                                         setDeploymentID(data.dcaeDeploymentId);
57                                         setStatus();
58                                         enableDisableMenuOptions();
59                         }).error(
60                                 function(data) {
61                                         def.resolve(data);
62                                         alertService.alertMessage("Action Failure: " + svcAction, 2);
63                                         def.reject(svcAction + " not successful");
64                         });
65                         return def.promise;
66                 }
67                 this.getModel = function(modelName) {
68                     var def = $q.defer();
69                     var sets = [];
70                     var svcUrl = "/restservices/clds/v2/loop/" + modelName;
71                     //var svcUrl = "/restservices/clds/v1/clds/model/" + modelName;
72                     $http.get(svcUrl).success(function(data) {
73                         //var clModel = '{"name": "ClosedLoopTest","lastComputedState":"DESIGN","svgRepresentation": "representation","globalPropertiesJson": [{"name":"service","value":["4cc5b45a-1f63-4194-8100-cd8e14248c92"]},{"name":"vf","value":["07e266fc-49ab-4cd7-8378-ca4676f1b9ec"]},{"name":"actionSet","value":["vnfRecipe"]},{"name":"location","value":["DC1"]},{"name":"deployParameters","value":{"location_id":"","service_id":"","policy_id":"AUTO_GENERATED_POLICY_ID_AT_SUBMIT"}}], "blueprint": "yaml","lastComputedState": "DESIGN","operationalPolicies": [ {"name": "OpPolicyTest", "configurationsJson": { "policy1": [{"name": "pname","value": "policy1"},{"name": "pid","value": "0"},{"name": "timeout","value": "345"},{"policyConfigurations": [[{"name": "recipe","value": ["restart"]},{"name": "maxRetries","value": ["3"]},{"name": "retryTimeLimit","value": ["180"]},{"name": "_id","value": ["6TtHGPq"]},{"name": "parentPolicy","value": [""]},{"name": "actor","value": ["APPC"]},{"name": "recipeInput","value": [""]},{"name": "recipeLevel","value": ["VM"]},{"name": "targetResourceId","value": ["07e266fc-49ab-4cd7-8378-ca4676f1b9ec"]},{"name": "targetResourceIdOther","value": [""]},{"name": "enableGuardPolicy","value": ["on"]},{"name": "guardPolicyType","value": ["GUARD_YAML"]},{"name": "guardTargets","value": [".*"]},{"name": "minGuard","value": ["1"]},{"name": "maxGuard","value": ["1"]},{"name": "limitGuard","value": ["1"]},{"name": "timeUnitsGuard","value": ["minute"]},{"name": "timeWindowGuard","value": ["10"]},{"name": "guardActiveStart","value": ["00:00:01-05:00"]},{"name": "guardActiveEnd","value": ["00:00:00-05:00"]}]]}]} }],"microServicePolicies": [{"name": "tca","properties": "", "shared": true,"policyTosca": "tosca","jsonRepresentation": {"schema":{"title":"DCAE TCA Config","type":"object","required":["name","eventName"],"properties":{"name":{"propertyOrder":101,"title":"Name","type":"string","default":"New_Set"},"eventName":{"propertyOrder":102,"title":"EventName","type":"string","enum":["event1","event2"]},"clSchemaType":{"propertyOrder":103,"title":"Control Loop Schema Type","type":"string","enum":["","type1","type2"]},"threshold":{"propertyOrder":104,"title":"Threshold","format":"tabs","type":"array","items":{"type":"object","title":"Threshold","required":["metric","operator"],"properties":{"metric":{"propertyOrder":1001,"title":"Metric","type":"string","enum":["metric1","metric2"]},"operator":{"propertyOrder":1003,"default":">","title":"Operator","type":"string","enum":[">","<","=","<=",">="]}, "clEventStatus":{"propertyOrder":1004,"title":"Closed Loop Event Status","type":"string","enum":["","ONSET","ABATED"]}}}}}}}}],"loopLogs": [{ } ] }';
74                         //cl_props = JSON.parse(clModel);
75                         cl_props = data;
76                             def.resolve(data);
77                     }).error(function(data) {
78                             def.reject("Open Model not successful");
79                     });
80                     return def.promise;
81             };
82             this.getSavedModel = function() {
83
84                     var def = $q.defer();
85                     var sets = [];
86                     //var svcUrl = "/restservices/clds/v1/clds/model-names";
87                     var svcUrl = "/restservices/clds/v2/loop/getAllNames";
88                     $http.get(svcUrl).success(function(data) {
89
90                             def.resolve(data);
91                     }).error(function(data) {
92
93                             def.reject("Open Model not successful");
94                     });
95                     return def.promise;
96             };
97             this.setModel = function(modelName, controlNamePrefixIn, bpmnTextIn,
98                                      propTextIn) {
99
100                     var def = $q.defer();
101                     var sets = [];
102                     var svcUrl = "/restservices/clds/v1/clds/model/" + modelName;
103                     var svcRequest = {
104                         name : modelName,
105                         controlNamePrefix : controlNamePrefixIn,
106                         bpmnText : bpmnTextIn,
107                         propText : propTextIn
108                     };
109                     $http.put(svcUrl, svcRequest).success(function(data) {
110                             def.resolve(data);
111                     }).error(function(data) {
112
113                             def.reject("Save Model not successful");
114                     });
115                     return def.promise;
116             };
117             this.processAction = function(uiAction, modelName, controlNamePrefixIn,
118                                           bpmnTextIn, propTextIn, svgXmlIn,
119                                           templateName, typeID, deploymentId) {
120
121                     var def = $q.defer();
122                     var sets = [];
123                     // console.log(svgXmlIn);
124                     var svcUrl = "/restservices/clds/v1/clds/";
125                     var svcAction = uiAction.toLowerCase();
126                     if (svcAction == "save" || svcAction == "refresh") {
127                             svcUrl = svcUrl + "model/" + modelName;
128                     } else if (svcAction == "test") {
129                             svcUrl = svcUrl + "action/submit/" + modelName + "?test=true";
130                     } else {
131                             svcUrl = svcUrl + "action/" + svcAction + "/" + modelName;
132                     }
133                     var svcRequest = {
134                         name : modelName,
135                         controlNamePrefix : controlNamePrefixIn,
136                         bpmnText : bpmnTextIn,
137                         propText : propTextIn,
138                         imageText : svgXmlIn,
139                         templateName : templateName,
140                         typeId : typeID,
141                         deploymentId : deploymentId
142                     };
143                     handleQueryToBackend(def, svcAction, svcUrl, svcRequest);
144                     return def.promise;
145             };
146             this.manageAction = function(modelName, typeId, typeName) {
147
148                     var def = $q.defer();
149                     var sets = [];
150                     var config = {
151                         url : "/restservices/clds/v1/clds/getDispatcherInfo",
152                         method : "GET",
153                         params : {
154                             model : modelName,
155                             typeId : typeId,
156                             typeName : typeName
157                         }
158                     };
159                     $http(config).success(function(data) {
160
161                             def.resolve(data);
162                     }).error(function(data) {
163
164                             def.reject("manage action not successful");
165                     });
166                     return def.promise;
167             };
168             this.processActionResponse = function(modelName) {
169                 // populate control name (prefix and uuid here)
170                     var headerText = "Closed Loop Modeler - " + modelName;
171                     setStatus();
172                     manageCLImage(modelName);
173                     enableDisableMenuOptions();
174             };
175             this.processRefresh = function() {
176                     setStatus();
177                     enableDisableMenuOptions();
178             }
179             function setStatus() {
180                     var status = getLastUpdatedStatus();
181                     // apply color to status
182                     var statusColor = 'white';
183                     if (status.trim() === "DESIGN") {
184                             statusColor = 'gray'
185                     } else if (status.trim() === "DISTRIBUTED") {
186                             statusColor = 'blue'
187                     } else if (status.trim() === "ACTIVE") {
188                             statusColor = 'green'
189                     } else if (status.trim() === "STOPPED") {
190                             statusColor = 'red'
191                     } else if (status.trim() === "DELETING") {
192                             statusColor = 'pink'
193                     } else if (status.trim() === "ERROR") {
194                             statusColor = 'orange'
195                     } else if (status.trim() === "UNKNOWN") {
196                             statusColor = 'blue'
197                     } else {
198                             statusColor = null;
199                     }
200                     var statusMsg = '<span style="background-color:'
201                     + statusColor
202                     + ';-moz-border-radius: 50px;  -webkit-border-radius: 50px;  border-radius: 50px;">&nbsp;&nbsp;&nbsp;'
203                     + status + '&nbsp;&nbsp;&nbsp;</span>';
204                     // display status
205                     if ($("#status_clds").length >= 1)
206                             $("#status_clds").remove();
207                     $("#activity_modeler")
208                     .append(
209                     '<span id="status_clds" style="position: absolute;  left: 61%;top: 151px; font-size:20px;">Status: '
210                     + statusMsg + '</span>');
211             }
212             function manageCLImage(modelName) {
213                 getModelImage(modelName).then(function(pars) {
214                         //var svg='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/2000/svg"> <defs> <marker viewBox="0 0 20 20" markerWidth="10" markerHeight="10" orient="auto" refX="11" refY="10" id="markerSjdype4kmnw"> <path d="M 1 5 L 11 10 L 1 15 Z" style="stroke-width: 1; stroke-linecap: round; stroke-dasharray: 10000, 1;" fill="#000000" /> </marker> <marker viewBox="0 0 20 20" markerWidth="20" markerHeight="20" orient="auto" refX="6" refY="6" id="markerSjdype4kmny"> <circle cx="6" cy="6" r="3.5" style="stroke-width: 1; stroke-linecap: round; stroke-dasharray: 10000, 1;" fill="#ffffff" stroke="#000000" /> </marker> <marker viewBox="0 0 20 20" markerWidth="20" markerHeight="20" orient="auto" refX="8.5" refY="5" id="markerSjdype4kmo0"> <path d="m 1 5 l 0 -3 l 7 3 l -7 3 z" style="stroke-width: 1; stroke-linecap: butt; stroke-dasharray: 10000, 1;" fill="#ffffff" stroke="#000000" /> </marker> <marker viewBox="0 0 20 20" markerWidth="10" markerHeight="10" orient="auto" refX="11" refY="10" id="markerSjdype4kmo2"> <path d="M 1 5 L 11 10 L 1 15" style="stroke-width: 1; stroke-linecap: round; stroke-dasharray: 10000, 1;" fill="#ffffff" stroke="#000000" /> </marker> <marker viewBox="0 0 20 20" markerWidth="10" markerHeight="10" orient="auto" refX="-1" refY="10" id="markerSjdype4kmo4"> <path d="M 0 10 L 8 6 L 16 10 L 8 14 Z" style="stroke-width: 1; stroke-linecap: round; stroke-dasharray: 10000, 1;" fill="#ffffff" stroke="#000000" /> </marker> <marker viewBox="0 0 20 20" markerWidth="10" markerHeight="10" orient="auto" refX="-5" refY="10" id="markerSjdype4kmo6"> <path d="M 1 4 L 5 16" style="stroke-width: 1; stroke-linecap: round; stroke-dasharray: 10000, 1;" fill="#000000" stroke="#000000" /> </marker> </defs><g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="start-circle" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g shape-rendering="geometricPrecision" text-rendering="optimizeQuality" stroke-width="2"> <circle fill="none" r="17" cx="34" cy="41"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="Arrow_d0b22360-770d-4b05-b81c-cf148b121341" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g shape-rendering="geometricPrecision" text-rendering="optimizeQuality" stroke-width="2"> <line y2="41" fill="none" x1="51" x2="170" y1="41"/> <polygon fill="none" points=" 166 38 166 44 172 41"/>             <polygon points=" 166 38 166 44 172 41" stroke="none"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="VES" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g shape-rendering="geometricPrecision" text-rendering="optimizeQuality" stroke-width="2"> <rect fill="none" x="174" width="123" y="1" height="82"/> </g> <g fill-opacity="0" fill="rgb(0,0,0)" text-rendering="optimizeQuality" shape-rendering="geometricPrecision" stroke="rgb(0,0,0)" stroke-opacity="0" stroke-width="2"> <rect x="174" width="123" y="1" height="82" stroke="none"/> </g> <g font-family="sans-serif" shape-rendering="geometricPrecision" text-rendering="optimizeQuality"> <text x="223" xml:space="preserve" y="42" stroke="none">VES</text> <line y2="83" fill="none" stroke-width="2" x1="194" x2="194" y1="1"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="Arrow_d4351927-d77a-4e04-82d1-cd8f2b008137" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="2" shape-rendering="geometricPrecision" font-family="sans-serif"> <line y2="41" fill="none" x1="297" x2="416" y1="41"/> <polygon fill="none" points=" 412 38 412 44 418 41"/> <polygon points=" 412 38 412 44 418 41" stroke="none"/> </g> </g> </g>    <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="TCA" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="2" shape-rendering="geometricPrecision" font-family="sans-serif"> <rect fill="none" x="420" width="123" y="1" height="82"/> </g> <g fill-opacity="0" fill="rgb(0,0,0)" text-rendering="optimizeQuality" font-family="sans-serif" shape-rendering="geometricPrecision" stroke="rgb(0,0,0)" stroke-opacity="0" stroke-width="2"> <rect x="420" width="123" y="1" height="82" stroke="none"/> </g> <g font-family="sans-serif" shape-rendering="geometricPrecision" text-rendering="optimizeQuality"> <text x="470" xml:space="preserve" y="42" stroke="none">TCA</text> <line y2="62" fill="none" stroke-width="2" x1="420" x2="543" y1="62"/> </g> </g> </g>   <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="Arrow_5ae2966f-f971-4c3b-8237-efa551beb531" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="2" shape-rendering="geometricPrecision" font-family="sans-serif"> <line y2="41" fill="none" x1="543" x2="662" y1="41"/> <polygon fill="none" points=" 658 38 658 44 664 41"/> <polygon points=" 658 38 658 44 664 41" stroke="none"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="Policy" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="2" shape-rendering="geometricPrecision" font-family="sans-serif"> <rect fill="none" x="666" width="123" y="1" height="82"/> </g> <g fill-opacity="0" fill="rgb(0,0,0)" text-rendering="optimizeQuality" font-family="sans-serif" shape-rendering="geometricPrecision" stroke="rgb(0,0,0)" stroke-opacity="0" stroke-width="2"> <rect x="666" width="123" y="1" height="82" stroke="none"/> </g> <g font-family="sans-serif" shape-rendering="geometricPrecision" text-rendering="optimizeQuality"> <text x="710" xml:space="preserve" y="42" stroke="none">Policy</text> <line y2="1" fill="none" stroke-width="2" x1="666" x2="727" y1="42"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="Arrow_ed5ccaed-6d8c-44e9-8245-85f66523cb44" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="2" shape-rendering="geometricPrecision" font-family="sans-serif"> <line y2="41" fill="none" x1="789" x2="908" y1="41"/> <polygon fill="none" points=" 904 38 904 44 910 41"/> <polygon points=" 904 38 904 44 910 41" stroke="none"/> </g> </g> </g> <g fill-opacity="1" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" font-family="&apos;Dialog&apos;" font-style="normal" data-element-id="circle_stop" stroke-linejoin="miter" font-size="12px" image-rendering="auto" stroke-dashoffset="0"><!--Generated by the Batik Graphics2D SVG Generator--> <defs id="genericDefs"/> <g> <g text-rendering="optimizeQuality" stroke-width="4" shape-rendering="geometricPrecision" font-family="sans-serif"> <circle fill="none" r="17" cx="929" cy="41"/> </g> </g> </g> </svg>';
215                         var svg = pars;
216                             if ($("#svgContainer").length > 0)
217                                     $("#svgContainer").remove();
218                             $("#js-canvas").append(
219                             "<span id=\"svgContainer\">" + svg + "</span>");
220                             $("#svgContainer svg").attr('width', '100%');
221                             $("#svgContainer svg").attr('height', '100%');
222                             $("#svgContainer").click(
223                             function(event) {
224                                     var name = $($($($(event.target).parent()).parent()).parent()).attr("data-element-id")
225                                     checkIfElementType(name)
226                             });
227                         }, function(data) {
228                         });
229             }
230             enableDisableMenuOptions = function() {
231                     enableDefaultMenu();
232                     //var status = getStatus();
233                 //enableActionMenu(status);
234                 enableAllActionMenu();
235             }
236             getModelImage = function(modelName) {
237                     var def = $q.defer();
238                     var sets = [];
239                     var svcUrl = "/restservices/clds/v2/loop/svgRepresentation/" + modelName;
240                     $http.get(svcUrl).success(function(data) {
241                             def.resolve(data);
242                     }).error(function(data) {
243                             def.reject("Not able to get the model image");
244                     });
245                     return def.promise;
246             };
247     } ]);