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