This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix resolving accounts sometimes creating duplicate records for a giv…
…en AP id (mastodon#15364) * Fix ResolveAccountService accepting mismatching acct: URI * Set attributes that should be updated regardless of suspension * Fix key fetching * Automatically merge remote accounts with duplicate `uri` * Add tests * Add "tootctl accounts fix-duplicates" Finds duplicate accounts sharing a same ActivityPub `id`, re-fetch them and merge them under the canonical `acct:` URI. Co-authored-by: Claire <[email protected]>
- Loading branch information
1 parent
0522495
commit a60d933
Showing
6 changed files
with
116 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# frozen_string_literal: true | ||
|
||
class AccountMergingWorker | ||
include Sidekiq::Worker | ||
|
||
sidekiq_options queue: 'pull' | ||
|
||
def perform(account_id) | ||
account = Account.find(account_id) | ||
|
||
return true if account.nil? || account.local? | ||
|
||
Account.where(uri: account.uri).where.not(id: account.id).find_each do |duplicate| | ||
account.merge_with!(duplicate) | ||
duplicate.destroy | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,22 @@ | |
|
||
context 'with a legitimate webfinger redirection' do | ||
before do | ||
webfinger = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo' }] } | ||
webfinger = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo', type: 'application/activity+json' }] } | ||
stub_request(:get, 'https://redirected.example.com/.well-known/webfinger?resource=acct:[email protected]').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' }) | ||
end | ||
|
||
it 'returns new remote account' do | ||
account = subject.call('[email protected]') | ||
|
||
expect(account.activitypub?).to eq true | ||
expect(account.acct).to eq '[email protected]' | ||
expect(account.inbox_url).to eq 'https://ap.example.com/users/foo/inbox' | ||
end | ||
end | ||
|
||
context 'with a misconfigured redirection' do | ||
before do | ||
webfinger = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo', type: 'application/activity+json' }] } | ||
stub_request(:get, 'https://redirected.example.com/.well-known/webfinger?resource=acct:[email protected]').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' }) | ||
end | ||
|
||
|
@@ -75,9 +90,9 @@ | |
|
||
context 'with too many webfinger redirections' do | ||
before do | ||
webfinger = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo' }] } | ||
webfinger = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo', type: 'application/activity+json' }] } | ||
stub_request(:get, 'https://redirected.example.com/.well-known/webfinger?resource=acct:[email protected]').to_return(body: Oj.dump(webfinger), headers: { 'Content-Type': 'application/jrd+json' }) | ||
webfinger2 = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo' }] } | ||
webfinger2 = { subject: 'acct:[email protected]', links: [{ rel: 'self', href: 'https://ap.example.com/users/foo', type: 'application/activity+json' }] } | ||
stub_request(:get, 'https://evil.example.com/.well-known/webfinger?resource=acct:[email protected]').to_return(body: Oj.dump(webfinger2), headers: { 'Content-Type': 'application/jrd+json' }) | ||
end | ||
|
||
|
@@ -111,6 +126,41 @@ | |
end | ||
end | ||
|
||
context 'with an already-known actor changing acct: URI' do | ||
let!(:duplicate) { Fabricate(:account, username: 'foo', domain: 'old.example.com', uri: 'https://ap.example.com/users/foo') } | ||
let!(:status) { Fabricate(:status, account: duplicate, text: 'foo') } | ||
|
||
it 'returns new remote account' do | ||
account = subject.call('[email protected]') | ||
|
||
expect(account.activitypub?).to eq true | ||
expect(account.domain).to eq 'ap.example.com' | ||
expect(account.inbox_url).to eq 'https://ap.example.com/users/foo/inbox' | ||
expect(account.uri).to eq 'https://ap.example.com/users/foo' | ||
end | ||
|
||
it 'merges accounts' do | ||
account = subject.call('[email protected]') | ||
|
||
expect(status.reload.account_id).to eq account.id | ||
expect(Account.where(uri: account.uri).count).to eq 1 | ||
end | ||
end | ||
|
||
context 'with an already-known acct: URI changing ActivityPub id' do | ||
let!(:old_account) { Fabricate(:account, username: 'foo', domain: 'ap.example.com', uri: 'https://old.example.com/users/foo', last_webfingered_at: nil) } | ||
let!(:status) { Fabricate(:status, account: old_account, text: 'foo') } | ||
|
||
it 'returns new remote account' do | ||
account = subject.call('[email protected]') | ||
|
||
expect(account.activitypub?).to eq true | ||
expect(account.domain).to eq 'ap.example.com' | ||
expect(account.inbox_url).to eq 'https://ap.example.com/users/foo/inbox' | ||
expect(account.uri).to eq 'https://ap.example.com/users/foo' | ||
end | ||
end | ||
|
||
it 'processes one remote account at a time using locks' do | ||
wait_for_start = true | ||
fail_occurred = false | ||
|