Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / app / policyApp / controller / PolicyAddScopeRoleController.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
21 /**
22  * 
23  */
24 var editRoleController =  function ($scope, RolesTabService, $modalInstance, message){
25     if(message.editRoleData!=null){
26         $scope.label='Edit Role'
27         $scope.disableCd=true;
28     }
29     $scope.editRole = message.editRoleData;
30
31     RolesTabService.getPolicyScopesData().then(function (data) {
32         var j = data;
33         $scope.data = JSON.parse(j.data);
34         console.log($scope.data);
35         $scope.scopeDatas = JSON.parse($scope.data.scopeDatas);
36         console.log($scope.scopeDatas);
37     }, function (error) {
38         console.log("failed");
39     });
40
41     $scope.saveRole = function(editRoleData) {
42         var uuu = "save_NonSuperRolesData.htm";
43         var postData={editRoleData: editRoleData};
44         $.ajax({
45             type : 'POST',
46             url : uuu,
47             dataType: 'json',
48             contentType: 'application/json',
49             data: JSON.stringify(postData),
50             success : function(data){
51                 $scope.$apply(function(){
52                     $scope.rolesDatas=data.rolesDatas;});
53                 console.log($scope.rolesDatas);
54                 $modalInstance.close({rolesDatas:$scope.rolesDatas});
55             },
56             error : function(data){
57                 alert("Error while saving Role.");
58             }
59         });
60     };
61
62     $scope.close = function() {
63         $modalInstance.close();
64     };
65 }