2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:50:11 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { ClipFavoritesRepository, ClipsRepository, MiUser } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
2023-03-10 06:22:37 +01:00
|
|
|
import type { Packed } from '@/misc/json-schema.js';
|
2023-09-20 04:33:36 +02:00
|
|
|
import type { } from '@/models/Blocking.js';
|
|
|
|
import type { MiClip } from '@/models/Clip.js';
|
2022-12-04 07:03:09 +01:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-10-16 03:45:22 +02:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-03-10 06:22:37 +01:00
|
|
|
import { UserEntityService } from './UserEntityService.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ClipEntityService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.clipsRepository)
|
|
|
|
private clipsRepository: ClipsRepository,
|
|
|
|
|
2023-03-16 09:24:49 +01:00
|
|
|
@Inject(DI.clipFavoritesRepository)
|
|
|
|
private clipFavoritesRepository: ClipFavoritesRepository,
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
private userEntityService: UserEntityService,
|
2023-10-16 03:45:22 +02:00
|
|
|
private idService: IdService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-09-17 20:27:08 +02:00
|
|
|
public async pack(
|
2023-08-16 10:51:28 +02:00
|
|
|
src: MiClip['id'] | MiClip,
|
|
|
|
me?: { id: MiUser['id'] } | null | undefined,
|
2022-09-17 20:27:08 +02:00
|
|
|
): Promise<Packed<'Clip'>> {
|
2023-03-16 09:24:49 +01:00
|
|
|
const meId = me ? me.id : null;
|
2022-09-17 20:27:08 +02:00
|
|
|
const clip = typeof src === 'object' ? src : await this.clipsRepository.findOneByOrFail({ id: src });
|
|
|
|
|
|
|
|
return await awaitAll({
|
|
|
|
id: clip.id,
|
2023-10-16 03:45:22 +02:00
|
|
|
createdAt: this.idService.parse(clip.id).date.toISOString(),
|
2023-03-16 09:24:49 +01:00
|
|
|
lastClippedAt: clip.lastClippedAt ? clip.lastClippedAt.toISOString() : null,
|
2022-09-17 20:27:08 +02:00
|
|
|
userId: clip.userId,
|
|
|
|
user: this.userEntityService.pack(clip.user ?? clip.userId),
|
|
|
|
name: clip.name,
|
|
|
|
description: clip.description,
|
|
|
|
isPublic: clip.isPublic,
|
2023-03-16 09:24:49 +01:00
|
|
|
favoritedCount: await this.clipFavoritesRepository.countBy({ clipId: clip.id }),
|
2024-02-08 08:04:41 +01:00
|
|
|
isFavorited: meId ? await this.clipFavoritesRepository.exists({ where: { clipId: clip.id, userId: meId } }) : undefined,
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-09-17 20:27:08 +02:00
|
|
|
public packMany(
|
2023-08-16 10:51:28 +02:00
|
|
|
clips: MiClip[],
|
|
|
|
me?: { id: MiUser['id'] } | null | undefined,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
2023-03-16 09:24:49 +01:00
|
|
|
return Promise.all(clips.map(x => this.pack(x, me)));
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|