-
Notifications
You must be signed in to change notification settings - Fork 9
/
AxiosHTTP.ts
280 lines (235 loc) · 8.27 KB
/
AxiosHTTP.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import axios from 'axios';
import { AxiosStatic, AxiosInstance, AxiosRequestConfig } from 'axios';
import cloneDeep from 'lodash/cloneDeep';
/** @hidden */
// tslint:disable-next-line
const URI = require('urijs');
import {AbstractHTTP} from './AbstractHTTP';
import {OnmsError} from '../api/OnmsError';
import {OnmsHTTPOptions} from '../api/OnmsHTTPOptions';
import {OnmsResult} from '../api/OnmsResult';
import {OnmsServer} from '../api/OnmsServer';
import {log} from '../api/Log';
/**
* Implementation of the [[IOnmsHTTP]] interface using Axios: https://github.com/mzabriskie/axios
* @category Rest
* @implements IOnmsHTTP
*/
export class AxiosHTTP extends AbstractHTTP {
/**
* The Axios implementation class we'll use for making ReST calls. This is necessary
* to make sure we end up with the correct backend (XMLHttpRequest or Node.js 'http')
* at runtime.
* @hidden
*/
private axiosImpl: AxiosStatic;
/**
* The Axios instance we'll use for making ReST calls. This will be reinitialized whenever
* the server configuration changes.
*/
private axiosObj?: AxiosInstance;
/**
* Construct an AxiosHTTP instance.
* @param server - The server to connect to.
* @param axiosImpl - The Axios implementation class to use.
* @param timeout - The default timeout for ReST connections.
*/
constructor(server?: OnmsServer, axiosImpl?: AxiosStatic, timeout = 10000) {
super(server, timeout);
this.axiosImpl = axiosImpl || axios;
}
/**
* Make an HTTP GET call using `axios.request({method:'get'})`.
*/
public get(url: string, options?: OnmsHTTPOptions) {
const realUrl = this.getServer(options).resolveURL(url);
const opts = this.getConfig(options);
const urlObj = new URI(realUrl);
urlObj.search(opts.params);
log.debug('GET ' + urlObj.toString());
opts.method = 'get';
opts.url = realUrl;
return this.getImpl(options).request(opts).then((response) => {
let type;
if (response.headers && response.headers['Content-Type']) {
type = response.headers['Content-Type'] as string;
}
return OnmsResult.ok(this.getData(response), undefined, response.status, type);
}).catch((err) => {
throw this.handleError(err, opts);
});
}
/**
* Make an HTTP HEAD call using `axios.request({method:'head'})`.
*/
public head(url: string, options?: OnmsHTTPOptions) {
const realUrl = this.getServer(options).resolveURL(url);
const opts = this.getConfig(options);
const urlObj = new URI(realUrl);
urlObj.search(opts.params);
log.debug('HEAD ' + urlObj.toString());
opts.method = 'head';
opts.url = realUrl;
return this.getImpl(options).request(opts).then((response) => {
let type;
if (response.headers && response.headers['Content-Type']) {
type = response.headers['Content-Type'] as string;
}
return OnmsResult.ok(this.getData(response), undefined, response.status, type);
}).catch((err) => {
throw this.handleError(err, opts);
});
}
/**
* Make an HTTP PUT call using `axios.request({method:'put'})`.
*/
public put(url: string, options?: OnmsHTTPOptions) {
const realUrl = this.getServer(options).resolveURL(url);
const opts = this.getConfig(options);
const urlObj = new URI(realUrl);
urlObj.search(opts.params);
log.debug('PUT ' + urlObj.toString());
opts.data = Object.assign({}, opts.params);
opts.method = 'put';
opts.url = realUrl;
return this.getImpl(options).request(opts).then((response) => {
let type;
if (response.headers && response.headers['Content-Type']) {
type = response.headers['Content-Type'] as string;
}
return OnmsResult.ok(this.getData(response), undefined, response.status, type);
}).catch((err) => {
throw this.handleError(err, opts);
});
}
/**
* Make an HTTP POST call using `axios.request({method:'post'})`.
*/
public post(url: string, options?: OnmsHTTPOptions) {
const realUrl = this.getServer(options).resolveURL(url);
const opts = this.getConfig(options);
const urlObj = new URI(realUrl);
urlObj.search(opts.params);
log.debug('POST ' + urlObj.toString());
opts.method = 'post';
opts.url = realUrl;
return this.getImpl(options).request(opts).then((response) => {
let type;
if (response.headers && response.headers['Content-Type']) {
type = response.headers['Content-Type'] as string;
}
return OnmsResult.ok(this.getData(response), undefined, response.status, type);
}).catch((err) => {
throw this.handleError(err, opts);
});
}
/**
* Make an HTTP DELETE call using `axios.request({method:'delete'})`.
*/
public httpDelete(url: string, options?: OnmsHTTPOptions) {
const realUrl = this.getServer(options).resolveURL(url);
const opts = this.getConfig(options);
const urlObj = new URI(realUrl);
urlObj.search(opts.params);
log.debug('DELETE ' + urlObj.toString());
opts.method = 'delete';
opts.url = realUrl;
return this.getImpl(options).request(opts).then((response) => {
let type;
if (response.headers && response.headers['Content-Type']) {
type = response.headers['Content-Type'] as string;
}
return OnmsResult.ok(this.getData(response), undefined, response.status, type);
}).catch((err) => {
throw this.handleError(err, opts);
});
}
/**
* Clear the current [[AxiosInstance]] so it is recreated on next request with the
* new server configuration.
*/
protected onSetServer() {
super.onSetServer();
this.axiosObj = undefined;
}
/**
* Internal method to turn [[OnmsHTTPOptions]] into an [[AxiosRequestConfig]] object.
* @hidden
*/
private getConfig(options?: OnmsHTTPOptions): AxiosRequestConfig {
const allOptions = this.getOptions(options);
const ret = {
transformResponse: [], // we do this so we can post-process only on success
} as AxiosRequestConfig;
if (allOptions.auth && allOptions.auth.username && allOptions.auth.password) {
ret.auth = {
password: allOptions.auth.password,
username: allOptions.auth.username,
};
this.axiosImpl.defaults.auth = cloneDeep(ret.auth);
}
if (allOptions.timeout) {
ret.timeout = allOptions.timeout;
}
if (allOptions.headers) {
ret.headers = cloneDeep(allOptions.headers);
} else {
ret.headers = {};
}
if (!ret.headers.Accept) {
ret.headers.Accept = 'application/json';
}
if (!ret.headers['Content-Type']) {
ret.headers['Content-Type'] = 'application/json;charset=utf-8';
}
const type = ret.headers.Accept;
ret.transformResponse = [];
if (type === 'application/json') {
ret.responseType = 'json';
} else if (type === 'text/plain') {
ret.responseType = 'text';
} else if (type === 'application/xml') {
ret.responseType = 'text';
} else {
throw new OnmsError('Unhandled "Accept" header: ' + type);
}
/*
* This tells Axios to turn multi-value parameters into key=value1&key=value2.
* See: https://github.com/axios/axios/issues/5058#issuecomment-1272229926
*/
ret.paramsSerializer = { indexes: null };
if (allOptions.parameters) {
ret.params = cloneDeep(allOptions.parameters);
}
if (allOptions.data) {
ret.data = cloneDeep(allOptions.data);
}
return ret;
}
/**
* Internal method for getting/constructing an Axios object on-demand,
* based on the current server configuration.
* @hidden
*/
private getImpl(options?: OnmsHTTPOptions) {
if (!this.axiosObj) {
const server = this.getServer(options);
if (!server) {
throw new OnmsError('You must set a server before attempting to make queries using Axios!');
}
const allOptions = this.getOptions(options);
const axiosOpts = {
baseURL: server.url,
timeout: allOptions.timeout,
withCredentials: true,
} as AxiosRequestConfig;
if (typeof XMLHttpRequest !== 'undefined') {
axiosOpts.adapter = require('axios/lib/adapters/xhr.js');
} else if (typeof process !== 'undefined') {
axiosOpts.adapter = require('axios/lib/adapters/http.js');
}
this.axiosObj = this.axiosImpl.create(axiosOpts);
}
return this.axiosObj;
}
}