2023-05-02 19:51:41 +03:00
|
|
|
import { localUsernameSchema, passwordSchema } from "./schemas/user";
|
2023-05-04 13:56:24 +03:00
|
|
|
import type { JSONSchema7 } from 'schema-type';
|
2023-05-02 15:05:17 +03:00
|
|
|
|
|
|
|
export type RolePolicies = {
|
|
|
|
gtlAvailable: boolean;
|
|
|
|
ltlAvailable: boolean;
|
|
|
|
canPublicNote: boolean;
|
|
|
|
canInvite: boolean;
|
|
|
|
canManageCustomEmojis: boolean;
|
|
|
|
canSearchNotes: boolean;
|
|
|
|
canHideAds: boolean;
|
|
|
|
driveCapacityMb: number;
|
|
|
|
pinLimit: number;
|
|
|
|
antennaLimit: number;
|
|
|
|
wordMuteLimit: number;
|
|
|
|
webhookLimit: number;
|
|
|
|
clipLimit: number;
|
|
|
|
noteEachClipsLimit: number;
|
|
|
|
userListLimit: number;
|
|
|
|
userEachUserListsLimit: number;
|
|
|
|
rateLimitFactor: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
export interface IEndpointMeta {
|
|
|
|
readonly stability?: 'deprecated' | 'experimental' | 'stable';
|
|
|
|
|
|
|
|
readonly tags?: ReadonlyArray<string>;
|
|
|
|
|
|
|
|
readonly errors?: {
|
|
|
|
readonly [key: string]: {
|
|
|
|
readonly message: string;
|
|
|
|
readonly code: string;
|
|
|
|
readonly id: string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-05-02 20:31:17 +03:00
|
|
|
readonly defines: ReadonlyArray<{ req: JSONSchema7 | undefined; res: JSONSchema7 | undefined; }>;
|
2023-05-02 15:05:17 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* このエンドポイントにリクエストするのにユーザー情報が必須か否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
|
|
|
readonly requireCredential?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* isModeratorなロールを必要とするか
|
|
|
|
*/
|
|
|
|
readonly requireModerator?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* isAdministratorなロールを必要とするか
|
|
|
|
*/
|
|
|
|
readonly requireAdmin?: boolean;
|
|
|
|
|
|
|
|
readonly requireRolePolicy?: keyof RolePolicies;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 引っ越し済みのユーザーによるリクエストを禁止するか
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
|
|
|
readonly prohibitMoved?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* エンドポイントのリミテーションに関するやつ
|
|
|
|
* 省略した場合はリミテーションは無いものとして解釈されます。
|
|
|
|
*/
|
|
|
|
readonly limit?: {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 複数のエンドポイントでリミットを共有したい場合に指定するキー
|
|
|
|
*/
|
|
|
|
readonly key?: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* リミットを適用する期間(ms)
|
|
|
|
* このプロパティを設定する場合、max プロパティも設定する必要があります。
|
|
|
|
*/
|
|
|
|
readonly duration?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* durationで指定した期間内にいくつまでリクエストできるのか
|
|
|
|
* このプロパティを設定する場合、duration プロパティも設定する必要があります。
|
|
|
|
*/
|
|
|
|
readonly max?: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 最低でもどれくらいの間隔を開けてリクエストしなければならないか(ms)
|
|
|
|
*/
|
|
|
|
readonly minInterval?: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ファイルの添付を必要とするか否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
|
|
|
readonly requireFile?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* サードパーティアプリからはリクエストすることができないか否か
|
|
|
|
* 省略した場合は false として解釈されます。
|
|
|
|
*/
|
|
|
|
readonly secure?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* エンドポイントの種類
|
|
|
|
* パーミッションの実現に利用されます。
|
|
|
|
*/
|
|
|
|
readonly kind?: string;
|
|
|
|
|
|
|
|
readonly description?: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GETでのリクエストを許容するか否か
|
|
|
|
*/
|
|
|
|
readonly allowGet?: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 正常応答をキャッシュ (Cache-Control: public) する秒数
|
|
|
|
*/
|
|
|
|
readonly cacheSec?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const endpoints = {
|
|
|
|
"admin/accounts/create": {
|
|
|
|
tags: ['admin'],
|
|
|
|
defines: [{
|
|
|
|
req: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
username: localUsernameSchema,
|
|
|
|
password: passwordSchema,
|
|
|
|
},
|
|
|
|
required: ['username', 'password'],
|
|
|
|
},
|
|
|
|
res: {
|
2023-05-02 20:31:17 +03:00
|
|
|
$ref: '/schemas/User',
|
2023-05-02 15:05:17 +03:00
|
|
|
properties: {
|
|
|
|
token: {
|
|
|
|
type: 'string',
|
|
|
|
},
|
|
|
|
},
|
2023-05-02 20:31:17 +03:00
|
|
|
required: ['token'],
|
2023-05-02 15:05:17 +03:00
|
|
|
},
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
"admin/accounts/delete": {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
requireAdmin: true,
|
|
|
|
defines: [{
|
|
|
|
req: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
},
|
|
|
|
res: undefined,
|
|
|
|
}],
|
|
|
|
},
|
2023-05-02 20:31:17 +03:00
|
|
|
} as const satisfies { [x: string]: IEndpointMeta; };
|