Sharkey/src/server/api/index.ts

50 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* API Server
*/
2018-04-13 00:06:18 +03:00
import * as Koa from 'koa';
import * as Router from 'koa-router';
import * as multer from 'koa-multer';
2018-04-13 01:34:27 +03:00
import * as bodyParser from 'koa-bodyparser';
2018-06-17 05:23:18 +03:00
const cors = require('@koa/cors');
2016-12-29 00:49:51 +02:00
import endpoints from './endpoints';
2018-04-13 00:06:18 +03:00
const handler = require('./api-handler').default;
// Init app
const app = new Koa();
2018-06-17 05:23:18 +03:00
app.use(cors());
2018-04-13 03:44:00 +03:00
app.use(bodyParser({
2018-04-13 05:44:39 +03:00
// リクエストが multipart/form-data でない限りはJSONだと見なす
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({
storage: multer.diskStorage({})
2016-12-29 19:17:30 +02:00
});
2018-04-13 00:06:18 +03:00
// Init router
const router = new Router();
2016-12-29 00:49:51 +02:00
/**
* Register endpoint handlers
*/
2018-04-13 00:06:18 +03:00
endpoints.forEach(endpoint => endpoint.withFile
? router.post(`/${endpoint.name}`, upload.single('file'), handler.bind(null, endpoint))
: router.post(`/${endpoint.name}`, handler.bind(null, endpoint))
2016-12-29 00:49:51 +02:00
);
2018-04-13 00:06:18 +03:00
router.post('/signup', require('./private/signup').default);
router.post('/signin', require('./private/signin').default);
2016-12-29 00:49:51 +02:00
2018-04-13 00:06:18 +03:00
router.use(require('./service/github').routes());
router.use(require('./service/twitter').routes());
router.use(require('./bot/interfaces/line').routes());
2017-01-21 07:39:39 +02:00
2018-04-13 00:06:18 +03:00
// Register router
app.use(router.routes());
2017-10-06 21:36:46 +03:00
2016-12-29 00:49:51 +02:00
module.exports = app;