blob: 97d3847350379dc0212616206f777cda358272a1 [file] [log] [blame]
ilanap1965d162018-01-04 11:34:59 +02001/*
Maleke6c3c722018-10-16 16:44:41 +03002* Copyright © 2018 European Support Limited
3*
4* Licensed under the Apache License, Version 2.0 (the "License");
5* you may not use this file except in compliance with the License.
6* You may obtain a copy of the License at
7*
8* http: //www.apache.org/licenses/LICENSE-2.0
9*
10* Unless required by applicable law or agreed to in writing, software
11* distributed under the License is distributed on an "AS IS" BASIS,
12* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13* See the License for the specific language governing permissions and
14* limitations under the License.
15*/
16
Michael Landoefa037d2017-02-19 12:57:33 +020017import uuid from 'uuid-js';
18import md5 from 'md5';
ilanap1965d162018-01-04 11:34:59 +020019import axios from 'axios';
Michael Landoefa037d2017-02-19 12:57:33 +020020
21import store from 'sdc-app/AppStore.js';
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020022import { actionTypes as LoaderConstants } from 'nfvo-components/loader/LoaderConstants.js';
Michael Landoefa037d2017-02-19 12:57:33 +020023import Configuration from 'sdc-app/config/Configuration.js';
24import errorResponseHandler from './ErrorResponseHandler.js';
25
ilanap1965d162018-01-04 11:34:59 +020026//methods
27const GET = 'GET';
28const POST = 'POST';
29const PUT = 'PUT';
30const DELETE = 'DELETE';
ilanap1965d162018-01-04 11:34:59 +020031const BINARY = 'binary';
32
Michael Landoefa037d2017-02-19 12:57:33 +020033const AUTHORIZATION_HEADER = 'X-AUTH-TOKEN';
34const STORAGE_AUTH_KEY = 'sdc-auth-token';
35const REQUEST_ID_HEADER = 'X-ECOMP-RequestID';
36const CONTENT_MD5_HEADER = 'Content-MD5';
Michael Landoefa037d2017-02-19 12:57:33 +020037
Maleke6c3c722018-10-16 16:44:41 +030038export function applySecurity(options, data) {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020039 let headers = options.headers || (options.headers = {});
Murali-P72d62fb2018-03-29 17:46:39 +053040 if (options.isAnonymous) {
41 return;
42 }
AviZi280f8012017-06-09 02:39:56 +030043
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020044 let authToken = localStorage.getItem(STORAGE_AUTH_KEY);
45 if (authToken) {
46 headers[AUTHORIZATION_HEADER] = authToken;
47 }
AviZi280f8012017-06-09 02:39:56 +030048
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020049 let catalogApiHeaders = Configuration.get('CatalogApiHeaders'),
50 catalogUidHeader = catalogApiHeaders && catalogApiHeaders.userId;
51 if (catalogUidHeader) {
52 headers[catalogUidHeader.name] = catalogUidHeader.value;
53 }
ilanap1965d162018-01-04 11:34:59 +020054
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020055 headers[REQUEST_ID_HEADER] = uuid.create().toString();
56 if (options.md5) {
57 let headers = options.headers;
58 headers[CONTENT_MD5_HEADER] = window.btoa(
59 md5(JSON.stringify(data)).toLowerCase()
60 );
61 }
AviZi280f8012017-06-09 02:39:56 +030062}
63
ilanap1965d162018-01-04 11:34:59 +020064function handleSuccess(responseHeaders, requestHeaders) {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020065 let authToken = responseHeaders[AUTHORIZATION_HEADER];
66 let prevToken = requestHeaders && requestHeaders[AUTHORIZATION_HEADER];
67 if (authToken && authToken !== prevToken) {
68 if (authToken === 'null') {
69 localStorage.removeItem(STORAGE_AUTH_KEY);
70 } else {
71 localStorage.setItem(STORAGE_AUTH_KEY, authToken);
72 }
73 }
AviZi280f8012017-06-09 02:39:56 +030074}
75
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020076class RestAPIUtil {
Yarin Dekelbc205342018-10-16 10:42:49 +030077 handleRequest(url, type, options = {}, data = {}) {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020078 applySecurity(options, data);
ilanap1965d162018-01-04 11:34:59 +020079
andre.schmid4594cba2022-01-25 19:38:32 +000080 const config = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020081 method: type,
82 url: url,
83 headers: options.headers,
84 data: data
85 };
ilanap1965d162018-01-04 11:34:59 +020086
andre.schmid4594cba2022-01-25 19:38:32 +000087 if (options.validateStatus) {
88 config.validateStatus = options.validateStatus;
89 }
90
91 if (options.onUploadProgress) {
92 config.onUploadProgress = options.onUploadProgress;
93 }
94
95 if (!options.noLoading) {
96 store.dispatch({ type: LoaderConstants.SEND_REQUEST, url: url });
97 }
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020098 if (options.dataType === BINARY) {
99 config.responseType = 'arraybuffer';
100 return axios(config)
101 .then(result => {
andre.schmid4594cba2022-01-25 19:38:32 +0000102 if (!options.noLoading) {
103 store.dispatch({
104 type: LoaderConstants.RECEIVE_RESPONSE,
105 url: result.config.url
106 });
107 }
108
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200109 return {
110 blob: new Blob([result.data]),
111 headers: result.headers
112 };
113 })
114 .catch(error => {
andre.schmid4594cba2022-01-25 19:38:32 +0000115 if (!options.noLoading) {
116 store.dispatch({
117 type: LoaderConstants.RECEIVE_RESPONSE,
118 url: error.config.url
119 });
120 }
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200121 errorResponseHandler(error.response);
122 });
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200123 }
andre.schmid4594cba2022-01-25 19:38:32 +0000124 return axios(config)
125 .then(result => {
126 store.dispatch({
127 type: LoaderConstants.RECEIVE_RESPONSE,
128 url: result.config.url
129 });
130 handleSuccess(result.headers, result.config.headers);
131 return result.data;
132 })
133 .catch(error => {
134 store.dispatch({
135 type: LoaderConstants.RECEIVE_RESPONSE,
136 url: error.config.url
137 });
138 errorResponseHandler(error.response);
139 return Promise.reject({
140 responseJSON: error.response.data
141 });
142 });
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200143 }
AviZi280f8012017-06-09 02:39:56 +0300144
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200145 fetch(url, options) {
146 return this.handleRequest(url, GET, options);
147 }
ilanap1965d162018-01-04 11:34:59 +0200148
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200149 get(url, options) {
150 return this.fetch(url, options);
151 }
AviZi280f8012017-06-09 02:39:56 +0300152
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200153 post(url, data, options) {
154 return this.handleRequest(url, POST, options, data);
155 }
ilanap1965d162018-01-04 11:34:59 +0200156
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200157 put(url, data, options) {
158 return this.handleRequest(url, PUT, options, data);
159 }
ilanap1965d162018-01-04 11:34:59 +0200160
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200161 destroy(url, options) {
162 return this.handleRequest(url, DELETE, options);
163 }
AviZi280f8012017-06-09 02:39:56 +0300164}
165
ilanap1965d162018-01-04 11:34:59 +0200166const instance = new RestAPIUtil();
AviZi280f8012017-06-09 02:39:56 +0300167
AviZi280f8012017-06-09 02:39:56 +0300168export default instance;