Remove ECOMP in headers
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / soapRequestService.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * 
22  */
23
24 app.service('soapRequestService', ['$http', '$q', function ($http, $q) {
25     console.log("////////////soapRequestService");
26         this.changetimeoutMode = function(timeoutMode){
27         console.log("changetimeoutMode");
28                 console.log("timeoutmode:"+timeoutMode);
29                 if(timeoutMode == "Default")
30                         return false;
31                 else
32                         return true;
33         };
34         
35         
36         this.generateTst = function(tstInput, generateTSTUrl){
37         console.log("generateTst");
38                 var def = $q.defer();
39         
40         $http.post(generateTSTUrl, tstInput)
41         .success(function(data){
42             console.log("success");
43                 def.resolve(data);              
44                 
45         })
46         .error(function(data){ 
47         console.log("error");                         
48                 def.reject("GenerateTST not successful");
49         });
50         
51         return def.promise;
52         };
53         
54         
55         this.generateTSTMultiple = function(tstInputList, generateTSTUrl){
56         console.log("generateTSTMultiple");
57                 var def = $q.defer();
58         
59         $http.post(generateTSTUrl, tstInputList)
60         .success(function(data){
61             console.log("success");
62                 def.resolve(data);              
63                 
64         })
65         .error(function(data){ 
66         console.log("error");                         
67                 def.reject("GenerateTST multiple not successful");
68         });
69         
70         return def.promise;
71         };
72         
73         this.downloadTst = function(tstId, tstName,downloadTSTUrl){
74         console.log("downloadTst");
75                 var def = $q.defer();
76                 
77                 var downloadInput={};
78                 
79                 downloadInput.tstId=tstId;
80                 downloadInput.tstName=tstName;
81         
82                 $http({
83             url: downloadTSTUrl,     method: "POST",     data: downloadInput,
84              responseType: 'arraybuffer' }).success(function (data, status, headers, config) {
85              console.log("success");                     
86                  var results = [];
87                  
88                  
89                  results.data = new Blob([data], {type: 'application/octet-stream'});
90                  console.log( results.data);
91                  results.headers = headers();
92                  results.status = status;
93                  results.config = config;
94                  def.resolve(results); 
95                  console.log( "Result From UTM Server : " + results.data);
96         })
97         .error(function(data){
98         console.log("error");                         
99                 def.reject("DownloadTST not successful");
100         });
101         
102         return def.promise;
103         };
104         
105 }]);