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