2021-03-20 02:05:33 +00:00
|
|
|
import { EntityRepository, In, Repository } from 'typeorm';
|
2021-03-21 15:44:38 +00:00
|
|
|
import { Users, Notes, UserGroupInvitations, AccessTokens, NoteReactions } from '..';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Notification } from '../entities/notification';
|
2019-04-23 13:35:26 +00:00
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
2019-06-27 09:04:09 +00:00
|
|
|
import { SchemaType } from '../../misc/schema';
|
2021-03-20 02:05:33 +00:00
|
|
|
import { Note } from '../entities/note';
|
|
|
|
import { NoteReaction } from '../entities/note-reaction';
|
|
|
|
import { User } from '../entities/user';
|
2021-03-22 03:41:33 +00:00
|
|
|
import { aggregateNoteEmojis, prefetchEmojis } from '../../misc/populate-emojis';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export type PackedNotification = SchemaType<typeof packedNotificationSchema>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@EntityRepository(Notification)
|
|
|
|
export class NotificationRepository extends Repository<Notification> {
|
|
|
|
public async pack(
|
|
|
|
src: Notification['id'] | Notification,
|
2021-03-20 02:05:33 +00:00
|
|
|
options: {
|
2021-03-21 13:26:45 +00:00
|
|
|
_hintForEachNotes_?: {
|
2021-03-20 02:05:33 +00:00
|
|
|
myReactions: Map<Note['id'], NoteReaction | null>;
|
|
|
|
};
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
): Promise<PackedNotification> {
|
2021-02-13 06:33:38 +00:00
|
|
|
const notification = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
const token = notification.appAccessTokenId ? await AccessTokens.findOneOrFail(notification.appAccessTokenId) : null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
return await awaitAll({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: notification.id,
|
2019-04-23 13:35:26 +00:00
|
|
|
createdAt: notification.createdAt.toISOString(),
|
2019-04-07 12:50:36 +00:00
|
|
|
type: notification.type,
|
2020-05-26 05:33:55 +00:00
|
|
|
isRead: notification.isRead,
|
2019-04-07 12:50:36 +00:00
|
|
|
userId: notification.notifierId,
|
2020-03-28 09:07:41 +00:00
|
|
|
user: notification.notifierId ? Users.pack(notification.notifier || notification.notifierId) : null,
|
2019-04-07 12:50:36 +00:00
|
|
|
...(notification.type === 'mention' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'reply' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'renote' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'quote' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'reaction' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
reaction: notification.reaction
|
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'pollVote' ? {
|
2021-03-20 02:05:33 +00:00
|
|
|
note: Notes.pack(notification.note || notification.noteId!, notification.notifieeId, {
|
|
|
|
detail: true,
|
|
|
|
_hint_: options._hintForEachNotes_
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
choice: notification.choice
|
2020-02-12 17:17:54 +00:00
|
|
|
} : {}),
|
|
|
|
...(notification.type === 'groupInvited' ? {
|
|
|
|
invitation: UserGroupInvitations.pack(notification.userGroupInvitationId!),
|
|
|
|
} : {}),
|
2020-03-28 09:07:41 +00:00
|
|
|
...(notification.type === 'app' ? {
|
|
|
|
body: notification.customBody,
|
2020-03-29 01:49:43 +00:00
|
|
|
header: notification.customHeader || token?.name,
|
|
|
|
icon: notification.customIcon || token?.iconUrl,
|
2020-03-28 09:07:41 +00:00
|
|
|
} : {}),
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
}
|
2019-04-25 04:27:07 +00:00
|
|
|
|
2021-03-20 02:05:33 +00:00
|
|
|
public async packMany(
|
2021-03-19 09:22:14 +00:00
|
|
|
notifications: Notification[],
|
2021-03-20 02:05:33 +00:00
|
|
|
meId: User['id']
|
2019-04-25 04:27:07 +00:00
|
|
|
) {
|
2021-03-20 02:05:33 +00:00
|
|
|
if (notifications.length === 0) return [];
|
|
|
|
|
|
|
|
const notes = notifications.filter(x => x.note != null).map(x => x.note!);
|
|
|
|
const noteIds = notes.map(n => n.id);
|
|
|
|
const myReactionsMap = new Map<Note['id'], NoteReaction | null>();
|
|
|
|
const renoteIds = notes.filter(n => n.renoteId != null).map(n => n.renoteId!);
|
|
|
|
const targets = [...noteIds, ...renoteIds];
|
|
|
|
const myReactions = await NoteReactions.find({
|
|
|
|
userId: meId,
|
|
|
|
noteId: In(targets),
|
|
|
|
});
|
|
|
|
|
|
|
|
for (const target of targets) {
|
|
|
|
myReactionsMap.set(target, myReactions.find(reaction => reaction.noteId === target) || null);
|
|
|
|
}
|
|
|
|
|
2021-03-22 03:41:33 +00:00
|
|
|
await prefetchEmojis(aggregateNoteEmojis(notes));
|
|
|
|
|
2021-03-20 02:05:33 +00:00
|
|
|
return await Promise.all(notifications.map(x => this.pack(x, {
|
|
|
|
_hintForEachNotes_: {
|
2021-03-21 15:44:38 +00:00
|
|
|
myReactions: myReactionsMap
|
2021-03-20 02:05:33 +00:00
|
|
|
}
|
|
|
|
})));
|
2019-04-25 04:27:07 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export const packedNotificationSchema = {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
properties: {
|
|
|
|
id: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
description: 'The unique identifier for this notification.',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'date-time',
|
|
|
|
description: 'The date that the notification was created.'
|
|
|
|
},
|
|
|
|
type: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2020-01-29 19:37:25 +00:00
|
|
|
enum: ['follow', 'followRequestAccepted', 'receiveFollowRequest', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollVote'],
|
2019-04-23 13:35:26 +00:00
|
|
|
description: 'The type of the notification.'
|
|
|
|
},
|
|
|
|
userId: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
user: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'User',
|
2019-06-27 09:04:09 +00:00
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|