2018-07-19 04:45:55 +02:00
|
|
|
import { performance } from 'perf_hooks';
|
2018-04-11 10:40:01 +02:00
|
|
|
import limitter from './limitter';
|
|
|
|
import { IUser } from '../../models/user';
|
|
|
|
import { IApp } from '../../models/app';
|
2018-07-15 20:43:36 +02:00
|
|
|
import endpoints from './endpoints';
|
2018-04-11 10:40:01 +02:00
|
|
|
|
2018-07-15 20:43:36 +02:00
|
|
|
export default (endpoint: string, user: IUser, app: IApp, data: any, file?: any) => new Promise<any>(async (ok, rej) => {
|
2018-04-11 10:40:01 +02:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2018-07-15 20:43:36 +02:00
|
|
|
const ep = endpoints.find(e => e.name === endpoint);
|
2018-04-11 10:40:01 +02:00
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (ep.meta.secure && !isSecure) {
|
2018-04-11 10:40:01 +02:00
|
|
|
return rej('ACCESS_DENIED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (ep.meta.requireCredential && user == null) {
|
2018-04-11 10:40:01 +02:00
|
|
|
return rej('SIGNIN_REQUIRED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (ep.meta.requireCredential && user.isSuspended) {
|
2018-07-13 16:44:45 +02:00
|
|
|
return rej('YOUR_ACCOUNT_HAS_BEEN_SUSPENDED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (app && ep.meta.kind) {
|
|
|
|
if (!app.permission.some(p => p === ep.meta.kind)) {
|
2018-04-11 10:40:01 +02:00
|
|
|
return rej('PERMISSION_DENIED');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (ep.meta.requireCredential && ep.meta.limit) {
|
2018-04-11 10:40:01 +02:00
|
|
|
try {
|
2018-07-15 20:43:36 +02:00
|
|
|
await limitter(ep, user); // Rate limit
|
2018-04-11 10:40:01 +02:00
|
|
|
} catch (e) {
|
|
|
|
// drop request if limit exceeded
|
|
|
|
return rej('RATE_LIMIT_EXCEEDED');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
let exec = ep.exec;
|
2018-04-11 10:40:01 +02:00
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
if (ep.meta.withFile && file) {
|
2018-04-13 04:44:39 +02:00
|
|
|
exec = exec.bind(null, file);
|
2018-04-11 10:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let res;
|
|
|
|
|
|
|
|
// API invoking
|
|
|
|
try {
|
2018-07-19 04:45:55 +02:00
|
|
|
const a = performance.now();
|
2018-04-11 10:40:01 +02:00
|
|
|
res = await exec(data, user, app);
|
2018-07-19 04:45:55 +02:00
|
|
|
const b = performance.now();
|
|
|
|
|
|
|
|
if (b - a > 500) {
|
|
|
|
console.warn(`SLOW API CALL DETECTED: ${ep.name}`);
|
|
|
|
}
|
2018-04-11 10:40:01 +02:00
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(res);
|
|
|
|
});
|