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
|
|
|
*/
|
|
|
|
|
2022-02-27 03:07:39 +01:00
|
|
|
import { dirname } from 'node:path';
|
|
|
|
import { fileURLToPath } from 'node:url';
|
2022-07-14 00:01:23 +02:00
|
|
|
import { readFileSync } from 'node:fs';
|
2022-02-27 03:07:39 +01:00
|
|
|
import Koa from 'koa';
|
|
|
|
import Router from '@koa/router';
|
|
|
|
import send from 'koa-send';
|
|
|
|
import favicon from 'koa-favicon';
|
|
|
|
import views from 'koa-views';
|
2022-06-19 17:33:46 +02:00
|
|
|
import sharp from 'sharp';
|
2022-03-19 11:08:55 +01:00
|
|
|
import { createBullBoard } from '@bull-board/api';
|
2022-04-17 14:18:18 +02:00
|
|
|
import { BullAdapter } from '@bull-board/api/bullAdapter.js';
|
2022-03-19 11:08:55 +01:00
|
|
|
import { KoaAdapter } from '@bull-board/koa';
|
2022-02-27 03:07:39 +01:00
|
|
|
|
2022-04-24 07:17:09 +02:00
|
|
|
import { In, IsNull } from 'typeorm';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { Users, Notes, UserProfiles, Pages, Channels, Clips, GalleryPosts } from '@/models/index.js';
|
|
|
|
import * as Acct from '@/misc/acct.js';
|
|
|
|
import { getNoteSummary } from '@/misc/get-note-summary.js';
|
2022-04-17 14:18:18 +02:00
|
|
|
import { queues } from '@/queue/queues.js';
|
|
|
|
import { genOpenapiSpec } from '../api/openapi/gen-spec.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { urlPreviewHandler } from './url-preview.js';
|
|
|
|
import { manifestHandler } from './manifest.js';
|
2022-04-17 14:18:18 +02:00
|
|
|
import packFeed from './feed.js';
|
2022-07-14 00:01:23 +02:00
|
|
|
import { MINUTE, DAY } from '@/const.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
|
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
2021-08-19 11:33:41 +02:00
|
|
|
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_/`;
|
2022-04-30 14:52:07 +02:00
|
|
|
const swAssets = `${_dirname}/../../../../../built/_sw_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
|
|
|
|
2022-03-19 11:08:55 +01:00
|
|
|
//#region Bull Dashboard
|
|
|
|
const bullBoardPath = '/queue';
|
|
|
|
|
|
|
|
// Authenticate
|
|
|
|
app.use(async (ctx, next) => {
|
|
|
|
if (ctx.path === bullBoardPath || ctx.path.startsWith(bullBoardPath + '/')) {
|
|
|
|
const token = ctx.cookies.get('token');
|
|
|
|
if (token == null) {
|
|
|
|
ctx.status = 401;
|
|
|
|
return;
|
|
|
|
}
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({ token });
|
2022-03-19 11:08:55 +01:00
|
|
|
if (user == null || !(user.isAdmin || user.isModerator)) {
|
|
|
|
ctx.status = 403;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
|
|
|
const serverAdapter = new KoaAdapter();
|
|
|
|
|
|
|
|
createBullBoard({
|
|
|
|
queues: queues.map(q => new BullAdapter(q)),
|
|
|
|
serverAdapter,
|
|
|
|
});
|
|
|
|
|
|
|
|
serverAdapter.setBasePath(bullBoardPath);
|
|
|
|
app.use(serverAdapter.registerPlugin());
|
|
|
|
//#endregion
|
|
|
|
|
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,
|
2022-05-29 03:57:06 +02:00
|
|
|
getClientEntry: () => process.env.NODE_ENV === 'production' ?
|
2022-05-01 15:51:07 +02:00
|
|
|
config.clientEntry :
|
2022-05-29 03:57:06 +02:00
|
|
|
JSON.parse(readFileSync(`${_dirname}/../../../../../built/_client_dist_/manifest.json`, 'utf-8'))['src/init.ts'],
|
2021-12-09 15:58:30 +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,
|
2022-07-14 00:01:23 +02:00
|
|
|
maxage: 7 * DAY,
|
2021-03-06 05:23:59 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
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,
|
2022-07-14 00:01:23 +02:00
|
|
|
maxage: 7 * DAY,
|
2021-11-12 05:39:57 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
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,
|
2022-07-14 00:01:23 +02:00
|
|
|
maxage: 7 * DAY,
|
2018-04-12 23:06:18 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// 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-12-09 15:58:30 +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;
|
|
|
|
}
|
|
|
|
|
2022-04-17 14:18:18 +02:00
|
|
|
ctx.set('Content-Security-Policy', 'default-src \'none\'; style-src \'unsafe-inline\'');
|
2021-10-24 14:10:45 +02:00
|
|
|
|
|
|
|
await send(ctx as any, path, {
|
|
|
|
root: `${_dirname}/../../../node_modules/@discordapp/twemoji/dist/svg/`,
|
2022-07-14 00:01:23 +02:00
|
|
|
maxage: 30 * DAY,
|
2021-10-24 14:10:45 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-06-19 17:33:46 +02:00
|
|
|
router.get('/twemoji-badge/(.*)', async ctx => {
|
|
|
|
const path = ctx.path.replace('/twemoji-badge/', '');
|
|
|
|
|
|
|
|
if (!path.match(/^[0-9a-f-]+\.png$/)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const mask = await sharp(
|
|
|
|
`${_dirname}/../../../node_modules/@discordapp/twemoji/dist/svg/${path.replace('.png', '')}.svg`,
|
|
|
|
{ density: 1000 },
|
|
|
|
)
|
|
|
|
.resize(488, 488)
|
|
|
|
.greyscale()
|
|
|
|
.normalise()
|
|
|
|
.linear(1.75, -(128 * 1.75) + 128) // 1.75x contrast
|
|
|
|
.flatten({ background: '#000' })
|
|
|
|
.extend({
|
|
|
|
top: 12,
|
|
|
|
bottom: 12,
|
|
|
|
left: 12,
|
|
|
|
right: 12,
|
|
|
|
background: '#000',
|
|
|
|
})
|
|
|
|
.toColorspace('b-w')
|
|
|
|
.png()
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
const buffer = await sharp({
|
|
|
|
create: { width: 512, height: 512, channels: 4, background: { r: 0, g: 0, b: 0, alpha: 0 } },
|
|
|
|
})
|
|
|
|
.pipelineColorspace('b-w')
|
|
|
|
.boolean(mask, 'eor')
|
|
|
|
.resize(96, 96)
|
|
|
|
.png()
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
ctx.set('Content-Security-Policy', 'default-src \'none\'; style-src \'unsafe-inline\'');
|
|
|
|
ctx.set('Cache-Control', 'max-age=2592000');
|
|
|
|
ctx.set('Content-Type', 'image/png');
|
|
|
|
ctx.body = buffer;
|
|
|
|
});
|
|
|
|
|
2018-09-03 11:58:26 +02:00
|
|
|
// ServiceWorker
|
2022-04-30 14:52:07 +02:00
|
|
|
router.get(`/sw.js`, async ctx => {
|
|
|
|
await send(ctx as any, `/sw.js`, {
|
|
|
|
root: swAssets,
|
2022-07-14 00:01:23 +02:00
|
|
|
maxage: 10 * MINUTE,
|
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
|
2022-02-27 03:07:39 +01:00
|
|
|
router.get('/manifest.json', manifestHandler);
|
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-12-09 15:58:30 +01: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-12-09 15:58:30 +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
|
2022-02-27 03:07:39 +01:00
|
|
|
router.get('/url', urlPreviewHandler);
|
2020-04-03 10:13:41 +02:00
|
|
|
|
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-08-26 05:48:57 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.privateMode) {
|
|
|
|
return;
|
|
|
|
}
|
2021-11-11 18:02:25 +01:00
|
|
|
const { username, host } = Acct.parse(acct);
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2018-12-21 03:54:39 +01:00
|
|
|
usernameLower: username.toLowerCase(),
|
2022-03-26 07:34:00 +01:00
|
|
|
host: host ?? IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
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);
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2018-05-05 18:34:48 +02:00
|
|
|
usernameLower: username.toLowerCase(),
|
2022-03-26 07:34:00 +01:00
|
|
|
host: host ?? IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
isSuspended: false,
|
2018-05-05 18:34:48 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (user != null) {
|
2022-03-26 07:34:00 +01:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: 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,
|
2022-04-17 14:18:18 +02:00
|
|
|
avatarUrl: await Users.getAvatarUrl(user),
|
2019-09-23 21:08:52 +02:00
|
|
|
sub: ctx.params.sub,
|
2022-07-19 19:13:17 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2021-12-09 15:58:30 +01:00
|
|
|
icon: meta.iconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2019-02-06 14:27:23 +01:00
|
|
|
});
|
2022-07-27 18:46:35 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
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 => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: ctx.params.user,
|
2022-03-26 07:34:00 +01:00
|
|
|
host: IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
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) => {
|
2022-04-24 07:17:09 +02:00
|
|
|
const note = await Notes.findOneBy({
|
|
|
|
id: ctx.params.note,
|
|
|
|
visibility: In(['public', 'home']),
|
|
|
|
});
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
if (note) {
|
|
|
|
const _note = await Notes.pack(note);
|
2022-03-26 07:34:00 +01:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: 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,
|
2022-04-17 14:18:18 +02:00
|
|
|
avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: note.userId })),
|
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),
|
2022-09-14 05:23:22 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2021-12-09 15:58:30 +01:00
|
|
|
icon: meta.iconUrl,
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2019-04-07 14:50:36 +02:00
|
|
|
});
|
2022-07-25 18:15:21 +02:00
|
|
|
|
2022-05-29 03:58:54 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
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);
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2019-04-29 02:11:57 +02:00
|
|
|
usernameLower: username.toLowerCase(),
|
2022-03-26 07:34:00 +01:00
|
|
|
host: host ?? IsNull(),
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) return;
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const page = await Pages.findOneBy({
|
2019-04-29 02:11:57 +02:00
|
|
|
name: ctx.params.page,
|
2021-12-09 15:58:30 +01:00
|
|
|
userId: user.id,
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (page) {
|
|
|
|
const _page = await Pages.pack(page);
|
2022-03-26 07:34:00 +01:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: 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,
|
2022-04-17 14:18:18 +02:00
|
|
|
avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: page.userId })),
|
2022-07-19 19:13:17 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2022-02-09 05:41:52 +01:00
|
|
|
icon: meta.iconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (['public'].includes(page.visibility)) {
|
2022-05-29 03:58:54 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
2019-04-29 02:11:57 +02:00
|
|
|
} 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) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const clip = await Clips.findOneBy({
|
2020-11-15 09:40:49 +01:00
|
|
|
id: ctx.params.clip,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (clip) {
|
|
|
|
const _clip = await Clips.pack(clip);
|
2022-03-26 07:34:00 +01:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: 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,
|
2022-04-17 14:18:18 +02:00
|
|
|
avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: clip.userId })),
|
2022-07-19 19:13:17 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2022-02-09 05:41:52 +01:00
|
|
|
icon: meta.iconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2020-11-15 09:40:49 +01:00
|
|
|
});
|
|
|
|
|
2022-05-29 03:58:54 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
2020-11-15 09:40:49 +01:00
|
|
|
|
|
|
|
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) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const post = await GalleryPosts.findOneBy({ id: ctx.params.post });
|
2021-04-24 15:38:24 +02:00
|
|
|
|
|
|
|
if (post) {
|
|
|
|
const _post = await GalleryPosts.pack(post);
|
2022-03-26 07:34:00 +01:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: post.userId });
|
2021-04-24 15:38:24 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('gallery-post', {
|
|
|
|
post: _post,
|
|
|
|
profile,
|
2022-04-17 14:18:18 +02:00
|
|
|
avatarUrl: await Users.getAvatarUrl(await Users.findOneByOrFail({ id: post.userId })),
|
2022-07-19 19:13:17 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2021-12-09 15:58:30 +01:00
|
|
|
icon: meta.iconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2021-04-24 15:38:24 +02:00
|
|
|
});
|
|
|
|
|
2022-05-29 03:58:54 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
2021-04-24 15:38:24 +02:00
|
|
|
|
|
|
|
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) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const channel = await Channels.findOneBy({
|
2020-08-18 15:44:21 +02:00
|
|
|
id: ctx.params.channel,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (channel) {
|
|
|
|
const _channel = await Channels.pack(channel);
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
await ctx.render('channel', {
|
|
|
|
channel: _channel,
|
2022-07-19 19:13:17 +02:00
|
|
|
instanceName: meta.name || 'Calckey',
|
2022-02-09 05:41:52 +01:00
|
|
|
icon: meta.iconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2020-08-18 15:44:21 +02:00
|
|
|
});
|
|
|
|
|
2022-05-29 03:58:54 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=15');
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
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);
|
2021-08-26 05:48:57 +02:00
|
|
|
if (meta.privateMode) {
|
|
|
|
ctx.status = 403;
|
|
|
|
return;
|
|
|
|
}
|
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,
|
2022-03-26 07:34:00 +01:00
|
|
|
originalUsersCount: await Users.countBy({ host: IsNull() }),
|
|
|
|
originalNotesCount: await Notes.countBy({ userHost: IsNull() }),
|
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,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-04-17 14:18:18 +02:00
|
|
|
const override = (source: string, target: string, depth = 0) =>
|
2019-01-20 11:10:19 +01:00
|
|
|
[, ...target.split('/').filter(x => x), ...source.split('/').filter(x => x).splice(depth)].join('/');
|
|
|
|
|
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();
|
2022-07-27 18:46:35 +02:00
|
|
|
let motd = ['Loading...'];
|
2022-07-27 18:47:29 +02:00
|
|
|
if (meta.customMOTD.length > 0) {
|
2022-07-27 18:46:35 +02:00
|
|
|
motd = meta.customMOTD;
|
|
|
|
}
|
2022-08-16 00:55:30 +02:00
|
|
|
let splashIconUrl = meta.iconUrl;
|
2022-07-27 19:25:30 +02:00
|
|
|
if (meta.customSplashIcons.length > 0) {
|
2022-08-16 00:55:30 +02:00
|
|
|
splashIconUrl = meta.customSplashIcons[Math.floor(Math.random() * meta.customSplashIcons.length)];
|
2022-07-27 19:25:30 +02:00
|
|
|
}
|
2018-12-15 15:19:04 +01:00
|
|
|
await ctx.render('base', {
|
2019-03-14 08:30:51 +01:00
|
|
|
img: meta.bannerUrl,
|
2022-07-19 19:13:17 +02:00
|
|
|
title: meta.name || 'Calckey',
|
|
|
|
instanceName: meta.name || 'Calckey',
|
2019-03-14 08:30:51 +01:00
|
|
|
desc: meta.description,
|
2022-08-16 00:55:30 +02:00
|
|
|
icon: meta.iconUrl,
|
|
|
|
splashIcon: splashIconUrl,
|
2022-02-09 13:25:48 +01:00
|
|
|
themeColor: meta.themeColor,
|
2022-09-14 06:38:02 +02:00
|
|
|
randomMOTD: motd[Math.floor(Math.random() * motd.length)],
|
2021-08-26 05:48:57 +02:00
|
|
|
privateMode: meta.privateMode,
|
2017-05-17 22:06:55 +02:00
|
|
|
});
|
2022-07-27 18:46:35 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=3');
|
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());
|
|
|
|
|
2022-02-27 03:07:39 +01:00
|
|
|
export default app;
|