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