Sharkey/src/server/web/index.ts

79 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
2018-03-29 14:32:18 +03:00
* Web Client Server
2016-12-29 00:49:51 +02:00
*/
2017-01-02 23:03:19 +02:00
import ms = require('ms');
2018-04-13 00:06:18 +03: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-29 00:49:51 +02:00
2018-04-13 06:05:24 +03:00
import docs from './docs';
2018-04-13 01:34:27 +03:00
const client = `${__dirname}/../../client/`;
2018-03-29 14:32:18 +03:00
2018-04-13 00:06:18 +03:00
// Init app
const app = new Koa();
2016-12-29 00:49:51 +02:00
2018-04-13 00:06:18 +03:00
// Serve favicon
app.use(favicon(`${client}/assets/favicon.ico`));
2016-12-29 00:49:51 +02:00
2018-04-13 00:06:18 +03:00
// Common request handler
2018-04-13 01:34:27 +03:00
app.use(async (ctx, next) => {
2018-04-13 00:06:18 +03:00
// IFrameの中に入れられないようにする
ctx.set('X-Frame-Options', 'DENY');
2018-04-13 01:34:27 +03:00
await next();
2016-12-29 00:49:51 +02:00
});
2018-04-13 00:06:18 +03:00
// Init router
const router = new Router();
2018-03-29 14:32:18 +03:00
//#region static assets
2018-04-13 01:34:27 +03:00
router.get('/assets/*', async ctx => {
2018-04-16 09:32:40 +03:00
// 無圧縮スクリプトを用意するのは大変なので一時的に無効化
const path = process.env.NODE_ENV == 'production' ? ctx.path.replace('raw.js', 'min.js') : ctx.path.replace('min.js', 'raw.js');
await send(ctx, path, {
2018-04-13 01:34:27 +03:00
root: client,
2018-04-13 00:06:18 +03: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 07:07:00 +02:00
});
2016-12-29 00:49:51 +02:00
2018-03-29 14:32:18 +03:00
// ServiceWroker
2018-04-13 00:06:18 +03:00
router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
await send(ctx, `${client}/assets/sw.${ctx.params[0]}.js`);
});
2017-11-20 20:40:09 +02:00
2018-03-29 14:32:18 +03:00
// Manifest
2018-04-13 00:06:18 +03:00
router.get('/manifest.json', async ctx => {
await send(ctx, `${client}/assets/manifest.json`);
});
2017-02-21 21:19:53 +02:00
2018-03-29 14:32:18 +03:00
//#endregion
2017-11-20 20:40:09 +02:00
2018-04-13 00:06:18 +03:00
// Docs
2018-04-13 06:05:24 +03:00
router.use('/docs', docs.routes());
2018-04-13 00:06:18 +03:00
// URL preview endpoint
2018-04-21 13:02:12 +03:00
router.get('/url', require('./url-preview'));
2018-03-29 14:32:18 +03:00
// Render base html for all requests
2018-04-13 00:06:18 +03:00
router.get('*', async ctx => {
2018-04-13 01:34:27 +03:00
await send(ctx, `app/base.html`, {
root: client,
maxage: ms('3 days'),
2018-04-13 00:06:18 +03:00
immutable: true
2017-05-17 23:06:55 +03:00
});
});
2016-12-29 00:49:51 +02:00
2018-04-13 00:06:18 +03:00
// Register router
app.use(router.routes());
2016-12-29 00:49:51 +02:00
module.exports = app;