2018-07-15 13:25:35 -05:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as glob from 'glob';
|
|
|
|
|
|
|
|
import Endpoint from './endpoint';
|
2018-04-11 03:40:01 -05:00
|
|
|
import limitter from './limitter';
|
|
|
|
import { IUser } from '../../models/user';
|
|
|
|
import { IApp } from '../../models/app';
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
const files = glob.sync('**/*.js', {
|
|
|
|
cwd: path.resolve(__dirname + '/endpoints/')
|
|
|
|
});
|
|
|
|
|
|
|
|
const endpoints: Array<{
|
|
|
|
exec: any,
|
|
|
|
meta: Endpoint
|
|
|
|
}> = files.map(f => {
|
|
|
|
const ep = require('./endpoints/' + f);
|
|
|
|
|
|
|
|
ep.meta = ep.meta || {};
|
|
|
|
ep.meta.name = f.replace('.js', '');
|
|
|
|
|
|
|
|
return {
|
|
|
|
exec: ep.default,
|
|
|
|
meta: ep.meta
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-04-12 21:44:39 -05:00
|
|
|
export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any, file?: any) => new Promise<any>(async (ok, rej) => {
|
2018-04-11 03:40:01 -05:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2018-07-13 09:17:02 -05:00
|
|
|
const epName = typeof endpoint === 'string' ? endpoint : endpoint.name;
|
2018-07-15 13:25:35 -05:00
|
|
|
const ep = endpoints.find(e => e.meta.name === epName);
|
2018-04-11 03:40:01 -05:00
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.secure && !isSecure) {
|
2018-04-11 03:40:01 -05:00
|
|
|
return rej('ACCESS_DENIED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.requireCredential && user == null) {
|
2018-04-11 03:40:01 -05:00
|
|
|
return rej('SIGNIN_REQUIRED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.requireCredential && user.isSuspended) {
|
2018-07-13 09:44:45 -05:00
|
|
|
return rej('YOUR_ACCOUNT_HAS_BEEN_SUSPENDED');
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (app && ep.meta.kind) {
|
|
|
|
if (!app.permission.some(p => p === ep.meta.kind)) {
|
2018-04-11 03:40:01 -05:00
|
|
|
return rej('PERMISSION_DENIED');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-07-15 13:25:35 -05:00
|
|
|
await limitter(ep.meta, user); // Rate limit
|
2018-04-11 03:40:01 -05:00
|
|
|
} catch (e) {
|
|
|
|
// drop request if limit exceeded
|
|
|
|
return rej('RATE_LIMIT_EXCEEDED');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
let exec = ep.exec;
|
2018-04-11 03:40:01 -05:00
|
|
|
|
2018-07-15 13:25:35 -05:00
|
|
|
if (ep.meta.withFile && file) {
|
2018-04-12 21:44:39 -05:00
|
|
|
exec = exec.bind(null, file);
|
2018-04-11 03:40:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let res;
|
|
|
|
|
|
|
|
// API invoking
|
|
|
|
try {
|
|
|
|
res = await exec(data, user, app);
|
|
|
|
} catch (e) {
|
|
|
|
rej(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(res);
|
|
|
|
});
|