Sharkey/src/server/web/index.ts

134 lines
2.6 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';
import * as views from 'koa-views';
2016-12-29 00:49:51 +02:00
2018-04-13 06:05:24 +03:00
import docs from './docs';
import User from '../../models/user';
import parseAcct from '../../acct/parse';
import { fa } from '../../build/fa';
import config from '../../config';
import Note, { pack as packNote } from '../../models/note';
import getNoteSummary from '../../renderers/get-note-summary';
const consts = require('../../const.json');
2018-04-13 06:05:24 +03:00
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
// Init renderer
app.use(views(__dirname + '/views', {
extension: 'pug',
options: {
config,
themeColor: consts.themeColor,
facss: fa.dom.css()
}
}));
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-06-18 10:34:26 +03:00
await send(ctx, 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 => {
2018-05-04 11:59:51 +03:00
await send(ctx, '/assets/apple-touch-icon.png', {
root: client
});
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-06-17 10:47:37 +03:00
router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
await send(ctx, `/assets/sw.${ctx.params[0]}.js`, {
root: client
});
});
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 => {
2018-05-04 11:59:51 +03:00
await send(ctx, '/assets/manifest.json', {
root: client
});
2018-04-13 00:06:18 +03:00
});
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
//#region for crawlers
// User
2018-05-13 11:00:34 +03:00
router.get('/@:user', async (ctx, next) => {
const { username, host } = parseAcct(ctx.params.user);
const user = await User.findOne({
usernameLower: username.toLowerCase(),
host
});
if (user != null) {
await ctx.render('user', { user });
} else {
2018-05-13 11:00:34 +03:00
// リモートユーザーなので
await next();
}
});
// Note
router.get('/notes/:note', async ctx => {
const note = await Note.findOne({ _id: ctx.params.note });
if (note != null) {
const _note = await packNote(note);
await ctx.render('note', {
note: _note,
summary: getNoteSummary(_note)
});
} else {
ctx.status = 404;
}
});
//#endregion
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;