2017-08-08 19:52:15 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Delete < ActivityPub::Activity
|
|
|
|
def perform
|
2017-09-01 19:54:42 +00:00
|
|
|
if @account.uri == object_uri
|
|
|
|
delete_person
|
|
|
|
else
|
|
|
|
delete_note
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def delete_person
|
|
|
|
SuspendAccountService.new.call(@account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_note
|
2017-08-26 14:10:35 +00:00
|
|
|
status = Status.find_by(uri: object_uri, account: @account)
|
2017-09-02 12:01:23 +00:00
|
|
|
status ||= Status.find_by(uri: @object['atomUri'], account: @account) if @object.is_a?(Hash) && @object['atomUri'].present?
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2017-09-01 19:12:59 +00:00
|
|
|
delete_later!(object_uri)
|
|
|
|
|
|
|
|
return if status.nil?
|
|
|
|
|
|
|
|
forward_for_reblogs(status)
|
|
|
|
delete_now!(status)
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
2017-08-26 16:52:53 +00:00
|
|
|
|
|
|
|
def forward_for_reblogs(status)
|
2017-08-30 13:37:02 +00:00
|
|
|
return if @json['signature'].blank?
|
|
|
|
|
2017-08-28 20:08:11 +00: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 16:52:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_now!(status)
|
|
|
|
RemoveStatusService.new.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def payload
|
|
|
|
@payload ||= Oj.dump(@json)
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|