diff options
author | Chocobozzz <me@florianbigard.com> | 2022-08-03 11:33:43 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-08-03 11:33:43 +0200 |
commit | 785f1897a42984ece9c6f65829d195d67e331d95 (patch) | |
tree | 1cb3b33cfc797b8f1abbab90749c1e3187bbd311 /server/lib/notifier/shared | |
parent | 0260dc8aca952f9412a8620e433b9e16e675696e (diff) | |
download | PeerTube-785f1897a42984ece9c6f65829d195d67e331d95.tar.gz PeerTube-785f1897a42984ece9c6f65829d195d67e331d95.tar.zst PeerTube-785f1897a42984ece9c6f65829d195d67e331d95.zip |
Add notification plugin hook
Diffstat (limited to 'server/lib/notifier/shared')
19 files changed, 37 insertions, 37 deletions
diff --git a/server/lib/notifier/shared/abuse/abstract-new-abuse-message.ts b/server/lib/notifier/shared/abuse/abstract-new-abuse-message.ts index a7292de69..1dc1ccfc2 100644 --- a/server/lib/notifier/shared/abuse/abstract-new-abuse-message.ts +++ b/server/lib/notifier/shared/abuse/abstract-new-abuse-message.ts | |||
@@ -21,8 +21,8 @@ export abstract class AbstractNewAbuseMessage extends AbstractNotification <NewA | |||
21 | return user.NotificationSetting.abuseNewMessage | 21 | return user.NotificationSetting.abuseNewMessage |
22 | } | 22 | } |
23 | 23 | ||
24 | async createNotification (user: MUserWithNotificationSetting) { | 24 | createNotification (user: MUserWithNotificationSetting) { |
25 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 25 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
26 | type: UserNotificationType.ABUSE_NEW_MESSAGE, | 26 | type: UserNotificationType.ABUSE_NEW_MESSAGE, |
27 | userId: user.id, | 27 | userId: user.id, |
28 | abuseId: this.abuse.id | 28 | abuseId: this.abuse.id |
diff --git a/server/lib/notifier/shared/abuse/abuse-state-change-for-reporter.ts b/server/lib/notifier/shared/abuse/abuse-state-change-for-reporter.ts index d92f7a13b..97e896c6a 100644 --- a/server/lib/notifier/shared/abuse/abuse-state-change-for-reporter.ts +++ b/server/lib/notifier/shared/abuse/abuse-state-change-for-reporter.ts | |||
@@ -32,8 +32,8 @@ export class AbuseStateChangeForReporter extends AbstractNotification <MAbuseFul | |||
32 | return [ this.user ] | 32 | return [ this.user ] |
33 | } | 33 | } |
34 | 34 | ||
35 | async createNotification (user: MUserWithNotificationSetting) { | 35 | createNotification (user: MUserWithNotificationSetting) { |
36 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 36 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
37 | type: UserNotificationType.ABUSE_STATE_CHANGE, | 37 | type: UserNotificationType.ABUSE_STATE_CHANGE, |
38 | userId: user.id, | 38 | userId: user.id, |
39 | abuseId: this.abuse.id | 39 | abuseId: this.abuse.id |
diff --git a/server/lib/notifier/shared/abuse/new-abuse-for-moderators.ts b/server/lib/notifier/shared/abuse/new-abuse-for-moderators.ts index c3c7c5515..7d86fb55f 100644 --- a/server/lib/notifier/shared/abuse/new-abuse-for-moderators.ts +++ b/server/lib/notifier/shared/abuse/new-abuse-for-moderators.ts | |||
@@ -28,8 +28,8 @@ export class NewAbuseForModerators extends AbstractNotification <NewAbusePayload | |||
28 | return this.moderators | 28 | return this.moderators |
29 | } | 29 | } |
30 | 30 | ||
31 | async createNotification (user: MUserWithNotificationSetting) { | 31 | createNotification (user: MUserWithNotificationSetting) { |
32 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 32 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
33 | type: UserNotificationType.NEW_ABUSE_FOR_MODERATORS, | 33 | type: UserNotificationType.NEW_ABUSE_FOR_MODERATORS, |
34 | userId: user.id, | 34 | userId: user.id, |
35 | abuseId: this.payload.abuseInstance.id | 35 | abuseId: this.payload.abuseInstance.id |
diff --git a/server/lib/notifier/shared/blacklist/new-auto-blacklist-for-moderators.ts b/server/lib/notifier/shared/blacklist/new-auto-blacklist-for-moderators.ts index a92a49a0c..ad2cc00ea 100644 --- a/server/lib/notifier/shared/blacklist/new-auto-blacklist-for-moderators.ts +++ b/server/lib/notifier/shared/blacklist/new-auto-blacklist-for-moderators.ts | |||
@@ -26,8 +26,8 @@ export class NewAutoBlacklistForModerators extends AbstractNotification <MVideoB | |||
26 | return this.moderators | 26 | return this.moderators |
27 | } | 27 | } |
28 | 28 | ||
29 | async createNotification (user: MUserWithNotificationSetting) { | 29 | createNotification (user: MUserWithNotificationSetting) { |
30 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 30 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
31 | type: UserNotificationType.VIDEO_AUTO_BLACKLIST_FOR_MODERATORS, | 31 | type: UserNotificationType.VIDEO_AUTO_BLACKLIST_FOR_MODERATORS, |
32 | userId: user.id, | 32 | userId: user.id, |
33 | videoBlacklistId: this.payload.id | 33 | videoBlacklistId: this.payload.id |
diff --git a/server/lib/notifier/shared/blacklist/new-blacklist-for-owner.ts b/server/lib/notifier/shared/blacklist/new-blacklist-for-owner.ts index 45bc30eb2..342b69ec7 100644 --- a/server/lib/notifier/shared/blacklist/new-blacklist-for-owner.ts +++ b/server/lib/notifier/shared/blacklist/new-blacklist-for-owner.ts | |||
@@ -28,8 +28,8 @@ export class NewBlacklistForOwner extends AbstractNotification <MVideoBlacklistV | |||
28 | return [ this.user ] | 28 | return [ this.user ] |
29 | } | 29 | } |
30 | 30 | ||
31 | async createNotification (user: MUserWithNotificationSetting) { | 31 | createNotification (user: MUserWithNotificationSetting) { |
32 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 32 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
33 | type: UserNotificationType.BLACKLIST_ON_MY_VIDEO, | 33 | type: UserNotificationType.BLACKLIST_ON_MY_VIDEO, |
34 | userId: user.id, | 34 | userId: user.id, |
35 | videoBlacklistId: this.payload.id | 35 | videoBlacklistId: this.payload.id |
diff --git a/server/lib/notifier/shared/blacklist/unblacklist-for-owner.ts b/server/lib/notifier/shared/blacklist/unblacklist-for-owner.ts index 21f5a1c2d..e6f90e23c 100644 --- a/server/lib/notifier/shared/blacklist/unblacklist-for-owner.ts +++ b/server/lib/notifier/shared/blacklist/unblacklist-for-owner.ts | |||
@@ -28,8 +28,8 @@ export class UnblacklistForOwner extends AbstractNotification <MVideoFullLight> | |||
28 | return [ this.user ] | 28 | return [ this.user ] |
29 | } | 29 | } |
30 | 30 | ||
31 | async createNotification (user: MUserWithNotificationSetting) { | 31 | createNotification (user: MUserWithNotificationSetting) { |
32 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 32 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
33 | type: UserNotificationType.UNBLACKLIST_ON_MY_VIDEO, | 33 | type: UserNotificationType.UNBLACKLIST_ON_MY_VIDEO, |
34 | userId: user.id, | 34 | userId: user.id, |
35 | videoId: this.payload.id | 35 | videoId: this.payload.id |
diff --git a/server/lib/notifier/shared/comment/comment-mention.ts b/server/lib/notifier/shared/comment/comment-mention.ts index ecd1687b4..3074e97db 100644 --- a/server/lib/notifier/shared/comment/comment-mention.ts +++ b/server/lib/notifier/shared/comment/comment-mention.ts | |||
@@ -71,8 +71,8 @@ export class CommentMention extends AbstractNotification <MCommentOwnerVideo, MU | |||
71 | return this.users | 71 | return this.users |
72 | } | 72 | } |
73 | 73 | ||
74 | async createNotification (user: MUserWithNotificationSetting) { | 74 | createNotification (user: MUserWithNotificationSetting) { |
75 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 75 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
76 | type: UserNotificationType.COMMENT_MENTION, | 76 | type: UserNotificationType.COMMENT_MENTION, |
77 | userId: user.id, | 77 | userId: user.id, |
78 | commentId: this.payload.id | 78 | commentId: this.payload.id |
diff --git a/server/lib/notifier/shared/comment/new-comment-for-video-owner.ts b/server/lib/notifier/shared/comment/new-comment-for-video-owner.ts index 757502703..4f96439a3 100644 --- a/server/lib/notifier/shared/comment/new-comment-for-video-owner.ts +++ b/server/lib/notifier/shared/comment/new-comment-for-video-owner.ts | |||
@@ -38,8 +38,8 @@ export class NewCommentForVideoOwner extends AbstractNotification <MCommentOwner | |||
38 | return [ this.user ] | 38 | return [ this.user ] |
39 | } | 39 | } |
40 | 40 | ||
41 | async createNotification (user: MUserWithNotificationSetting) { | 41 | createNotification (user: MUserWithNotificationSetting) { |
42 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 42 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
43 | type: UserNotificationType.NEW_COMMENT_ON_MY_VIDEO, | 43 | type: UserNotificationType.NEW_COMMENT_ON_MY_VIDEO, |
44 | userId: user.id, | 44 | userId: user.id, |
45 | commentId: this.payload.id | 45 | commentId: this.payload.id |
diff --git a/server/lib/notifier/shared/common/abstract-notification.ts b/server/lib/notifier/shared/common/abstract-notification.ts index 53e2e02d5..79403611e 100644 --- a/server/lib/notifier/shared/common/abstract-notification.ts +++ b/server/lib/notifier/shared/common/abstract-notification.ts | |||
@@ -13,7 +13,7 @@ export abstract class AbstractNotification <T, U = MUserWithNotificationSetting> | |||
13 | abstract getSetting (user: U): UserNotificationSettingValue | 13 | abstract getSetting (user: U): UserNotificationSettingValue |
14 | abstract getTargetUsers (): U[] | 14 | abstract getTargetUsers (): U[] |
15 | 15 | ||
16 | abstract createNotification (user: U): Promise<UserNotificationModelForApi> | 16 | abstract createNotification (user: U): UserNotificationModelForApi |
17 | abstract createEmail (to: string): EmailPayload | Promise<EmailPayload> | 17 | abstract createEmail (to: string): EmailPayload | Promise<EmailPayload> |
18 | 18 | ||
19 | isDisabled (): boolean | Promise<boolean> { | 19 | isDisabled (): boolean | Promise<boolean> { |
diff --git a/server/lib/notifier/shared/follow/auto-follow-for-instance.ts b/server/lib/notifier/shared/follow/auto-follow-for-instance.ts index 01d2b3563..ab9747ba8 100644 --- a/server/lib/notifier/shared/follow/auto-follow-for-instance.ts +++ b/server/lib/notifier/shared/follow/auto-follow-for-instance.ts | |||
@@ -24,8 +24,8 @@ export class AutoFollowForInstance extends AbstractNotification <MActorFollowFul | |||
24 | return this.admins | 24 | return this.admins |
25 | } | 25 | } |
26 | 26 | ||
27 | async createNotification (user: MUserWithNotificationSetting) { | 27 | createNotification (user: MUserWithNotificationSetting) { |
28 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 28 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
29 | type: UserNotificationType.AUTO_INSTANCE_FOLLOWING, | 29 | type: UserNotificationType.AUTO_INSTANCE_FOLLOWING, |
30 | userId: user.id, | 30 | userId: user.id, |
31 | actorFollowId: this.actorFollow.id | 31 | actorFollowId: this.actorFollow.id |
diff --git a/server/lib/notifier/shared/follow/follow-for-instance.ts b/server/lib/notifier/shared/follow/follow-for-instance.ts index a4a2fbf53..777a12ef4 100644 --- a/server/lib/notifier/shared/follow/follow-for-instance.ts +++ b/server/lib/notifier/shared/follow/follow-for-instance.ts | |||
@@ -32,8 +32,8 @@ export class FollowForInstance extends AbstractNotification <MActorFollowFull> { | |||
32 | return this.admins | 32 | return this.admins |
33 | } | 33 | } |
34 | 34 | ||
35 | async createNotification (user: MUserWithNotificationSetting) { | 35 | createNotification (user: MUserWithNotificationSetting) { |
36 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 36 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
37 | type: UserNotificationType.NEW_INSTANCE_FOLLOWER, | 37 | type: UserNotificationType.NEW_INSTANCE_FOLLOWER, |
38 | userId: user.id, | 38 | userId: user.id, |
39 | actorFollowId: this.actorFollow.id | 39 | actorFollowId: this.actorFollow.id |
diff --git a/server/lib/notifier/shared/follow/follow-for-user.ts b/server/lib/notifier/shared/follow/follow-for-user.ts index e579d4487..697c82cdd 100644 --- a/server/lib/notifier/shared/follow/follow-for-user.ts +++ b/server/lib/notifier/shared/follow/follow-for-user.ts | |||
@@ -45,8 +45,8 @@ export class FollowForUser extends AbstractNotification <MActorFollowFull> { | |||
45 | return [ this.user ] | 45 | return [ this.user ] |
46 | } | 46 | } |
47 | 47 | ||
48 | async createNotification (user: MUserWithNotificationSetting) { | 48 | createNotification (user: MUserWithNotificationSetting) { |
49 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 49 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
50 | type: UserNotificationType.NEW_FOLLOW, | 50 | type: UserNotificationType.NEW_FOLLOW, |
51 | userId: user.id, | 51 | userId: user.id, |
52 | actorFollowId: this.actorFollow.id | 52 | actorFollowId: this.actorFollow.id |
diff --git a/server/lib/notifier/shared/instance/new-peertube-version-for-admins.ts b/server/lib/notifier/shared/instance/new-peertube-version-for-admins.ts index 6b5ac808a..f5646c666 100644 --- a/server/lib/notifier/shared/instance/new-peertube-version-for-admins.ts +++ b/server/lib/notifier/shared/instance/new-peertube-version-for-admins.ts | |||
@@ -30,8 +30,8 @@ export class NewPeerTubeVersionForAdmins extends AbstractNotification <NewPeerTu | |||
30 | return this.admins | 30 | return this.admins |
31 | } | 31 | } |
32 | 32 | ||
33 | async createNotification (user: MUserWithNotificationSetting) { | 33 | createNotification (user: MUserWithNotificationSetting) { |
34 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 34 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
35 | type: UserNotificationType.NEW_PEERTUBE_VERSION, | 35 | type: UserNotificationType.NEW_PEERTUBE_VERSION, |
36 | userId: user.id, | 36 | userId: user.id, |
37 | applicationId: this.payload.application.id | 37 | applicationId: this.payload.application.id |
diff --git a/server/lib/notifier/shared/instance/new-plugin-version-for-admins.ts b/server/lib/notifier/shared/instance/new-plugin-version-for-admins.ts index 874b10a3d..547c6726c 100644 --- a/server/lib/notifier/shared/instance/new-plugin-version-for-admins.ts +++ b/server/lib/notifier/shared/instance/new-plugin-version-for-admins.ts | |||
@@ -26,8 +26,8 @@ export class NewPluginVersionForAdmins extends AbstractNotification <MPlugin> { | |||
26 | return this.admins | 26 | return this.admins |
27 | } | 27 | } |
28 | 28 | ||
29 | async createNotification (user: MUserWithNotificationSetting) { | 29 | createNotification (user: MUserWithNotificationSetting) { |
30 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 30 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
31 | type: UserNotificationType.NEW_PLUGIN_VERSION, | 31 | type: UserNotificationType.NEW_PLUGIN_VERSION, |
32 | userId: user.id, | 32 | userId: user.id, |
33 | pluginId: this.plugin.id | 33 | pluginId: this.plugin.id |
diff --git a/server/lib/notifier/shared/instance/registration-for-moderators.ts b/server/lib/notifier/shared/instance/registration-for-moderators.ts index 2a48ef2fa..e92467424 100644 --- a/server/lib/notifier/shared/instance/registration-for-moderators.ts +++ b/server/lib/notifier/shared/instance/registration-for-moderators.ts | |||
@@ -25,8 +25,8 @@ export class RegistrationForModerators extends AbstractNotification <MUserDefaul | |||
25 | return this.moderators | 25 | return this.moderators |
26 | } | 26 | } |
27 | 27 | ||
28 | async createNotification (user: MUserWithNotificationSetting) { | 28 | createNotification (user: MUserWithNotificationSetting) { |
29 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 29 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
30 | type: UserNotificationType.NEW_USER_REGISTRATION, | 30 | type: UserNotificationType.NEW_USER_REGISTRATION, |
31 | userId: user.id, | 31 | userId: user.id, |
32 | accountId: this.payload.Account.id | 32 | accountId: this.payload.Account.id |
diff --git a/server/lib/notifier/shared/video-publication/abstract-owned-video-publication.ts b/server/lib/notifier/shared/video-publication/abstract-owned-video-publication.ts index 37435f898..a940cde69 100644 --- a/server/lib/notifier/shared/video-publication/abstract-owned-video-publication.ts +++ b/server/lib/notifier/shared/video-publication/abstract-owned-video-publication.ts | |||
@@ -27,8 +27,8 @@ export abstract class AbstractOwnedVideoPublication extends AbstractNotification | |||
27 | return [ this.user ] | 27 | return [ this.user ] |
28 | } | 28 | } |
29 | 29 | ||
30 | async createNotification (user: MUserWithNotificationSetting) { | 30 | createNotification (user: MUserWithNotificationSetting) { |
31 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 31 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
32 | type: UserNotificationType.MY_VIDEO_PUBLISHED, | 32 | type: UserNotificationType.MY_VIDEO_PUBLISHED, |
33 | userId: user.id, | 33 | userId: user.id, |
34 | videoId: this.payload.id | 34 | videoId: this.payload.id |
diff --git a/server/lib/notifier/shared/video-publication/import-finished-for-owner.ts b/server/lib/notifier/shared/video-publication/import-finished-for-owner.ts index 9f374b6f9..3bd64692f 100644 --- a/server/lib/notifier/shared/video-publication/import-finished-for-owner.ts +++ b/server/lib/notifier/shared/video-publication/import-finished-for-owner.ts | |||
@@ -32,8 +32,8 @@ export class ImportFinishedForOwner extends AbstractNotification <ImportFinished | |||
32 | return [ this.user ] | 32 | return [ this.user ] |
33 | } | 33 | } |
34 | 34 | ||
35 | async createNotification (user: MUserWithNotificationSetting) { | 35 | createNotification (user: MUserWithNotificationSetting) { |
36 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 36 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
37 | type: this.payload.success | 37 | type: this.payload.success |
38 | ? UserNotificationType.MY_VIDEO_IMPORT_SUCCESS | 38 | ? UserNotificationType.MY_VIDEO_IMPORT_SUCCESS |
39 | : UserNotificationType.MY_VIDEO_IMPORT_ERROR, | 39 | : UserNotificationType.MY_VIDEO_IMPORT_ERROR, |
diff --git a/server/lib/notifier/shared/video-publication/new-video-for-subscribers.ts b/server/lib/notifier/shared/video-publication/new-video-for-subscribers.ts index 4253a0930..df7a5561d 100644 --- a/server/lib/notifier/shared/video-publication/new-video-for-subscribers.ts +++ b/server/lib/notifier/shared/video-publication/new-video-for-subscribers.ts | |||
@@ -30,8 +30,8 @@ export class NewVideoForSubscribers extends AbstractNotification <MVideoAccountL | |||
30 | return this.users | 30 | return this.users |
31 | } | 31 | } |
32 | 32 | ||
33 | async createNotification (user: MUserWithNotificationSetting) { | 33 | createNotification (user: MUserWithNotificationSetting) { |
34 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 34 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
35 | type: UserNotificationType.NEW_VIDEO_FROM_SUBSCRIPTION, | 35 | type: UserNotificationType.NEW_VIDEO_FROM_SUBSCRIPTION, |
36 | userId: user.id, | 36 | userId: user.id, |
37 | videoId: this.payload.id | 37 | videoId: this.payload.id |
diff --git a/server/lib/notifier/shared/video-publication/studio-edition-finished-for-owner.ts b/server/lib/notifier/shared/video-publication/studio-edition-finished-for-owner.ts index ee3027245..f36399f05 100644 --- a/server/lib/notifier/shared/video-publication/studio-edition-finished-for-owner.ts +++ b/server/lib/notifier/shared/video-publication/studio-edition-finished-for-owner.ts | |||
@@ -27,8 +27,8 @@ export class StudioEditionFinishedForOwner extends AbstractNotification <MVideoF | |||
27 | return [ this.user ] | 27 | return [ this.user ] |
28 | } | 28 | } |
29 | 29 | ||
30 | async createNotification (user: MUserWithNotificationSetting) { | 30 | createNotification (user: MUserWithNotificationSetting) { |
31 | const notification = await UserNotificationModel.create<UserNotificationModelForApi>({ | 31 | const notification = UserNotificationModel.build<UserNotificationModelForApi>({ |
32 | type: UserNotificationType.MY_VIDEO_STUDIO_EDITION_FINISHED, | 32 | type: UserNotificationType.MY_VIDEO_STUDIO_EDITION_FINISHED, |
33 | userId: user.id, | 33 | userId: user.id, |
34 | videoId: this.payload.id | 34 | videoId: this.payload.id |