FoundKey/src/server/web/index.ts

76 lines
1.5 KiB
TypeScript
Raw Normal View History

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