2019-03-08 13:07:29 +02:00
|
|
|
import { performance } from 'perf_hooks';
|
2022-01-21 10:15:14 +02:00
|
|
|
import { limiter } from './limiter';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { User } from '@/models/entities/user';
|
|
|
|
import endpoints from './endpoints';
|
|
|
|
import { ApiError } from './error';
|
|
|
|
import { apiLogger } from './logger';
|
|
|
|
import { AccessToken } from '@/models/entities/access-token';
|
2019-02-22 04:46:58 +02:00
|
|
|
|
|
|
|
const accessDenied = {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '56f35758-7dd5-468b-8439-5d6fb8ec9b8e',
|
2019-02-22 04:46:58 +02:00
|
|
|
};
|
2018-04-11 11:40:01 +03:00
|
|
|
|
2020-03-28 11:07:41 +02:00
|
|
|
export default async (endpoint: string, user: User | null | undefined, token: AccessToken | null | undefined, data: any, file?: any) => {
|
|
|
|
const isSecure = user != null && token == null;
|
2018-04-11 11:40:01 +03:00
|
|
|
|
2018-07-15 21:43:36 +03:00
|
|
|
const ep = endpoints.find(e => e.name === endpoint);
|
2018-04-11 11:40:01 +03:00
|
|
|
|
2018-10-07 05:06:17 +03:00
|
|
|
if (ep == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError({
|
|
|
|
message: 'No such endpoint.',
|
|
|
|
code: 'NO_SUCH_ENDPOINT',
|
|
|
|
id: 'f8080b67-5f9c-4eb7-8c18-7f1eeae8f709',
|
2021-12-09 16:58:30 +02:00
|
|
|
httpStatusCode: 404,
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2018-10-07 05:06:17 +03:00
|
|
|
}
|
|
|
|
|
2018-07-15 21:25:35 +03:00
|
|
|
if (ep.meta.secure && !isSecure) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(accessDenied);
|
2018-04-11 11:40:01 +03:00
|
|
|
}
|
|
|
|
|
2018-07-15 21:25:35 +03:00
|
|
|
if (ep.meta.requireCredential && user == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError({
|
|
|
|
message: 'Credential required.',
|
|
|
|
code: 'CREDENTIAL_REQUIRED',
|
|
|
|
id: '1384574d-a912-4b81-8601-c7b1c4085df1',
|
2021-12-09 16:58:30 +02:00
|
|
|
httpStatusCode: 401,
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2018-04-11 11:40:01 +03:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (ep.meta.requireCredential && user!.isSuspended) {
|
2021-09-18 11:58:37 +03:00
|
|
|
throw new ApiError({
|
|
|
|
message: 'Your account has been suspended.',
|
|
|
|
code: 'YOUR_ACCOUNT_SUSPENDED',
|
|
|
|
id: 'a8c724b3-6e9c-4b46-b1a8-bc3ed6258370',
|
2021-12-09 16:58:30 +02:00
|
|
|
httpStatusCode: 403,
|
2021-09-18 11:58:37 +03:00
|
|
|
});
|
2018-07-13 17:44:45 +03:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (ep.meta.requireAdmin && !user!.isAdmin) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(accessDenied, { reason: 'You are not the admin.' });
|
2018-08-13 19:05:58 +03:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (ep.meta.requireModerator && !user!.isAdmin && !user!.isModerator) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(accessDenied, { reason: 'You are not a moderator.' });
|
2018-11-14 21:15:42 +02:00
|
|
|
}
|
|
|
|
|
2020-03-28 11:07:41 +02:00
|
|
|
if (token && ep.meta.kind && !token.permission.some(p => p === ep.meta.kind)) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError({
|
|
|
|
message: 'Your app does not have the necessary permissions to use this endpoint.',
|
|
|
|
code: 'PERMISSION_DENIED',
|
|
|
|
id: '1370e5b7-d4eb-4566-bb1d-7748ee6a1838',
|
|
|
|
});
|
2018-04-11 11:40:01 +03:00
|
|
|
}
|
|
|
|
|
2019-04-15 14:52:08 +03:00
|
|
|
if (ep.meta.requireCredential && ep.meta.limit && !user!.isAdmin && !user!.isModerator) {
|
2019-02-22 06:38:12 +02:00
|
|
|
// Rate limit
|
2019-04-12 19:43:22 +03:00
|
|
|
await limiter(ep, user!).catch(e => {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError({
|
|
|
|
message: 'Rate limit exceeded. Please try again later.',
|
|
|
|
code: 'RATE_LIMIT_EXCEEDED',
|
|
|
|
id: 'd5826d14-3982-4d2e-8011-b9e9f02499ef',
|
2021-12-09 16:58:30 +02:00
|
|
|
httpStatusCode: 429,
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2019-02-22 06:38:12 +02:00
|
|
|
});
|
2018-04-11 11:40:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// API invoking
|
2019-03-08 13:07:29 +02:00
|
|
|
const before = performance.now();
|
2020-03-28 11:07:41 +02:00
|
|
|
return await ep.exec(data, user, token, file).catch((e: Error) => {
|
2019-02-22 04:46:58 +02:00
|
|
|
if (e instanceof ApiError) {
|
2019-01-23 12:33:29 +02:00
|
|
|
throw e;
|
2019-02-22 04:46:58 +02:00
|
|
|
} else {
|
2020-04-04 02:27:16 +03:00
|
|
|
apiLogger.error(`Internal error occurred in ${ep.name}: ${e?.message}`, {
|
2019-03-03 01:27:30 +02:00
|
|
|
ep: ep.name,
|
|
|
|
ps: data,
|
2019-04-11 18:33:26 +03:00
|
|
|
e: {
|
2020-01-19 18:52:35 +02:00
|
|
|
message: e?.message,
|
|
|
|
code: e?.name,
|
2021-12-09 16:58:30 +02:00
|
|
|
stack: e?.stack,
|
|
|
|
},
|
2019-03-03 01:27:30 +02:00
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(null, {
|
|
|
|
e: {
|
2020-01-19 18:52:35 +02:00
|
|
|
message: e?.message,
|
|
|
|
code: e?.name,
|
2021-12-09 16:58:30 +02:00
|
|
|
stack: e?.stack,
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2018-10-26 08:38:34 +03:00
|
|
|
}
|
2019-03-08 13:07:29 +02:00
|
|
|
}).finally(() => {
|
|
|
|
const after = performance.now();
|
|
|
|
const time = after - before;
|
|
|
|
if (time > 1000) {
|
|
|
|
apiLogger.warn(`SLOW API CALL DETECTED: ${ep.name} (${time}ms)`);
|
|
|
|
}
|
2019-02-22 06:38:12 +02:00
|
|
|
});
|
2019-01-23 12:33:29 +02:00
|
|
|
};
|