2022-01-18 14:27:10 +01:00
|
|
|
|
import {
|
|
|
|
|
packedUserLiteSchema,
|
|
|
|
|
packedUserDetailedNotMeOnlySchema,
|
|
|
|
|
packedMeDetailedOnlySchema,
|
|
|
|
|
packedUserDetailedNotMeSchema,
|
|
|
|
|
packedMeDetailedSchema,
|
|
|
|
|
packedUserDetailedSchema,
|
|
|
|
|
packedUserSchema,
|
|
|
|
|
} from '@/models/schema/user';
|
|
|
|
|
import { packedNoteSchema } from '@/models/schema/note';
|
|
|
|
|
import { packedUserListSchema } from '@/models/schema/user-list';
|
|
|
|
|
import { packedAppSchema } from '@/models/schema/app';
|
|
|
|
|
import { packedMessagingMessageSchema } from '@/models/schema/messaging-message';
|
|
|
|
|
import { packedNotificationSchema } from '@/models/schema/notification';
|
|
|
|
|
import { packedDriveFileSchema } from '@/models/schema/drive-file';
|
|
|
|
|
import { packedDriveFolderSchema } from '@/models/schema/drive-folder';
|
|
|
|
|
import { packedFollowingSchema } from '@/models/schema/following';
|
|
|
|
|
import { packedMutingSchema } from '@/models/schema/muting';
|
|
|
|
|
import { packedBlockingSchema } from '@/models/schema/blocking';
|
|
|
|
|
import { packedNoteReactionSchema } from '@/models/schema/note-reaction';
|
|
|
|
|
import { packedHashtagSchema } from '@/models/schema/hashtag';
|
|
|
|
|
import { packedPageSchema } from '@/models/schema/page';
|
|
|
|
|
import { packedUserGroupSchema } from '@/models/schema/user-group';
|
|
|
|
|
import { packedNoteFavoriteSchema } from '@/models/schema/note-favorite';
|
|
|
|
|
import { packedChannelSchema } from '@/models/schema/channel';
|
|
|
|
|
import { packedAntennaSchema } from '@/models/schema/antenna';
|
|
|
|
|
import { packedClipSchema } from '@/models/schema/clip';
|
|
|
|
|
import { packedFederationInstanceSchema } from '@/models/schema/federation-instance';
|
|
|
|
|
import { packedQueueCountSchema } from '@/models/schema/queue';
|
|
|
|
|
import { packedGalleryPostSchema } from '@/models/schema/gallery-post';
|
|
|
|
|
import { packedEmojiSchema } from '@/models/schema/emoji';
|
2021-09-11 18:12:23 +02:00
|
|
|
|
|
|
|
|
|
export const refs = {
|
2022-01-18 14:27:10 +01:00
|
|
|
|
UserLite: packedUserLiteSchema,
|
|
|
|
|
UserDetailedNotMeOnly: packedUserDetailedNotMeOnlySchema,
|
|
|
|
|
MeDetailedOnly: packedMeDetailedOnlySchema,
|
|
|
|
|
UserDetailedNotMe: packedUserDetailedNotMeSchema,
|
|
|
|
|
MeDetailed: packedMeDetailedSchema,
|
|
|
|
|
UserDetailed: packedUserDetailedSchema,
|
2021-09-11 18:12:23 +02:00
|
|
|
|
User: packedUserSchema,
|
2022-01-18 14:27:10 +01:00
|
|
|
|
|
2021-09-11 18:12:23 +02:00
|
|
|
|
UserList: packedUserListSchema,
|
|
|
|
|
UserGroup: packedUserGroupSchema,
|
|
|
|
|
App: packedAppSchema,
|
|
|
|
|
MessagingMessage: packedMessagingMessageSchema,
|
|
|
|
|
Note: packedNoteSchema,
|
|
|
|
|
NoteReaction: packedNoteReactionSchema,
|
|
|
|
|
NoteFavorite: packedNoteFavoriteSchema,
|
|
|
|
|
Notification: packedNotificationSchema,
|
|
|
|
|
DriveFile: packedDriveFileSchema,
|
|
|
|
|
DriveFolder: packedDriveFolderSchema,
|
|
|
|
|
Following: packedFollowingSchema,
|
|
|
|
|
Muting: packedMutingSchema,
|
|
|
|
|
Blocking: packedBlockingSchema,
|
|
|
|
|
Hashtag: packedHashtagSchema,
|
|
|
|
|
Page: packedPageSchema,
|
|
|
|
|
Channel: packedChannelSchema,
|
|
|
|
|
QueueCount: packedQueueCountSchema,
|
|
|
|
|
Antenna: packedAntennaSchema,
|
|
|
|
|
Clip: packedClipSchema,
|
|
|
|
|
FederationInstance: packedFederationInstanceSchema,
|
|
|
|
|
GalleryPost: packedGalleryPostSchema,
|
2021-09-22 15:35:55 +02:00
|
|
|
|
Emoji: packedEmojiSchema,
|
2021-09-11 18:12:23 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
// Packed = SchemaTypeDef<typeof refs[x]>; とすると展開されてマウスホバー時に型表示が使い物にならなくなる
|
|
|
|
|
// ObjType<r['properties']>を指定すると(なぜか)展開されずにPacked<'Hoge'>と表示される
|
|
|
|
|
type PackedDef<r extends { properties?: Obj; oneOf?: ReadonlyArray<MinimumSchema>; allOf?: ReadonlyArray<MinimumSchema> }> =
|
|
|
|
|
r['allOf'] extends ReadonlyArray<MinimumSchema> ? UnionToIntersection<UnionSchemaType<r['allOf']>> :
|
|
|
|
|
r['oneOf'] extends ReadonlyArray<MinimumSchema> ? UnionSchemaType<r['oneOf']> :
|
|
|
|
|
r['properties'] extends Obj ? ObjType<r['properties']> :
|
|
|
|
|
never;
|
|
|
|
|
export type Packed<x extends keyof typeof refs> = PackedDef<typeof refs[x]>;
|
|
|
|
|
|
|
|
|
|
type TypeStringef = 'boolean' | 'number' | 'string' | 'array' | 'object' | 'any';
|
|
|
|
|
type StringDefToType<T extends TypeStringef> =
|
|
|
|
|
T extends 'boolean' ? boolean :
|
|
|
|
|
T extends 'number' ? number :
|
|
|
|
|
T extends 'string' ? string | Date :
|
|
|
|
|
T extends 'array' ? ReadonlyArray<any> :
|
|
|
|
|
T extends 'object' ? Record<string, any> :
|
|
|
|
|
any;
|
|
|
|
|
|
|
|
|
|
// https://swagger.io/specification/?sbsearch=optional#schema-object
|
|
|
|
|
type OfSchema = {
|
|
|
|
|
readonly anyOf?: ReadonlyArray<MinimumSchema>;
|
|
|
|
|
readonly oneOf?: ReadonlyArray<MinimumSchema>;
|
|
|
|
|
readonly allOf?: ReadonlyArray<MinimumSchema>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface MinimumSchema extends OfSchema {
|
|
|
|
|
readonly type?: TypeStringef;
|
|
|
|
|
readonly nullable?: boolean;
|
|
|
|
|
readonly optional?: boolean;
|
|
|
|
|
readonly items?: MinimumSchema;
|
|
|
|
|
readonly properties?: Obj;
|
|
|
|
|
readonly description?: string;
|
|
|
|
|
readonly example?: any;
|
|
|
|
|
readonly format?: string;
|
|
|
|
|
readonly ref?: keyof typeof refs;
|
|
|
|
|
readonly enum?: ReadonlyArray<string>;
|
|
|
|
|
readonly default?: (this['type'] extends TypeStringef ? StringDefToType<this['type']> : any) | null;
|
|
|
|
|
readonly maxLength?: number;
|
|
|
|
|
readonly minLength?: number;
|
|
|
|
|
}
|
2021-09-22 15:35:55 +02:00
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
export interface Schema extends MinimumSchema {
|
|
|
|
|
readonly nullable: boolean;
|
|
|
|
|
readonly optional: boolean;
|
2021-09-11 18:12:23 +02:00
|
|
|
|
}
|
2019-02-24 01:45:27 +01:00
|
|
|
|
|
2019-04-23 15:35:26 +02:00
|
|
|
|
type NonUndefinedPropertyNames<T extends Obj> = {
|
|
|
|
|
[K in keyof T]: T[K]['optional'] extends true ? never : K
|
|
|
|
|
}[keyof T];
|
|
|
|
|
|
|
|
|
|
type UndefinedPropertyNames<T extends Obj> = {
|
|
|
|
|
[K in keyof T]: T[K]['optional'] extends true ? K : never
|
|
|
|
|
}[keyof T];
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
export interface Obj { [key: string]: Schema; }
|
2019-02-24 01:45:27 +01:00
|
|
|
|
|
2019-04-23 15:35:26 +02:00
|
|
|
|
export type ObjType<s extends Obj> =
|
2022-01-18 14:27:10 +01:00
|
|
|
|
{ -readonly [P in UndefinedPropertyNames<s>]?: SchemaType<s[P]> } &
|
|
|
|
|
{ -readonly [P in NonUndefinedPropertyNames<s>]: SchemaType<s[P]> };
|
2019-02-24 01:45:27 +01:00
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
type NullOrUndefined<p extends MinimumSchema, T> =
|
2019-04-23 15:35:26 +02:00
|
|
|
|
p['nullable'] extends true
|
|
|
|
|
? p['optional'] extends true
|
|
|
|
|
? (T | null | undefined)
|
|
|
|
|
: (T | null)
|
|
|
|
|
: p['optional'] extends true
|
|
|
|
|
? (T | undefined)
|
|
|
|
|
: T;
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
// 共用体型を交差型にする型 https://stackoverflow.com/questions/54938141/typescript-convert-union-to-intersection
|
|
|
|
|
type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends ((k: infer I) => void) ? I : never;
|
|
|
|
|
|
|
|
|
|
// https://github.com/misskey-dev/misskey/pull/8144#discussion_r785287552
|
|
|
|
|
// 単純にSchemaTypeDef<X>で判定するだけではダメ
|
|
|
|
|
type UnionSchemaType<a extends readonly any[], X extends MinimumSchema = a[number]> = X extends any ? SchemaType<X> : never;
|
|
|
|
|
type ArrayUnion<T> = T extends any ? Array<T> : never;
|
|
|
|
|
|
|
|
|
|
export type SchemaTypeDef<p extends MinimumSchema> =
|
|
|
|
|
p['type'] extends 'number' ? number :
|
|
|
|
|
p['type'] extends 'string' ? (
|
|
|
|
|
p['enum'] extends readonly string[] ?
|
|
|
|
|
p['enum'][number] :
|
|
|
|
|
p['format'] extends 'date-time' ? string : // Dateにする??
|
|
|
|
|
string
|
|
|
|
|
) :
|
|
|
|
|
p['type'] extends 'boolean' ? boolean :
|
2021-09-11 18:12:23 +02:00
|
|
|
|
p['type'] extends 'object' ? (
|
2022-01-18 14:27:10 +01:00
|
|
|
|
p['ref'] extends keyof typeof refs ? Packed<p['ref']> :
|
|
|
|
|
p['properties'] extends NonNullable<Obj> ? ObjType<p['properties']> :
|
|
|
|
|
p['anyOf'] extends ReadonlyArray<MinimumSchema> ? UnionSchemaType<p['anyOf']> & Partial<UnionToIntersection<UnionSchemaType<p['anyOf']>>> :
|
|
|
|
|
p['allOf'] extends ReadonlyArray<MinimumSchema> ? UnionToIntersection<UnionSchemaType<p['allOf']>> :
|
|
|
|
|
any
|
|
|
|
|
) :
|
|
|
|
|
p['type'] extends 'array' ? (
|
|
|
|
|
p['items'] extends OfSchema ? (
|
|
|
|
|
p['items']['anyOf'] extends ReadonlyArray<MinimumSchema> ? UnionSchemaType<NonNullable<p['items']['anyOf']>>[] :
|
|
|
|
|
p['items']['oneOf'] extends ReadonlyArray<MinimumSchema> ? ArrayUnion<UnionSchemaType<NonNullable<p['items']['oneOf']>>> :
|
|
|
|
|
p['items']['allOf'] extends ReadonlyArray<MinimumSchema> ? UnionToIntersection<UnionSchemaType<NonNullable<p['items']['allOf']>>>[] :
|
|
|
|
|
never
|
|
|
|
|
) :
|
|
|
|
|
p['items'] extends NonNullable<MinimumSchema> ? SchemaTypeDef<p['items']>[] :
|
|
|
|
|
any[]
|
2021-09-11 18:12:23 +02:00
|
|
|
|
) :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
p['oneOf'] extends ReadonlyArray<MinimumSchema> ? UnionSchemaType<p['oneOf']> :
|
2019-02-24 01:45:27 +01:00
|
|
|
|
any;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
|
|
|
|
|
export type SchemaType<p extends MinimumSchema> = NullOrUndefined<p, SchemaTypeDef<p>>;
|