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

48 lines
961 B
TypeScript
Raw Normal View History

2018-04-13 00:06:18 +03:00
import * as Koa from 'koa';
2016-12-29 00:49:51 +02:00
2018-07-15 21:25:35 +03:00
import Endpoint from './endpoint';
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
2018-04-13 00:06:18 +03:00
export default async (endpoint: Endpoint, ctx: Koa.Context) => {
2018-04-13 05:44:39 +03:00
const body = ctx.is('multipart/form-data') ? (ctx.req as any).body : ctx.request.body;
const reply = (x?: any, y?: any) => {
if (x === undefined) {
2018-04-13 00:06:18 +03:00
ctx.status = 204;
} else if (typeof x === 'number') {
2018-04-13 00:06:18 +03:00
ctx.status = x;
ctx.body = {
error: x === 500 ? 'INTERNAL_ERROR' : y
2018-04-13 00:06:18 +03:00
};
} else {
2018-04-13 00:06:18 +03:00
ctx.body = 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 {
2018-04-13 05:44:39 +03:00
[user, app] = await authenticate(body['i']);
2016-12-29 00:49:51 +02:00
} catch (e) {
2018-04-13 03:44:00 +03:00
reply(403, 'AUTHENTICATION_FAILED');
return;
2016-12-29 00:49:51 +02:00
}
2018-04-13 03:44:00 +03:00
let res;
2016-12-29 00:49:51 +02:00
// API invoking
2018-04-13 03:44:00 +03:00
try {
2018-04-13 05:44:39 +03:00
res = await call(endpoint, user, app, body, (ctx.req as any).file);
2018-04-13 03:44:00 +03:00
} catch (e) {
reply(400, e);
return;
}
reply(res);
2016-12-29 00:49:51 +02:00
};