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