2016-09-26 07:42:38 -07:00
|
|
|
class FetchRemoteAccountService < BaseService
|
|
|
|
def call(url)
|
2016-09-29 12:28:21 -07:00
|
|
|
atom_url, body = FetchAtomService.new.call(url)
|
2016-09-26 07:42:38 -07:00
|
|
|
|
|
|
|
return nil if atom_url.nil?
|
|
|
|
return process_atom(atom_url, body)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def process_atom(url, body)
|
2016-09-26 08:04:05 -07:00
|
|
|
xml = Nokogiri::XML(body)
|
2016-09-26 07:42:38 -07: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 12:28:21 -07:00
|
|
|
return FollowRemoteAccountService.new.call("#{username}@#{domain}")
|
2016-10-12 10:25:46 -07:00
|
|
|
rescue TypeError => e
|
|
|
|
Rails.logger.debug "Unparseable URL given: #{url}"
|
2016-10-05 04:26:44 -07:00
|
|
|
rescue Nokogiri::XML::XPath::SyntaxError
|
|
|
|
Rails.logger.debug "Invalid XML or missing namespace"
|
2016-09-26 07:42:38 -07:00
|
|
|
end
|
|
|
|
end
|