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';
|
2018-05-05 18:34:48 +02:00
|
|
|
import * as views from 'koa-views';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-13 05:05:24 +02:00
|
|
|
import docs from './docs';
|
2018-05-05 18:34:48 +02:00
|
|
|
import User from '../../models/user';
|
2018-07-07 12:19:00 +02:00
|
|
|
import parseAcct from '../../misc/acct/parse';
|
2018-07-07 12:21:54 +02:00
|
|
|
import { fa } from '../../misc/fa';
|
2018-05-05 18:34:48 +02:00
|
|
|
import config from '../../config';
|
|
|
|
import Note, { pack as packNote } from '../../models/note';
|
2018-07-07 12:19:00 +02:00
|
|
|
import getNoteSummary from '../../misc/get-note-summary';
|
2018-05-05 18:34:48 +02:00
|
|
|
const consts = require('../../const.json');
|
2018-04-13 05:05:24 +02: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-05-05 18:34:48 +02:00
|
|
|
// Init renderer
|
|
|
|
app.use(views(__dirname + '/views', {
|
|
|
|
extension: 'pug',
|
|
|
|
options: {
|
|
|
|
config,
|
|
|
|
themeColor: consts.themeColor,
|
|
|
|
facss: fa.dom.css()
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
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-06-18 09:34:26 +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 => {
|
2018-05-04 10:59:51 +02:00
|
|
|
await send(ctx, '/assets/apple-touch-icon.png', {
|
|
|
|
root: client
|
|
|
|
});
|
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-06-17 09:47:37 +02:00
|
|
|
router.get(/^\/sw\.(.+?)\.js$/, async ctx => {
|
|
|
|
await send(ctx, `/assets/sw.${ctx.params[0]}.js`, {
|
|
|
|
root: client
|
|
|
|
});
|
|
|
|
});
|
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 => {
|
2018-05-04 10:59:51 +02:00
|
|
|
await send(ctx, '/assets/manifest.json', {
|
|
|
|
root: client
|
|
|
|
});
|
2018-04-12 23:06:18 +02:00
|
|
|
});
|
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
|
2018-04-13 05:05:24 +02:00
|
|
|
router.use('/docs', docs.routes());
|
2018-04-12 23:06:18 +02:00
|
|
|
|
|
|
|
// URL preview endpoint
|
2018-04-21 12:02:12 +02:00
|
|
|
router.get('/url', require('./url-preview'));
|
2018-03-29 13:32:18 +02:00
|
|
|
|
2018-05-05 18:34:48 +02:00
|
|
|
//#region for crawlers
|
|
|
|
// User
|
2018-05-13 10:00:34 +02:00
|
|
|
router.get('/@:user', async (ctx, next) => {
|
2018-05-05 18:34:48 +02:00
|
|
|
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 10:00:34 +02:00
|
|
|
// リモートユーザーなので
|
|
|
|
await next();
|
2018-05-05 18:34:48 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// 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 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;
|