2022-01-18 14:27:10 +01:00
|
|
|
|
import {
|
|
|
|
|
packedUserLiteSchema,
|
|
|
|
|
packedUserDetailedNotMeOnlySchema,
|
|
|
|
|
packedMeDetailedOnlySchema,
|
|
|
|
|
packedUserDetailedNotMeSchema,
|
|
|
|
|
packedMeDetailedSchema,
|
|
|
|
|
packedUserDetailedSchema,
|
|
|
|
|
packedUserSchema,
|
2022-02-27 03:07:39 +01:00
|
|
|
|
} from '@/models/schema/user.js';
|
|
|
|
|
import { packedNoteSchema } from '@/models/schema/note.js';
|
|
|
|
|
import { packedUserListSchema } from '@/models/schema/user-list.js';
|
|
|
|
|
import { packedAppSchema } from '@/models/schema/app.js';
|
|
|
|
|
import { packedMessagingMessageSchema } from '@/models/schema/messaging-message.js';
|
|
|
|
|
import { packedNotificationSchema } from '@/models/schema/notification.js';
|
|
|
|
|
import { packedDriveFileSchema } from '@/models/schema/drive-file.js';
|
|
|
|
|
import { packedDriveFolderSchema } from '@/models/schema/drive-folder.js';
|
|
|
|
|
import { packedFollowingSchema } from '@/models/schema/following.js';
|
|
|
|
|
import { packedMutingSchema } from '@/models/schema/muting.js';
|
|
|
|
|
import { packedBlockingSchema } from '@/models/schema/blocking.js';
|
|
|
|
|
import { packedNoteReactionSchema } from '@/models/schema/note-reaction.js';
|
|
|
|
|
import { packedHashtagSchema } from '@/models/schema/hashtag.js';
|
|
|
|
|
import { packedPageSchema } from '@/models/schema/page.js';
|
|
|
|
|
import { packedUserGroupSchema } from '@/models/schema/user-group.js';
|
|
|
|
|
import { packedNoteFavoriteSchema } from '@/models/schema/note-favorite.js';
|
|
|
|
|
import { packedChannelSchema } from '@/models/schema/channel.js';
|
|
|
|
|
import { packedAntennaSchema } from '@/models/schema/antenna.js';
|
|
|
|
|
import { packedClipSchema } from '@/models/schema/clip.js';
|
|
|
|
|
import { packedFederationInstanceSchema } from '@/models/schema/federation-instance.js';
|
|
|
|
|
import { packedQueueCountSchema } from '@/models/schema/queue.js';
|
|
|
|
|
import { packedGalleryPostSchema } from '@/models/schema/gallery-post.js';
|
|
|
|
|
import { packedEmojiSchema } from '@/models/schema/emoji.js';
|
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-02-19 15:21:28 +01:00
|
|
|
|
export type Packed<x extends keyof typeof refs> = SchemaType<typeof refs[x]>;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
|
type TypeStringef = 'null' | 'boolean' | 'integer' | 'number' | 'string' | 'array' | 'object' | 'any';
|
2022-01-18 14:27:10 +01:00
|
|
|
|
type StringDefToType<T extends TypeStringef> =
|
2022-02-19 06:05:32 +01:00
|
|
|
|
T extends 'null' ? null :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
T extends 'boolean' ? boolean :
|
2022-02-19 06:05:32 +01:00
|
|
|
|
T extends 'integer' ? number :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
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 = {
|
2022-02-19 06:05:32 +01:00
|
|
|
|
readonly anyOf?: ReadonlyArray<Schema>;
|
|
|
|
|
readonly oneOf?: ReadonlyArray<Schema>;
|
|
|
|
|
readonly allOf?: ReadonlyArray<Schema>;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
|
export interface Schema extends OfSchema {
|
2022-01-18 14:27:10 +01:00
|
|
|
|
readonly type?: TypeStringef;
|
|
|
|
|
readonly nullable?: boolean;
|
|
|
|
|
readonly optional?: boolean;
|
2022-02-19 06:05:32 +01:00
|
|
|
|
readonly items?: Schema;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
readonly properties?: Obj;
|
2022-04-24 04:43:15 +02:00
|
|
|
|
readonly required?: ReadonlyArray<Extract<keyof NonNullable<this['properties']>, string>>;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
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-02-19 15:21:28 +01:00
|
|
|
|
type RequiredPropertyNames<s extends Obj> = {
|
|
|
|
|
[K in keyof s]:
|
|
|
|
|
// K is not optional
|
|
|
|
|
s[K]['optional'] extends false ? K :
|
|
|
|
|
// K has default value
|
|
|
|
|
s[K]['default'] extends null | string | number | boolean | Record<string, unknown> ? K : never
|
|
|
|
|
}[keyof s];
|
2019-04-23 15:35:26 +02:00
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
|
export interface Obj { [key: string]: Schema; }
|
2019-02-24 01:45:27 +01:00
|
|
|
|
|
2022-02-19 15:21:28 +01:00
|
|
|
|
export type ObjType<s extends Obj, RequiredProps extends keyof s> =
|
2022-02-19 06:05:32 +01:00
|
|
|
|
{ -readonly [P in keyof s]?: SchemaType<s[P]> } &
|
2022-02-19 15:21:28 +01:00
|
|
|
|
{ -readonly [P in RequiredProps]: SchemaType<s[P]> } &
|
|
|
|
|
{ -readonly [P in RequiredPropertyNames<s>]: SchemaType<s[P]> };
|
2019-02-24 01:45:27 +01:00
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
|
type NullOrUndefined<p extends Schema, 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-02-19 15:21:28 +01:00
|
|
|
|
// https://stackoverflow.com/questions/54938141/typescript-convert-union-to-intersection
|
|
|
|
|
// Get intersection from union
|
2022-01-18 14:27:10 +01:00
|
|
|
|
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
|
2022-02-19 15:21:28 +01:00
|
|
|
|
// To get union, we use `Foo extends any ? Hoge<Foo> : never`
|
2022-02-19 06:05:32 +01:00
|
|
|
|
type UnionSchemaType<a extends readonly any[], X extends Schema = a[number]> = X extends any ? SchemaType<X> : never;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
type ArrayUnion<T> = T extends any ? Array<T> : never;
|
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
|
export type SchemaTypeDef<p extends Schema> =
|
|
|
|
|
p['type'] extends 'null' ? null :
|
|
|
|
|
p['type'] extends 'integer' ? number :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
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']> :
|
2022-02-19 15:21:28 +01:00
|
|
|
|
p['properties'] extends NonNullable<Obj> ? ObjType<p['properties'], NonNullable<p['required']>[number]> :
|
2022-02-19 06:05:32 +01:00
|
|
|
|
p['anyOf'] extends ReadonlyArray<Schema> ? UnionSchemaType<p['anyOf']> & Partial<UnionToIntersection<UnionSchemaType<p['anyOf']>>> :
|
|
|
|
|
p['allOf'] extends ReadonlyArray<Schema> ? UnionToIntersection<UnionSchemaType<p['allOf']>> :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
any
|
|
|
|
|
) :
|
|
|
|
|
p['type'] extends 'array' ? (
|
|
|
|
|
p['items'] extends OfSchema ? (
|
2022-02-19 06:05:32 +01:00
|
|
|
|
p['items']['anyOf'] extends ReadonlyArray<Schema> ? UnionSchemaType<NonNullable<p['items']['anyOf']>>[] :
|
|
|
|
|
p['items']['oneOf'] extends ReadonlyArray<Schema> ? ArrayUnion<UnionSchemaType<NonNullable<p['items']['oneOf']>>> :
|
|
|
|
|
p['items']['allOf'] extends ReadonlyArray<Schema> ? UnionToIntersection<UnionSchemaType<NonNullable<p['items']['allOf']>>>[] :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
never
|
|
|
|
|
) :
|
2022-02-19 06:05:32 +01:00
|
|
|
|
p['items'] extends NonNullable<Schema> ? SchemaTypeDef<p['items']>[] :
|
2022-01-18 14:27:10 +01:00
|
|
|
|
any[]
|
2021-09-11 18:12:23 +02:00
|
|
|
|
) :
|
2022-02-19 06:05:32 +01:00
|
|
|
|
p['oneOf'] extends ReadonlyArray<Schema> ? UnionSchemaType<p['oneOf']> :
|
2019-02-24 01:45:27 +01:00
|
|
|
|
any;
|
2022-01-18 14:27:10 +01:00
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
|
export type SchemaType<p extends Schema> = NullOrUndefined<p, SchemaTypeDef<p>>;
|