2016-12-28 23:49:51 +01:00
|
|
|
/**
|
2018-03-29 13:32:18 +02:00
|
|
|
* Web Client Server
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
|
2017-01-02 22:03:19 +01:00
|
|
|
import ms = require('ms');
|
2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
import * as Router from 'koa-router';
|
|
|
|
import * as send from 'koa-send';
|
|
|
|
import * as favicon from 'koa-favicon';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-13 00:34:27 +02:00
|
|
|
const client = `${__dirname}/../../client/`;
|
2018-03-29 13:32:18 +02:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Init app
|
|
|
|
const app = new Koa();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Serve favicon
|
|
|
|
app.use(favicon(`${client}/assets/favicon.ico`));
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Common request handler
|
2018-04-13 00:34:27 +02:00
|
|
|
app.use(async (ctx, next) => {
|
2018-04-12 23:06:18 +02:00
|
|
|
// IFrameの中に入れられないようにする
|
|
|
|
ctx.set('X-Frame-Options', 'DENY');
|
2018-04-13 00:34:27 +02:00
|
|
|
await next();
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
//#region static assets
|
|
|
|
|
2018-04-13 00:34:27 +02:00
|
|
|
router.get('/assets/*', async ctx => {
|
2018-04-12 23:06:18 +02:00
|
|
|
await send(ctx, ctx.path, {
|
2018-04-13 00:34:27 +02:00
|
|
|
root: client,
|
2018-04-12 23:06:18 +02:00
|
|
|
maxage: ms('7 days'),
|
|
|
|
immutable: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Apple touch icon
|
|
|
|
router.get('/apple-touch-icon.png', async ctx => {
|
|
|
|
await send(ctx, `${client}/assets/apple-touch-icon.png`);
|
2017-11-28 06:07:00 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
// ServiceWroker
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
|
|
|
|
await send(ctx, `${client}/assets/sw.${ctx.params[0]}.js`);
|
|
|
|
});
|
2017-11-20 19:40:09 +01:00
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
// Manifest
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('/manifest.json', async ctx => {
|
|
|
|
await send(ctx, `${client}/assets/manifest.json`);
|
|
|
|
});
|
2017-02-21 20:19:53 +01:00
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
//#endregion
|
2017-11-20 19:40:09 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Docs
|
|
|
|
router.use('/docs', require('./docs').routes());
|
|
|
|
|
|
|
|
// URL preview endpoint
|
|
|
|
router.get('url', require('./url-preview'));
|
2018-03-29 13:32:18 +02:00
|
|
|
|
|
|
|
// Render base html for all requests
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('*', async ctx => {
|
2018-04-13 00:34:27 +02:00
|
|
|
await send(ctx, `app/base.html`, {
|
|
|
|
root: client,
|
|
|
|
maxage: ms('3 days'),
|
2018-04-12 23:06:18 +02:00
|
|
|
immutable: true
|
2017-05-17 22:06:55 +02:00
|
|
|
});
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
module.exports = app;
|