2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { GalleryPosts, GalleryLikesRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
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)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|