2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::FetchRemoteAccountService < BaseService
|
|
|
|
include JsonLdHelper
|
2019-07-09 03:27:35 +02:00
|
|
|
include DomainControlHelper
|
2020-05-10 11:41:43 +02:00
|
|
|
include WebfingerHelper
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
class Error < StandardError; end
|
|
|
|
|
2018-04-02 02:10:53 +02:00
|
|
|
SUPPORTED_TYPES = %w(Application Group Organization Person Service).freeze
|
|
|
|
|
2019-01-07 21:45:13 +01:00
|
|
|
# Does a WebFinger roundtrip on each call, unless `only_key` is true
|
2022-09-20 23:30:26 +02:00
|
|
|
def call(uri, id: true, prefetched_body: nil, break_on_redirect: false, only_key: false, suppress_errors: true)
|
2019-07-09 03:27:35 +02:00
|
|
|
return if domain_not_allowed?(uri)
|
2018-10-26 23:08:34 +02:00
|
|
|
return ActivityPub::TagManager.instance.uri_to_resource(uri, Account) if ActivityPub::TagManager.instance.local_uri?(uri)
|
|
|
|
|
2019-07-09 03:27:35 +02:00
|
|
|
@json = begin
|
|
|
|
if prefetched_body.nil?
|
|
|
|
fetch_resource(uri, id)
|
|
|
|
else
|
|
|
|
body_to_json(prefetched_body, compare_id: id ? uri : nil)
|
|
|
|
end
|
2022-09-20 23:30:26 +02:00
|
|
|
rescue Oj::ParseError
|
|
|
|
raise Error, "Error parsing JSON-LD document #{uri}"
|
2019-07-09 03:27:35 +02:00
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
raise Error, "Error fetching actor JSON at #{uri}" if @json.nil?
|
|
|
|
raise Error, "Unsupported JSON-LD context for document #{uri}" unless supported_context?
|
|
|
|
raise Error, "Unexpected object type for actor #{uri} (expected any of: #{SUPPORTED_TYPES})" unless expected_type?
|
|
|
|
raise Error, "Actor #{uri} has moved to #{@json['movedTo']}" if break_on_redirect && @json['movedTo'].present?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
@uri = @json['id']
|
|
|
|
@username = @json['preferredUsername']
|
2017-10-04 01:13:48 +02:00
|
|
|
@domain = Addressable::URI.parse(@uri).normalized_host
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
check_webfinger! unless only_key
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2020-12-18 23:26:26 +01:00
|
|
|
ActivityPub::ProcessAccountService.new.call(@username, @domain, @json, only_key: only_key, verified_webfinger: !only_key)
|
2022-09-20 23:30:26 +02:00
|
|
|
rescue Error => e
|
|
|
|
Rails.logger.debug "Fetching account #{uri} failed: #{e.message}"
|
|
|
|
raise unless suppress_errors
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
def check_webfinger!
|
2020-05-10 11:41:43 +02:00
|
|
|
webfinger = webfinger!("acct:#{@username}@#{@domain}")
|
2017-08-08 21:52:15 +02:00
|
|
|
confirmed_username, confirmed_domain = split_acct(webfinger.subject)
|
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
if @username.casecmp(confirmed_username).zero? && @domain.casecmp(confirmed_domain).zero?
|
|
|
|
raise Error, "Webfinger response for #{@username}@#{@domain} does not loop back to #{@uri}" if webfinger.link('self', 'href') != @uri
|
|
|
|
return
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2020-05-10 11:41:43 +02:00
|
|
|
webfinger = webfinger!("acct:#{confirmed_username}@#{confirmed_domain}")
|
2017-10-04 00:33:56 +02:00
|
|
|
@username, @domain = split_acct(webfinger.subject)
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
unless confirmed_username.casecmp(@username).zero? && confirmed_domain.casecmp(@domain).zero?
|
|
|
|
raise Webfinger::RedirectError, "Too many webfinger redirects for URI #{uri} (stopped at #{@username}@#{@domain})"
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2022-09-20 23:30:26 +02:00
|
|
|
raise Error, "Webfinger response for #{@username}@#{@domain} does not loop back to #{@uri}" if webfinger.link('self', 'href') != @uri
|
|
|
|
rescue Webfinger::RedirectError => e
|
|
|
|
raise Error, e.message
|
|
|
|
rescue Webfinger::Error => e
|
|
|
|
raise Error, "Webfinger error when resolving #{@username}@#{@domain}: #{e.message}"
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def split_acct(acct)
|
|
|
|
acct.gsub(/\Aacct:/, '').split('@')
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_context?
|
|
|
|
super(@json)
|
|
|
|
end
|
|
|
|
|
|
|
|
def expected_type?
|
2018-05-02 12:40:24 +02:00
|
|
|
equals_or_includes_any?(@json['type'], SUPPORTED_TYPES)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|