Sharkey/src/models/repositories/clip.ts

73 lines
2 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';
2020-11-15 05:47:54 +02:00
import { Users } from '..';
import { awaitAll } from '../../prelude/await-all';
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);
2020-11-15 05:47:54 +02:00
return await awaitAll({
id: clip.id,
createdAt: clip.createdAt.toISOString(),
2020-11-15 05:34:47 +02:00
userId: clip.userId,
2020-11-15 05:47:54 +02:00
user: Users.pack(clip.user || 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,
2020-11-15 05:47:54 +02:00
});
}
}
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',
},
2020-11-15 05:47:54 +02:00
user: {
type: 'object' as const,
ref: 'User',
optional: false as const, nullable: false as const,
},
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.',
},
},
};