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

47 lines
1.1 KiB
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:43:36 +03:00
import { IEndpoint } from './endpoints';
2016-12-29 00:49:51 +02:00
import authenticate from './authenticate';
import call from './call';
import { ApiError } from './error';
2016-12-29 00:49:51 +02:00
2019-02-22 07:46:49 +02:00
export default (endpoint: IEndpoint, ctx: Koa.BaseContext) => new Promise((res) => {
2019-09-26 23:50:34 +03:00
const body = ctx.request.body;
2018-04-13 05:44:39 +03:00
const reply = (x?: any, y?: ApiError) => {
if (x == null) {
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;
2019-02-23 08:45:03 +02:00
ctx.body = {
error: {
message: y!.message,
code: y!.code,
id: y!.id,
kind: y!.kind,
...(y!.info ? { info: y!.info } : {})
2019-02-23 08:45:03 +02:00
}
};
} else {
2018-04-13 00:06:18 +03:00
ctx.body = x;
}
2019-02-22 07:46:49 +02:00
res();
};
// Authentication
2019-02-22 07:46:49 +02:00
authenticate(body['i']).then(([user, app]) => {
// API invoking
2019-09-26 23:50:34 +03:00
call(endpoint.name, user, app, body, (ctx as any).file).then((res: any) => {
2019-02-22 07:46:49 +02:00
reply(res);
}).catch((e: ApiError) => {
2019-02-23 08:42:52 +02:00
reply(e.httpStatusCode ? e.httpStatusCode : e.kind == 'client' ? 400 : 500, e);
2019-02-22 07:46:49 +02:00
});
}).catch(() => {
reply(403, new ApiError({
message: 'Authentication failed. Please ensure your token is correct.',
code: 'AUTHENTICATION_FAILED',
id: 'b0a7f5f8-dc2f-4171-b91f-de88ad238e14'
}));
2019-02-22 07:46:49 +02:00
});
});