[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / dictionaryController / MSModelsDictController.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('editMSModelController' ,  function ($scope, $modalInstance, message, $http, UserInfoServiceDS2, Notification){
21     if(message.microServiceModelsDictionaryData==null)
22         $scope.label='Add Micro Service Model'
23     else{
24         $scope.label='Edit Micro Service Model'
25         $scope.disableCd=true;
26     }
27         
28         /*getting user info from session*/
29         var userid = null;
30         UserInfoServiceDS2.getFunctionalMenuStaticDetailSession()
31                 .then(function (response) {                     
32                         userid = response.userid;               
33          });
34         
35         var valid = true;
36     $scope.editMSmodelName = message.microServiceModelsDictionaryData;
37
38     $scope.uploadFile = function(files) {
39         var extn = files[0].name.substr(files[0].name.lastIndexOf('.')+1);
40         if(extn == 'zip' || extn == 'xmi'||  extn == 'yml'){
41                 valid = true;
42                 var fd = new FormData();
43                 fd.append("file", files[0]);
44                 $http.post("ms_dictionary/set_MSModelData", fd, {
45                         withCredentials: false,
46                         headers: {'Content-Type': undefined },
47                         transformRequest: angular.identity
48                 }).success(function(data){
49                 if(data.classListDatas  == "EMPTY"){
50                         Notification.error("No Micro Services Avaialble.")
51                 }else{      
52                         $scope.classListDatas=data.classListDatas;
53                         $scope.modalDatas = data.modelDatas;
54                         $scope.modelType= data.modelType;
55                         console.log($scope.classListDatas);
56                 }
57             }).error( );
58         }else{
59                 Notification.error("Micro Service Model Upload file should ends with .zip or .xmi extension");
60                 valid = false;
61         }
62
63     };
64     
65     $scope.saveMSModel = function(microServiceModelsDictionaryData) {
66         if(valid){
67                  var uuu = "saveDictionary/ms_dictionary/save_model";
68                 var postData={microServiceModelsDictionaryData: microServiceModelsDictionaryData, userid: userid, classMap: $scope.modalDatas,modelType:$scope.modelType};
69                 $.ajax({
70                     type : 'POST',
71                     url : uuu,
72                     dataType: 'json',
73                     contentType: 'application/json',
74                     data: JSON.stringify(postData),
75                     success : function(data){
76                         $scope.$apply(function(){
77                             $scope.microServiceModelsDictionaryDatas=data.microServiceModelsDictionaryDatas;});
78                         if($scope.microServiceModelsDictionaryDatas == "Duplicate"){
79                                 Notification.error("MS Models Dictionary exists with Same Model Name.")
80                         }else{      
81                                 console.log($scope.microServiceModelsDictionaryDatas);
82                             $modalInstance.close({microServiceModelsDictionaryDatas:$scope.microServiceModelsDictionaryDatas});
83                         }
84                     },
85                     error : function(data){
86                         Notification.error("Error while saving.");
87                     }
88                 });
89         }else{
90                 Notification.error("Please check Micro Service Model Upload file format.");
91         }
92        
93     };
94
95     $scope.close = function() {
96         $modalInstance.close();
97     };
98 });