-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
247 lines (235 loc) · 7.34 KB
/
main.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
'use strict';
const debug = require('debug')('heya-io:bundle');
const io = require('heya-io-node');
const {par} = require('heya-async');
const identity = x => x;
const blackListedHeaders = {
'content-type': 1,
'content-length': 1,
'content-encoding': 1,
'accept-ranges': 1,
'cache-control': 1,
'last-modified': 1,
age: 1,
date: 1,
etag: 1,
expires: 1,
pragma: 1,
status: 1,
vary: 1
};
const defaultSetHeaders = (results, res) =>
results.forEach(response => {
if (!(response instanceof Error)) {
const headers = io.getHeaders(response);
Object.keys(headers).forEach(key => blackListedHeaders[key.toLowerCase()] !== 1 && res.set(key, headers[key]));
}
});
const localLog = (_, msg) => debug(msg);
const dictToPairs = (dict, processPair) => {
for (let key in dict) {
const value = dict[key];
if (value instanceof Array) {
value.forEach(val => processPair(key, val));
} else {
processPair(key, value);
}
}
};
const makeQuery = dict => {
const query = [];
if (dict && typeof dict == 'object') {
dictToPairs(dict, (key, value) => query.push(encodeURIComponent(key) + '=' + encodeURIComponent(value)));
}
return query.join('&');
};
const makeHeaders = (xhr, mime) => {
const headers = io.getHeaders(xhr);
mime && (headers['content-type'] = mime);
return Object.keys(headers)
.map(key => key + ': ' + headers[key])
.join('\r\n');
};
const normalizeOptions = options => (typeof options == 'string' ? {url: options, method: 'GET'} : options);
const parseBody = body => {
try {
return JSON.parse(body);
} catch (e) {
return null;
}
};
const instrumentBundle = opt => {
const isUrlAcceptable = opt.isUrlAcceptable,
maxRequests = opt.maxRequests || 20,
resolveUrl = opt.resolveUrl || identity,
setHeaders = opt.setHeaders || defaultSetHeaders,
processResult = opt.processResult || identity,
processFailure = opt.processFailure || identity,
processBundle = opt.processBundle || identity,
onBundleStart = opt.onBundleStart || identity,
onBundleFinish = opt.onBundleFinish || identity,
onItemStart = opt.onItemStart || identity,
onItemFinish = opt.onItemFinish || identity,
log = opt.log || localLog;
return (req, res) => {
log(
'info',
'=> ' + req.method + ' ' + req.url + (req.body && req.body.length ? ' (payload: ' + req.body.length + ' bytes of ' + req.get('content-type') + ')' : ''),
{
method: req.method,
url: req.url,
length: (req.body && req.body.length) || 0,
contentType: req.get('content-type')
}
);
// no request body
if (!req.body || !req.body.length) {
log('error', 'no payload');
res.status(400).type('text/plain').send('No payload');
return;
}
// wrong payload
const payload = parseBody(req.body.toString());
if (!(payload instanceof Array)) {
log('error', 'wrong payload');
res.status(400).type('text/plain').send('Wrong payload');
return;
}
// empty payload
if (!payload.length) {
log('warn', 'empty payload');
res.json({bundle: 'bundle', results: []});
return;
}
// payload is too large
if (payload.length > maxRequests) {
log('error', 'large payload');
res.status(400).type('text/plain').send('Large payload');
return;
}
log(
'info',
'=> RECEIVED bundle of ' +
payload.length +
': ' +
payload
.map(function (o) {
return o.url || o;
})
.join(', '),
payload.map(function (o) {
return o.url || o;
})
);
const bundleStart = Date.now(),
itemTime = [];
onBundleStart(req);
const requests = payload.map((options, index) => {
itemTime[index] = Date.now();
onItemStart(req, options, index, payload);
const newOptions = Object.assign(
{returnXHR: true, ignoreBadStatus: true, headers: {}, method: 'GET'},
typeof options == 'string' ? {url: options} : options
);
const url = newOptions.url;
newOptions.headers = Object.assign({}, newOptions.headers);
if (!isUrlAcceptable(url)) {
return new Error('Unacceptable URL: ' + url);
}
newOptions.url = resolveUrl(url);
// process cookie
const cookie = req.get('Cookie');
if (cookie) {
const foundCookie = Object.keys(newOptions.headers).some(key => {
if (key.toLowerCase() == 'cookie') {
newOptions.headers[key] = cookie;
return true;
}
return false;
});
if (!foundCookie) {
newOptions.headers.Cookie = cookie;
}
}
if (!Object.keys(newOptions.headers).length) {
delete newOptions.headers;
}
log('info', '<= ' + newOptions.method + ' ' + url + (url !== newOptions.url ? ' => ' + newOptions.url : ''), {
method: newOptions.method,
url: newOptions.url
});
return newOptions;
}),
promises = requests.map((options, index) => {
if (options instanceof Error) {
onItemFinish(req, options, index, payload);
itemTime[index] = Date.now() - itemTime[index];
return options;
}
return io(options)
.then(value => {
onItemFinish(req, value, index, payload);
itemTime[index] = Date.now() - itemTime[index];
return value;
})
.catch(value => {
onItemFinish(req, value, index, payload);
itemTime[index] = Date.now() - itemTime[index];
return value;
});
});
par(promises).then(results => {
setHeaders(results, res);
results = results.map((response, index) => {
const options = normalizeOptions(payload[index]);
if (response instanceof Error) {
return processFailure(
{
options: options,
time: itemTime[index],
response: {
status: 500,
statusText: response.message,
responseType: '',
responseText: 'heya/bundler encountered an error: ' + (response.name ? '[' + response.name + '] ' : '') + (response.message || '(unspecified)'),
headers: 'Content-Type: text/plain; charset=utf-8'
}
},
req
);
}
return processResult(
{
options: options,
time: itemTime[index],
response: {
status: response.status,
statusText: response.statusText,
responseType: options.responseType || '',
responseText: response.responseText,
headers: makeHeaders(response, options.mime)
}
},
req
);
});
onBundleFinish(req);
const bundleTime = Date.now() - bundleStart;
log('info', '<= RETURNED bundle of ' + results.length + ' in ' + bundleTime + 'ms', {
length: results.length,
time: bundleTime
});
res.set('Content-Type', 'application/json; charset=utf-8').json(
processBundle(
{
bundle: 'bundle',
results: results,
time: bundleTime
},
req
)
);
});
};
};
module.exports = instrumentBundle;