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
|
|
|
|
2017-09-01 12:12:59 -07:00
|
|
|
delete_later!(object_uri)
|
|
|
|
|
|
|
|
return if status.nil?
|
|
|
|
|
|
|
|
forward_for_reblogs(status)
|
|
|
|
delete_now!(status)
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
2017-08-26 09:52:53 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def forward_for_reblogs(status)
|
2017-08-30 06:37:02 -07:00
|
|
|
return if @json['signature'].blank?
|
|
|
|
|
2017-08-28 13:08:11 -07: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-26 09:52:53 -07:00
|
|
|
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
|