Sharkey/src/server/api/api-handler.ts

35 lines
839 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
import * as express from 'express';
2017-03-01 15:33:43 +02:00
import { Endpoint } from './endpoints';
2016-12-29 00:49:51 +02:00
import authenticate from './authenticate';
import call from './call';
import { IUser } from '../../models/user';
import { IApp } from '../../models/app';
2016-12-29 00:49:51 +02:00
2017-03-01 15:33:43 +02:00
export default async (endpoint: Endpoint, req: express.Request, res: express.Response) => {
const reply = (x?: any, y?: any) => {
if (x === undefined) {
res.sendStatus(204);
} else if (typeof x === 'number') {
res.status(x).send({
error: x === 500 ? 'INTERNAL_ERROR' : y
});
} else {
res.send(x);
}
};
let user: IUser;
let app: IApp;
2016-12-29 00:49:51 +02:00
// Authentication
2016-12-29 00:49:51 +02:00
try {
[user, app] = await authenticate(req.body['i']);
2016-12-29 00:49:51 +02:00
} catch (e) {
return reply(403, 'AUTHENTICATION_FAILED');
}
// API invoking
call(endpoint, user, app, req.body, req).then(reply).catch(e => reply(400, e));
2016-12-29 00:49:51 +02:00
};