X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fnotifier.ts;h=1f9ff16df2bbc6ef23c23faa1050fd0fb40a2d0f;hb=868fce62f86812759ccedccf7634236ac3701d9a;hp=c567e1c200f945c4e604385854b2e5a2488b599a;hpb=2291a412d25bd139398ca9e7a5131d0c1e4ffd7d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/notifier.ts b/server/lib/notifier.ts index c567e1c20..1f9ff16df 100644 --- a/server/lib/notifier.ts +++ b/server/lib/notifier.ts @@ -1,3 +1,4 @@ +import { AccountModel } from '@server/models/account/account' import { getServerActor } from '@server/models/application/application' import { ServerBlocklistModel } from '@server/models/server/server-blocklist' import { @@ -10,15 +11,15 @@ import { } from '@server/types/models/user' import { MVideoBlacklistLightVideo, MVideoBlacklistVideo } from '@server/types/models/video/video-blacklist' import { MVideoImportVideo } from '@server/types/models/video/video-import' -import { Abuse } from '@shared/models' +import { UserAbuse } from '@shared/models' import { UserNotificationSettingValue, UserNotificationType, UserRight } from '../../shared/models/users' import { VideoPrivacy, VideoState } from '../../shared/models/videos' import { logger } from '../helpers/logger' import { CONFIG } from '../initializers/config' import { AccountBlocklistModel } from '../models/account/account-blocklist' -import { UserModel } from '../models/account/user' -import { UserNotificationModel } from '../models/account/user-notification' -import { MAbuseFull, MAccountServer, MActorFollowFull } from '../types/models' +import { UserModel } from '../models/user/user' +import { UserNotificationModel } from '../models/user/user-notification' +import { MAbuseFull, MAbuseMessage, MAccountServer, MActorFollowFull, MApplication, MPlugin } from '../types/models' import { MCommentOwnerVideo, MVideoAccountLight, MVideoFullLight } from '../types/models/video' import { isBlockedByServerOrAccount } from './blocklist' import { Emailer } from './emailer' @@ -73,7 +74,7 @@ class Notifier { .catch(err => logger.error('Cannot notify mentions of comment %s.', comment.url, { err })) } - notifyOnNewAbuse (parameters: { abuse: Abuse, abuseInstance: MAbuseFull, reporter: string }): void { + notifyOnNewAbuse (parameters: { abuse: UserAbuse, abuseInstance: MAbuseFull, reporter: string }): void { this.notifyModeratorsOfNewAbuse(parameters) .catch(err => logger.error('Cannot notify of new abuse %d.', parameters.abuseInstance.id, { err })) } @@ -129,6 +130,34 @@ class Notifier { }) } + notifyOnAbuseStateChange (abuse: MAbuseFull): void { + this.notifyReporterOfAbuseStateChange(abuse) + .catch(err => { + logger.error('Cannot notify reporter of abuse %d state change.', abuse.id, { err }) + }) + } + + notifyOnAbuseMessage (abuse: MAbuseFull, message: MAbuseMessage): void { + this.notifyOfNewAbuseMessage(abuse, message) + .catch(err => { + logger.error('Cannot notify on new abuse %d message.', abuse.id, { err }) + }) + } + + notifyOfNewPeerTubeVersion (application: MApplication, latestVersion: string) { + this.notifyAdminsOfNewPeerTubeVersion(application, latestVersion) + .catch(err => { + logger.error('Cannot notify on new PeerTubeb version %s.', latestVersion, { err }) + }) + } + + notifyOfNewPluginVersion (plugin: MPlugin) { + this.notifyAdminsOfNewPluginVersion(plugin) + .catch(err => { + logger.error('Cannot notify on new plugin version %s.', plugin.name, { err }) + }) + } + private async notifySubscribersOfNewVideo (video: MVideoAccountLight) { // List all followers that are users const users = await UserModel.listUserSubscribersOf(video.VideoChannel.actorId) @@ -350,7 +379,7 @@ class Notifier { } private async notifyModeratorsOfNewAbuse (parameters: { - abuse: Abuse + abuse: UserAbuse abuseInstance: MAbuseFull reporter: string }) { @@ -359,9 +388,7 @@ class Notifier { const moderators = await UserModel.listWithRight(UserRight.MANAGE_ABUSES) if (moderators.length === 0) return - const url = abuseInstance.VideoAbuse?.Video?.url || - abuseInstance.VideoCommentAbuse?.VideoComment?.url || - abuseInstance.FlaggedAccount.Actor.url + const url = this.getAbuseUrl(abuseInstance) logger.info('Notifying %s user/moderators of new abuse %s.', moderators.length, url) @@ -387,6 +414,100 @@ class Notifier { return this.notify({ users: moderators, settingGetter, notificationCreator, emailSender }) } + private async notifyReporterOfAbuseStateChange (abuse: MAbuseFull) { + // Only notify our users + if (abuse.ReporterAccount.isOwned() !== true) return + + const url = this.getAbuseUrl(abuse) + + logger.info('Notifying reporter of abuse % of state change.', url) + + const reporter = await UserModel.loadByAccountActorId(abuse.ReporterAccount.actorId) + + function settingGetter (user: MUserWithNotificationSetting) { + return user.NotificationSetting.abuseStateChange + } + + async function notificationCreator (user: MUserWithNotificationSetting) { + const notification = await UserNotificationModel.create({ + type: UserNotificationType.ABUSE_STATE_CHANGE, + userId: user.id, + abuseId: abuse.id + }) + notification.Abuse = abuse + + return notification + } + + function emailSender (emails: string[]) { + return Emailer.Instance.addAbuseStateChangeNotification(emails, abuse) + } + + return this.notify({ users: [ reporter ], settingGetter, notificationCreator, emailSender }) + } + + private async notifyOfNewAbuseMessage (abuse: MAbuseFull, message: MAbuseMessage) { + const url = this.getAbuseUrl(abuse) + logger.info('Notifying reporter and moderators of new abuse message on %s.', url) + + const accountMessage = await AccountModel.load(message.accountId) + + function settingGetter (user: MUserWithNotificationSetting) { + return user.NotificationSetting.abuseNewMessage + } + + async function notificationCreator (user: MUserWithNotificationSetting) { + const notification = await UserNotificationModel.create({ + type: UserNotificationType.ABUSE_NEW_MESSAGE, + userId: user.id, + abuseId: abuse.id + }) + notification.Abuse = abuse + + return notification + } + + function emailSenderReporter (emails: string[]) { + return Emailer.Instance.addAbuseNewMessageNotification(emails, { target: 'reporter', abuse, message, accountMessage }) + } + + function emailSenderModerators (emails: string[]) { + return Emailer.Instance.addAbuseNewMessageNotification(emails, { target: 'moderator', abuse, message, accountMessage }) + } + + async function buildReporterOptions () { + // Only notify our users + if (abuse.ReporterAccount.isOwned() !== true) return undefined + + const reporter = await UserModel.loadByAccountActorId(abuse.ReporterAccount.actorId) + // Don't notify my own message + if (reporter.Account.id === message.accountId) return undefined + + return { users: [ reporter ], settingGetter, notificationCreator, emailSender: emailSenderReporter } + } + + async function buildModeratorsOptions () { + let moderators = await UserModel.listWithRight(UserRight.MANAGE_ABUSES) + // Don't notify my own message + moderators = moderators.filter(m => m.Account.id !== message.accountId) + + if (moderators.length === 0) return undefined + + return { users: moderators, settingGetter, notificationCreator, emailSender: emailSenderModerators } + } + + const options = await Promise.all([ + buildReporterOptions(), + buildModeratorsOptions() + ]) + + return Promise.all( + options + .filter(opt => !!opt) + .map(opt => this.notify(opt)) + ) + } + private async notifyModeratorsOfVideoAutoBlacklist (videoBlacklist: MVideoBlacklistLightVideo) { const moderators = await UserModel.listWithRight(UserRight.MANAGE_VIDEO_BLACKLIST) if (moderators.length === 0) return @@ -560,6 +681,64 @@ class Notifier { return this.notify({ users: moderators, settingGetter, notificationCreator, emailSender }) } + private async notifyAdminsOfNewPeerTubeVersion (application: MApplication, latestVersion: string) { + // Use the debug right to know who is an administrator + const admins = await UserModel.listWithRight(UserRight.MANAGE_DEBUG) + if (admins.length === 0) return + + logger.info('Notifying %s admins of new PeerTube version %s.', admins.length, latestVersion) + + function settingGetter (user: MUserWithNotificationSetting) { + return user.NotificationSetting.newPeerTubeVersion + } + + async function notificationCreator (user: MUserWithNotificationSetting) { + const notification = await UserNotificationModel.create({ + type: UserNotificationType.NEW_PEERTUBE_VERSION, + userId: user.id, + applicationId: application.id + }) + notification.Application = application + + return notification + } + + function emailSender (emails: string[]) { + return Emailer.Instance.addNewPeerTubeVersionNotification(emails, latestVersion) + } + + return this.notify({ users: admins, settingGetter, notificationCreator, emailSender }) + } + + private async notifyAdminsOfNewPluginVersion (plugin: MPlugin) { + // Use the debug right to know who is an administrator + const admins = await UserModel.listWithRight(UserRight.MANAGE_DEBUG) + if (admins.length === 0) return + + logger.info('Notifying %s admins of new plugin version %s@%s.', admins.length, plugin.name, plugin.latestVersion) + + function settingGetter (user: MUserWithNotificationSetting) { + return user.NotificationSetting.newPluginVersion + } + + async function notificationCreator (user: MUserWithNotificationSetting) { + const notification = await UserNotificationModel.create({ + type: UserNotificationType.NEW_PLUGIN_VERSION, + userId: user.id, + pluginId: plugin.id + }) + notification.Plugin = plugin + + return notification + } + + function emailSender (emails: string[]) { + return Emailer.Instance.addNewPlugionVersionNotification(emails, plugin) + } + + return this.notify({ users: admins, settingGetter, notificationCreator, emailSender }) + } + private async notify (options: { users: T[] notificationCreator: (user: T) => Promise @@ -599,6 +778,12 @@ class Notifier { return isBlockedByServerOrAccount(targetAccount, user?.Account) } + private getAbuseUrl (abuse: MAbuseFull) { + return abuse.VideoAbuse?.Video?.url || + abuse.VideoCommentAbuse?.VideoComment?.url || + abuse.FlaggedAccount.Actor.url + } + static get Instance () { return this.instance || (this.instance = new this()) }