iceshrimp-legacy/src/server/web/index.ts

134 lines
2.7 KiB
TypeScript
Raw Normal View History

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';
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';
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 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
// 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-05-22 11:19:02 +02:00
// 互換性のため
const path = ctx.path.replace('.raw.js', '.js').replace('.min.js', '.js');
2018-04-16 08:32:40 +02:00
await send(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-05-04 10:59:51 +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 => {
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
//#region for crawlers
// User
2018-05-13 10:00:34 +02: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 10:00:34 +02: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 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;