2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-26 23:42:38 +09:00
|
|
|
class FetchRemoteAccountService < BaseService
|
2017-05-04 00:02:18 +09:00
|
|
|
include AuthorExtractor
|
|
|
|
|
2017-08-14 21:08:34 +09:00
|
|
|
def call(url, prefetched_body = nil, protocol = :ostatus)
|
2017-03-23 01:36:34 +09:00
|
|
|
if prefetched_body.nil?
|
2017-10-04 08:13:48 +09:00
|
|
|
resource_url, resource_options, protocol = FetchAtomService.new.call(url)
|
2017-03-23 01:36:34 +09:00
|
|
|
else
|
2017-10-04 08:13:48 +09:00
|
|
|
resource_url = url
|
|
|
|
resource_options = { prefetched_body: prefetched_body }
|
2017-03-23 01:36:34 +09:00
|
|
|
end
|
2016-09-26 23:42:38 +09:00
|
|
|
|
2017-08-14 09:29:36 +09:00
|
|
|
case protocol
|
|
|
|
when :ostatus
|
2017-10-04 08:13:48 +09:00
|
|
|
process_atom(resource_url, **resource_options)
|
2017-08-14 09:29:36 +09:00
|
|
|
when :activitypub
|
2017-10-04 08:13:48 +09:00
|
|
|
ActivityPub::FetchRemoteAccountService.new.call(resource_url, **resource_options)
|
2017-08-14 09:29:36 +09:00
|
|
|
end
|
2016-09-26 23:42:38 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-10-04 08:13:48 +09:00
|
|
|
def process_atom(url, prefetched_body:)
|
|
|
|
xml = Nokogiri::XML(prefetched_body)
|
2016-11-14 03:12:40 +09:00
|
|
|
xml.encoding = 'utf-8'
|
|
|
|
|
2017-09-20 01:08:08 +09:00
|
|
|
account = author_from_xml(xml.at_xpath('/xmlns:feed', xmlns: OStatus::TagManager::XMLNS), false)
|
2016-09-26 23:42:38 +09:00
|
|
|
|
2018-08-23 03:55:14 +09:00
|
|
|
UpdateRemoteProfileService.new.call(xml, account) if account.present? && trusted_domain?(url, account)
|
2017-05-04 00:02:18 +09:00
|
|
|
|
2017-02-11 22:12:29 +09:00
|
|
|
account
|
2016-10-23 18:56:04 +09:00
|
|
|
rescue TypeError
|
2016-10-13 02:25:46 +09:00
|
|
|
Rails.logger.debug "Unparseable URL given: #{url}"
|
2016-10-21 01:36:12 +09:00
|
|
|
nil
|
2016-10-05 20:26:44 +09:00
|
|
|
rescue Nokogiri::XML::XPath::SyntaxError
|
2016-11-16 00:56:29 +09:00
|
|
|
Rails.logger.debug 'Invalid XML or missing namespace'
|
2016-10-21 01:36:12 +09:00
|
|
|
nil
|
2016-09-26 23:42:38 +09:00
|
|
|
end
|
2018-08-23 03:55:14 +09:00
|
|
|
|
|
|
|
def trusted_domain?(url, account)
|
|
|
|
domain = Addressable::URI.parse(url).normalized_host
|
|
|
|
domain.casecmp(account.domain).zero? || domain.casecmp(Addressable::URI.parse(account.remote_url.presence || account.uri).normalized_host).zero?
|
|
|
|
end
|
2016-09-26 23:42:38 +09:00
|
|
|
end
|