import { EntityRepository, Repository } from 'typeorm'; import { Clip } from '../entities/clip'; import { ensure } from '../../prelude/ensure'; import { SchemaType } from '../../misc/schema'; export type PackedClip = SchemaType; @EntityRepository(Clip) export class ClipRepository extends Repository { public async pack( src: Clip['id'] | Clip, ): Promise { const clip = typeof src === 'object' ? src : await this.findOne(src).then(ensure); return { id: clip.id, createdAt: clip.createdAt.toISOString(), userId: clip.userId, name: clip.name, description: clip.description, isPublic: clip.isPublic, }; } } export const packedClipSchema = { 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', description: 'The unique identifier for this Clip.', example: 'xxxxxxxxxx', }, createdAt: { type: 'string' as const, optional: false as const, nullable: false as const, format: 'date-time', description: 'The date that the Clip was created.' }, userId: { type: 'string' as const, optional: false as const, nullable: false as const, format: 'id', }, name: { type: 'string' as const, optional: false as const, nullable: false as const, description: 'The name of the Clip.' }, description: { type: 'string' as const, optional: false as const, nullable: true as const, description: 'The description of the Clip.' }, isPublic: { type: 'boolean' as const, optional: false as const, nullable: false as const, description: 'Whether this Clip is public.', }, }, };