[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / AutoPushTabController / RemovePDPGroupPoliciesController.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP 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('removeGroupPoliciesController' ,  function ($scope, $modalInstance, message, Notification){
21     if(message.selectedPdpGroupData !=null){
22         $scope.label='Remove PDP Group Policies'
23         $scope.disableCd=true;
24     }
25     $scope.policies = message.selectedPdpGroupData.policies;
26     $scope.pdpGroupData = message.selectedPdpGroupData;
27
28     $scope.removePoliciesGrid = {
29         data : 'policies',
30         enableFiltering: true,
31         columnDefs: [
32             { field: 'root', displayName : 'Root', width : '10%'},
33             { field: 'name', displayName : 'Name' },
34             { field: 'version' , width : '10%'},
35             { field: 'id' }
36         ]
37     };
38
39     $scope.removePoliciesGrid.onRegisterApi = function(gridApi){
40         //set gridApi on scope
41         $scope.gridApi = gridApi;
42         gridApi.selection.on.rowSelectionChanged($scope,function(row){
43             var msg = 'row selected ' + row.isSelected;
44         });
45
46         gridApi.selection.on.rowSelectionChangedBatch($scope,function(rows){
47             var msg = 'rows changed ' + rows.length;
48         });
49     };
50
51     $scope.removePolicies = function() {
52         $scope.removeGroupData = [];
53         angular.forEach($scope.gridApi.selection.getSelectedRows(), function (data, index) {
54                 $scope.removeGroupData.push(data);    
55         });
56         if($scope.removeGroupData.length > 0){
57                  var uuu = "auto_Push/remove_GroupPolicies.htm";
58              var postData={data: $scope.removeGroupData,
59                         activePdpGroup : $scope.pdpGroupData};
60              $.ajax({
61                  type : 'POST',
62                  url : uuu,
63                  dataType: 'json',
64                  contentType: 'application/json',
65                  data: JSON.stringify(postData),
66                  success : function(data){
67                      $scope.$apply(function(){
68                          $scope.data=data.data;});
69                      console.log($scope.data);
70                      $modalInstance.close({data:$scope.data});
71                      Notification.success("Policy Removed Successfully");
72                  },
73                  error : function(data){
74                         Notification.error("Error Occured while removing Policy");
75                  }
76              });
77         }else{
78                 Notification.error("Please select atleast one Policy to remove");
79         }
80     };
81
82     $scope.close = function() {
83         $modalInstance.close();
84     };
85 });