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
|
|
|
*/
|
|
|
|
|
2019-01-12 03:27:23 +01:00
|
|
|
import * as os from 'os';
|
2020-02-07 11:43:37 +01:00
|
|
|
import * as fs from 'fs';
|
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';
|
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';
|
2020-02-07 11:43:37 +01:00
|
|
|
import * as glob from 'glob';
|
|
|
|
import * as MarkdownIt from 'markdown-it';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-12-21 03:54:39 +01:00
|
|
|
import packFeed from './feed';
|
2021-03-23 09:43:07 +01:00
|
|
|
import { fetchMeta } from '@/misc/fetch-meta';
|
2020-04-03 16:35:14 +02:00
|
|
|
import { genOpenapiSpec } from '../api/openapi/gen-spec';
|
2021-03-23 09:43:07 +01:00
|
|
|
import config from '@/config';
|
2021-04-24 15:38:24 +02:00
|
|
|
import { Users, Notes, Emojis, UserProfiles, Pages, Channels, Clips, GalleryPosts } from '../../models';
|
2021-07-15 13:45:32 +02:00
|
|
|
import { parseAcct } from '@/misc/acct';
|
2021-03-23 09:43:07 +01:00
|
|
|
import { getNoteSummary } from '@/misc/get-note-summary';
|
2019-06-20 15:52:35 +02:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-03-23 06:54:09 +01:00
|
|
|
import { redisClient } from '../../db/redis';
|
2020-02-07 11:43:37 +01:00
|
|
|
import locales = require('../../../locales');
|
|
|
|
|
|
|
|
const markdown = MarkdownIt({
|
|
|
|
html: true
|
|
|
|
});
|
2018-04-13 05:05:24 +02:00
|
|
|
|
2021-03-06 05:23:59 +01:00
|
|
|
const staticAssets = `${__dirname}/../../../assets/`;
|
2021-03-13 03:43:07 +01:00
|
|
|
const docAssets = `${__dirname}/../../../src/docs/`;
|
2021-03-06 05:23:59 +01:00
|
|
|
const assets = `${__dirname}/../../assets/`;
|
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: {
|
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-03-13 15:22:54 +01: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-03-13 03:43:07 +01:00
|
|
|
router.get('/doc-assets/(.*)', async ctx => {
|
|
|
|
await send(ctx as any, ctx.path.replace('/doc-assets/', ''), {
|
|
|
|
root: docAssets,
|
|
|
|
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
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
2020-02-07 11:15:08 +01:00
|
|
|
router.get('/docs.json', async ctx => {
|
|
|
|
const lang = ctx.query.lang;
|
2021-08-04 17:15:51 +02:00
|
|
|
const query = ctx.query.q;
|
2020-02-07 11:43:37 +01:00
|
|
|
if (!Object.keys(locales).includes(lang)) {
|
|
|
|
ctx.body = [];
|
|
|
|
return;
|
|
|
|
}
|
2021-08-04 17:15:51 +02:00
|
|
|
const dirPath = `${__dirname}/../../../src/docs/${lang}`.replace(/\\/g, '/');
|
|
|
|
const paths = glob.sync(`${dirPath}/**/*.md`);
|
|
|
|
const docs: { path: string; title: string; summary: string; }[] = [];
|
2020-02-07 11:43:37 +01:00
|
|
|
for (const path of paths) {
|
|
|
|
const md = fs.readFileSync(path, { encoding: 'utf8' });
|
2021-08-04 17:15:51 +02:00
|
|
|
|
|
|
|
if (query && query.length > 0) {
|
|
|
|
// TODO: カタカナをひらがなにして比較するなどしたい
|
|
|
|
if (!md.includes(query)) continue;
|
|
|
|
}
|
|
|
|
|
2020-02-07 11:43:37 +01:00
|
|
|
const parsed = markdown.parse(md, {});
|
|
|
|
if (parsed.length === 0) return;
|
|
|
|
|
|
|
|
const buf = [...parsed];
|
|
|
|
const headingTokens = [];
|
|
|
|
|
|
|
|
// もっとも上にある見出しを抽出する
|
|
|
|
while (buf[0].type !== 'heading_open') {
|
|
|
|
buf.shift();
|
|
|
|
}
|
|
|
|
buf.shift();
|
|
|
|
while (buf[0].type as string !== 'heading_close') {
|
|
|
|
const token = buf.shift();
|
|
|
|
if (token) {
|
|
|
|
headingTokens.push(token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-04 17:15:51 +02:00
|
|
|
const firstParagrapfTokens = [];
|
|
|
|
while (buf[0].type !== 'paragraph_open') {
|
|
|
|
buf.shift();
|
|
|
|
}
|
|
|
|
buf.shift();
|
|
|
|
while (buf[0].type as string !== 'paragraph_close') {
|
|
|
|
const token = buf.shift();
|
|
|
|
if (token) {
|
|
|
|
firstParagrapfTokens.push(token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 11:43:37 +01:00
|
|
|
docs.push({
|
2021-08-04 17:15:51 +02:00
|
|
|
path: path.replace(`${dirPath}/`, '').split('.')[0],
|
|
|
|
title: markdown.renderer.render(headingTokens, {}, {}),
|
|
|
|
summary: markdown.renderer.render(firstParagrapfTokens, {}, {}),
|
2020-02-07 11:43:37 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.body = docs;
|
2020-02-07 11:15:08 +01:00
|
|
|
});
|
|
|
|
|
2018-12-21 03:54:39 +01:00
|
|
|
const getFeed = async (acct: string) => {
|
|
|
|
const { username, host } = parseAcct(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) => {
|
2018-05-05 18:34:48 +02:00
|
|
|
const { username, host } = parseAcct(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
|
|
|
|
summary: getNoteSummary(_note, locales['ja-JP']),
|
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) => {
|
2019-04-29 02:11:57 +02:00
|
|
|
const { username, host } = parseAcct(ctx.params.user);
|
|
|
|
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
|
|
|
|
|
2019-01-12 03:27:23 +01:00
|
|
|
router.get('/info', async ctx => {
|
2019-04-24 01:11:19 +02:00
|
|
|
const meta = await fetchMeta(true);
|
2019-04-07 14:50:36 +02:00
|
|
|
const emojis = await Emojis.find({
|
|
|
|
where: { host: null }
|
2019-01-12 03:27:23 +01:00
|
|
|
});
|
2020-08-29 01:56:32 +02:00
|
|
|
|
|
|
|
const proxyAccount = meta.proxyAccountId ? await Users.pack(meta.proxyAccountId).catch(() => null) : null;
|
|
|
|
|
2019-01-12 03:27:23 +01:00
|
|
|
await ctx.render('info', {
|
2019-11-01 14:34:26 +01:00
|
|
|
version: config.version,
|
2019-01-12 03:27:23 +01:00
|
|
|
machine: os.hostname(),
|
|
|
|
os: os.platform(),
|
|
|
|
node: process.version,
|
2019-06-20 15:52:35 +02:00
|
|
|
psql: await getConnection().query('SHOW server_version').then(x => x[0].server_version),
|
2021-03-23 06:54:09 +01:00
|
|
|
redis: redisClient.server_info.redis_version,
|
2019-01-12 03:27:23 +01:00
|
|
|
cpu: {
|
|
|
|
model: os.cpus()[0].model,
|
|
|
|
cores: os.cpus().length
|
|
|
|
},
|
|
|
|
emojis: emojis,
|
2019-04-07 14:50:36 +02:00
|
|
|
meta: meta,
|
2020-08-29 01:56:32 +02:00
|
|
|
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
2019-04-07 14:50:36 +02:00
|
|
|
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;
|