Sharkey/src/server/api/endpoints.ts

92 lines
2.2 KiB
TypeScript
Raw Normal View History

2018-07-15 21:43:36 +03:00
import * as path from 'path';
import * as glob from 'glob';
2018-07-15 21:25:35 +03:00
2018-07-15 21:43:36 +03:00
export interface IEndpointMeta {
2018-07-15 21:53:03 +03:00
desc?: any;
params?: any;
res?: any;
2018-07-15 21:25:35 +03:00
/**
*
* false
*/
requireCredential?: boolean;
2018-08-13 19:05:58 +03:00
/**
* 使
*/
requireAdmin?: boolean;
2018-07-15 21:25:35 +03:00
/**
*
*
* withCredential false
*/
limit?: {
/**
*
*/
key?: string;
/**
* (ms)
* max
*/
duration?: number;
/**
* durationで指定した期間内にいくつまでリクエストできるのか
* duration
*/
max?: number;
/**
* (ms)
*/
minInterval?: number;
};
/**
*
* false
*/
2018-07-25 01:18:50 +03:00
requireFile?: boolean;
2018-07-15 21:25:35 +03:00
/**
*
* false
*/
secure?: boolean;
/**
*
*
*/
kind?: string;
}
2018-07-15 21:43:36 +03:00
export interface IEndpoint {
name: string;
exec: any;
meta: IEndpointMeta;
}
const files = glob.sync('**/*.js', {
cwd: path.resolve(__dirname + '/endpoints/')
});
const endpoints: IEndpoint[] = files.map(f => {
const ep = require('./endpoints/' + f);
return {
name: f.replace('.js', ''),
exec: ep.default,
meta: ep.meta || {}
};
});
export default endpoints;