2019-04-07 14:50:36 +02:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
2021-08-19 15:04:15 +02:00
|
|
|
import { NoteReaction } from '@/models/entities/note-reaction';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { Users } from '../index';
|
2021-09-22 15:35:55 +02:00
|
|
|
import { Packed } from '@/misc/schema';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { convertLegacyReaction } from '@/misc/reaction-lib';
|
2021-08-19 15:04:15 +02:00
|
|
|
import { User } from '@/models/entities/user';
|
2019-04-23 15:35:26 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
@EntityRepository(NoteReaction)
|
|
|
|
export class NoteReactionRepository extends Repository<NoteReaction> {
|
|
|
|
public async pack(
|
|
|
|
src: NoteReaction['id'] | NoteReaction,
|
2021-03-24 03:05:37 +01:00
|
|
|
me?: { id: User['id'] } | null | undefined
|
2021-09-22 15:35:55 +02:00
|
|
|
): Promise<Packed<'NoteReaction'>> {
|
2021-02-13 07:33:38 +01:00
|
|
|
const reaction = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
id: reaction.id,
|
2019-04-23 15:35:26 +02:00
|
|
|
createdAt: reaction.createdAt.toISOString(),
|
2019-04-07 14:50:36 +02:00
|
|
|
user: await Users.pack(reaction.userId, me),
|
2020-01-29 20:37:25 +01:00
|
|
|
type: convertLegacyReaction(reaction.reaction),
|
2019-04-07 14:50:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 15:35:26 +02:00
|
|
|
|
|
|
|
export const packedNoteReactionSchema = {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
properties: {
|
|
|
|
id: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
user: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-09-11 18:12:23 +02:00
|
|
|
ref: 'User' as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
},
|
|
|
|
type: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|