510de87607
* wip * wip * Update abuse-user-reports.ts * Update files.ts * Update list-remote.ts * Update list.ts * Update show-users.ts * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * Update search.ts * Update reactions.ts * Update search.ts * wip * wip * wip * wip * Update update.ts * Update relation.ts * Update available.ts * wip * wip * wip * Update packages/backend/src/server/api/define.ts Co-authored-by: Johann150 <johann.galle@protonmail.com> * Update define.ts * Update define.ts * typo * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * wip * Update signup.ts * Update call.ts * minimum for limit * type * remove needless annotation * wip * Update signup.ts * wip * wip * fix * Update create.ts Co-authored-by: Johann150 <johann.galle@protonmail.com>
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import * as Koa from 'koa';
|
|
|
|
import { IEndpoint } from './endpoints';
|
|
import authenticate, { AuthenticationError } from './authenticate';
|
|
import call from './call';
|
|
import { ApiError } from './error';
|
|
|
|
export default (endpoint: IEndpoint, ctx: Koa.Context) => new Promise<void>((res) => {
|
|
const body = ctx.request.body;
|
|
|
|
const reply = (x?: any, y?: ApiError) => {
|
|
if (x == null) {
|
|
ctx.status = 204;
|
|
} else if (typeof x === 'number' && y) {
|
|
ctx.status = x;
|
|
ctx.body = {
|
|
error: {
|
|
message: y!.message,
|
|
code: y!.code,
|
|
id: y!.id,
|
|
kind: y!.kind,
|
|
...(y!.info ? { info: y!.info } : {}),
|
|
},
|
|
};
|
|
} else {
|
|
// 文字列を返す場合は、JSON.stringify通さないとJSONと認識されない
|
|
ctx.body = typeof x === 'string' ? JSON.stringify(x) : x;
|
|
}
|
|
res();
|
|
};
|
|
|
|
// Authentication
|
|
authenticate(body['i']).then(([user, app]) => {
|
|
// API invoking
|
|
call(endpoint.name, user, app, body, ctx).then((res: any) => {
|
|
reply(res);
|
|
}).catch((e: ApiError) => {
|
|
reply(e.httpStatusCode ? e.httpStatusCode : e.kind === 'client' ? 400 : 500, e);
|
|
});
|
|
}).catch(e => {
|
|
if (e instanceof AuthenticationError) {
|
|
reply(403, new ApiError({
|
|
message: 'Authentication failed. Please ensure your token is correct.',
|
|
code: 'AUTHENTICATION_FAILED',
|
|
id: 'b0a7f5f8-dc2f-4171-b91f-de88ad238e14',
|
|
}));
|
|
} else {
|
|
reply(500, new ApiError());
|
|
}
|
|
});
|
|
});
|