Allow only 1 Operational Policy
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / ToscaModelCtrl.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 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.controller('ToscaModelCtrl',
24     ['$scope', '$rootScope', '$modalInstance', '$location', 'dialogs', 'toscaModelService',
25     function($scope, $rootScope, $modalInstance, $location, dialogs, toscaModelService) {
26
27         $scope.jsonByPolicyType = function(selectedPolicy, oldSelectedPolicy, editorData){
28                 if (selectedPolicy && selectedPolicy != '') {
29                         toscaModelService.getHpModelJsonByPolicyType(selectedPolicy).then(function(response) {
30                                 $('#editor').empty();
31
32                                 var toscaModel = JSON.parse(response.body.toscaModelJson);
33                                 if($scope.policyList && toscaModel.schema.properties && toscaModel.schema.properties.policyList){
34                                         toscaModel.schema.properties.policyList.enum = $scope.policyList;
35                                 }
36
37                                 JSONEditor.defaults.options.theme = 'bootstrap3';
38                                 JSONEditor.defaults.options.iconlib = 'bootstrap2';
39                                 JSONEditor.defaults.options.object_layout = 'grid';
40                                 JSONEditor.defaults.options.disable_properties = true;
41                                 JSONEditor.defaults.options.disable_edit_json = true;
42                                 JSONEditor.defaults.options.disable_array_reorder = true;
43                                 JSONEditor.defaults.options.disable_array_delete_last_row = true;
44                                 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
45                                 JSONEditor.defaults.options.show_errors = 'always';
46
47                                 if($scope.editor) { $scope.editor.destroy(); }
48                                 $scope.editor = new JSONEditor(document.getElementById("editor"),
49                                                       { schema: toscaModel.schema, startval: editorData });
50                                 $scope.editor.watch('root.policy.recipe',function() {
51
52                                 });
53                                 $('#form1').show();
54                         });
55                 } else {
56                                 $('#editor').empty();
57                                 $('#form1').hide();
58                         }
59         }
60
61         if($rootScope.selectedBoxName) {
62                 var policyType = $rootScope.selectedBoxName.split('_')[0].toLowerCase();
63                 $scope.toscaModelName = policyType.toUpperCase() + " Microservice";
64                 if(elementMap[lastElementSelected]) {
65                         $scope.jsonByPolicyType(policyType, '', elementMap[lastElementSelected][policyType]);
66                 }else{
67                         $scope.jsonByPolicyType(policyType, '', '');
68                 }
69             }
70
71         $scope.getEditorData = function(){
72                 if(!$scope.editor){
73                         return null;
74                 }
75                 var errors = $scope.editor.validate();
76                 var editorData = $scope.editor.getValue();
77
78                 if(errors.length) {
79                         $scope.displayErrorMessage(errors);
80                         return null;
81                 }
82                 else{
83                         console.log("there are NO validation errors........");
84                 }
85                 return editorData;
86         }
87
88         $scope.saveToscaProps = function(){
89                 var policyType = $rootScope.selectedBoxName.split('_')[0].toLowerCase();
90                 var data = $scope.getEditorData();
91
92             if(data !== null) {
93                 data = {[policyType]: data};
94                         saveProperties(data);
95                         if($scope.editor) { $scope.editor.destroy(); $scope.editor = null; }
96                         $modalInstance.close('closed');
97                 }
98         }
99
100         $scope.displayErrorMessage = function(errors){
101                 console.log("there are validation errors.....");
102                 var all_errs = "Please address the following issues before selecting 'Done' or 'Policy Types':\n";
103                 for (var i = 0; i < errors.length; i++) {
104                   if(all_errs.indexOf(errors[i].message) < 0) {
105                         all_errs += '\n' + errors[i].message;
106                   }
107                 }
108             window.alert(all_errs);
109         };
110
111         $scope.close = function(){
112                 angular.copy(elementMap[lastElementSelected], $scope.hpPolicyList);
113                         $modalInstance.close('closed');
114                         if($scope.editor) { $scope.editor.destroy(); $scope.editor = null; }
115         }
116
117         $scope.checkDuplicateInObject = function(propertyName, inputArray) {
118                   var seenDuplicate = false,
119                       testObject = {};
120
121                   inputArray.map(function(item) {
122                     var itemPropertyName = item[propertyName];
123                     if (itemPropertyName in testObject) {
124                       testObject[itemPropertyName].duplicate = true;
125                       item.duplicate = true;
126                       seenDuplicate = true;
127                     }
128                     else {
129                       testObject[itemPropertyName] = item;
130                       delete item.duplicate;
131                     }
132                   });
133
134                   return seenDuplicate;
135                 }
136 }
137 ]);