2018-04-12 16:06:18 -05:00
|
|
|
import * as Koa from 'koa';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-07-15 13:43:36 -05:00
|
|
|
import { IEndpoint } 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';
|
2019-02-21 20:46:58 -06:00
|
|
|
import { ApiError } from './error';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-01-22 06:42:05 -06:00
|
|
|
export default async (endpoint: IEndpoint, ctx: Koa.BaseContext) => {
|
2018-04-12 21:44:39 -05:00
|
|
|
const body = ctx.is('multipart/form-data') ? (ctx.req as any).body : ctx.request.body;
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
const reply = (x?: any, y?: ApiError) => {
|
|
|
|
if (x == null) {
|
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;
|
2019-02-21 23:22:40 -06:00
|
|
|
ctx.body = { error: y };
|
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 21:44:39 -05:00
|
|
|
[user, app] = await authenticate(body['i']);
|
2016-12-28 16:49:51 -06:00
|
|
|
} catch (e) {
|
2019-02-21 20:46:58 -06:00
|
|
|
reply(403, new ApiError({
|
|
|
|
message: 'Authentication failed. Please ensure your token is correct.',
|
|
|
|
code: 'AUTHENTICATION_FAILED',
|
|
|
|
id: 'b0a7f5f8-dc2f-4171-b91f-de88ad238e14'
|
|
|
|
}));
|
2018-04-12 19:44:00 -05:00
|
|
|
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 {
|
2018-07-15 13:43:36 -05:00
|
|
|
res = await call(endpoint.name, user, app, body, (ctx.req as any).file);
|
2018-04-12 19:44:00 -05:00
|
|
|
} catch (e) {
|
2019-02-21 20:46:58 -06:00
|
|
|
if (e.kind == 'client') {
|
|
|
|
reply(400, e);
|
|
|
|
} else {
|
|
|
|
reply(500, e);
|
|
|
|
}
|
2018-04-12 19:44:00 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reply(res);
|
2016-12-28 16:49:51 -06:00
|
|
|
};
|