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