This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-08-08 12:52:15 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
|
|
|
def perform
|
2017-08-26 07:10:35 -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
|
|
|
|
|
|
|
if status.nil?
|
|
|
|
delete_later!(object_uri)
|
|
|
|
else
|
2017-08-26 09:52:53 -07:00
|
|
|
forward_for_reblogs(status)
|
|
|
|
delete_now!(status)
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
end
|
2017-08-26 09:52:53 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def forward_for_reblogs(status)
|
|
|
|
ActivityPub::RawDistributionWorker.push_bulk(status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)) do |account|
|
|
|
|
[payload, account.id]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_now!(status)
|
|
|
|
RemoveStatusService.new.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def payload
|
|
|
|
@payload ||= Oj.dump(@json)
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|