mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:03:09 +02:00
63df2c851e
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
63 lines
2.2 KiB
TypeScript
63 lines
2.2 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { NoteReactionsRepository } from '@/models/index.js';
|
|
import type { Packed } from '@/misc/schema.js';
|
|
import type { OnModuleInit } from '@nestjs/common';
|
|
import type { } from '@/models/entities/Blocking.js';
|
|
import type { User } from '@/models/entities/User.js';
|
|
import type { NoteReaction } from '@/models/entities/NoteReaction.js';
|
|
import type { ReactionService } from '../ReactionService.js';
|
|
import type { UserEntityService } from './UserEntityService.js';
|
|
import type { NoteEntityService } from './NoteEntityService.js';
|
|
import { ModuleRef } from '@nestjs/core';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
@Injectable()
|
|
export class NoteReactionEntityService implements OnModuleInit {
|
|
private userEntityService: UserEntityService;
|
|
private noteEntityService: NoteEntityService;
|
|
private reactionService: ReactionService;
|
|
|
|
constructor(
|
|
private moduleRef: ModuleRef,
|
|
|
|
@Inject(DI.noteReactionsRepository)
|
|
private noteReactionsRepository: NoteReactionsRepository,
|
|
|
|
//private userEntityService: UserEntityService,
|
|
//private noteEntityService: NoteEntityService,
|
|
//private reactionService: ReactionService,
|
|
) {
|
|
}
|
|
|
|
onModuleInit() {
|
|
this.userEntityService = this.moduleRef.get('UserEntityService');
|
|
this.noteEntityService = this.moduleRef.get('NoteEntityService');
|
|
this.reactionService = this.moduleRef.get('ReactionService');
|
|
}
|
|
|
|
@bindThis
|
|
public async pack(
|
|
src: NoteReaction['id'] | NoteReaction,
|
|
me?: { id: User['id'] } | null | undefined,
|
|
options?: {
|
|
withNote: boolean;
|
|
},
|
|
): Promise<Packed<'NoteReaction'>> {
|
|
const opts = Object.assign({
|
|
withNote: false,
|
|
}, options);
|
|
|
|
const reaction = typeof src === 'object' ? src : await this.noteReactionsRepository.findOneByOrFail({ id: src });
|
|
|
|
return {
|
|
id: reaction.id,
|
|
createdAt: reaction.createdAt.toISOString(),
|
|
user: await this.userEntityService.pack(reaction.user ?? reaction.userId, me),
|
|
type: this.reactionService.convertLegacyReaction(reaction.reaction),
|
|
...(opts.withNote ? {
|
|
note: await this.noteEntityService.pack(reaction.note ?? reaction.noteId, me),
|
|
} : {}),
|
|
};
|
|
}
|
|
}
|