2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
|
|
|
def perform
|
2017-09-01 21:54:42 +02:00
|
|
|
if @account.uri == object_uri
|
|
|
|
delete_person
|
|
|
|
else
|
|
|
|
delete_note
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def delete_person
|
2018-11-16 19:46:23 +01:00
|
|
|
lock_or_return("delete_in_progress:#{@account.id}") do
|
2020-11-19 17:39:47 +01:00
|
|
|
DeleteAccountService.new.call(@account, reserve_username: false, skip_activitypub: true)
|
2018-11-16 19:46:23 +01:00
|
|
|
end
|
2017-09-01 21:54:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete_note
|
2018-10-03 23:44:13 +02:00
|
|
|
return if object_uri.nil?
|
|
|
|
|
2021-04-21 04:46:09 +02:00
|
|
|
lock_or_return("delete_status_in_progress:#{object_uri}", 5.minutes.seconds) do
|
|
|
|
unless invalid_origin?(object_uri)
|
|
|
|
# This lock ensures a concurrent `ActivityPub::Activity::Create` either
|
|
|
|
# does not create a status at all, or has finished saving it to the
|
|
|
|
# database before we try to load it.
|
|
|
|
# Without the lock, `delete_later!` could be called after `delete_arrived_first?`
|
|
|
|
# and `Status.find` before `Status.create!`
|
|
|
|
lock_or_fail("create:#{object_uri}") { delete_later!(object_uri) }
|
2019-01-16 15:42:00 +01:00
|
|
|
|
2021-04-21 04:46:09 +02:00
|
|
|
Tombstone.find_or_create_by(uri: object_uri, account: @account)
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2021-04-21 04:46:09 +02: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-09-01 21:12:59 +02:00
|
|
|
|
2021-04-21 04:46:09 +02:00
|
|
|
return if @status.nil?
|
2018-04-07 18:54:46 +02:00
|
|
|
|
2022-02-26 17:51:59 +01:00
|
|
|
forwarder.forward! if forwarder.forwardable?
|
2021-04-21 04:46:09 +02:00
|
|
|
delete_now!
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
2017-08-26 18:52:53 +02:00
|
|
|
|
2022-02-26 17:51:59 +01:00
|
|
|
def forwarder
|
|
|
|
@forwarder ||= ActivityPub::Forwarder.new(@account, @json, @status)
|
2018-04-07 18:54:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete_now!
|
2019-08-22 04:17:12 +02:00
|
|
|
RemoveStatusService.new.call(@status, redraft: false)
|
2017-08-26 18:52:53 +02:00
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|