yumechi-no-kuni/src/server/api/index.ts

72 lines
1.5 KiB
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* API Server
*/
2018-04-12 16:06:18 -05:00
import * as Koa from 'koa';
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';
2018-06-16 21:23:18 -05:00
const cors = require('@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';
import signin from './private/signup';
import discord from './service/discord';
import github from './service/github';
import twitter from './service/twitter';
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
*/
for (const endpoint of endpoints) {
if (endpoint.meta.requireFile) {
router.post(`/${endpoint.name}`, upload.single('file'), handler.bind(null, endpoint));
} else {
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
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;