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