summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints/i/notifications-grouped.ts
blob: 3821b5a20e179c8c9987c6aa2f340afe19414f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { In } from 'typeorm';
import * as Redis from 'ioredis';
import { Inject, Injectable } from '@nestjs/common';
import type { NotesRepository } from '@/models/_.js';
import {
	obsoleteNotificationTypes,
	groupedNotificationTypes,
	FilterUnionByProperty,
	notificationTypes,
} from '@/types.js';
import { Endpoint } from '@/server/api/endpoint-base.js';
import { NotificationEntityService } from '@/core/entities/NotificationEntityService.js';
import { NotificationService } from '@/core/NotificationService.js';
import { DI } from '@/di-symbols.js';
import { IdService } from '@/core/IdService.js';
import { MiGroupedNotification, MiNotification } from '@/models/Notification.js';

export const meta = {
	tags: ['account', 'notifications'],

	requireCredential: true,

	limit: {
		duration: 30000,
		max: 30,
	},

	kind: 'read:notifications',

	res: {
		type: 'array',
		optional: false, nullable: false,
		items: {
			type: 'object',
			optional: false, nullable: false,
			ref: 'Notification',
		},
	},
} as const;

export const paramDef = {
	type: 'object',
	properties: {
		limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
		sinceId: { type: 'string', format: 'misskey:id' },
		untilId: { type: 'string', format: 'misskey:id' },
		markAsRead: { type: 'boolean', default: true },
		// 後方互換のため、廃止された通知タイプも受け付ける
		includeTypes: { type: 'array', items: {
			type: 'string', enum: [...notificationTypes, ...obsoleteNotificationTypes],
		} },
		excludeTypes: { type: 'array', items: {
			type: 'string', enum: [...notificationTypes, ...obsoleteNotificationTypes],
		} },
	},
	required: [],
} as const;

@Injectable()
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
	constructor(
		@Inject(DI.redis)
		private redisClient: Redis.Redis,

		private idService: IdService,
		private notificationEntityService: NotificationEntityService,
		private notificationService: NotificationService,
	) {
		super(meta, paramDef, async (ps, me) => {
			const EXTRA_LIMIT = 100;

			// includeTypes が空の場合はクエリしない
			if (ps.includeTypes && ps.includeTypes.length === 0) {
				return [];
			}
			// excludeTypes に全指定されている場合はクエリしない
			if (notificationTypes.every(type => ps.excludeTypes?.includes(type))) {
				return [];
			}

			const includeTypes = ps.includeTypes && ps.includeTypes.filter(type => !(obsoleteNotificationTypes).includes(type as any)) as typeof groupedNotificationTypes[number][];
			const excludeTypes = ps.excludeTypes && ps.excludeTypes.filter(type => !(obsoleteNotificationTypes).includes(type as any)) as typeof groupedNotificationTypes[number][];

			const notifications = await this.notificationService.getNotifications(me.id, {
				sinceId: ps.sinceId,
				untilId: ps.untilId,
				limit: ps.limit,
				includeTypes,
				excludeTypes,
			});

			if (notifications.length === 0) {
				return [];
			}

			// Mark all as read
			if (ps.markAsRead) {
				this.notificationService.readAllNotification(me.id);
			}

			// grouping
			const groupedNotifications : MiGroupedNotification[] = [];
			// keep track of where reaction / renote notifications are, by note id
			const reactionIdxByNoteId = new Map<string, number>();
			const renoteIdxByNoteId = new Map<string, number>();

			// group notifications by type+note; notice that we don't try to
			// split groups if they span a long stretch of time, because
			// it's probably overkill: if the user has very few
			// notifications, there should be very little difference; if the
			// user has many notifications, the pagination will break the
			// groups

			// scan `notifications` newest-to-oldest (unless we have sinceId && !untilId, in which case it's oldest-to-newest)
			for (let i = 0; i < notifications.length; i++) {
				const notification = notifications[i];

				if (notification.type === 'reaction') {
					const reactionIdx = reactionIdxByNoteId.get(notification.noteId);
					if (reactionIdx === undefined) {
						// first reaction to this note that we see, add it as-is
						// and remember where we put it
						groupedNotifications.push(notification);
						reactionIdxByNoteId.set(notification.noteId, groupedNotifications.length - 1);
						continue;
					}

					let prevReaction = groupedNotifications[reactionIdx] as FilterUnionByProperty<MiGroupedNotification, 'type', 'reaction:grouped'> | FilterUnionByProperty<MiGroupedNotification, 'type', 'reaction'>;
					// if the previous reaction is not a group, make it into one
					if (prevReaction.type !== 'reaction:grouped') {
						prevReaction = groupedNotifications[reactionIdx] = {
							type: 'reaction:grouped',
							id: '',
							createdAt: prevReaction.createdAt,
							noteId: prevReaction.noteId!,
							reactions: [{
								userId: prevReaction.notifierId!,
								reaction: prevReaction.reaction!,
							}],
						};
					}
					// add this new reaction to the existing group
					(prevReaction as FilterUnionByProperty<MiGroupedNotification, 'type', 'reaction:grouped'>).reactions.push({
						userId: notification.notifierId!,
						reaction: notification.reaction!,
					});
					prevReaction.id = notification.id; // this will be the *oldest* id in this group (newest if sinceId && !untilId)
					continue;
				}

				if (notification.type === 'renote') {
					const renoteIdx = renoteIdxByNoteId.get(notification.targetNoteId);
					if (renoteIdx === undefined) {
						// first renote of this note that we see, add it as-is and
						// remember where we put it
						groupedNotifications.push(notification);
						renoteIdxByNoteId.set(notification.targetNoteId, groupedNotifications.length - 1);
						continue;
					}

					let prevRenote = groupedNotifications[renoteIdx] as FilterUnionByProperty<MiGroupedNotification, 'type', 'renote:grouped'> | FilterUnionByProperty<MiGroupedNotification, 'type', 'renote'>;
					// if the previous renote is not a group, make it into one
					if (prevRenote.type !== 'renote:grouped') {
						prevRenote = groupedNotifications[renoteIdx] = {
							type: 'renote:grouped',
							id: '',
							createdAt: prevRenote.createdAt,
							noteId: prevRenote.noteId!,
							userIds: [prevRenote.notifierId!],
						};
					}
					// add this new renote to the existing group
					(prevRenote as FilterUnionByProperty<MiGroupedNotification, 'type', 'renote:grouped'>).userIds.push(notification.notifierId!);
					prevRenote.id = notification.id; // this will be the *oldest* id in this group (newest if sinceId && !untilId)
					continue;
				}

				// not a groupable notification, just push it
				groupedNotifications.push(notification);
			}

			// sort the groups by their id
			groupedNotifications.sort(
				(a, b) => a.id < b.id ? 1 : a.id > b.id ? -1 : 0,
			);
			// this matches the logic in NotificationService and it's what MkPagination expects
			if (ps.sinceId && !ps.untilId) groupedNotifications.reverse();

			return await this.notificationEntityService.packGroupedMany(groupedNotifications, me.id);
		});
	}
}