Sharkey/src/models/repositories/clip.ts

65 lines
1.7 KiB
TypeScript
Raw Normal View History

import { EntityRepository, Repository } from 'typeorm';
import { Clip } from '../entities/clip';
import { ensure } from '../../prelude/ensure';
import { SchemaType } from '../../misc/schema';
export type PackedClip = SchemaType<typeof packedClipSchema>;
@EntityRepository(Clip)
export class ClipRepository extends Repository<Clip> {
public async pack(
src: Clip['id'] | Clip,
): Promise<PackedClip> {
const clip = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
return {
id: clip.id,
createdAt: clip.createdAt.toISOString(),
2020-11-15 05:34:47 +02:00
userId: clip.userId,
name: clip.name,
2020-11-15 05:04:54 +02:00
description: clip.description,
2020-11-15 05:34:47 +02:00
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.'
},
2020-11-15 05:34:47 +02:00
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.'
},
2020-11-15 05:04:54 +02:00
description: {
type: 'string' as const,
optional: false as const, nullable: true as const,
description: 'The description of the Clip.'
},
2020-11-15 05:34:47 +02:00
isPublic: {
type: 'boolean' as const,
optional: false as const, nullable: false as const,
description: 'Whether this Clip is public.',
},
},
};