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::Block < ActivityPub::Activity
|
|
|
|
def perform
|
|
|
|
target_account = account_from_uri(object_uri)
|
|
|
|
|
2017-08-20 07:53:47 -07:00
|
|
|
return if target_account.nil? || !target_account.local? || delete_arrived_first?(@json['id']) || @account.blocking?(target_account)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
|
|
|
UnfollowService.new.call(target_account, @account) if target_account.following?(@account)
|
|
|
|
@account.block!(target_account)
|
|
|
|
end
|
|
|
|
end
|