2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-26 16:42:38 +02:00
|
|
|
class FetchRemoteAccountService < BaseService
|
|
|
|
def call(url)
|
2016-09-29 21:28:21 +02:00
|
|
|
atom_url, body = FetchAtomService.new.call(url)
|
2016-09-26 16:42:38 +02:00
|
|
|
|
|
|
|
return nil if atom_url.nil?
|
2016-11-15 16:56:29 +01:00
|
|
|
process_atom(atom_url, body)
|
2016-09-26 16:42:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def process_atom(url, body)
|
2016-11-13 19:12:40 +01:00
|
|
|
xml = Nokogiri::XML(body)
|
|
|
|
xml.encoding = 'utf-8'
|
|
|
|
|
2016-09-26 16:42:38 +02:00
|
|
|
url_parts = Addressable::URI.parse(url)
|
|
|
|
username = xml.at_xpath('//xmlns:author/xmlns:name').try(:content)
|
|
|
|
domain = url_parts.host
|
|
|
|
|
|
|
|
return nil if username.nil?
|
|
|
|
|
|
|
|
Rails.logger.debug "Going to webfinger #{username}@#{domain}"
|
|
|
|
|
2016-09-29 21:28:21 +02:00
|
|
|
return FollowRemoteAccountService.new.call("#{username}@#{domain}")
|
2016-10-23 11:56:04 +02:00
|
|
|
rescue TypeError
|
2016-10-12 19:25:46 +02:00
|
|
|
Rails.logger.debug "Unparseable URL given: #{url}"
|
2016-10-20 18:36:12 +02:00
|
|
|
nil
|
2016-10-05 13:26:44 +02:00
|
|
|
rescue Nokogiri::XML::XPath::SyntaxError
|
2016-11-15 16:56:29 +01:00
|
|
|
Rails.logger.debug 'Invalid XML or missing namespace'
|
2016-10-20 18:36:12 +02:00
|
|
|
nil
|
2016-09-26 16:42:38 +02:00
|
|
|
end
|
|
|
|
end
|