2017-08-10 22:33:12 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Accept < ActivityPub::Activity
|
|
|
|
def perform
|
2019-10-24 22:45:43 +02:00
|
|
|
return accept_follow_for_relay if relay_follow?
|
2022-01-17 00:49:55 +01:00
|
|
|
return accept_follow!(follow_request_from_object) unless follow_request_from_object.nil?
|
2019-10-24 22:45:43 +02:00
|
|
|
|
2018-01-08 10:57:52 +01:00
|
|
|
case @object['type']
|
|
|
|
when 'Follow'
|
2019-10-24 22:45:43 +02:00
|
|
|
accept_embedded_follow
|
2017-08-10 22:33:12 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-10-24 22:45:43 +02:00
|
|
|
def accept_embedded_follow
|
2018-01-08 10:57:52 +01:00
|
|
|
target_account = account_from_uri(target_uri)
|
2017-08-10 22:33:12 +02:00
|
|
|
|
|
|
|
return if target_account.nil? || !target_account.local?
|
|
|
|
|
|
|
|
follow_request = FollowRequest.find_by(account: target_account, target_account: @account)
|
2022-01-17 00:49:55 +01:00
|
|
|
accept_follow!(follow_request)
|
|
|
|
end
|
|
|
|
|
|
|
|
def accept_follow!(request)
|
|
|
|
return if request.nil?
|
|
|
|
|
|
|
|
is_first_follow = !request.target_account.followers.local.exists?
|
|
|
|
request.authorize!
|
|
|
|
|
|
|
|
RemoteAccountRefreshWorker.perform_async(request.target_account_id) if is_first_follow
|
2017-08-10 22:33:12 +02:00
|
|
|
end
|
|
|
|
|
2018-08-12 18:16:26 +02:00
|
|
|
def accept_follow_for_relay
|
|
|
|
relay.update!(state: :accepted)
|
|
|
|
end
|
|
|
|
|
|
|
|
def relay
|
2018-10-03 23:44:13 +02:00
|
|
|
@relay ||= Relay.find_by(follow_activity_id: object_uri) unless object_uri.nil?
|
2018-08-12 18:16:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def relay_follow?
|
|
|
|
relay.present?
|
|
|
|
end
|
|
|
|
|
2018-01-08 10:57:52 +01:00
|
|
|
def target_uri
|
|
|
|
@target_uri ||= value_or_id(@object['actor'])
|
2017-08-10 22:33:12 +02:00
|
|
|
end
|
|
|
|
end
|