2018-04-12 16:06:18 -05:00
|
|
|
import * as Koa from 'koa';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-01 07:33:43 -06:00
|
|
|
import { Endpoint } from './endpoints';
|
2016-12-28 16:49:51 -06:00
|
|
|
import authenticate from './authenticate';
|
2018-04-11 03:40:01 -05:00
|
|
|
import call from './call';
|
|
|
|
import { IUser } from '../../models/user';
|
|
|
|
import { IApp } from '../../models/app';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-12 16:06:18 -05:00
|
|
|
export default async (endpoint: Endpoint, ctx: Koa.Context) => {
|
2018-04-11 03:40:01 -05:00
|
|
|
const reply = (x?: any, y?: any) => {
|
|
|
|
if (x === undefined) {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.status = 204;
|
2018-04-11 03:40:01 -05:00
|
|
|
} else if (typeof x === 'number') {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.status = x;
|
|
|
|
ctx.body = {
|
2018-04-11 03:40:01 -05:00
|
|
|
error: x === 500 ? 'INTERNAL_ERROR' : y
|
2018-04-12 16:06:18 -05:00
|
|
|
};
|
2018-04-11 03:40:01 -05:00
|
|
|
} else {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.body = x;
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let user: IUser;
|
|
|
|
let app: IApp;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-02-27 01:14:41 -06:00
|
|
|
// Authentication
|
2016-12-28 16:49:51 -06:00
|
|
|
try {
|
2018-04-12 19:44:00 -05:00
|
|
|
[user, app] = await authenticate(ctx.request.body['i']);
|
2016-12-28 16:49:51 -06:00
|
|
|
} catch (e) {
|
2018-04-12 19:44:00 -05:00
|
|
|
reply(403, 'AUTHENTICATION_FAILED');
|
|
|
|
return;
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-04-12 19:44:00 -05:00
|
|
|
let res;
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// API invoking
|
2018-04-12 19:44:00 -05:00
|
|
|
try {
|
|
|
|
res = await call(endpoint, user, app, ctx.request.body, ctx.req);
|
|
|
|
} catch (e) {
|
|
|
|
reply(400, e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reply(res);
|
2016-12-28 16:49:51 -06:00
|
|
|
};
|