2021-08-19 11:33:41 +02:00
|
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { dirname } from 'path';
|
2018-11-01 19:32:24 +01:00
|
|
|
import { Context } from 'cafy';
|
2018-07-15 20:43:36 +02:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as glob from 'glob';
|
2022-01-18 14:27:10 +01:00
|
|
|
import { Schema } from '@/misc/schema';
|
2021-08-19 11:33:41 +02:00
|
|
|
|
|
|
|
//const _filename = fileURLToPath(import.meta.url);
|
|
|
|
const _filename = __filename;
|
|
|
|
const _dirname = dirname(_filename);
|
2018-07-15 20:25:35 +02:00
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
export type Param = {
|
|
|
|
validator: Context<any>;
|
|
|
|
transform?: any;
|
|
|
|
default?: any;
|
2019-02-24 20:18:09 +01:00
|
|
|
deprecated?: boolean;
|
2019-02-23 03:20:58 +01:00
|
|
|
ref?: string;
|
|
|
|
};
|
|
|
|
|
2018-07-15 20:43:36 +02:00
|
|
|
export interface IEndpointMeta {
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly stability?: 'deprecated' | 'experimental' | 'stable';
|
2018-10-21 22:16:27 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly tags?: ReadonlyArray<string>;
|
2019-02-23 03:20:58 +01:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly params?: {
|
|
|
|
readonly [key: string]: Param;
|
2019-02-23 03:20:58 +01:00
|
|
|
};
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly errors?: {
|
|
|
|
readonly [key: string]: {
|
|
|
|
readonly message: string;
|
|
|
|
readonly code: string;
|
|
|
|
readonly id: string;
|
2018-11-01 19:32:24 +01:00
|
|
|
};
|
|
|
|
};
|
2018-07-15 20:53:03 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly res?: Schema;
|
2018-07-15 20:53:03 +02:00
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
/**
|
|
|
|
* このエンドポイントにリクエストするのにユーザー情報が必須か否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly requireCredential?: boolean;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
2018-08-13 18:05:58 +02:00
|
|
|
/**
|
|
|
|
* 管理者のみ使えるエンドポイントか否か
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly requireAdmin?: boolean;
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2018-11-14 20:15:42 +01:00
|
|
|
/**
|
|
|
|
* 管理者またはモデレーターのみ使えるエンドポイントか否か
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly requireModerator?: boolean;
|
2018-11-14 20:15:42 +01:00
|
|
|
|
2018-07-15 20:25:35 +02:00
|
|
|
/**
|
|
|
|
* エンドポイントのリミテーションに関するやつ
|
|
|
|
* 省略した場合はリミテーションは無いものとして解釈されます。
|
|
|
|
* また、withCredential が false の場合はリミテーションを行うことはできません。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly limit?: {
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 複数のエンドポイントでリミットを共有したい場合に指定するキー
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly key?: string;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* リミットを適用する期間(ms)
|
|
|
|
* このプロパティを設定する場合、max プロパティも設定する必要があります。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly duration?: number;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* durationで指定した期間内にいくつまでリクエストできるのか
|
|
|
|
* このプロパティを設定する場合、duration プロパティも設定する必要があります。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly max?: number;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 最低でもどれくらいの間隔を開けてリクエストしなければならないか(ms)
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly minInterval?: number;
|
2018-07-15 20:25:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ファイルの添付を必要とするか否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly requireFile?: boolean;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* サードパーティアプリからはリクエストすることができないか否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly secure?: boolean;
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* エンドポイントの種類
|
|
|
|
* パーミッションの実現に利用されます。
|
|
|
|
*/
|
2022-01-18 14:27:10 +01:00
|
|
|
readonly kind?: string;
|
2018-07-15 20:25:35 +02:00
|
|
|
}
|
2018-07-15 20:43:36 +02:00
|
|
|
|
|
|
|
export interface IEndpoint {
|
|
|
|
name: string;
|
|
|
|
exec: any;
|
|
|
|
meta: IEndpointMeta;
|
|
|
|
}
|
|
|
|
|
|
|
|
const files = glob.sync('**/*.js', {
|
2021-12-09 15:58:30 +01:00
|
|
|
cwd: path.resolve(_dirname + '/endpoints/'),
|
2018-07-15 20:43:36 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const endpoints: IEndpoint[] = files.map(f => {
|
2018-09-01 16:12:51 +02:00
|
|
|
const ep = require(`./endpoints/${f}`);
|
2018-07-15 20:43:36 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
name: f.replace('.js', ''),
|
|
|
|
exec: ep.default,
|
2021-12-09 15:58:30 +01:00
|
|
|
meta: ep.meta || {},
|
2018-07-15 20:43:36 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
export default endpoints;
|