mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 09:13:09 +02:00
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
|
import { Inject, Injectable } from '@nestjs/common';
|
||
|
import { DI } from '@/di-symbols.js';
|
||
|
import { GalleryPosts, GalleryLikesRepository } from '@/models/index.js';
|
||
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
||
|
import type { Packed } from '@/misc/schema.js';
|
||
|
import type { } from '@/models/entities/Blocking.js';
|
||
|
import type { User } from '@/models/entities/User.js';
|
||
|
import type { GalleryLike } from '@/models/entities/GalleryLike.js';
|
||
|
import { UserEntityService } from './UserEntityService.js';
|
||
|
import { GalleryPostEntityService } from './GalleryPostEntityService.js';
|
||
|
|
||
|
@Injectable()
|
||
|
export class GalleryLikeEntityService {
|
||
|
constructor(
|
||
|
@Inject(DI.galleryLikesRepository)
|
||
|
private galleryLikesRepository: GalleryLikesRepository,
|
||
|
|
||
|
private galleryPostEntityService: GalleryPostEntityService,
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
public async pack(
|
||
|
src: GalleryLike['id'] | GalleryLike,
|
||
|
me?: any,
|
||
|
) {
|
||
|
const like = typeof src === 'object' ? src : await this.galleryLikesRepository.findOneByOrFail({ id: src });
|
||
|
|
||
|
return {
|
||
|
id: like.id,
|
||
|
post: await this.galleryPostEntityService.pack(like.post ?? like.postId, me),
|
||
|
};
|
||
|
}
|
||
|
|
||
|
public packMany(
|
||
|
likes: any[],
|
||
|
me: any,
|
||
|
) {
|
||
|
return Promise.all(likes.map(x => this.pack(x, me)));
|
||
|
}
|
||
|
}
|
||
|
|