rudeshark.net/src/server/api/api-handler.ts
2018-04-13 06:06:18 +09:00

36 lines
816 B
TypeScript

import * as Koa from 'koa';
import { Endpoint } from './endpoints';
import authenticate from './authenticate';
import call from './call';
import { IUser } from '../../models/user';
import { IApp } from '../../models/app';
export default async (endpoint: Endpoint, ctx: Koa.Context) => {
const reply = (x?: any, y?: any) => {
if (x === undefined) {
ctx.status = 204;
} else if (typeof x === 'number') {
ctx.status = x;
ctx.body = {
error: x === 500 ? 'INTERNAL_ERROR' : y
};
} else {
ctx.body = x;
}
};
let user: IUser;
let app: IApp;
// Authentication
try {
[user, app] = await authenticate(ctx.body['i']);
} catch (e) {
return reply(403, 'AUTHENTICATION_FAILED');
}
// API invoking
call(endpoint, user, app, ctx.body, ctx.req).then(reply).catch(e => reply(400, e));
};