summaryrefslogtreecommitdiff
path: root/src/server/api/server.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-29 20:34:39 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-29 20:34:39 +0900
commit7228e6d11178dfa715fc2ae4e834dec129248214 (patch)
tree8a6224fa578501d67387da8129fd06932f7a818a /src/server/api/server.ts
parent整理した (diff)
downloadsharkey-7228e6d11178dfa715fc2ae4e834dec129248214.tar.gz
sharkey-7228e6d11178dfa715fc2ae4e834dec129248214.tar.bz2
sharkey-7228e6d11178dfa715fc2ae4e834dec129248214.zip
:v:
Diffstat (limited to 'src/server/api/server.ts')
-rw-r--r--src/server/api/server.ts55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/server/api/server.ts b/src/server/api/server.ts
deleted file mode 100644
index e89d196096..0000000000
--- a/src/server/api/server.ts
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * API Server
- */
-
-import * as express from 'express';
-import * as bodyParser from 'body-parser';
-import * as cors from 'cors';
-import * as multer from 'multer';
-
-// import authenticate from './authenticate';
-import endpoints from './endpoints';
-
-/**
- * Init app
- */
-const app = express();
-
-app.disable('x-powered-by');
-app.set('etag', false);
-app.use(bodyParser.urlencoded({ extended: true }));
-app.use(bodyParser.json({
- type: ['application/json', 'text/plain'],
- verify: (req, res, buf, encoding) => {
- if (buf && buf.length) {
- (req as any).rawBody = buf.toString(encoding || 'utf8');
- }
- }
-}));
-app.use(cors());
-
-app.get('/', (req, res) => {
- res.send('YEE HAW');
-});
-
-/**
- * Register endpoint handlers
- */
-endpoints.forEach(endpoint =>
- endpoint.withFile ?
- app.post(`/${endpoint.name}`,
- endpoint.withFile ? multer({ storage: multer.diskStorage({}) }).single('file') : null,
- require('./api-handler').default.bind(null, endpoint)) :
- app.post(`/${endpoint.name}`,
- require('./api-handler').default.bind(null, endpoint))
-);
-
-app.post('/signup', require('./private/signup').default);
-app.post('/signin', require('./private/signin').default);
-
-require('./service/github')(app);
-require('./service/twitter')(app);
-
-require('./bot/interfaces/line')(app);
-
-module.exports = app;