-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.js
245 lines (204 loc) · 5.52 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
// istanbul ignore next
if (require.main === module) {
// This needs to run before any require() call.
global.apmClient = require('elastic-apm-node').start({});
global.apmClient.addTransactionFilter(payload => (payload.context && payload.context.tags && payload.context.tags.userAgent && !payload.context.tags.userAgent.includes('sindresorhus/got')) || Math.random() < .2 ? payload : false);
global.apmClient.addTransactionFilter(require('elastic-apm-utils').apm.transactionFilter());
global.apmClient.addSpanFilter(require('elastic-apm-utils').apm.spanFilter({ filterShorterThan: 10 }));
require('./lib/startup');
}
const config = require('config');
const signalExit = require('signal-exit');
const Koa = require('koa');
const koaFavicon = require('koa-favicon');
const koaResponseTime = require('koa-response-time');
const koaConditionalGet = require('koa-conditional-get');
const koaCompress = require('koa-compress');
const koaLogger = require('koa-logger');
const koaETag = require('koa-etag');
const koaJson = require('koa-json');
const Router = require('koa-router');
const statuses = require('statuses');
const debugHandler = require('./routes/debug');
const heartbeatHandler = require('./routes/heartbeat');
const v1Handler = require('./routes/v1');
const serverConfig = config.get('server');
let server = new Koa();
let router = new Router();
/**
* Server config.
*/
server.name = serverConfig.name;
server.keys = serverConfig.keys;
server.silent = server.env === 'production';
server.proxy = true;
/**
* Handle favicon requests before anything else.
*/
server.use(koaFavicon(__dirname + '/public/favicon.ico'));
/**
* Custom APM tags.
*/
if (global.apmClient) {
server.use(async (ctx, next) => {
let userAgent = ctx.headers['user-agent'];
if (userAgent && !/\bchrome|edge|mozilla|opera|trident\b/i.test(userAgent)) {
global.apmClient.addLabels({ userAgent });
}
return next();
});
}
/**
* Log requests during development.
*/
if (server.env === 'development') {
server.use(koaLogger());
}
/**
* Add a X-Response-Time header.
*/
server.use(koaResponseTime());
/**
* Remove x-forwarded-port because it's wrong for CF + CC combo.
*/
server.use(async (ctx, next) => {
delete ctx.headers['x-forwarded-port'];
return next();
});
/**
* Gzip compression.
*/
server.use(koaCompress());
/**
* ETag support.
*/
server.use(koaConditionalGet());
server.use(koaETag());
/**
* Normalize URLs.
*/
server.use((ctx, next) => {
let { path, querystring } = ctx.request;
if (path === '/' || !path.endsWith('/')) {
return next();
}
ctx.status = 301;
ctx.redirect(path.replace(/\/+$/, '') + (querystring ? `?${querystring}` : ''));
});
/**
* Pretty-print JSON.
*/
server.use(koaJson({ spaces: '\t' }));
/**
* Replace 502/504 HTTP codes with 500,
* because Cloudflare requires an enterprise account
* to serve these correctly.
*/
server.use(async (ctx, next) => {
await next();
if ([ 502, 504 ].includes(ctx.status)) {
ctx.status = 500;
}
});
/**
* Always respond with a JSON.
*/
server.use(async (ctx, next) => {
await next();
if (!ctx.body) {
ctx.body = {
status: ctx.status,
message: statuses[ctx.status],
};
if (ctx.status === 400) {
ctx.body.message += `. Visit https://github.com/jsdelivr/data.jsdelivr.com for documentation.`;
}
} else if (!ctx.body.status) {
ctx.status = 200;
}
if (ctx.body.status) {
ctx.status = ctx.body.status;
}
if (ctx.maxAge) {
ctx.set('Cache-Control', `public, max-age=${ctx.maxAge}${ctx.maxStale ? `, stale-while-revalidate=${ctx.maxStale}, stale-if-error=${ctx.maxStale}` : ''}`);
} else if (ctx.expires) {
ctx.set('Cache-Control', `public${ctx.maxStale ? `, stale-while-revalidate=${ctx.maxStale}, stale-if-error=${ctx.maxStale}` : ''}`);
ctx.set('Expires', ctx.expires);
}
});
/**
* Catch all errors to make sure we respond with a JSON.
*/
server.use(async (ctx, next) => {
try {
ctx.status = 400;
await next();
} catch (e) {
ctx.status = 500;
ctx.app.emit('error', e, ctx);
}
});
/**
* Set default headers.
*/
server.use(async (ctx, next) => {
ctx.set(serverConfig.headers);
return next();
});
/**
* API v1.
*/
router.use('/v1', v1Handler.routes(), v1Handler.allowedMethods());
/**
* Debug endpoint.
*/
router.get('/debug/' + serverConfig.debugToken, debugHandler);
/**
* Heartbeat.
*/
router.get('/heartbeat', heartbeatHandler);
/**
* Routing.
*/
server.use(router.routes()).use(router.allowedMethods());
/**
* Koa error handling.
*/
server.on('error', (error, ctx) => {
let ignore = [ 'ECONNABORTED', 'ECONNRESET', 'EPIPE' ];
if (ignore.includes(error.code)) {
return;
}
log.error('Koa server error.', error, { ctx });
});
// istanbul ignore next
if (require.main === module) {
/**
* Start listening on the configured port.
*/
server.listen(process.env.PORT || serverConfig.port, function () {
log.info(`Web server started at http://localhost:${this.address().port}, NODE_ENV=${process.env.NODE_ENV}.`);
});
/**
* Always log before exit.
*/
signalExit((code, signal) => {
log[code === 0 ? 'info' : 'fatal']('Web server stopped.', { code, signal });
});
/**
* If we exit because of an uncaught exception, log the error details as well.
*/
process.on('uncaughtException', (error) => {
log.fatal(`Uncaught exception. Exiting.`, error, { handled: false });
setTimeout(() => {
process.exit(1);
}, 10000);
});
process.on('unhandledRejection', (error) => {
log.fatal('Unhandled rejection. Exiting.', error, { handled: false });
setTimeout(() => {
process.exit(1);
}, 10000);
});
}
module.exports = server.callback();