diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-22 17:06:26 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-05-29 09:32:20 +0200 |
commit | 696d83fd1377486dd03cc1bd02a21d9b6ddd9fcd (patch) | |
tree | e1b88451c4357add80721f530993e2b48d197feb /server/lib | |
parent | 72c33e716fecd1826dcf645957f8669821f91ff3 (diff) | |
download | PeerTube-696d83fd1377486dd03cc1bd02a21d9b6ddd9fcd.tar.gz PeerTube-696d83fd1377486dd03cc1bd02a21d9b6ddd9fcd.tar.zst PeerTube-696d83fd1377486dd03cc1bd02a21d9b6ddd9fcd.zip |
Block comments from muted accounts/servers
Add better control for users of comments displayed on their videos:
* Do not forward comments from muted remote accounts/servers (muted by the current server or by the video owner)
* Do not list threads and hide replies (with their children) of accounts/servers muted by the video owner
* Hide from RSS comments of muted accounts/servers by video owners
Use case:
* Try to limit spam propagation in the federation
* Add ability for users to automatically hide comments on their videos from undesirable accounts/servers (the comment section belongs to videomakers, so they choose what's posted there)
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/activitypub/process/process-create.ts | 23 | ||||
-rw-r--r-- | server/lib/blocklist.ts | 25 | ||||
-rw-r--r-- | server/lib/notifier.ts | 55 |
3 files changed, 63 insertions, 40 deletions
diff --git a/server/lib/activitypub/process/process-create.ts b/server/lib/activitypub/process/process-create.ts index 566bf6992..f8f9b80c6 100644 --- a/server/lib/activitypub/process/process-create.ts +++ b/server/lib/activitypub/process/process-create.ts | |||
@@ -1,18 +1,19 @@ | |||
1 | import { isRedundancyAccepted } from '@server/lib/redundancy' | ||
1 | import { ActivityCreate, CacheFileObject, VideoTorrentObject } from '../../../../shared' | 2 | import { ActivityCreate, CacheFileObject, VideoTorrentObject } from '../../../../shared' |
3 | import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object' | ||
2 | import { VideoCommentObject } from '../../../../shared/models/activitypub/objects/video-comment-object' | 4 | import { VideoCommentObject } from '../../../../shared/models/activitypub/objects/video-comment-object' |
3 | import { retryTransactionWrapper } from '../../../helpers/database-utils' | 5 | import { retryTransactionWrapper } from '../../../helpers/database-utils' |
4 | import { logger } from '../../../helpers/logger' | 6 | import { logger } from '../../../helpers/logger' |
5 | import { sequelizeTypescript } from '../../../initializers/database' | 7 | import { sequelizeTypescript } from '../../../initializers/database' |
6 | import { resolveThread } from '../video-comments' | ||
7 | import { getOrCreateVideoAndAccountAndChannel } from '../videos' | ||
8 | import { forwardVideoRelatedActivity } from '../send/utils' | ||
9 | import { createOrUpdateCacheFile } from '../cache-file' | ||
10 | import { Notifier } from '../../notifier' | ||
11 | import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object' | ||
12 | import { createOrUpdateVideoPlaylist } from '../playlist' | ||
13 | import { APProcessorOptions } from '../../../typings/activitypub-processor.model' | 8 | import { APProcessorOptions } from '../../../typings/activitypub-processor.model' |
14 | import { MActorSignature, MCommentOwnerVideo, MVideoAccountLightBlacklistAllFiles } from '../../../typings/models' | 9 | import { MActorSignature, MCommentOwnerVideo, MVideoAccountLightBlacklistAllFiles } from '../../../typings/models' |
15 | import { isRedundancyAccepted } from '@server/lib/redundancy' | 10 | import { Notifier } from '../../notifier' |
11 | import { createOrUpdateCacheFile } from '../cache-file' | ||
12 | import { createOrUpdateVideoPlaylist } from '../playlist' | ||
13 | import { forwardVideoRelatedActivity } from '../send/utils' | ||
14 | import { resolveThread } from '../video-comments' | ||
15 | import { getOrCreateVideoAndAccountAndChannel } from '../videos' | ||
16 | import { isBlockedByServerOrAccount } from '@server/lib/blocklist' | ||
16 | 17 | ||
17 | async function processCreateActivity (options: APProcessorOptions<ActivityCreate>) { | 18 | async function processCreateActivity (options: APProcessorOptions<ActivityCreate>) { |
18 | const { activity, byActor } = options | 19 | const { activity, byActor } = options |
@@ -101,6 +102,12 @@ async function processCreateVideoComment (activity: ActivityCreate, byActor: MAc | |||
101 | return | 102 | return |
102 | } | 103 | } |
103 | 104 | ||
105 | // Try to not forward unwanted commments on our videos | ||
106 | if (video.isOwned() && await isBlockedByServerOrAccount(comment.Account, video.VideoChannel.Account)) { | ||
107 | logger.info('Skip comment forward from blocked account or server %s.', comment.Account.Actor.url) | ||
108 | return | ||
109 | } | ||
110 | |||
104 | if (video.isOwned() && created === true) { | 111 | if (video.isOwned() && created === true) { |
105 | // Don't resend the activity to the sender | 112 | // Don't resend the activity to the sender |
106 | const exceptions = [ byActor ] | 113 | const exceptions = [ byActor ] |
diff --git a/server/lib/blocklist.ts b/server/lib/blocklist.ts index 842eecb5b..d282d091b 100644 --- a/server/lib/blocklist.ts +++ b/server/lib/blocklist.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { sequelizeTypescript } from '@server/initializers/database' | 1 | import { sequelizeTypescript } from '@server/initializers/database' |
2 | import { MAccountBlocklist, MServerBlocklist } from '@server/typings/models' | 2 | import { getServerActor } from '@server/models/application/application' |
3 | import { MAccountBlocklist, MAccountId, MAccountServer, MServerBlocklist } from '@server/typings/models' | ||
3 | import { AccountBlocklistModel } from '../models/account/account-blocklist' | 4 | import { AccountBlocklistModel } from '../models/account/account-blocklist' |
4 | import { ServerBlocklistModel } from '../models/server/server-blocklist' | 5 | import { ServerBlocklistModel } from '../models/server/server-blocklist' |
5 | 6 | ||
@@ -33,9 +34,29 @@ function removeServerFromBlocklist (serverBlock: MServerBlocklist) { | |||
33 | }) | 34 | }) |
34 | } | 35 | } |
35 | 36 | ||
37 | async function isBlockedByServerOrAccount (targetAccount: MAccountServer, userAccount?: MAccountId) { | ||
38 | const serverAccountId = (await getServerActor()).Account.id | ||
39 | const sourceAccounts = [ serverAccountId ] | ||
40 | |||
41 | if (userAccount) sourceAccounts.push(userAccount.id) | ||
42 | |||
43 | const accountMutedHash = await AccountBlocklistModel.isAccountMutedByMulti(sourceAccounts, targetAccount.id) | ||
44 | if (accountMutedHash[serverAccountId] || (userAccount && accountMutedHash[userAccount.id])) { | ||
45 | return true | ||
46 | } | ||
47 | |||
48 | const instanceMutedHash = await ServerBlocklistModel.isServerMutedByMulti(sourceAccounts, targetAccount.Actor.serverId) | ||
49 | if (instanceMutedHash[serverAccountId] || (userAccount && instanceMutedHash[userAccount.id])) { | ||
50 | return true | ||
51 | } | ||
52 | |||
53 | return false | ||
54 | } | ||
55 | |||
36 | export { | 56 | export { |
37 | addAccountInBlocklist, | 57 | addAccountInBlocklist, |
38 | addServerInBlocklist, | 58 | addServerInBlocklist, |
39 | removeAccountFromBlocklist, | 59 | removeAccountFromBlocklist, |
40 | removeServerFromBlocklist | 60 | removeServerFromBlocklist, |
61 | isBlockedByServerOrAccount | ||
41 | } | 62 | } |
diff --git a/server/lib/notifier.ts b/server/lib/notifier.ts index 017739523..89f91e031 100644 --- a/server/lib/notifier.ts +++ b/server/lib/notifier.ts | |||
@@ -1,12 +1,22 @@ | |||
1 | import { getServerActor } from '@server/models/application/application' | ||
2 | import { ServerBlocklistModel } from '@server/models/server/server-blocklist' | ||
3 | import { | ||
4 | MUser, | ||
5 | MUserAccount, | ||
6 | MUserDefault, | ||
7 | MUserNotifSettingAccount, | ||
8 | MUserWithNotificationSetting, | ||
9 | UserNotificationModelForApi | ||
10 | } from '@server/typings/models/user' | ||
11 | import { MVideoImportVideo } from '@server/typings/models/video/video-import' | ||
1 | import { UserNotificationSettingValue, UserNotificationType, UserRight } from '../../shared/models/users' | 12 | import { UserNotificationSettingValue, UserNotificationType, UserRight } from '../../shared/models/users' |
13 | import { VideoAbuse, VideoPrivacy, VideoState } from '../../shared/models/videos' | ||
2 | import { logger } from '../helpers/logger' | 14 | import { logger } from '../helpers/logger' |
3 | import { Emailer } from './emailer' | ||
4 | import { UserNotificationModel } from '../models/account/user-notification' | ||
5 | import { UserModel } from '../models/account/user' | ||
6 | import { PeerTubeSocket } from './peertube-socket' | ||
7 | import { CONFIG } from '../initializers/config' | 15 | import { CONFIG } from '../initializers/config' |
8 | import { VideoPrivacy, VideoState, VideoAbuse } from '../../shared/models/videos' | ||
9 | import { AccountBlocklistModel } from '../models/account/account-blocklist' | 16 | import { AccountBlocklistModel } from '../models/account/account-blocklist' |
17 | import { UserModel } from '../models/account/user' | ||
18 | import { UserNotificationModel } from '../models/account/user-notification' | ||
19 | import { MAccountServer, MActorFollowFull } from '../typings/models' | ||
10 | import { | 20 | import { |
11 | MCommentOwnerVideo, | 21 | MCommentOwnerVideo, |
12 | MVideoAbuseVideo, | 22 | MVideoAbuseVideo, |
@@ -15,18 +25,9 @@ import { | |||
15 | MVideoBlacklistVideo, | 25 | MVideoBlacklistVideo, |
16 | MVideoFullLight | 26 | MVideoFullLight |
17 | } from '../typings/models/video' | 27 | } from '../typings/models/video' |
18 | import { | 28 | import { isBlockedByServerOrAccount } from './blocklist' |
19 | MUser, | 29 | import { Emailer } from './emailer' |
20 | MUserAccount, | 30 | import { PeerTubeSocket } from './peertube-socket' |
21 | MUserDefault, | ||
22 | MUserNotifSettingAccount, | ||
23 | MUserWithNotificationSetting, | ||
24 | UserNotificationModelForApi | ||
25 | } from '@server/typings/models/user' | ||
26 | import { MAccountDefault, MActorFollowFull } from '../typings/models' | ||
27 | import { MVideoImportVideo } from '@server/typings/models/video/video-import' | ||
28 | import { ServerBlocklistModel } from '@server/models/server/server-blocklist' | ||
29 | import { getServerActor } from '@server/models/application/application' | ||
30 | 31 | ||
31 | class Notifier { | 32 | class Notifier { |
32 | 33 | ||
@@ -169,7 +170,7 @@ class Notifier { | |||
169 | // Not our user or user comments its own video | 170 | // Not our user or user comments its own video |
170 | if (!user || comment.Account.userId === user.id) return | 171 | if (!user || comment.Account.userId === user.id) return |
171 | 172 | ||
172 | if (await this.isBlockedByServerOrAccount(user, comment.Account)) return | 173 | if (await this.isBlockedByServerOrUser(comment.Account, user)) return |
173 | 174 | ||
174 | logger.info('Notifying user %s of new comment %s.', user.username, comment.url) | 175 | logger.info('Notifying user %s of new comment %s.', user.username, comment.url) |
175 | 176 | ||
@@ -270,7 +271,7 @@ class Notifier { | |||
270 | const followerAccount = actorFollow.ActorFollower.Account | 271 | const followerAccount = actorFollow.ActorFollower.Account |
271 | const followerAccountWithActor = Object.assign(followerAccount, { Actor: actorFollow.ActorFollower }) | 272 | const followerAccountWithActor = Object.assign(followerAccount, { Actor: actorFollow.ActorFollower }) |
272 | 273 | ||
273 | if (await this.isBlockedByServerOrAccount(user, followerAccountWithActor)) return | 274 | if (await this.isBlockedByServerOrUser(followerAccountWithActor, user)) return |
274 | 275 | ||
275 | logger.info('Notifying user %s of new follower: %s.', user.username, followerAccount.getDisplayName()) | 276 | logger.info('Notifying user %s of new follower: %s.', user.username, followerAccount.getDisplayName()) |
276 | 277 | ||
@@ -299,6 +300,9 @@ class Notifier { | |||
299 | private async notifyAdminsOfNewInstanceFollow (actorFollow: MActorFollowFull) { | 300 | private async notifyAdminsOfNewInstanceFollow (actorFollow: MActorFollowFull) { |
300 | const admins = await UserModel.listWithRight(UserRight.MANAGE_SERVER_FOLLOW) | 301 | const admins = await UserModel.listWithRight(UserRight.MANAGE_SERVER_FOLLOW) |
301 | 302 | ||
303 | const follower = Object.assign(actorFollow.ActorFollower.Account, { Actor: actorFollow.ActorFollower }) | ||
304 | if (await this.isBlockedByServerOrUser(follower)) return | ||
305 | |||
302 | logger.info('Notifying %d administrators of new instance follower: %s.', admins.length, actorFollow.ActorFollower.url) | 306 | logger.info('Notifying %d administrators of new instance follower: %s.', admins.length, actorFollow.ActorFollower.url) |
303 | 307 | ||
304 | function settingGetter (user: MUserWithNotificationSetting) { | 308 | function settingGetter (user: MUserWithNotificationSetting) { |
@@ -590,17 +594,8 @@ class Notifier { | |||
590 | return value & UserNotificationSettingValue.WEB | 594 | return value & UserNotificationSettingValue.WEB |
591 | } | 595 | } |
592 | 596 | ||
593 | private async isBlockedByServerOrAccount (user: MUserAccount, targetAccount: MAccountDefault) { | 597 | private isBlockedByServerOrUser (targetAccount: MAccountServer, user?: MUserAccount) { |
594 | const serverAccountId = (await getServerActor()).Account.id | 598 | return isBlockedByServerOrAccount(targetAccount, user?.Account) |
595 | const sourceAccounts = [ serverAccountId, user.Account.id ] | ||
596 | |||
597 | const accountMutedHash = await AccountBlocklistModel.isAccountMutedByMulti(sourceAccounts, targetAccount.id) | ||
598 | if (accountMutedHash[serverAccountId] || accountMutedHash[user.Account.id]) return true | ||
599 | |||
600 | const instanceMutedHash = await ServerBlocklistModel.isServerMutedByMulti(sourceAccounts, targetAccount.Actor.serverId) | ||
601 | if (instanceMutedHash[serverAccountId] || instanceMutedHash[user.Account.id]) return true | ||
602 | |||
603 | return false | ||
604 | } | 599 | } |
605 | 600 | ||
606 | static get Instance () { | 601 | static get Instance () { |