2016-12-29 00:49:51 +02:00
|
|
|
/**
|
|
|
|
* API Server
|
|
|
|
*/
|
|
|
|
|
2022-02-27 04:07:39 +02:00
|
|
|
import Koa from 'koa';
|
|
|
|
import Router from '@koa/router';
|
|
|
|
import multer from '@koa/multer';
|
|
|
|
import bodyParser from 'koa-bodyparser';
|
|
|
|
import cors from '@koa/cors';
|
|
|
|
|
|
|
|
import endpoints from './endpoints.js';
|
|
|
|
import handler from './api-handler.js';
|
|
|
|
import signup from './private/signup.js';
|
|
|
|
import signin from './private/signin.js';
|
|
|
|
import signupPending from './private/signup-pending.js';
|
|
|
|
import discord from './service/discord.js';
|
|
|
|
import github from './service/github.js';
|
|
|
|
import twitter from './service/twitter.js';
|
|
|
|
import { Instances, AccessTokens, Users } from '@/models/index.js';
|
|
|
|
import config from '@/config/index.js';
|
2018-04-13 00:06:18 +03:00
|
|
|
|
|
|
|
// Init app
|
|
|
|
const app = new Koa();
|
2018-06-17 05:27:20 +03:00
|
|
|
|
|
|
|
app.use(cors({
|
2021-12-09 16:58:30 +02:00
|
|
|
origin: '*',
|
2018-06-17 05:27:20 +03:00
|
|
|
}));
|
|
|
|
|
2018-11-26 18:16:25 +02:00
|
|
|
// No caching
|
|
|
|
app.use(async (ctx, next) => {
|
|
|
|
ctx.set('Cache-Control', 'private, max-age=0, must-revalidate');
|
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
2018-04-13 03:44:00 +03:00
|
|
|
app.use(bodyParser({
|
2018-04-13 05:44:39 +03:00
|
|
|
// リクエストが multipart/form-data でない限りはJSONだと見なす
|
2021-12-09 16:58:30 +02:00
|
|
|
detectJSON: ctx => !ctx.is('multipart/form-data'),
|
2018-04-13 03:44:00 +03:00
|
|
|
}));
|
2018-04-13 00:06:18 +03:00
|
|
|
|
|
|
|
// Init multer instance
|
|
|
|
const upload = multer({
|
2021-09-04 14:33:14 +03:00
|
|
|
storage: multer.diskStorage({}),
|
|
|
|
limits: {
|
|
|
|
fileSize: config.maxFileSize || 262144000,
|
|
|
|
files: 1,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2016-12-29 19:17:30 +02:00
|
|
|
});
|
|
|
|
|
2018-04-13 00:06:18 +03:00
|
|
|
// Init router
|
2020-06-05 02:37:27 +03:00
|
|
|
const router = new Router();
|
2018-04-13 00:06:18 +03:00
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
/**
|
|
|
|
* Register endpoint handlers
|
|
|
|
*/
|
2018-12-11 13:36:55 +02:00
|
|
|
for (const endpoint of endpoints) {
|
|
|
|
if (endpoint.meta.requireFile) {
|
|
|
|
router.post(`/${endpoint.name}`, upload.single('file'), handler.bind(null, endpoint));
|
|
|
|
} else {
|
2019-02-24 10:57:49 +02:00
|
|
|
if (endpoint.name.includes('-')) {
|
|
|
|
// 後方互換性のため
|
2019-05-05 03:27:55 +03:00
|
|
|
router.post(`/${endpoint.name.replace(/-/g, '_')}`, handler.bind(null, endpoint));
|
2019-02-24 10:57:49 +02:00
|
|
|
}
|
2018-12-11 13:36:55 +02:00
|
|
|
router.post(`/${endpoint.name}`, handler.bind(null, endpoint));
|
|
|
|
}
|
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-01-31 16:32:58 +02:00
|
|
|
router.post('/signup', signup);
|
|
|
|
router.post('/signin', signin);
|
2021-10-08 07:37:02 +03:00
|
|
|
router.post('/signup-pending', signupPending);
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-01-31 16:32:58 +02:00
|
|
|
router.use(discord.routes());
|
|
|
|
router.use(github.routes());
|
|
|
|
router.use(twitter.routes());
|
2017-01-21 07:39:39 +02:00
|
|
|
|
2019-02-21 16:20:25 +02:00
|
|
|
router.get('/v1/instance/peers', async ctx => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const instances = await Instances.find({
|
2021-12-09 16:58:30 +02:00
|
|
|
select: ['host'],
|
2019-04-07 15:50:36 +03:00
|
|
|
});
|
2019-02-21 16:20:25 +02:00
|
|
|
|
2019-04-09 18:59:41 +03:00
|
|
|
ctx.body = instances.map(instance => instance.host);
|
2019-02-21 16:20:25 +02:00
|
|
|
});
|
|
|
|
|
2020-06-05 02:37:27 +03:00
|
|
|
router.post('/miauth/:session/check', async ctx => {
|
2022-03-26 08:34:00 +02:00
|
|
|
const token = await AccessTokens.findOneBy({
|
2021-12-09 16:58:30 +02:00
|
|
|
session: ctx.params.session,
|
2020-03-28 04:24:37 +02:00
|
|
|
});
|
|
|
|
|
2020-07-18 06:12:10 +03:00
|
|
|
if (token && token.session != null && !token.fetched) {
|
2020-03-28 04:24:37 +02:00
|
|
|
AccessTokens.update(token.id, {
|
2021-12-09 16:58:30 +02:00
|
|
|
fetched: true,
|
2020-03-28 04:24:37 +02:00
|
|
|
});
|
2020-03-28 13:56:17 +02:00
|
|
|
|
2020-03-28 04:24:37 +02:00
|
|
|
ctx.body = {
|
|
|
|
ok: true,
|
|
|
|
token: token.token,
|
2021-12-09 16:58:30 +02:00
|
|
|
user: await Users.pack(token.userId, null, { detail: true }),
|
2020-03-28 04:24:37 +02:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
ctx.body = {
|
|
|
|
ok: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-06-05 02:37:27 +03:00
|
|
|
// Return 404 for unknown API
|
2020-06-27 17:25:06 +03:00
|
|
|
router.all('(.*)', async ctx => {
|
2020-06-05 02:37:27 +03:00
|
|
|
ctx.status = 404;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Register router
|
|
|
|
app.use(router.routes());
|
2017-10-06 21:36:46 +03:00
|
|
|
|
2018-10-16 00:37:21 +03:00
|
|
|
export default app;
|