-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
322 lines (235 loc) · 5.55 KB
/
index.js
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
var cachepuncher = require('cachepuncher');
var deepCopy = require('wizcorp-deep-copy.js');
function addParamsToUrl(url, params) {
if (!params) {
return url;
}
var keys = Object.keys(params);
var count = keys.length;
if (count === 0) {
return url;
}
var splitter = url.indexOf('?') === -1 ? '?' : '&';
for (var i = 0; i < count; i += 1) {
var key = keys[i];
url += splitter + encodeURIComponent(key) + '=' + encodeURIComponent(params[key]);
splitter = '&';
}
return url;
}
// safe XHR data extractors (will not throw)
function getStatusCode(xhr) {
var status;
try {
status = xhr.status;
} catch (error) {
return 0;
}
// IE CORS compatibility
if (typeof status !== 'number') {
status = 200;
}
return status;
}
function getResponseText(xhr) {
var response;
try {
response = xhr.responseText;
} catch (error) {
// do nothing, we'll return undefined
}
return response;
}
function getContentType(xhr) {
var type;
try {
type = xhr.contentType;
} catch (error) {
// ignore, we'll try getResponseHeader
}
if (!type) {
try {
type = xhr.getResponseHeader('content-type');
} catch (getError) {
// ignore, we'll return undefined
}
}
return type;
}
function createCORSRequest() {
var xhr = new XMLHttpRequest();
if ('withCredentials' in xhr) {
// XHR for Chrome/Firefox/Opera/Safari.
return xhr;
}
if (window.XDomainRequest) {
// XDomainRequest for IE.
return new window.XDomainRequest();
}
return xhr;
}
function HttpRequest(options) {
options = options || {};
var xhr = createCORSRequest();
var callback;
var isSending = false;
var timer;
var FormData = window.FormData;
this.isBusy = function () {
return isSending;
};
this.send = function (method, url, params, data, headers, cb) {
if (typeof method !== 'string') {
throw new TypeError('method is not a string: ' + method);
}
if (typeof url !== 'string') {
throw new TypeError('url is not a string: ' + url);
}
if (params && typeof params !== 'object') {
throw new TypeError('params is not an object: ' + params);
}
if (headers && typeof headers !== 'object') {
throw new TypeError('headers is not an object: ' + headers);
}
if (isSending) {
if (cb) {
cb('busy');
}
return false;
}
isSending = true;
callback = cb;
headers = headers || {};
var m = url.match(/^[a-z]+:(\/\/)([^:]+:[^:]+)@/i);
if (m) {
headers.Authorization = 'Basic ' + window.btoa(m[2]);
}
if (params) {
if (options.noCache) {
params = deepCopy(params);
params.rand = cachepuncher.punch();
}
url = addParamsToUrl(url, params);
}
xhr.open(method, url, true);
if (options.withCredentials) {
xhr.withCredentials = true;
}
if (data) {
if (!FormData || !(data instanceof FormData)) {
if (!headers.hasOwnProperty('content-type')) {
var contentType;
if (typeof data === 'string') {
contentType = 'text/plain; charset=UTF-8';
} else {
contentType = 'application/json';
data = JSON.stringify(data);
}
if ('setRequestHeader' in xhr) {
xhr.setRequestHeader('content-type', contentType);
}
}
}
} else {
data = null;
}
if ('setRequestHeader' in xhr) {
for (var key in headers) {
xhr.setRequestHeader(key, headers[key]);
}
}
if (options.timeout) {
if (options.timeout < 1000) {
throw new Error('Unreasonable timeout setting for HTTP request: ' + options.timeout + ' msec.');
}
timer = setTimeout(function () {
var cb = callback;
callback = null;
console.warn('HTTP request timed out, aborting');
xhr.abort();
// in some browsers, oncomplete will now fire due to abort()
// since callback is now null however, it will not do anything
isSending = false;
if (cb) {
cb('network');
}
}, options.timeout);
}
xhr.send(data);
return true;
};
this.abort = function () {
// abort does not call any callbacks
// useful for long polling
callback = null;
isSending = false;
try {
xhr.abort();
} catch (abortError) {
// ignore
console.error(abortError);
}
};
function oncomplete() {
// possible error codes sent back to callback:
// 'network': connection issue
// 'maintenance': server is in maintenance
isSending = false;
if (!callback) {
return;
}
var cb = callback;
callback = null;
// the two variables we'll return in the callback, possibly returned as undefined
var error, response;
// extract data from XHR
var code = getStatusCode(xhr);
var rawResponse = getResponseText(xhr);
var contentType = getContentType(xhr);
var codeCategory = (code / 100) >>> 0;
// detect errors
if (codeCategory !== 2) {
// error situation
if (code === 503) {
error = 'maintenance';
} else {
error = 'network';
}
console.warn('HTTP response code:', code, 'set as error:', error);
}
// detect and parse response body
if (rawResponse && contentType) {
if (contentType.match(/^[a-z]+\/json/)) {
try {
response = JSON.parse(rawResponse);
} catch (e) {
console.warn('JSON parse error on HTTP response', e, rawResponse);
error = error || 'server';
}
} else {
response = rawResponse;
}
}
cb(error, response);
}
function onLoad() {
if (timer) {
clearTimeout(timer);
timer = null;
}
setTimeout(function () {
oncomplete();
}, 0);
}
if ('onload' in xhr) {
xhr.onload = onLoad;
xhr.onerror = onLoad;
} else {
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
onLoad();
}
};
}
}
module.exports = HttpRequest;