Fix the camel flow
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / OperationalPolicyCtrl.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2019 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 .controller(
25 'operationalPolicyCtrl',
26 [
27     '$scope',
28     '$rootScope',
29     '$uibModalInstance',
30     'data',
31     'operationalPolicyService',
32     'dialogs',
33     function($scope, $rootScope, $uibModalInstance, data, operationalPolicyService, dialogs) {
34
35             console.log("//////operationalPolicyCtrl");
36             $scope.policy_ids = []
37             var allPolicies = {};
38             $scope.guardType = "GUARD_MIN_MAX";
39             $scope.number = 0;
40             $scope.clname = "";
41             $scope.guard_ids = [];
42             function getAllFormId() {
43
44                     return Array.from(document.getElementsByClassName("formId"));
45             }
46             function searchActiveFormId() {
47
48                     var formArray = getAllFormId();
49                     for (var i = 0, max = formArray.length; i < max; i++) {
50                             console.log("Search active FormId, current element " + formArray[i].id);
51                             if (formArray[i].style.display !== "none") {
52                                     console.log("Active form is:" + formArray[i].id);
53                                     return formArray[i];
54                             }
55                     }
56                     console.log("No active formId found !");
57             }
58             function add_one_more() {
59
60                     console.log("add one more");
61                     $("#nav_Tabs li").removeClass("active");
62                     // FormSpan contains a block of the form that is not being
63                     // displayed. We will create clones of that and add them to tabs
64                     var form = $("#formSpan").clone(true, true)
65                     var count = 0;
66                     // Each new tab will have the formId class attached to it. This way
67                     // we can track how many forms we currently have out there and
68                     // assign listeners to them
69                     if ($(".formId").length > 0) {
70                             var greatest = 0;
71                             var s = $(".formId");
72                             for (var i = 0; i < s.length; i++) {
73                                     if (parseInt($(s[i]).attr("id").substring(6)) > greatest) {
74                                             greatest = parseInt($(s[i]).attr("id").substring(6))
75                                     }
76                             }
77                             count = greatest + 1;
78                             $("#properties_tab").append(('<span class="formId" id="formId' + count + '"></span>'));
79                     } else {
80                             count++;
81                             $("#properties_tab").append('<span class="formId" id="formId1"></span>');
82                     }
83                     $("#add_one_more")
84                     .parent()
85                     .before(
86                     ' <li class="active"><a id="go_properties_tab'
87                     + count
88                     + '">new</a><button id="tab_close'
89                     + count
90                     + '" type="button" class="close tab-close-popup" aria-hidden="true" style="margin-top: -30px;margin-right: 5px">&times;</button></li>');
91                     $("#formId" + count).append(form.children());
92                     $(".formId").not($("#formId" + count)).css("display", "none");
93                     addCustListen(count);
94                     $("#formId" + count + " #id").val("new");
95                     $("#formId" + count + " #clname").val($scope.clname);
96                     return count;
97             }
98             function addCustListen(count) {
99
100                     $('#go_properties_tab' + count).click(function(event) {
101
102                             $("#nav_Tabs li").removeClass("active");
103                             $(this).parent().addClass("active");
104                             $("#formId" + count).css("display", "")
105                             $(".formId").not($("#formId" + count)).css("display", "none")
106                     })
107                     $('#tab_close' + count).click(function(event) {
108
109                             $(this).parent().remove();
110                             $scope.policy_ids.splice($scope.policy_ids.indexOf($("#formId" + count + " #id").val()), 1);
111                             $("#formId" + count).remove();
112                     })
113             }
114             function greatestIdNum() {
115
116                     var greatest = 0;
117                     var s = $(".formId");
118                     for (var i = 0; i < s.length; i++) {
119                             if (parseInt($(s[i]).attr("id").substring(6)) > greatest) {
120                                     greatest = parseInt($(s[i]).attr("id").substring(6))
121                             }
122                     }
123                     return greatest;
124             }
125             function serializeElement(element) {
126
127                     var o = {};
128                     var a = element.serializeArray();
129                     $.each(a, function() {
130
131                             if (o[this.name]) {
132                                     if (!o[this.name].push) {
133                                             o[this.name] = [ o[this.name] ];
134                                     }
135                                     o[this.name].push(this.value || '');
136                             } else {
137                                     o[this.name] = this.value || '';
138                             }
139                     });
140                     return o;
141             }
142             function savePolicyLocally() {
143
144                     var polForm = {};
145                     var clPolForm = {};
146                     clPolForm = serializeElement($("#operationalPolicyHeaderForm"));
147                     allPolicies['guard_policies'] = {};
148                     var policiesArray = []
149                     $.each($(".formId"), function() {
150
151                             var policyProperties = serializeElement($("#" + this.id + " .policyProperties"));
152                             policyProperties["target"] = serializeElement($("#" + this.id + " .policyTarget"))
153                             policiesArray.push(policyProperties);
154                             // Now get the Guard
155                             if ($("#" + this.id + " #enableGuardPolicy").is(':checked')) {
156                                     var guardPolicyBody = serializeElement($("#" + this.id + " .guardProperties"));
157                                     var guardPolicyId = guardPolicyBody['id'];
158                                     delete guardPolicyBody['id'];
159                                     allPolicies['guard_policies'][guardPolicyId] = guardPolicyBody;
160                                     $scope.guard_ids.push(guardPolicyId);
161                             }
162                     });
163                     polForm['controlLoop'] = clPolForm;
164                     polForm['policies'] = policiesArray;
165                     allPolicies['operational_policy'] = polForm;
166             }
167             function add_new_policy() {
168
169                     console.log("add new policy");
170                     // remove old gui forms
171                     for (var i = 1; i < ($(".formId").length + 1); i++) {
172                             $("#go_properties_tab" + i).parent().remove();
173                     }
174                     $(".formId").remove();
175                     $("#add_one_more").click();
176             }
177             function configureComponents(allPolicies) {
178
179                     console.log("load properties to op policy");
180                     // Set the header
181                     $.each($('#operationalPolicyHeaderForm').find('.form-control'), function() {
182
183                             $(this).val(allPolicies['operational_policy']['controlLoop'][this.id]);
184                     });
185                     // Set the sub-policies
186                     $.each(allPolicies['operational_policy']['policies'], function(opPolicyElemIndex, opPolicyElemValue) {
187
188                             var formNum = add_one_more();
189                             $.each($('.policyProperties').find('.form-control'), function(opPolicyPropIndex, opPolicyPropValue) {
190
191                                     $("#formId" + formNum + " .policyProperties").find("#" + opPolicyPropValue.id).val(
192                                     allPolicies['operational_policy']['policies'][opPolicyElemIndex][opPolicyPropValue.id]);
193                             });
194                             $.each($('.policyTarget').find('.form-control'), function(opPolicyTargetPropIndex, opPolicyTargetPropValue) {
195
196                                     $("#formId" + formNum + " .policyTarget").find("#" + opPolicyTargetPropValue.id).val(
197                                     allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target'][opPolicyTargetPropValue.id]);
198                             });
199                             // update the current tab label
200                             $("#go_properties_tab" + formNum).text(
201                             allPolicies['operational_policy']['policies'][opPolicyElemIndex]['id']);
202                             // Check if there is a guard set for it
203                             $.each(allPolicies['guard_policies'], function(guardElemId, guardElemValue) {
204
205                                     if (guardElemValue.recipe === $($("#formId" + formNum + " #recipe")[0]).val()) {
206                                             // Found one, set all guard prop
207                                             $.each($('.guardProperties').find('.form-control'), function(guardPropElemIndex,
208                                                                                                          guardPropElemValue) {
209
210                                                     guardElemValue['id'] = guardElemId;
211                                                     $("#formId" + formNum + " .guardProperties").find("#" + guardPropElemValue.id).val(
212                                                     guardElemValue[guardPropElemValue.id]);
213                                             });
214                                             // And finally enable the flag
215                                             $("#formId" + formNum + " #enableGuardPolicy").prop("checked", true);
216                                     }
217                             });
218                     });
219             }
220             $scope.initTargetResourceId = function(event) {
221                 var formNum = $(event.target).closest('.formId').attr('id').substring(6);
222                 
223                     var type = $(event.target).val();
224                     var recipe = $("#formId" + formNum + "#recipe").val();
225                     $("#formId" + formNum + " #modelName").val("");
226                     $("#formId" + formNum + " #modelInvariantId").val("");
227                     $("#formId" + formNum + " #modelVersionId").val("");
228                     $("#formId" + formNum + " #modelVersion").val("");
229                     $("#formId" + formNum + " #modelCustomizationId").val("");
230                     $("#formId" + formNum + " #resourceId").empty();
231                     $("#formId" + formNum + " #resourceId").append($('<option></option>').val("").html("-- choose an option --"));
232                     if (type == "VM" || type == "" || type == "VNF") {
233                             $("#formId" + formNum + " #metadata *").prop('disabled', true);
234                     }
235                     var resourceVnf = getResourceDetailsVfProperty();
236                     if (type == "VNF" && (null !== resourceVnf || undefined !== resourceVnf)) {
237                             for ( var prop in resourceVnf) {
238                                     var name = resourceVnf[prop]["name"];
239                                     $("#formId" + formNum + " #resourceId").append($('<option></option>').val(name).html(name));
240                             }
241                     }
242                     var resourceVFModule = getResourceDetailsVfModuleProperty();
243                     if (type == "VFModule" && (null !== resourceVFModule || undefined !== resourceVFModule)) {
244                             if (recipe == 'VF Module Create' || recipe == 'VF Module Delete') {
245                                     for ( var prop in resourceVFModule) {
246                                             if (resourceVFModule[prop]["isBase"] == false) {
247                                                     $("#formId" + formNum + " #resourceId").append($('<option></option>').val(resourceVFModule[prop]["vfModuleModelName"]).html(resourceVFModule[prop]["vfModuleModelName"]));
248                                             }
249                                     }
250                             } else {
251                                     for ( var prop in resourceVFModule) {
252                                             $("#formId" + formNum + " #resourceId").append($('<option></option>').val(resourceVFModule[prop]["vfModuleModelName"]).html(resourceVFModule[prop]["vfModuleModelName"]));
253                                     }
254                             }
255                     }
256             }
257             $scope.changeTargetResourceId = function(event) {
258                     var formNum = $(event.target).closest('.formId').attr('id').substring(6);
259                     $("#formId" + formNum +" #modelName").val("");
260                     $("#formId" + formNum +" #modelInvariantId").val("");
261                     $("#formId" + formNum +" #modelVersionId").val("");
262                     $("#formId" + formNum +" #modelVersion").val("");
263                     $("#formId" + formNum +" #modelCustomizationId").val("");
264                     var resourceVFModule = getResourceDetailsVfModuleProperty();
265                     var type = $("#formId" + formNum +" #type").val();
266                     var recipe = $("#formId" + formNum +" #recipe").val();
267                     if (type == "VFModule" && (null !== resourceVFModule || undefined !== resourceVFModule)
268                     && (recipe == 'VF Module Create' || recipe == 'VF Module Delete')) {
269                             for ( var prop in resourceVFModule) {
270                                     if (prop ==  $(event.target).val()) {
271                                             $("#formId" + formNum +" #modelName").val(resourceVFModule[prop]["vfModuleModelName"]);
272                                             $("#formId" + formNum +" #modelInvariantId").val(resourceVFModule[prop]["vfModuleModelInvariantUUID"]);
273                                             $("#formId" + formNum +" #modelVersionId").val(resourceVFModule[prop]["vfModuleModelUUID"]);
274                                             $("#formId" + formNum +" #modelVersion").val(resourceVFModule[prop]["vfModuleModelVersion"]);
275                                             $("#formId" + formNum +" #modelCustomizationId").val(resourceVFModule[prop]["vfModuleModelCustomizationUUID"]);
276                                             $("#formId" + formNum +" #metadata *").prop('disabled', false);
277                                     }
278                             }
279                     } else {
280                             $("#formId" + formNum +" #metadata *").prop('disabled', true);
281                     }
282             }
283             $scope.changeGuardPolicyType = function() {
284
285                     var formItemActive = searchActiveFormId();
286                     if (formItemActive === undefined)
287                             return;
288                     if ($("#" + formItemActive.id + " #guardPolicyType").val() === "GUARD_MIN_MAX") {
289                             $("#" + formItemActive.id + " #minMaxGuardPolicyDiv").show();
290                             $("#" + formItemActive.id + " #frequencyLimiterGuardPolicyDiv").hide();
291                     } else if ($("#" + formItemActive.id + " #guardPolicyType").val() === "GUARD_YAML") {
292                             $("#" + formItemActive.id + " #minMaxGuardPolicyDiv").hide();
293                             $("#" + formItemActive.id + " #frequencyLimiterGuardPolicyDiv").show();
294                     }
295             }
296             $scope.initPolicySelect = function() {
297
298                     if (allPolicies['operational_policy'] === undefined || allPolicies['operational_policy'] === null) {
299                             allPolicies = getOperationalPolicyProperty();
300                     }
301                     // Provision all policies ID first
302                     if ($scope.policy_ids.length == 0 && allPolicies['operational_policy'] != undefined) {
303                             $.each(allPolicies['operational_policy']['policies'], function() {
304
305                                     $scope.policy_ids.push(this['id']);
306                             });
307                     }
308             }
309             $scope.init = function() {
310
311                     $(function() {
312
313                             $scope.clname = getLoopName();
314                             $("#add_one_more").click(function(event) {
315
316                                     console.log("add one more");
317                                     event.preventDefault();
318                                     $scope.policy_ids.push($("#formId" + add_one_more() + " #id").val());
319                             });
320                             if (allPolicies['operational_policy'] !== undefined && allPolicies['operational_policy'] !== null) {
321                                     // load properties
322                                     console.log("load properties");
323                                     configureComponents(allPolicies);
324                             } else {
325                                     console.log("create new policy");
326                                     add_new_policy();
327                             }
328                             $("#savePropsBtn").click(function(event) {
329
330                                     console.log("save properties triggered");
331                                     savePolicyLocally();
332                                     for (var i = 0; i <= $scope.guard_ids.length; i++) {
333                                             for (var j = i; j <= $scope.guard_ids.length; j++) {
334                                                     if (i != j && $scope.guard_ids[i] == $scope.guard_ids[j]) {
335                                                             // duplacated guard policy id exist
336                                                             alert("The guard policy ID should be unique.");
337                                                             return;
338                                                     }
339                                             }
340                                     }
341                                     angular.element(document.getElementById('formSpan')).scope().submitForm(allPolicies);
342                                     $("#close_button").click();
343                             });
344                     });
345             }
346             $scope.init();
347             $scope.updateGuardRecipe = function(event) {
348
349                     var formNum = $(event.target).closest('.formId').attr('id').substring(6);
350                     // Get the second recipe (guard one) and update it
351                     $($("#formId" + formNum + " #recipe")[1]).val($(event.target).val());
352             }
353             $scope.updateGuardActor = function(event) {
354
355                     var formNum = $(event.target).closest('.formId').attr('id').substring(6);
356                     // Get the second actor (guard one) and update it
357                     $($("#formId" + formNum + " #actor")[1]).val($(event.target).val());
358             }
359             // When we change the name of a policy
360             $scope.updateTabLabel = function(event) {
361
362                     // update policy id structure
363                     var formNum = $(event.target).closest('.formId').attr('id').substring(6);
364                     $scope.policy_ids.splice($scope.policy_ids.indexOf($("#formId" + formNum + " #id").val()), 1);
365                     $scope.policy_ids.push($(event.target).val());
366                     // Update the tab now
367                     $("#go_properties_tab" + formNum).text($(event.target).val());
368             }
369             $scope.close = function() {
370
371                     console.log("close");
372                     $uibModalInstance.close("closed");
373             };
374             $scope.submitForm = function(obj) {
375
376                     var operationalPolicies = getOperationalPolicies();
377                     if (obj !== null) {
378                             operationalPolicies[0]["configurationsJson"] = obj;
379                     }
380                     operationalPolicyService.saveOpPolicyProperties(operationalPolicies).then(function(pars) {
381
382                             updateOpPolicyProperties(operationalPolicies);
383                     }, function(data) {
384
385                     });
386             };
387     } ]);