-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathserve.js
435 lines (374 loc) · 14.7 KB
/
serve.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
import fs from 'fs/promises';
import { hashString } from '../lib/hashing-utils.js';
import Koa from 'koa';
import { koaBody } from 'koa-body';
import { checkResourceExists, mergeResponse, transformKoaRequestIntoStandardRequest, requestAsObject } from '../lib/resource-utils.js';
import { Readable } from 'stream';
import { ResourceInterface } from '../lib/resource-interface.js';
import { Worker } from 'worker_threads';
async function getDevServer(compilation) {
const app = new Koa();
const compilationCopy = Object.assign({}, compilation);
const resourcePlugins = [
// Greenwood default standard resource and import plugins
...compilation.config.plugins.filter((plugin) => {
return plugin.type === 'resource' && plugin.isGreenwoodDefaultPlugin;
}).map((plugin) => {
return plugin.provider(compilationCopy);
}),
// custom user resource plugins
...compilation.config.plugins.filter((plugin) => {
return plugin.type === 'resource' && !plugin.isGreenwoodDefaultPlugin;
}).map((plugin) => {
const provider = plugin.provider(compilationCopy);
if (!(provider instanceof ResourceInterface)) {
console.warn(`WARNING: ${plugin.name}'s provider is not an instance of ResourceInterface.`);
}
return provider;
})
];
app.use(koaBody());
// resolve urls to `file://` paths if applicable, otherwise default is `http://`
app.use(async (ctx, next) => {
try {
const url = new URL(`http://localhost:${compilation.config.port}${ctx.url}`);
const initRequest = transformKoaRequestIntoStandardRequest(url, ctx.request);
const request = await resourcePlugins.reduce(async (requestPromise, plugin) => {
const intermediateRequest = await requestPromise;
return plugin.shouldResolve && await plugin.shouldResolve(url, intermediateRequest.clone())
? Promise.resolve(await plugin.resolve(url, intermediateRequest.clone()))
: Promise.resolve(await requestPromise);
}, Promise.resolve(initRequest));
ctx.url = request.url;
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
// handle creating responses from urls
app.use(async (ctx, next) => {
try {
const url = new URL(ctx.url);
const { status } = ctx.response;
const request = transformKoaRequestIntoStandardRequest(url, ctx.request);
// intentionally ignore initial statusText to avoid false positives from 404s
let response = new Response(null, { status });
for (const plugin of resourcePlugins) {
if (plugin.shouldServe && await plugin.shouldServe(url, request)) {
const current = await plugin.serve(url, request);
const merged = mergeResponse(response.clone(), current.clone());
response = merged.clone();
}
}
ctx.body = response.body ? Readable.from(response.body) : '';
ctx.status = response.status;
ctx.message = response.statusText;
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
// allow pre-processing of userland plugins _before_ Greenwood "standardizes" it
app.use(async (ctx, next) => {
try {
const url = new URL(ctx.url);
const { header, status, message } = ctx.response;
const request = transformKoaRequestIntoStandardRequest(url, ctx.request);
const initResponse = new Response(status === 204 ? null : ctx.body, {
statusText: message,
status,
headers: new Headers(header)
});
const response = await resourcePlugins.reduce(async (responsePromise, plugin) => {
const intermediateResponse = await responsePromise;
if (plugin.shouldPreIntercept && await plugin.shouldPreIntercept(url, request, intermediateResponse.clone())) {
const current = await plugin.preIntercept(url, request, await intermediateResponse.clone());
const merged = mergeResponse(intermediateResponse.clone(), current);
return Promise.resolve(merged);
} else {
return Promise.resolve(await responsePromise);
}
}, Promise.resolve(initResponse.clone()));
ctx.body = response.body ? Readable.from(response.body) : '';
ctx.message = response.statusText;
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
// allow intercepting of responses for URLs
app.use(async (ctx, next) => {
try {
const url = new URL(ctx.url);
const { header, status, message } = ctx.response;
const request = transformKoaRequestIntoStandardRequest(url, ctx.request);
const initResponse = new Response(status === 204 ? null : ctx.body, {
statusText: message,
status,
headers: new Headers(header)
});
const response = await resourcePlugins.reduce(async (responsePromise, plugin) => {
const intermediateResponse = await responsePromise;
if (plugin.shouldIntercept && await plugin.shouldIntercept(url, request, intermediateResponse.clone())) {
const current = await plugin.intercept(url, request, await intermediateResponse.clone());
const merged = mergeResponse(intermediateResponse.clone(), current);
return Promise.resolve(merged);
} else {
return Promise.resolve(await responsePromise);
}
}, Promise.resolve(initResponse.clone()));
ctx.body = response.body ? Readable.from(response.body) : '';
ctx.message = response.statusText;
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
// ETag Support - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag
// https://stackoverflow.com/questions/43659756/chrome-ignores-the-etag-header-and-just-uses-the-in-memory-cache-disk-cache
app.use(async (ctx) => {
const url = new URL(ctx.url);
// don't interfere with external requests or API calls, only files
// and only run in development
if (process.env.__GWD_COMMAND__ === 'develop' && url.protocol === 'file:') {
// there's probably a better way to do this with tee-ing streams but this works for now
const { header, status, message } = ctx.response;
const response = new Response(ctx.body, {
statusText: message,
status,
headers: new Headers(header)
}).clone();
const splitResponse = response.clone();
const contents = await splitResponse.text();
const inm = ctx.headers['if-none-match'];
const etagHash = url.pathname.split('.').pop() === 'json'
? hashString(JSON.stringify(contents))
: hashString(contents);
if (inm && inm === etagHash) {
ctx.status = 304;
ctx.body = null;
ctx.set('Etag', etagHash);
ctx.set('Cache-Control', 'no-cache');
} else if (!inm || inm !== etagHash) {
ctx.body = Readable.from(response.body);
ctx.set('Etag', etagHash);
ctx.message = response.statusText;
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
}
}
});
return app;
}
async function getStaticServer(compilation, composable) {
const app = new Koa();
const { outputDir } = compilation.context;
const { port, basePath } = compilation.config;
const standardResourcePlugins = compilation.config.plugins.filter((plugin) => {
return plugin.type === 'resource' && plugin.isGreenwoodDefaultPlugin;
});
app.use(async (ctx, next) => {
try {
const url = new URL(`http://localhost:${port}${ctx.url}`);
const matchingRoute = compilation.graph.find(page => page.route === url.pathname);
const isSPA = compilation.graph.find(page => page.isSPA);
const { isSSR } = matchingRoute || {};
const isStatic = matchingRoute && !isSSR || isSSR && compilation.config.prerender || isSSR && matchingRoute.prerender;
if (isSPA || (matchingRoute && isStatic) || url.pathname.split('.').pop() === 'html') {
const outputHref = isSPA
? isSPA.outputHref
: isStatic
? matchingRoute.outputHref
: new URL(`.${url.pathname.replace(basePath, '')}`, outputDir).href;
const body = await fs.readFile(new URL(outputHref), 'utf-8');
ctx.set('Content-Type', 'text/html');
ctx.body = body;
}
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
// TODO devServer.proxy is not really just for dev
// should it be renamed? should this be a middleware?
app.use(async (ctx, next) => {
try {
const url = new URL(`http://localhost:${port}${ctx.url}`);
const request = new Request(url, {
method: ctx.request.method,
headers: ctx.request.header
});
if (compilation.config.devServer.proxy) {
const proxyPlugin = standardResourcePlugins
.find((plugin) => plugin.name === 'plugin-dev-proxy')
.provider(compilation);
if (await proxyPlugin.shouldServe(url, request)) {
const response = await proxyPlugin.serve(url, request);
ctx.body = Readable.from(response.body);
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
ctx.message = response.statusText;
}
}
} catch (e) {
ctx.status = 500;
console.error(e);
}
await next();
});
app.use(async (ctx, next) => {
try {
const url = new URL(`.${ctx.url.replace(basePath, '')}`, outputDir.href);
if (await checkResourceExists(url)) {
const resourcePlugins = standardResourcePlugins
.filter((plugin) => plugin.isStandardStaticResource)
.map((plugin) => {
return plugin.provider(compilation);
});
const request = new Request(url.href, {
headers: new Headers(ctx.request.header)
});
const initResponse = new Response(ctx.body, {
status: ctx.response.status,
headers: new Headers(ctx.response.header)
});
const response = await resourcePlugins.reduce(async (responsePromise, plugin) => {
return plugin.shouldServe && await plugin.shouldServe(url, request)
? Promise.resolve(await plugin.serve(url, request))
: responsePromise;
}, Promise.resolve(initResponse));
if (response.ok) {
ctx.body = Readable.from(response.body);
ctx.status = response.status;
ctx.message = response.statusText;
response.headers.forEach((value, key) => {
ctx.set(key, value);
});
}
}
} catch (e) {
ctx.status = 500;
console.error(e);
}
if (composable) {
await next();
}
});
return app;
}
async function getHybridServer(compilation) {
const { graph, manifest, config } = compilation;
const isolationMode = config.isolation;
const app = await getStaticServer(compilation, true);
app.use(koaBody());
app.use(async (ctx) => {
try {
const url = new URL(`http://localhost:${config.port}${ctx.url}`);
const matchingRoute = graph.find((node) => node.route === url.pathname) || { data: {} };
const isApiRoute = manifest.apis.has(url.pathname);
const request = transformKoaRequestIntoStandardRequest(url, ctx.request);
if (!config.prerender && matchingRoute.isSSR && !matchingRoute.prerender) {
const entryPointUrl = new URL(matchingRoute.outputHref);
let html;
if (matchingRoute.isolation || isolationMode) {
// eslint-disable-next-line no-async-promise-executor
await new Promise(async (resolve, reject) => {
const worker = new Worker(new URL('../lib/ssr-route-worker-isolation-mode.js', import.meta.url));
// "faux" new Request here, a better way?
const request = await requestAsObject(new Request(url));
worker.on('message', async (result) => {
html = result;
resolve();
});
worker.on('error', reject);
worker.on('exit', (code) => {
if (code !== 0) {
reject(new Error(`Worker stopped with exit code ${code}`));
}
});
worker.postMessage({
routeModuleUrl: entryPointUrl.href,
request,
compilation: JSON.stringify(compilation)
});
});
} else {
const { handler } = await import(entryPointUrl);
const response = await handler(request, compilation);
html = Readable.from(response.body);
}
ctx.body = html;
ctx.set('Content-Type', 'text/html');
ctx.status = 200;
} else if (isApiRoute) {
const apiRoute = manifest.apis.get(url.pathname);
const entryPointUrl = new URL(apiRoute.outputHref);
let body, status, headers, statusText;
if (apiRoute.isolation || isolationMode) {
// eslint-disable-next-line no-async-promise-executor
await new Promise(async (resolve, reject) => {
const worker = new Worker(new URL('../lib/api-route-worker.js', import.meta.url));
// "faux" new Request here, a better way?
const req = await requestAsObject(request);
worker.on('message', async (result) => {
const responseAsObject = result;
body = responseAsObject.body;
status = responseAsObject.status;
headers = new Headers(responseAsObject.headers);
statusText = responseAsObject.statusText;
resolve();
});
worker.on('error', reject);
worker.on('exit', (code) => {
if (code !== 0) {
reject(new Error(`Worker stopped with exit code ${code}`));
}
});
worker.postMessage({
href: entryPointUrl.href,
request: req
});
});
} else {
const { handler } = await import(entryPointUrl);
const response = await handler(request);
body = response.body;
status = response.status;
headers = response.headers;
statusText = response.statusText;
}
ctx.body = body ? Readable.from(body) : null;
ctx.status = status;
ctx.message = statusText;
headers.forEach((value, key) => {
ctx.set(key, value);
});
}
} catch (e) {
ctx.status = 500;
console.error(e);
}
});
return app;
}
export {
getDevServer,
getStaticServer,
getHybridServer
};