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