2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-16 05:36:21 +00:00
|
|
|
import { setTimeout } from 'node:timers/promises';
|
2023-04-14 04:50:05 +00:00
|
|
|
import * as Redis from 'ioredis';
|
2023-03-16 05:24:11 +00:00
|
|
|
import { Inject, Injectable, OnApplicationShutdown } from '@nestjs/common';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { In } from 'typeorm';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-08-05 01:33:00 +00:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2023-08-16 08:51:28 +00:00
|
|
|
import type { MiUser } from '@/models/entities/User.js';
|
|
|
|
import type { MiNotification } from '@/models/entities/Notification.js';
|
2023-02-17 06:15:36 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-03-16 05:24:11 +00:00
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { PushNotificationService } from '@/core/PushNotificationService.js';
|
|
|
|
import { NotificationEntityService } from '@/core/entities/NotificationEntityService.js';
|
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-04-04 08:32:09 +00:00
|
|
|
import { CacheService } from '@/core/CacheService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
2023-03-16 05:24:11 +00:00
|
|
|
export class NotificationService implements OnApplicationShutdown {
|
|
|
|
#shutdownController = new AbortController();
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
2023-04-04 05:06:57 +00:00
|
|
|
@Inject(DI.redis)
|
|
|
|
private redisClient: Redis.Redis,
|
|
|
|
|
2023-03-16 05:24:11 +00:00
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private notificationEntityService: NotificationEntityService,
|
|
|
|
private idService: IdService,
|
2022-09-17 18:27:08 +00:00
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private pushNotificationService: PushNotificationService,
|
2023-04-04 08:32:09 +00:00
|
|
|
private cacheService: CacheService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-04-04 05:06:57 +00:00
|
|
|
public async readAllNotification(
|
2023-08-16 08:51:28 +00:00
|
|
|
userId: MiUser['id'],
|
2023-04-05 21:11:59 +00:00
|
|
|
force = false,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
2023-04-04 05:06:57 +00:00
|
|
|
const latestReadNotificationId = await this.redisClient.get(`latestReadNotification:${userId}`);
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2023-04-04 05:06:57 +00:00
|
|
|
const latestNotificationIdsRes = await this.redisClient.xrevrange(
|
|
|
|
`notificationTimeline:${userId}`,
|
|
|
|
'+',
|
|
|
|
'-',
|
|
|
|
'COUNT', 1);
|
|
|
|
const latestNotificationId = latestNotificationIdsRes[0]?.[0];
|
|
|
|
|
|
|
|
if (latestNotificationId == null) return;
|
|
|
|
|
|
|
|
this.redisClient.set(`latestReadNotification:${userId}`, latestNotificationId);
|
|
|
|
|
2023-04-05 21:11:59 +00:00
|
|
|
if (force || latestReadNotificationId == null || (latestReadNotificationId < latestNotificationId)) {
|
2023-04-04 05:06:57 +00:00
|
|
|
return this.postReadAllNotifications(userId);
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
private postReadAllNotifications(userId: MiUser['id']) {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.globalEventService.publishMainStream(userId, 'readAllNotifications');
|
2023-04-11 05:11:39 +00:00
|
|
|
this.pushNotificationService.pushNotification(userId, 'readAllNotifications', undefined);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2023-03-16 05:24:11 +00:00
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async createNotification(
|
2023-08-16 08:51:28 +00:00
|
|
|
notifieeId: MiUser['id'],
|
|
|
|
type: MiNotification['type'],
|
|
|
|
data: Partial<MiNotification>,
|
|
|
|
): Promise<MiNotification | null> {
|
2023-04-05 01:21:10 +00:00
|
|
|
const profile = await this.cacheService.userProfileCache.fetch(notifieeId);
|
2023-04-04 08:32:09 +00:00
|
|
|
const isMuted = profile.mutingNotificationTypes.includes(type);
|
2023-04-04 05:06:57 +00:00
|
|
|
if (isMuted) return null;
|
2023-03-16 05:24:11 +00:00
|
|
|
|
2023-04-04 05:06:57 +00:00
|
|
|
if (data.notifierId) {
|
|
|
|
if (notifieeId === data.notifierId) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-04-05 01:21:10 +00:00
|
|
|
const mutings = await this.cacheService.userMutingsCache.fetch(notifieeId);
|
|
|
|
if (mutings.has(data.notifierId)) {
|
2023-04-04 05:06:57 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const notification = {
|
2023-03-16 05:24:11 +00:00
|
|
|
id: this.idService.genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
type: type,
|
|
|
|
...data,
|
2023-08-16 08:51:28 +00:00
|
|
|
} as MiNotification;
|
2023-04-04 05:06:57 +00:00
|
|
|
|
2023-04-05 21:11:59 +00:00
|
|
|
const redisIdPromise = this.redisClient.xadd(
|
2023-04-04 05:06:57 +00:00
|
|
|
`notificationTimeline:${notifieeId}`,
|
|
|
|
'MAXLEN', '~', '300',
|
2023-04-10 01:03:53 +00:00
|
|
|
'*',
|
2023-04-04 05:06:57 +00:00
|
|
|
'data', JSON.stringify(notification));
|
2023-03-16 05:24:11 +00:00
|
|
|
|
2023-04-04 05:06:57 +00:00
|
|
|
const packed = await this.notificationEntityService.pack(notification, notifieeId, {});
|
2023-03-16 05:24:11 +00:00
|
|
|
|
|
|
|
// Publish notification event
|
|
|
|
this.globalEventService.publishMainStream(notifieeId, 'notification', packed);
|
|
|
|
|
|
|
|
// 2秒経っても(今回作成した)通知が既読にならなかったら「未読の通知がありますよ」イベントを発行する
|
2023-04-04 05:06:57 +00:00
|
|
|
setTimeout(2000, 'unread notification', { signal: this.#shutdownController.signal }).then(async () => {
|
|
|
|
const latestReadNotificationId = await this.redisClient.get(`latestReadNotification:${notifieeId}`);
|
2023-04-14 04:50:05 +00:00
|
|
|
if (latestReadNotificationId && (latestReadNotificationId >= (await redisIdPromise)!)) return;
|
2023-03-16 05:24:11 +00:00
|
|
|
|
|
|
|
this.globalEventService.publishMainStream(notifieeId, 'unreadNotification', packed);
|
|
|
|
this.pushNotificationService.pushNotification(notifieeId, 'notification', packed);
|
|
|
|
|
|
|
|
if (type === 'follow') this.emailNotificationFollow(notifieeId, await this.usersRepository.findOneByOrFail({ id: data.notifierId! }));
|
|
|
|
if (type === 'receiveFollowRequest') this.emailNotificationReceiveFollowRequest(notifieeId, await this.usersRepository.findOneByOrFail({ id: data.notifierId! }));
|
|
|
|
}, () => { /* aborted, ignore it */ });
|
|
|
|
|
|
|
|
return notification;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
//const locales = await import('../../../../locales/index.js');
|
|
|
|
|
|
|
|
// TODO: locale ファイルをクライアント用とサーバー用で分けたい
|
|
|
|
|
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
private async emailNotificationFollow(userId: MiUser['id'], follower: MiUser) {
|
2023-03-16 05:24:11 +00:00
|
|
|
/*
|
|
|
|
const userProfile = await UserProfiles.findOneByOrFail({ userId: userId });
|
|
|
|
if (!userProfile.email || !userProfile.emailNotificationTypes.includes('follow')) return;
|
|
|
|
const locale = locales[userProfile.lang ?? 'ja-JP'];
|
|
|
|
const i18n = new I18n(locale);
|
|
|
|
// TODO: render user information html
|
|
|
|
sendEmail(userProfile.email, i18n.t('_email._follow.title'), `${follower.name} (@${Acct.toString(follower)})`, `${follower.name} (@${Acct.toString(follower)})`);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
private async emailNotificationReceiveFollowRequest(userId: MiUser['id'], follower: MiUser) {
|
2023-03-16 05:24:11 +00:00
|
|
|
/*
|
|
|
|
const userProfile = await UserProfiles.findOneByOrFail({ userId: userId });
|
|
|
|
if (!userProfile.email || !userProfile.emailNotificationTypes.includes('receiveFollowRequest')) return;
|
|
|
|
const locale = locales[userProfile.lang ?? 'ja-JP'];
|
|
|
|
const i18n = new I18n(locale);
|
|
|
|
// TODO: render user information html
|
|
|
|
sendEmail(userProfile.email, i18n.t('_email._receiveFollowRequest.title'), `${follower.name} (@${Acct.toString(follower)})`, `${follower.name} (@${Acct.toString(follower)})`);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2023-05-29 04:21:26 +00:00
|
|
|
@bindThis
|
|
|
|
public dispose(): void {
|
2023-03-16 05:24:11 +00:00
|
|
|
this.#shutdownController.abort();
|
|
|
|
}
|
2023-05-29 04:21:26 +00:00
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public onApplicationShutdown(signal?: string | undefined): void {
|
|
|
|
this.dispose();
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|