blob: f59f4576363853481c2bcc2dfd06a3ef07ceaeb2 [file] [log] [blame]
xuegaof248df62019-07-15 15:16:18 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 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
23export default class LoopService {
24 static getLoopNames() {
25 const url = '/restservices/clds/v2/loop/getAllNames';
26 const options = {
27 method: 'GET'
28 };
29 return fetch(url,options)
30 .then(function (response) {
31 if (response.ok) {
32 console.log("GetLoopNames response received: ", response.status);
33 return response.json();
34 } else {
35 let errorMsg = "GetLoopNames failed with status code: " + response.status;
36 console.error(errorMsg);
37 return Promise.reject(errorMsg);
38 }
39 })
40 .then(function (data) {
41 return data;
42 })
43 .catch(function(error) {
44 console.error("GetLoopNames error received",error);
45 return Promise.reject(error);
46 });
47 }
48
49 static getLoop(loopName) {
50 const url = '/restservices/clds/v2/loop/' + loopName;
51 const options = {
52 method: 'GET',
53 headers: {
54 "Content-Type": "application/json"
55 }
56 };
57 return fetch(url,options)
58 .then(function (response) {
59 if (response.ok) {
60 console.log("GetLoop response received: ", response.status);
61 return response.json();
62 } else {
63 let errorMsg = "GetLoop failed with status code: " + response.status;
64 console.error(errorMsg);
65 return Promise.reject(errorMsg);
66 }
67 })
68 .then(function (data) {
69 return data;
70 })
71 .catch(function(error) {
72 console.error("GetLoop error received",error);
73 return Promise.reject(error);
74 });
75 }
76}