2018-12-25 05:02:37 -06:00
|
|
|
import limiter from './limiter';
|
2018-08-21 14:53:02 -05:00
|
|
|
import { IUser } from '../../models/user';
|
2018-04-11 03:40:01 -05:00
|
|
|
import { IApp } from '../../models/app';
|
2018-07-15 13:43:36 -05:00
|
|
|
import endpoints from './endpoints';
|
2018-04-11 03:40:01 -05:00
|
|
|
|
2019-01-23 04:33:29 -06:00
|
|
|
export default async (endpoint: string, user: IUser, app: IApp, data: any, file?: any) => {
|
2018-04-11 03:40:01 -05:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2018-07-15 13:43:36 -05:00
|
|
|
const ep = endpoints.find(e => e.name === endpoint);
|
2018-04-11 03:40:01 -05:00
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
if (ep == null) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'ENDPOINT_NOT_FOUND';
|
2018-10-06 21:06:17 -05:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.secure && !isSecure) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'ACCESS_DENIED';
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.requireCredential && user == null) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'CREDENTIAL_REQUIRED';
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.requireCredential && user.isSuspended) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'YOUR_ACCOUNT_HAS_BEEN_SUSPENDED';
|
2018-07-13 09:44:45 -05:00
|
|
|
}
|
|
|
|
|
2018-08-20 11:03:58 -05:00
|
|
|
if (ep.meta.requireAdmin && !user.isAdmin) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'YOU_ARE_NOT_ADMIN';
|
2018-08-13 11:05:58 -05:00
|
|
|
}
|
|
|
|
|
2018-11-14 13:15:42 -06:00
|
|
|
if (ep.meta.requireModerator && !user.isAdmin && !user.isModerator) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'YOU_ARE_NOT_MODERATOR';
|
2018-11-14 13:15:42 -06:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:06:22 -05:00
|
|
|
if (app && ep.meta.kind && !app.permission.some(p => p === ep.meta.kind)) {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'PERMISSION_DENIED';
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.requireCredential && ep.meta.limit) {
|
2018-04-11 03:40:01 -05:00
|
|
|
try {
|
2018-12-25 05:02:37 -06:00
|
|
|
await limiter(ep, user); // Rate limit
|
2018-04-11 03:40:01 -05:00
|
|
|
} catch (e) {
|
|
|
|
// drop request if limit exceeded
|
2019-01-23 04:33:29 -06:00
|
|
|
throw 'RATE_LIMIT_EXCEEDED';
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let res;
|
|
|
|
|
|
|
|
// API invoking
|
|
|
|
try {
|
2018-11-01 23:47:44 -05:00
|
|
|
res = await ep.exec(data, user, app, file);
|
2018-04-11 03:40:01 -05:00
|
|
|
} catch (e) {
|
2018-11-13 04:34:09 -06:00
|
|
|
if (e && e.name == 'INVALID_PARAM') {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw {
|
2018-10-26 00:38:34 -05:00
|
|
|
code: e.name,
|
|
|
|
param: e.param,
|
|
|
|
reason: e.message
|
2019-01-23 04:33:29 -06:00
|
|
|
};
|
2018-10-26 00:38:34 -05:00
|
|
|
} else {
|
2019-01-23 04:33:29 -06:00
|
|
|
throw e;
|
2018-10-26 00:38:34 -05:00
|
|
|
}
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
|
2019-01-23 04:33:29 -06:00
|
|
|
return res;
|
|
|
|
};
|