Commit includes ControlLoopPolicy API and bugfixes
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / policy-models / Editor / PolicyTemplateController / BaseConfigPolicyController.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP Policy Engine
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 app.controller('baseConfigController', ['$scope', 'PolicyAppService', 'policyNavigator', 'modalService', '$modal', 'Notification',  function ($scope, PolicyAppService, PolicyNavigator, modalService, $modal, Notification) {
21     $("#dialog").hide();
22     
23    
24     $scope.policyNavigator;
25     $scope.savebutton = true;
26     $scope.refreshCheck = false;
27     
28     $scope.refresh = function(){
29         if($scope.refreshCheck){
30                 $scope.policyNavigator.refresh();
31         }
32         $scope.modal('createNewPolicy', true);
33         $scope.temp.policy = "";
34     };
35     
36     $scope.modal = function(id, hide) {
37         return $('#' + id).modal(hide ? 'hide' : 'show');
38     };
39     
40     PolicyAppService.getData('getDictionary/get_EcompNameDataByName').then(function (data) {
41         var j = data;  
42         $scope.data = JSON.parse(j.data);
43         console.log($scope.data);
44         $scope.ecompNameDictionaryDatas = JSON.parse($scope.data.ecompNameDictionaryDatas);
45         console.log($scope.ecompNameDictionaryDatas);
46     }, function (error) {
47         console.log("failed");
48     });
49
50     PolicyAppService.getData('getDictionary/get_AttributeDatabyAttributeName').then(function (data) {
51         var j = data;
52         $scope.data = JSON.parse(j.data);
53         console.log($scope.data);
54         $scope.attributeDictionaryDatas = JSON.parse($scope.data.attributeDictionaryDatas);
55         console.log($scope.attributeDictionaryDatas);
56     }, function (error) {
57         console.log("failed");
58     });
59
60     PolicyAppService.getData('getDictionary/get_RiskTypeDataByName').then(function (data) {
61         var j = data;
62         $scope.data = JSON.parse(j.data);
63         console.log($scope.data);
64         $scope.riskTypeDictionaryDatas = JSON.parse($scope.data.riskTypeDictionaryDatas);
65         console.log($scope.riskTypeDictionaryDatas);
66     }, function (error) {
67         console.log("failed");
68     });
69
70         
71     function extend(obj, src) {
72         for (var key in src) {
73             if (src.hasOwnProperty(key)) obj[key] = src[key];
74         }
75         return obj;
76     }
77     
78     $scope.savePolicy = function(policy){
79         if(policy.itemContent != undefined){
80                 $scope.refreshCheck = true; 
81                 $scope.policyNavigator = policy.itemContent;
82                 policy.itemContent = "";
83         }
84         $scope.savebutton = false;
85         var uuu = "policycreation/save_policy";
86                 var postData={policyData: policy};
87                 $.ajax({
88                         type : 'POST',
89                         url : uuu,
90                         dataType: 'json',
91                         contentType: 'application/json',
92                         data: JSON.stringify(postData),
93                         success : function(data){
94                                 $scope.$apply(function(){
95                                         $scope.data=data.policyData;
96                                         if($scope.data == 'success'){
97                                                 $scope.temp.policy.readOnly = 'true';
98                                                 Notification.success("Policy Saved Successfully.");     
99                                         }else if ($scope.data == 'PolicyExists'){
100                                                 $scope.savebutton = true;
101                                                 Notification.error("Policy Already Exists with Same Name in Scope.");
102                                         }
103                                 });
104                         },
105                         error : function(data){
106                                 Notification.error("Error Occured while saving Policy.");
107                                 $scope.savebutton = true;
108                         }
109                 });
110     };
111     
112  
113     $scope.validatePolicy = function(policy){
114         $scope.scope = policy.domain;
115         document.getElementById("validate").innerHTML = "";
116         var uuu = "policyController/validate_policy.htm";
117                 var postData={policyData: policy};
118                 $.ajax({
119                         type : 'POST',
120                         url : uuu,
121                         dataType: 'json',
122                         contentType: 'application/json',
123                         data: JSON.stringify(postData),
124                         success : function(data){
125                                 $scope.$apply(function(){
126                                         $scope.validateData = data.data.replace(/\"/g, "");
127                                         $scope.data=data.data.substring(1,8);
128                                         var size = data.data.length;
129                                         if($scope.data == 'success'){
130                                                 Notification.success("Validation Success.");
131                                                 $scope.savebutton = false;
132                                                 if (size > 18){
133                                                         var displayWarning = data.data.substring(19,size);
134                                                         document.getElementById("validate").innerHTML = "Safe Policy Warning Message  :  "+displayWarning;
135                                                         document.getElementById("validate").style.color = "white";
136                                                         document.getElementById("validate").style.backgroundColor = "skyblue";
137                                                 }
138                                         }else{
139                                                 Notification.error("Validation Failed.");
140                                                 document.getElementById("validate").innerHTML = $scope.validateData;
141                                                 document.getElementById("validate").style.color = "white";
142                                                 document.getElementById("validate").style.backgroundColor = "red";
143                                                 $scope.savebutton = true;
144                                         }               
145                                 });                     
146                         },
147                         error : function(data){ 
148                                 Notification.error("Validation Failed.");
149                                 $scope.savebutton = true;
150                         }
151                 }); 
152     };
153     
154     if(!$scope.temp.policy.editPolicy  && !$scope.temp.policy.readOnly){
155         $scope.temp.policy.attributes = [];
156     }else{
157            if($scope.temp.policy.attributes.length == 0){
158                    $scope.temp.policy.attributes = [];
159            }
160    }
161     
162     
163     $scope.attributeDatas = [{"attributes" : $scope.temp.policy.attributes}];
164     $scope.addNewChoice = function() {
165         var newItemNo = $scope.temp.policy.attributes .length+1;
166         $scope.temp.policy.attributes.push({'id':'choice'+newItemNo});
167     };
168     $scope.removeChoice = function() {
169         var lastItem = $scope.temp.policy.attributes.length-1;
170         $scope.temp.policy.attributes.splice(lastItem);
171     };
172 }]);