-
Notifications
You must be signed in to change notification settings - Fork 5
/
response.js
480 lines (430 loc) · 14.5 KB
/
response.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
/*==============common begin=================*/
var container = 'y-request';
var INITSTATUS = 0;
var RUNSTATUS = 1;
var ENDSTATUS = 2;
var base64 = _base64();
function encode(data) {
return base64.encode(encodeURIComponent(JSON.stringify(data)));
}
function decode(data) {
return JSON.parse(decodeURIComponent(base64.decode(data)));
}
function formUrlencode(data) {
if(!data || typeof data !== 'object') return ''
return Object.keys(data).map(function (key) {
return encodeURIComponent(key) + '=' + encodeURIComponent(data[key]);
}).join('&')
}
function _base64() {
/*--------------------------------------------------------------------------*/
var InvalidCharacterError = function (message) {
this.message = message;
};
InvalidCharacterError.prototype = new Error;
InvalidCharacterError.prototype.name = 'InvalidCharacterError';
var error = function (message) {
// Note: the error messages used throughout this file match those used by
// the native `atob`/`btoa` implementation in Chromium.
throw new InvalidCharacterError(message);
};
var TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
// http://whatwg.org/html/common-microsyntaxes.html#space-character
var REGEX_SPACE_CHARACTERS = /<%= spaceCharacters %>/g;
// `decode` is designed to be fully compatible with `atob` as described in the
// HTML Standard. http://whatwg.org/html/webappapis.html#dom-windowbase64-atob
// The optimized base64-decoding algorithm used is based on @atk’s excellent
// implementation. https://gist.github.com/atk/1020396
var decode = function (input) {
input = String(input)
.replace(REGEX_SPACE_CHARACTERS, '');
var length = input.length;
if (length % 4 == 0) {
input = input.replace(/==?$/, '');
length = input.length;
}
if (
length % 4 == 1 ||
// http://whatwg.org/C#alphanumeric-ascii-characters
/[^+a-zA-Z0-9/]/.test(input)
) {
error(
'Invalid character: the string to be decoded is not correctly encoded.'
);
}
var bitCounter = 0;
var bitStorage;
var buffer;
var output = '';
var position = -1;
while (++position < length) {
buffer = TABLE.indexOf(input.charAt(position));
bitStorage = bitCounter % 4 ? bitStorage * 64 + buffer : buffer;
// Unless this is the first of a group of 4 characters…
if (bitCounter++ % 4) {
// …convert the first 8 bits to a single ASCII character.
output += String.fromCharCode(
0xFF & bitStorage >> (-2 * bitCounter & 6)
);
}
}
return output;
};
// `encode` is designed to be fully compatible with `btoa` as described in the
// HTML Standard: http://whatwg.org/html/webappapis.html#dom-windowbase64-btoa
var encode = function (input) {
input = String(input);
if (/[^\0-\xFF]/.test(input)) {
// Note: no need to special-case astral symbols here, as surrogates are
// matched, and the input is supposed to only contain ASCII anyway.
error(
'The string to be encoded contains characters outside of the ' +
'Latin1 range.'
);
}
var padding = input.length % 3;
var output = '';
var position = -1;
var a;
var b;
var c;
var d;
var buffer;
// Make sure any padding is handled outside of the loop.
var length = input.length - padding;
while (++position < length) {
// Read three bytes, i.e. 24 bits.
a = input.charCodeAt(position) << 16;
b = input.charCodeAt(++position) << 8;
c = input.charCodeAt(++position);
buffer = a + b + c;
// Turn the 24 bits into four chunks of 6 bits each, and append the
// matching character for each of them to the output.
output += (
TABLE.charAt(buffer >> 18 & 0x3F) +
TABLE.charAt(buffer >> 12 & 0x3F) +
TABLE.charAt(buffer >> 6 & 0x3F) +
TABLE.charAt(buffer & 0x3F)
);
}
if (padding == 2) {
a = input.charCodeAt(position) << 8;
b = input.charCodeAt(++position);
buffer = a + b;
output += (
TABLE.charAt(buffer >> 10) +
TABLE.charAt((buffer >> 4) & 0x3F) +
TABLE.charAt((buffer << 2) & 0x3F) +
'='
);
} else if (padding == 1) {
buffer = input.charCodeAt(position);
output += (
TABLE.charAt(buffer >> 2) +
TABLE.charAt((buffer << 4) & 0x3F) +
'=='
);
}
return output;
};
return {
'encode': encode,
'decode': decode,
'version': '<%= version %>'
};
};
var unsafeHeader = [ 'Accept-Charset',
'Accept-Encoding',
'Access-Control-Request-Headers',
'Access-Control-Request-Method',
'Connection',
'Content-Length',
'Cookie',
'Cookie2',
'Content-Transfer-Encoding',
'Date',
'Expect',
'Host',
'Keep-Alive',
'Origin',
'Referer',
'TE',
'Trailer',
'Transfer-Encoding',
'Upgrade',
'User-Agent',
'Via' ];
/*==============common end=================*/
var connect = chrome.runtime.connect({ name: "request" });
function injectJs(path) {
var s = document.createElement('script');
// TODO: add "script.js" to web_accessible_resources in manifest.json
s.src = chrome.extension.getURL(path);
s.onload = function () {
this.remove();
};
(document.head || document.documentElement).appendChild(s);
}
injectJs('index.js');
var yRequestDom, successFns = {}, errorFns = {};
function handleHeader(headers) {
if (!headers) return;
if (typeof headers === 'object') {
return headers;
}
var newHeaders = {}, headers = headers.split(/[\r\n]/).forEach(function (header) {
var index = header.indexOf(":");
var name = header.substr(0, index);
var value = header.substr(index + 2);
if (name) {
newHeaders[name] = value;
}
})
return newHeaders;
}
function responseCallback(res, dom, data) {
var id = dom.getAttribute("_id");
var headers = handleHeader(res.headers);
data.runTime = new Date().getTime() - data.runTime;
data.res = {
id: id,
status: res.status,
statusText: res.statusText,
header: headers,
body: res.body
}
dom.innerText = encode(data);
dom.setAttribute('status', ENDSTATUS);
}
function sendAjaxByContent(req, successFn, errorFn) {
var formDatas;
var xhr = new XMLHttpRequest();
req.headers = req.headers || {};
req.headers['Content-Type'] = req.headers['Content-Type'] || req.headers['Content-type'] || req.headers['content-type'];
if (req.files && Object.keys(req.files).length > 0) {
req.headers['Content-Type'] = 'multipart/form-data'
}
xhr.timeout = req.timeout || 5000;
req.method = req.method || 'GET';
req.async = req.async === false ? false : true;
req.headers = req.headers || {};
if (req.method.toLowerCase() !== 'get' && req.method.toLowerCase() !== 'head' && req.method.toLowerCase() !== 'options') {
if (!req.headers['Content-Type'] || req.headers['Content-Type'] == 'application/x-www-form-urlencoded') {
req.headers['Content-Type'] = 'application/x-www-form-urlencoded';
req.data = formUrlencode(req.data);
} else if (req.headers['Content-Type'] === 'multipart/form-data') {
delete req.headers['Content-Type'];
formDatas = new FormData();
if (req.data) {
for (var name in req.data) {
formDatas.append(name, req.data[name]);
}
}
if (req.files) {
for (var name in req.files) {
var files = document.getElementById(req.files[name]).files;
if (files.length > 0) {
formDatas.append(name, files[0]);
}
}
}
req.data = formDatas;
} else if (typeof req.data === 'object' && req.data) {
req.data = JSON.stringify(req.data);
}
if (req.file) {
req.data = document.getElementById(req.file).files[0];
}
}else{
delete req.headers['Content-Type'];
}
if (req.query && typeof req.query === 'object') {
var getUrl = formUrlencode(req.query);
req.url = req.url + '?' + getUrl;
req.query = '';
}
xhr.open(req.method, req.url, req.async);
var response = {};
if (req.headers) {
var unsafeHeaderArr = [];
for (var name in req.headers) {
if(unsafeHeader.indexOf(name) > -1){
unsafeHeaderArr.push({
name: name,
value: req.headers[name]
})
}else{
xhr.setRequestHeader(name, req.headers[name]);
}
}
if(unsafeHeaderArr.length > 0){
xhr.setRequestHeader('cross-request-unsafe-headers-list', encode(unsafeHeaderArr));
}
}
xhr.setRequestHeader('cross-request-open-sign', '1')
xhr.onload = function (e) {
var headers = xhr.getAllResponseHeaders();
headers = handleHeader(headers);
var newHeaders;
if(headers['cross-response-unsafe-headers-list']){
newHeaders = decode(headers['cross-response-unsafe-headers-list'])
delete headers['cross-response-unsafe-headers-list'];
if(newHeaders && typeof newHeaders === 'object' && Object.keys(newHeaders).length > 0){
headers = newHeaders;
}
}
response = {
headers: headers,
status: xhr.status,
statusText: xhr.statusText,
body: xhr.responseText
}
if (xhr.status == 200) {
successFn(response);
} else {
errorFn(response);
}
};
xhr.ontimeout = function (e) {
errorFn({
body: 'Error:Request timeout that the time is ' + xhr.timeout
})
};
xhr.onerror = function (e) {
errorFn({
body: xhr.statusText
})
};
xhr.upload.onprogress = function (e) { };
try {
xhr.send(req.data);
} catch (error) {
errorFn({
body: error.message
})
}
}
function sendAjaxByBack(id, req, successFn, errorFn) {
successFns[id] = successFn;
errorFns[id] = errorFn;
console.log(req);
if (req.headers['Content-Type'] === 'multipart/form-data') {
var formDatas = []
if (req.data) {
for (var name in req.data) {
formDatas.push({name, value: req.data[name], is_file: false});
}
}
if (req.files) {
let allPromise = [];
for (var name in req.files) {
let fileTransfer = new Promise(function (resolve, reject){
var reqFile = document.getElementById(req.files[name]);
if (reqFile !== null) {
var files = reqFile.files;
let file = files[0]
var reader = new FileReader();
reader.name = name;
reader.fileName = file.name;
reader.onload = function () {
resolve({name: this.name, value: this.result,is_file: true, fileName: this.fileName});
}
reader.readAsDataURL(file);
}else {
resolve(null)
}
})
allPromise.push(fileTransfer);
}
Promise.all(allPromise).then(function(result){
formDatas = formDatas.concat(result);
req.formDatas = formDatas;
console.log(req);
connect.postMessage({
id: id,
req: req,
});
})
}else {
req.formDatas = formDatas;
connect.postMessage({
id: id,
req: req,
});
}
} else {
connect.postMessage({
id: id,
req: req
});
}
}
connect.onMessage.addListener(function (msg) {
var id = msg.id;
var res = msg.res;
res.status === 200 ?
successFns[id](res) :
errorFns[id](res);
delete successFns[id];
delete errorFns[id];
});
function checkFileRequest(req) {
if (req.files && typeof req.files === 'object' && Object.keys(req.files).length > 0) {
return true;
}
return false;
}
function run() {
var reqsDom = yRequestDom.childNodes;
if (!reqsDom || reqsDom.length === 0) return;
reqsDom.forEach(function (dom) {
try {
var status = dom.getAttribute("status"), request;
if (+status === INITSTATUS) {
dom.setAttribute("status", RUNSTATUS);
var data = decode(dom.innerText);
var req = data.req;
req.url = req.url || '';
var id = dom.getAttribute('_id');
data.runTime = new Date().getTime();
sendAjaxByBack(id, req, function (res) {
responseCallback(res, dom, data);
}, function (err) {
responseCallback(err, dom, data);
})
// if (location.protocol.indexOf('https') === 0 && req.url.indexOf('https') !== 0) {
// sendAjaxByBack(id, req, function (res) {
// responseCallback(res, dom, data);
// }, function (err) {
// responseCallback(err, dom, data);
// })
// } else {
// sendAjaxByContent(req, function (res) {
// responseCallback(res, dom, data);
// }, function (err) {
// responseCallback(err, dom, data);
// })
// }
}
} catch (error) {
console.error(error)
dom.parentNode.removeChild(dom)
}
})
}
//因注入 index.js ,需要等到 indexScript 初始化完成后执行
var findDom = setInterval(function () {
try {
yRequestDom = document.getElementById(container);
if (yRequestDom) {
clearInterval(findDom)
yRequestDom.setAttribute('key', 'yapi');
setInterval(function () {
run()
}, 100)
}
} catch (e) {
clearInterval(findDom)
console.error(e)
}
}, 100)