This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Block < ActivityPub::Activity
|
|
|
|
def perform
|
|
|
|
target_account = account_from_uri(object_uri)
|
|
|
|
|
2017-08-20 16:53:47 +02:00
|
|
|
return if target_account.nil? || !target_account.local? || delete_arrived_first?(@json['id']) || @account.blocking?(target_account)
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
UnfollowService.new.call(target_account, @account) if target_account.following?(@account)
|
2018-05-04 21:14:34 +02:00
|
|
|
@account.block!(target_account, uri: @json['id'])
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|