import { EntityRepository, Repository } from 'typeorm'; import { UserList } from '../entities/user-list.js'; import { UserListJoinings } from '../index.js'; import { SchemaType } from '@/misc/schema.js'; export type PackedUserList = SchemaType; @EntityRepository(UserList) export class UserListRepository extends Repository { public async pack( src: UserList['id'] | UserList, ): Promise { const userList = typeof src === 'object' ? src : await this.findOneOrFail(src); const users = await UserListJoinings.find({ userListId: userList.id }); return { id: userList.id, createdAt: userList.createdAt.toISOString(), name: userList.name, userIds: users.map(x => x.userId) }; } } export const packedUserListSchema = { type: 'object' as const, optional: false as const, nullable: false as const, properties: { id: { type: 'string' as const, optional: false as const, nullable: false as const, format: 'id', example: 'xxxxxxxxxx', }, createdAt: { type: 'string' as const, optional: false as const, nullable: false as const, format: 'date-time', }, name: { type: 'string' as const, optional: false as const, nullable: false as const, }, userIds: { type: 'array' as const, nullable: false as const, optional: true as const, items: { type: 'string' as const, nullable: false as const, optional: false as const, format: 'id', } }, }, };