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
|
|
|
*/
|
|
|
|
|
2021-08-19 11:33:41 +02:00
|
|
|
import { dirname } from 'path';
|
2021-11-12 11:47:04 +01:00
|
|
|
import ms from 'ms';
|
2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
2019-09-26 22:50:34 +02:00
|
|
|
import * as Router from '@koa/router';
|
2018-04-12 23:06:18 +02:00
|
|
|
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
|
|
|
|
2021-08-19 14:55:45 +02:00
|
|
|
import packFeed from './feed';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta';
|
|
|
|
import { genOpenapiSpec } from '../api/openapi/gen-spec';
|
|
|
|
import config from '@/config/index';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { Users, Notes, UserProfiles, Pages, Channels, Clips, GalleryPosts } from '@/models/index';
|
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { getNoteSummary } from '@/misc/get-note-summary';
|
2021-08-19 11:33:41 +02:00
|
|
|
|
|
|
|
//const _filename = fileURLToPath(import.meta.url);
|
|
|
|
const _filename = __filename;
|
|
|
|
const _dirname = dirname(_filename);
|
2020-02-07 11:43:37 +01:00
|
|
|
|
2021-08-19 11:33:41 +02:00
|
|
|
const staticAssets = `${_dirname}/../../../assets/`;
|
2021-11-12 05:39:57 +01:00
|
|
|
const clientAssets = `${_dirname}/../../../../client/assets/`;
|
2021-11-11 18:02:25 +01:00
|
|
|
const assets = `${_dirname}/../../../../../built/_client_dist_/`;
|
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
|
2021-08-19 11:33:41 +02:00
|
|
|
app.use(views(_dirname + '/views', {
|
2018-05-05 18:34:48 +02:00
|
|
|
extension: 'pug',
|
|
|
|
options: {
|
2020-01-29 20:37:25 +01:00
|
|
|
version: config.version,
|
2019-02-07 13:02:33 +01:00
|
|
|
config
|
2018-05-05 18:34:48 +02:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
// Serve favicon
|
2021-08-19 11:33:41 +02:00
|
|
|
app.use(favicon(`${_dirname}/../../../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
|
|
|
|
|
2021-03-06 05:23:59 +01:00
|
|
|
router.get('/static-assets/(.*)', async ctx => {
|
|
|
|
await send(ctx as any, ctx.path.replace('/static-assets/', ''), {
|
|
|
|
root: staticAssets,
|
|
|
|
maxage: ms('7 days'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-11-12 05:39:57 +01:00
|
|
|
router.get('/client-assets/(.*)', async ctx => {
|
|
|
|
await send(ctx as any, ctx.path.replace('/client-assets/', ''), {
|
|
|
|
root: clientAssets,
|
|
|
|
maxage: ms('7 days'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-06-27 16:25:06 +02:00
|
|
|
router.get('/assets/(.*)', async ctx => {
|
2021-03-06 05:23:59 +01:00
|
|
|
await send(ctx as any, ctx.path.replace('/assets/', ''), {
|
|
|
|
root: assets,
|
2018-04-12 23:06:18 +02:00
|
|
|
maxage: ms('7 days'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Apple touch icon
|
|
|
|
router.get('/apple-touch-icon.png', async ctx => {
|
2021-03-06 05:23:59 +01:00
|
|
|
await send(ctx as any, '/apple-touch-icon.png', {
|
2021-03-13 05:19:49 +01:00
|
|
|
root: staticAssets
|
2018-05-04 10:59:51 +02:00
|
|
|
});
|
2017-11-28 06:07:00 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2021-10-24 14:10:45 +02:00
|
|
|
router.get('/twemoji/(.*)', async ctx => {
|
|
|
|
const path = ctx.path.replace('/twemoji/', '');
|
|
|
|
|
|
|
|
if (!path.match(/^[0-9a-f-]+\.svg$/)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.set('Content-Security-Policy', `default-src 'none'; style-src 'unsafe-inline'`);
|
|
|
|
|
|
|
|
await send(ctx as any, path, {
|
|
|
|
root: `${_dirname}/../../../node_modules/@discordapp/twemoji/dist/svg/`,
|
|
|
|
maxage: ms('30 days'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-09-03 11:58:26 +02:00
|
|
|
// ServiceWorker
|
2021-02-06 10:55:53 +01:00
|
|
|
router.get('/sw.js', async ctx => {
|
2021-03-06 05:23:59 +01:00
|
|
|
await send(ctx as any, `/sw.${config.version}.js`, {
|
|
|
|
root: assets
|
2018-06-17 09:47:37 +02:00
|
|
|
});
|
|
|
|
});
|
2017-11-20 19:40:09 +01:00
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
// Manifest
|
2019-03-31 18:05:49 +02:00
|
|
|
router.get('/manifest.json', require('./manifest'));
|
2017-02-21 20:19:53 +01:00
|
|
|
|
2019-03-07 12:11:04 +01:00
|
|
|
router.get('/robots.txt', async ctx => {
|
2021-03-06 05:23:59 +01:00
|
|
|
await send(ctx as any, '/robots.txt', {
|
2021-04-19 05:17:22 +02:00
|
|
|
root: staticAssets
|
2019-03-07 12:11:04 +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
|
2019-02-23 03:20:58 +01:00
|
|
|
router.get('/api-doc', async ctx => {
|
2021-03-06 05:23:59 +01:00
|
|
|
await send(ctx as any, '/redoc.html', {
|
2021-03-07 06:40:57 +01:00
|
|
|
root: staticAssets
|
2019-02-23 03:20:58 +01:00
|
|
|
});
|
|
|
|
});
|
2018-04-12 23:06:18 +02:00
|
|
|
|
2020-04-03 10:13:41 +02:00
|
|
|
// URL preview endpoint
|
|
|
|
router.get('/url', require('./url-preview'));
|
|
|
|
|
2020-04-03 16:35:14 +02:00
|
|
|
router.get('/api.json', async ctx => {
|
|
|
|
ctx.body = genOpenapiSpec();
|
|
|
|
});
|
|
|
|
|
2018-12-21 03:54:39 +01:00
|
|
|
const getFeed = async (acct: string) => {
|
2021-11-11 18:02:25 +01:00
|
|
|
const { username, host } = Acct.parse(acct);
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne({
|
2018-12-21 03:54:39 +01:00
|
|
|
usernameLower: username.toLowerCase(),
|
2020-01-01 18:47:20 +01:00
|
|
|
host,
|
|
|
|
isSuspended: false
|
2018-12-21 03:54:39 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
return user && await packFeed(user);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Atom
|
|
|
|
router.get('/@:user.atom', async ctx => {
|
|
|
|
const feed = await getFeed(ctx.params.user);
|
|
|
|
|
|
|
|
if (feed) {
|
|
|
|
ctx.set('Content-Type', 'application/atom+xml; charset=utf-8');
|
|
|
|
ctx.body = feed.atom1();
|
|
|
|
} else {
|
|
|
|
ctx.status = 404;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// RSS
|
|
|
|
router.get('/@:user.rss', async ctx => {
|
|
|
|
const feed = await getFeed(ctx.params.user);
|
|
|
|
|
|
|
|
if (feed) {
|
|
|
|
ctx.set('Content-Type', 'application/rss+xml; charset=utf-8');
|
|
|
|
ctx.body = feed.rss2();
|
|
|
|
} else {
|
|
|
|
ctx.status = 404;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// JSON
|
|
|
|
router.get('/@:user.json', async ctx => {
|
|
|
|
const feed = await getFeed(ctx.params.user);
|
|
|
|
|
|
|
|
if (feed) {
|
|
|
|
ctx.set('Content-Type', 'application/json; charset=utf-8');
|
|
|
|
ctx.body = feed.json1();
|
|
|
|
} else {
|
|
|
|
ctx.status = 404;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
//#region SSR (for crawlers)
|
2018-05-05 18:34:48 +02:00
|
|
|
// User
|
2019-09-23 21:08:52 +02:00
|
|
|
router.get(['/@:user', '/@:user/:sub'], async (ctx, next) => {
|
2021-11-11 18:02:25 +01:00
|
|
|
const { username, host } = Acct.parse(ctx.params.user);
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne({
|
2018-05-05 18:34:48 +02:00
|
|
|
usernameLower: username.toLowerCase(),
|
2020-01-01 18:47:20 +01:00
|
|
|
host,
|
|
|
|
isSuspended: false
|
2018-05-05 18:34:48 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (user != null) {
|
2021-02-13 07:33:38 +01:00
|
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
2019-02-06 14:27:23 +01:00
|
|
|
const meta = await fetchMeta();
|
2019-07-17 17:11:39 +02:00
|
|
|
const me = profile.fields
|
|
|
|
? profile.fields
|
|
|
|
.filter(filed => filed.value != null && filed.value.match(/^https?:/))
|
|
|
|
.map(field => field.value)
|
|
|
|
: [];
|
|
|
|
|
2019-02-06 14:27:23 +01:00
|
|
|
await ctx.render('user', {
|
2019-07-17 17:11:39 +02:00
|
|
|
user, profile, me,
|
2019-09-23 21:08:52 +02:00
|
|
|
sub: ctx.params.sub,
|
2019-08-16 07:16:19 +02:00
|
|
|
instanceName: meta.name || 'Misskey',
|
|
|
|
icon: meta.iconUrl
|
2019-02-06 14:27:23 +01:00
|
|
|
});
|
2019-07-17 17:11:39 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=30');
|
2018-05-05 18:34:48 +02:00
|
|
|
} else {
|
2018-05-13 10:00:34 +02:00
|
|
|
// リモートユーザーなので
|
2020-01-01 18:47:20 +01:00
|
|
|
// モデレータがAPI経由で参照可能にするために404にはしない
|
2018-05-13 10:00:34 +02:00
|
|
|
await next();
|
2018-05-05 18:34:48 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-01-02 10:07:32 +01:00
|
|
|
router.get('/users/:user', async ctx => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne({
|
|
|
|
id: ctx.params.user,
|
2020-01-01 18:47:20 +01:00
|
|
|
host: null,
|
|
|
|
isSuspended: false
|
2019-01-02 10:07:32 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2019-01-02 10:07:32 +01:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.redirect(`/@${user.username}${ user.host == null ? '' : '@' + user.host}`);
|
|
|
|
});
|
|
|
|
|
2018-05-05 18:34:48 +02:00
|
|
|
// Note
|
2021-04-26 05:34:41 +02:00
|
|
|
router.get('/notes/:note', async (ctx, next) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const note = await Notes.findOne(ctx.params.note);
|
|
|
|
|
|
|
|
if (note) {
|
|
|
|
const _note = await Notes.pack(note);
|
2021-02-13 07:33:38 +01:00
|
|
|
const profile = await UserProfiles.findOneOrFail(note.userId);
|
2019-04-07 14:50:36 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('note', {
|
|
|
|
note: _note,
|
2020-11-25 13:31:34 +01:00
|
|
|
profile,
|
2020-05-23 06:19:31 +02:00
|
|
|
// TODO: Let locale changeable by instance setting
|
2021-11-11 18:02:25 +01:00
|
|
|
summary: getNoteSummary(_note),
|
2019-08-16 07:16:19 +02:00
|
|
|
instanceName: meta.name || 'Misskey',
|
|
|
|
icon: meta.iconUrl
|
2019-04-07 14:50:36 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (['public', 'home'].includes(note.visibility)) {
|
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
} else {
|
|
|
|
ctx.set('Cache-Control', 'private, max-age=0, must-revalidate');
|
2018-12-26 10:32:16 +01:00
|
|
|
}
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
return;
|
2018-05-05 18:34:48 +02:00
|
|
|
}
|
2018-12-26 10:32:16 +01:00
|
|
|
|
2021-04-26 05:34:41 +02:00
|
|
|
await next();
|
2018-05-05 18:34:48 +02:00
|
|
|
});
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
// Page
|
2021-04-26 05:34:41 +02:00
|
|
|
router.get('/@:user/pages/:page', async (ctx, next) => {
|
2021-11-11 18:02:25 +01:00
|
|
|
const { username, host } = Acct.parse(ctx.params.user);
|
2019-04-29 02:11:57 +02:00
|
|
|
const user = await Users.findOne({
|
|
|
|
usernameLower: username.toLowerCase(),
|
|
|
|
host
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) return;
|
|
|
|
|
|
|
|
const page = await Pages.findOne({
|
|
|
|
name: ctx.params.page,
|
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
const _page = await Pages.pack(page);
|
2021-02-13 07:33:38 +01:00
|
|
|
const profile = await UserProfiles.findOneOrFail(page.userId);
|
2019-04-29 02:11:57 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('page', {
|
|
|
|
page: _page,
|
2020-11-25 13:31:34 +01:00
|
|
|
profile,
|
2019-04-29 02:11:57 +02:00
|
|
|
instanceName: meta.name || 'Misskey'
|
|
|
|
});
|
|
|
|
|
|
|
|
if (['public'].includes(page.visibility)) {
|
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
} else {
|
|
|
|
ctx.set('Cache-Control', 'private, max-age=0, must-revalidate');
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-26 05:34:41 +02:00
|
|
|
await next();
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2020-11-15 09:40:49 +01:00
|
|
|
// Clip
|
2020-11-17 06:59:15 +01:00
|
|
|
// TODO: 非publicなclipのハンドリング
|
2021-04-26 05:34:41 +02:00
|
|
|
router.get('/clips/:clip', async (ctx, next) => {
|
2020-11-15 09:40:49 +01:00
|
|
|
const clip = await Clips.findOne({
|
|
|
|
id: ctx.params.clip,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (clip) {
|
|
|
|
const _clip = await Clips.pack(clip);
|
2021-02-13 07:33:38 +01:00
|
|
|
const profile = await UserProfiles.findOneOrFail(clip.userId);
|
2020-11-15 09:40:49 +01:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('clip', {
|
|
|
|
clip: _clip,
|
2020-11-25 13:31:34 +01:00
|
|
|
profile,
|
2020-11-15 09:40:49 +01:00
|
|
|
instanceName: meta.name || 'Misskey'
|
|
|
|
});
|
|
|
|
|
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-26 05:34:41 +02:00
|
|
|
await next();
|
2020-11-15 09:40:49 +01:00
|
|
|
});
|
|
|
|
|
2021-04-24 15:38:24 +02:00
|
|
|
// Gallery post
|
2021-04-26 05:34:41 +02:00
|
|
|
router.get('/gallery/:post', async (ctx, next) => {
|
2021-04-24 15:38:24 +02:00
|
|
|
const post = await GalleryPosts.findOne(ctx.params.post);
|
|
|
|
|
|
|
|
if (post) {
|
|
|
|
const _post = await GalleryPosts.pack(post);
|
|
|
|
const profile = await UserProfiles.findOneOrFail(post.userId);
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('gallery-post', {
|
|
|
|
post: _post,
|
|
|
|
profile,
|
|
|
|
instanceName: meta.name || 'Misskey',
|
|
|
|
icon: meta.iconUrl
|
|
|
|
});
|
|
|
|
|
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-26 05:34:41 +02:00
|
|
|
await next();
|
2021-04-24 15:38:24 +02:00
|
|
|
});
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
// Channel
|
2021-04-26 05:34:41 +02:00
|
|
|
router.get('/channels/:channel', async (ctx, next) => {
|
2020-08-18 15:44:21 +02:00
|
|
|
const channel = await Channels.findOne({
|
|
|
|
id: ctx.params.channel,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (channel) {
|
|
|
|
const _channel = await Channels.pack(channel);
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('channel', {
|
|
|
|
channel: _channel,
|
|
|
|
instanceName: meta.name || 'Misskey'
|
|
|
|
});
|
|
|
|
|
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-26 05:34:41 +02:00
|
|
|
await next();
|
2020-08-18 15:44:21 +02:00
|
|
|
});
|
2018-05-05 18:34:48 +02:00
|
|
|
//#endregion
|
|
|
|
|
2021-11-07 13:01:06 +01:00
|
|
|
router.get('/_info_card_', async ctx => {
|
2019-04-24 01:11:19 +02:00
|
|
|
const meta = await fetchMeta(true);
|
2020-08-29 01:56:32 +02:00
|
|
|
|
2021-11-07 13:10:41 +01:00
|
|
|
ctx.remove('X-Frame-Options');
|
|
|
|
|
2021-11-07 13:01:06 +01:00
|
|
|
await ctx.render('info-card', {
|
2019-11-01 14:34:26 +01:00
|
|
|
version: config.version,
|
2021-11-07 13:01:06 +01:00
|
|
|
host: config.host,
|
2019-04-07 14:50:36 +02:00
|
|
|
meta: meta,
|
|
|
|
originalUsersCount: await Users.count({ host: null }),
|
|
|
|
originalNotesCount: await Notes.count({ userHost: null })
|
2019-01-12 03:27:23 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-02 17:03:29 +01:00
|
|
|
router.get('/bios', async ctx => {
|
|
|
|
await ctx.render('bios', {
|
|
|
|
version: config.version,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/cli', async ctx => {
|
|
|
|
await ctx.render('cli', {
|
|
|
|
version: config.version,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-01-20 11:10:19 +01:00
|
|
|
const override = (source: string, target: string, depth: number = 0) =>
|
|
|
|
[, ...target.split('/').filter(x => x), ...source.split('/').filter(x => x).splice(depth)].join('/');
|
|
|
|
|
|
|
|
router.get('/othello', async ctx => ctx.redirect(override(ctx.URL.pathname, 'games/reversi', 1)));
|
|
|
|
router.get('/reversi', async ctx => ctx.redirect(override(ctx.URL.pathname, 'games')));
|
|
|
|
|
2020-02-09 12:53:00 +01:00
|
|
|
router.get('/flush', async ctx => {
|
|
|
|
await ctx.render('flush');
|
2020-02-09 04:47:50 +01:00
|
|
|
});
|
|
|
|
|
2020-10-09 07:20:34 +02:00
|
|
|
// streamingに非WebSocketリクエストが来た場合にbase htmlをキャシュ付きで返すと、Proxy等でそのパスがキャッシュされておかしくなる
|
|
|
|
router.get('/streaming', async ctx => {
|
|
|
|
ctx.status = 503;
|
|
|
|
ctx.set('Cache-Control', 'private, max-age=0');
|
|
|
|
});
|
|
|
|
|
2018-03-29 13:32:18 +02:00
|
|
|
// Render base html for all requests
|
2020-06-27 16:25:06 +02:00
|
|
|
router.get('(.*)', async ctx => {
|
2018-12-15 15:19:04 +01:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('base', {
|
2019-03-14 08:30:51 +01:00
|
|
|
img: meta.bannerUrl,
|
2019-04-07 14:50:36 +02:00
|
|
|
title: meta.name || 'Misskey',
|
2019-08-16 07:16:19 +02:00
|
|
|
instanceName: meta.name || 'Misskey',
|
2019-03-14 08:30:51 +01:00
|
|
|
desc: meta.description,
|
|
|
|
icon: meta.iconUrl
|
2017-05-17 22:06:55 +02:00
|
|
|
});
|
2019-02-14 05:41:28 +01:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=300');
|
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;
|