2017-08-08 12:52:15 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
|
|
|
def perform
|
2017-09-01 12:54:42 -07:00
|
|
|
if @account.uri == object_uri
|
|
|
|
delete_person
|
|
|
|
else
|
|
|
|
delete_note
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def delete_person
|
2018-11-16 10:46:23 -08:00
|
|
|
lock_or_return("delete_in_progress:#{@account.id}") do
|
|
|
|
SuspendAccountService.new.call(@account)
|
|
|
|
@account.destroy!
|
|
|
|
end
|
2017-09-01 12:54:42 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete_note
|
2018-10-03 14:44:13 -07:00
|
|
|
return if object_uri.nil?
|
|
|
|
|
2019-01-16 06:42:00 -08:00
|
|
|
RedisLock.acquire(lock_options) do |_lock|
|
|
|
|
delete_later!(object_uri)
|
|
|
|
end
|
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
@status = Status.find_by(uri: object_uri, account: @account)
|
|
|
|
@status ||= Status.find_by(uri: @object['atomUri'], account: @account) if @object.is_a?(Hash) && @object['atomUri'].present?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
return if @status.nil?
|
2017-09-01 12:12:59 -07:00
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
if @status.public_visibility? || @status.unlisted_visibility?
|
|
|
|
forward_for_reply
|
|
|
|
forward_for_reblogs
|
|
|
|
end
|
|
|
|
|
|
|
|
delete_now!
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
2017-08-26 09:52:53 -07:00
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
def forward_for_reblogs
|
2017-08-30 06:37:02 -07:00
|
|
|
return if @json['signature'].blank?
|
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
rebloggers_ids = @status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)
|
2017-11-29 18:50:05 -08:00
|
|
|
inboxes = Account.where(id: ::Follow.where(target_account_id: rebloggers_ids).select(:account_id)).inboxes - [@account.preferred_inbox_url]
|
|
|
|
|
|
|
|
ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
|
|
|
|
[payload, rebloggers_ids.first, inbox_url]
|
2017-08-26 09:52:53 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-07 09:54:46 -07:00
|
|
|
def replied_to_status
|
|
|
|
return @replied_to_status if defined?(@replied_to_status)
|
|
|
|
@replied_to_status = @status.thread
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply_to_local?
|
|
|
|
!replied_to_status.nil? && replied_to_status.account.local?
|
|
|
|
end
|
|
|
|
|
|
|
|
def forward_for_reply
|
|
|
|
return unless @json['signature'].present? && reply_to_local?
|
|
|
|
ActivityPub::RawDistributionWorker.perform_async(Oj.dump(@json), replied_to_status.account_id, [@account.preferred_inbox_url])
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_now!
|
|
|
|
RemoveStatusService.new.call(@status)
|
2017-08-26 09:52:53 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def payload
|
|
|
|
@payload ||= Oj.dump(@json)
|
|
|
|
end
|
2019-01-16 06:42:00 -08:00
|
|
|
|
|
|
|
def lock_options
|
|
|
|
{ redis: Redis.current, key: "create:#{object_uri}" }
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|