Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
4fb0aae6
Unverified
Commit
4fb0aae6
authored
2 years ago
by
Claire
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Change mentions of blocked users to not be processed (#19725)
Fixes #19698
parent
20aa8881
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/services/process_mentions_service.rb
+10
-0
10 additions, 0 deletions
app/services/process_mentions_service.rb
spec/services/process_mentions_service_spec.rb
+64
-36
64 additions, 36 deletions
spec/services/process_mentions_service_spec.rb
with
74 additions
and
36 deletions
app/services/process_mentions_service.rb
+
10
−
0
View file @
4fb0aae6
...
...
@@ -66,6 +66,16 @@ class ProcessMentionsService < BaseService
end
def
assign_mentions!
# Make sure we never mention blocked accounts
unless
@current_mentions
.
empty?
mentioned_domains
=
@current_mentions
.
map
{
|
m
|
m
.
account
.
domain
}.
compact
.
uniq
blocked_domains
=
Set
.
new
(
mentioned_domains
.
empty?
?
[]
:
AccountDomainBlock
.
where
(
account_id:
@status
.
account_id
,
domain:
mentioned_domains
))
mentioned_account_ids
=
@current_mentions
.
map
(
&
:account_id
)
blocked_account_ids
=
Set
.
new
(
@status
.
account
.
block_relationships
.
where
(
target_account_id:
mentioned_account_ids
).
pluck
(
:target_account_id
))
@current_mentions
.
select!
{
|
mention
|
!
(
blocked_account_ids
.
include?
(
mention
.
account_id
)
||
blocked_domains
.
include?
(
mention
.
account
.
domain
))
}
end
@current_mentions
.
each
do
|
mention
|
mention
.
save
if
mention
.
new_record?
end
...
...
This diff is collapsed.
Click to expand it.
spec/services/process_mentions_service_spec.rb
+
64
−
36
View file @
4fb0aae6
require
'rails_helper'
RSpec
.
describe
ProcessMentionsService
,
type: :service
do
let
(
:account
)
{
Fabricate
(
:account
,
username:
'alice'
)
}
let
(
:visibility
)
{
:public
}
let
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @
#{
remote_user
.
acct
}
"
,
visibility:
visibility
)
}
let
(
:account
)
{
Fabricate
(
:account
,
username:
'alice'
)
}
subject
{
ProcessMentionsService
.
new
}
context
'ActivityPub'
do
context
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'remote_user'
,
protocol: :activitypub
,
domain:
'example.com'
,
inbox_url:
'http://example.com/inbox'
)
}
context
'when mentions contain blocked accounts'
do
let
(
:non_blocked_account
)
{
Fabricate
(
:account
)
}
let
(
:individually_blocked_account
)
{
Fabricate
(
:account
)
}
let
(
:domain_blocked_account
)
{
Fabricate
(
:account
,
domain:
'evil.com'
)
}
let
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @
#{
non_blocked_account
.
acct
}
@
#{
individually_blocked_account
.
acct
}
@
#{
domain_blocked_account
.
acct
}
"
,
visibility: :public
)
}
before
do
subject
.
call
(
status
)
end
before
do
account
.
block!
(
individually_blocked_account
)
account
.
domain_blocks
.
create!
(
domain:
domain_blocked_account
.
domain
)
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
subject
.
call
(
status
)
end
it
'creates a mention to the non-blocked account'
do
expect
(
non_blocked_account
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
context
'with an IDN domain
'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'sneak'
,
protocol: :activitypub
,
domain:
'xn--hresiar-mxa.ch'
,
inbox_url:
'http://example.com/inbox'
)
}
let!
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @sneak@hæresiar.ch"
)
}
it
'does not create a mention to the individually blocked account
'
do
expect
(
individually_blocked_account
.
mentions
.
where
(
status:
status
).
count
).
to
eq
0
end
before
do
subject
.
call
(
status
)
it
'does not create a mention to the domain-blocked account'
do
expect
(
domain_blocked_account
.
mentions
.
where
(
status:
status
).
count
).
to
eq
0
end
end
context
'resolving a mention to a remote account'
do
let
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @
#{
remote_user
.
acct
}
"
,
visibility: :public
)
}
context
'ActivityPub'
do
context
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'remote_user'
,
protocol: :activitypub
,
domain:
'example.com'
,
inbox_url:
'http://example.com/inbox'
)
}
before
do
subject
.
call
(
status
)
end
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
end
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
context
'with an IDN domain'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'sneak'
,
protocol: :activitypub
,
domain:
'xn--hresiar-mxa.ch'
,
inbox_url:
'http://example.com/inbox'
)
}
let!
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @sneak@hæresiar.ch"
)
}
before
do
subject
.
call
(
status
)
end
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
end
context
'with an IDN TLD'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'foo'
,
protocol: :activitypub
,
domain:
'xn--y9a3aq.xn--y9a3aq'
,
inbox_url:
'http://example.com/inbox'
)
}
let!
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @foo@հայ.հայ"
)
}
before
do
subject
.
call
(
status
)
end
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
end
end
context
'with an IDN TLD'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'foo'
,
protocol: :activitypub
,
domain:
'xn--y9a3aq.xn--y9a3aq'
,
inbox_url:
'http://example.com/inbox'
)
}
let!
(
:status
)
{
Fabricate
(
:status
,
account:
account
,
text:
"Hello @foo@հայ.հայ"
)
}
context
'Temporarily-unreachable ActivityPub user'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'remote_user'
,
protocol: :activitypub
,
domain:
'example.com'
,
inbox_url:
'http://example.com/inbox'
,
last_webfingered_at:
nil
)
}
before
do
stub_request
(
:get
,
"https://example.com/.well-known/host-meta"
).
to_return
(
status:
404
)
stub_request
(
:get
,
"https://example.com/.well-known/webfinger?resource=acct:remote_user@example.com"
).
to_return
(
status:
500
)
subject
.
call
(
status
)
end
...
...
@@ -46,18 +88,4 @@ RSpec.describe ProcessMentionsService, type: :service do
end
end
end
context
'Temporarily-unreachable ActivityPub user'
do
let!
(
:remote_user
)
{
Fabricate
(
:account
,
username:
'remote_user'
,
protocol: :activitypub
,
domain:
'example.com'
,
inbox_url:
'http://example.com/inbox'
,
last_webfingered_at:
nil
)
}
before
do
stub_request
(
:get
,
"https://example.com/.well-known/host-meta"
).
to_return
(
status:
404
)
stub_request
(
:get
,
"https://example.com/.well-known/webfinger?resource=acct:remote_user@example.com"
).
to_return
(
status:
500
)
subject
.
call
(
status
)
end
it
'creates a mention'
do
expect
(
remote_user
.
mentions
.
where
(
status:
status
).
count
).
to
eq
1
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment