2017-03-22 02:32:27 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FetchRemoteResourceService < BaseService
|
|
|
|
def call(url)
|
|
|
|
atom_url, body = FetchAtomService.new.call(url)
|
|
|
|
|
|
|
|
return nil if atom_url.nil?
|
|
|
|
|
|
|
|
xml = Nokogiri::XML(body)
|
|
|
|
xml.encoding = 'utf-8'
|
|
|
|
|
|
|
|
if xml.root.name == 'feed'
|
2017-03-22 17:36:34 +01:00
|
|
|
FetchRemoteAccountService.new.call(atom_url, body)
|
2017-03-22 02:32:27 +01:00
|
|
|
elsif xml.root.name == 'entry'
|
2017-03-22 17:36:34 +01:00
|
|
|
FetchRemoteStatusService.new.call(atom_url, body)
|
2017-03-22 02:32:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|