Browse Source

Add ActivityPub handler for Delete->Actor activities (#4761)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
e482595a5d
1 changed files with 14 additions and 2 deletions
  1. +14
    -2
      app/lib/activitypub/activity/delete.rb

+ 14
- 2
app/lib/activitypub/activity/delete.rb View File

@ -2,6 +2,20 @@
class ActivityPub::Activity::Delete < ActivityPub::Activity
def perform
if @account.uri == object_uri
delete_person
else
delete_note
end
end
private
def delete_person
SuspendAccountService.new.call(@account)
end
def delete_note
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?
@ -13,8 +27,6 @@ class ActivityPub::Activity::Delete < ActivityPub::Activity
delete_now!(status)
end
private
def forward_for_reblogs(status)
return if @json['signature'].blank?

Loading…
Cancel
Save