2017-05-03 11:02:18 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AuthorExtractor
|
2017-06-15 05:04:23 -04:00
|
|
|
def author_from_xml(xml, update_profile = true)
|
2017-05-26 18:53:38 -04:00
|
|
|
return nil if xml.nil?
|
|
|
|
|
2017-05-03 11:02:18 -04:00
|
|
|
# Try <email> for acct
|
|
|
|
acct = xml.at_xpath('./xmlns:author/xmlns:email', xmlns: TagManager::XMLNS)&.content
|
|
|
|
|
|
|
|
# Try <name> + <uri>
|
|
|
|
if acct.blank?
|
|
|
|
username = xml.at_xpath('./xmlns:author/xmlns:name', xmlns: TagManager::XMLNS)&.content
|
|
|
|
uri = xml.at_xpath('./xmlns:author/xmlns:uri', xmlns: TagManager::XMLNS)&.content
|
|
|
|
|
|
|
|
return nil if username.blank? || uri.blank?
|
|
|
|
|
|
|
|
domain = Addressable::URI.parse(uri).normalize.host
|
|
|
|
acct = "#{username}@#{domain}"
|
|
|
|
end
|
|
|
|
|
2017-06-18 19:51:04 -04:00
|
|
|
ResolveRemoteAccountService.new.call(acct, update_profile)
|
2017-05-03 11:02:18 -04:00
|
|
|
end
|
|
|
|
end
|