2020-01-29 21:37:25 +02:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
2021-08-19 16:04:15 +03:00
|
|
|
import { Clip } from '@/models/entities/clip';
|
2021-09-22 16:35:55 +03:00
|
|
|
import { Packed } from '@/misc/schema';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { Users } from '../index';
|
2021-08-19 16:04:15 +03:00
|
|
|
import { awaitAll } from '@/prelude/await-all';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
@EntityRepository(Clip)
|
|
|
|
export class ClipRepository extends Repository<Clip> {
|
|
|
|
public async pack(
|
|
|
|
src: Clip['id'] | Clip,
|
2021-09-22 16:35:55 +03:00
|
|
|
): Promise<Packed<'Clip'>> {
|
2021-02-13 08:33:38 +02:00
|
|
|
const clip = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2020-11-15 05:47:54 +02:00
|
|
|
return await awaitAll({
|
2020-01-29 21:37:25 +02:00
|
|
|
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),
|
2020-01-29 21:37:25 +02:00
|
|
|
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-01-29 21:37:25 +02:00
|
|
|
}
|
2020-11-29 05:34:39 +02:00
|
|
|
|
|
|
|
public packMany(
|
|
|
|
clips: Clip[],
|
|
|
|
) {
|
|
|
|
return Promise.all(clips.map(x => this.pack(x)));
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
|