2020-01-29 19:37:25 +00:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
|
|
|
import { Clip } from '../entities/clip';
|
|
|
|
import { ensure } from '../../prelude/ensure';
|
|
|
|
import { SchemaType } from '../../misc/schema';
|
2020-11-15 03:47:54 +00:00
|
|
|
import { Users } from '..';
|
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
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 03:47:54 +00:00
|
|
|
return await awaitAll({
|
2020-01-29 19:37:25 +00:00
|
|
|
id: clip.id,
|
|
|
|
createdAt: clip.createdAt.toISOString(),
|
2020-11-15 03:34:47 +00:00
|
|
|
userId: clip.userId,
|
2020-11-15 03:47:54 +00:00
|
|
|
user: Users.pack(clip.user || clip.userId),
|
2020-01-29 19:37:25 +00:00
|
|
|
name: clip.name,
|
2020-11-15 03:04:54 +00:00
|
|
|
description: clip.description,
|
2020-11-15 03:34:47 +00:00
|
|
|
isPublic: clip.isPublic,
|
2020-11-15 03:47:54 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00: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 03:34:47 +00:00
|
|
|
userId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id',
|
|
|
|
},
|
2020-11-15 03:47:54 +00:00
|
|
|
user: {
|
|
|
|
type: 'object' as const,
|
|
|
|
ref: 'User',
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
name: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
description: 'The name of the Clip.'
|
|
|
|
},
|
2020-11-15 03:04:54 +00:00
|
|
|
description: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
description: 'The description of the Clip.'
|
|
|
|
},
|
2020-11-15 03:34:47 +00:00
|
|
|
isPublic: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
description: 'Whether this Clip is public.',
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
};
|