Sharkey/src/models/repositories/clip.ts

73 lines
1.8 KiB
TypeScript
Raw Normal View History

import { EntityRepository, Repository } from 'typeorm';
import { Clip } from '../entities/clip';
import { SchemaType } from '@/misc/schema';
import { Users } from '../index';
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> {
2021-02-13 08:33:38 +02:00
const clip = typeof src === 'object' ? src : await this.findOneOrFail(src);
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
});
}
2020-11-29 05:34:39 +02:00
public packMany(
clips: Clip[],
) {
return Promise.all(clips.map(x => this.pack(x)));
}
}
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',
example: 'xxxxxxxxxx',
},
createdAt: {
type: 'string' as const,
optional: false as const, nullable: false as const,
format: 'date-time',
},
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,
},
2020-11-15 05:04:54 +02:00
description: {
type: 'string' as const,
optional: false as const, nullable: true as const,
},
2020-11-15 05:34:47 +02:00
isPublic: {
type: 'boolean' as const,
optional: false as const, nullable: false as const,
},
},
};