2017-08-09 05:52:15 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
|
|
|
def perform
|
2017-08-27 00:10:35 +10: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-09 05:52:15 +10:00
|
|
|
|
|
|
|
if status.nil?
|
|
|
|
delete_later!(object_uri)
|
|
|
|
else
|
2017-08-27 02:52:53 +10:00
|
|
|
forward_for_reblogs(status)
|
|
|
|
delete_now!(status)
|
2017-08-09 05:52:15 +10:00
|
|
|
end
|
|
|
|
end
|
2017-08-27 02:52:53 +10:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def forward_for_reblogs(status)
|
2017-08-30 23:37:02 +10:00
|
|
|
return if @json['signature'].blank?
|
|
|
|
|
2017-08-29 06:08:11 +10:00
|
|
|
ActivityPub::RawDistributionWorker.push_bulk(status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)) do |account_id|
|
|
|
|
[payload, account_id]
|
2017-08-27 02:52:53 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_now!(status)
|
|
|
|
RemoveStatusService.new.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def payload
|
|
|
|
@payload ||= Oj.dump(@json)
|
|
|
|
end
|
2017-08-09 05:52:15 +10:00
|
|
|
end
|