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