Fix deletion of status which has been reblogged (#4728)
This commit is contained in:
		
							parent
							
								
									4fb007764b
								
							
						
					
					
						commit
						e17945907a
					
				
					 2 changed files with 9 additions and 2 deletions
				
			
		| 
						 | 
					@ -55,8 +55,8 @@ class RemoveStatusService < BaseService
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # ActivityPub
 | 
					    # ActivityPub
 | 
				
			||||||
    ActivityPub::DeliveryWorker.push_bulk(target_accounts.select(&:activitypub?).uniq(&:inbox_url)) do |inbox_url|
 | 
					    ActivityPub::DeliveryWorker.push_bulk(target_accounts.select(&:activitypub?).uniq(&:inbox_url)) do |target_account|
 | 
				
			||||||
      [signed_activity_json, @account.id, inbox_url]
 | 
					      [signed_activity_json, @account.id, target_account.inbox_url]
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,17 +7,20 @@ RSpec.describe RemoveStatusService do
 | 
				
			||||||
  let!(:bob)    { Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://example.com/salmon') }
 | 
					  let!(:bob)    { Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://example.com/salmon') }
 | 
				
			||||||
  let!(:jeff)   { Fabricate(:account) }
 | 
					  let!(:jeff)   { Fabricate(:account) }
 | 
				
			||||||
  let!(:hank)   { Fabricate(:account, username: 'hank', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
 | 
					  let!(:hank)   { Fabricate(:account, username: 'hank', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
 | 
				
			||||||
 | 
					  let!(:bill)   { Fabricate(:account, username: 'bill', protocol: :activitypub, domain: 'example2.com', inbox_url: 'http://example2.com/inbox') }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  before do
 | 
					  before do
 | 
				
			||||||
    stub_request(:post, 'http://example.com/push').to_return(status: 200, body: '', headers: {})
 | 
					    stub_request(:post, 'http://example.com/push').to_return(status: 200, body: '', headers: {})
 | 
				
			||||||
    stub_request(:post, 'http://example.com/salmon').to_return(status: 200, body: '', headers: {})
 | 
					    stub_request(:post, 'http://example.com/salmon').to_return(status: 200, body: '', headers: {})
 | 
				
			||||||
    stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
 | 
					    stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
 | 
				
			||||||
 | 
					    stub_request(:post, 'http://example2.com/inbox').to_return(status: 200)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    Fabricate(:subscription, account: alice, callback_url: 'http://example.com/push', confirmed: true, expires_at: 30.days.from_now)
 | 
					    Fabricate(:subscription, account: alice, callback_url: 'http://example.com/push', confirmed: true, expires_at: 30.days.from_now)
 | 
				
			||||||
    jeff.follow!(alice)
 | 
					    jeff.follow!(alice)
 | 
				
			||||||
    hank.follow!(alice)
 | 
					    hank.follow!(alice)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @status = PostStatusService.new.call(alice, 'Hello @bob@example.com')
 | 
					    @status = PostStatusService.new.call(alice, 'Hello @bob@example.com')
 | 
				
			||||||
 | 
					    Fabricate(:status, account: bill, reblog: @status, uri: 'hoge')
 | 
				
			||||||
    subject.call(@status)
 | 
					    subject.call(@status)
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,4 +48,8 @@ RSpec.describe RemoveStatusService do
 | 
				
			||||||
      xml.match(TagManager::VERBS[:delete])
 | 
					      xml.match(TagManager::VERBS[:delete])
 | 
				
			||||||
    }).to have_been_made.once
 | 
					    }).to have_been_made.once
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  it 'sends delete activity to rebloggers' do
 | 
				
			||||||
 | 
					    expect(a_request(:post, 'http://example2.com/inbox')).to have_been_made
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue