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
|
|
|
|
RemoveStatusService.new.call(status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|