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
|
2017-09-19 12:08:08 -04:00
|
|
|
acct = xml.at_xpath('./xmlns:author/xmlns:email', xmlns: OStatus::TagManager::XMLNS)&.content
|
2017-05-03 11:02:18 -04:00
|
|
|
|
|
|
|
# Try <name> + <uri>
|
|
|
|
if acct.blank?
|
2017-09-19 12:08:08 -04: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 11:02:18 -04:00
|
|
|
|
|
|
|
return nil if username.blank? || uri.blank?
|
|
|
|
|
2017-07-15 11:24:35 -04:00
|
|
|
domain = Addressable::URI.parse(uri).normalized_host
|
2017-05-03 11:02:18 -04:00
|
|
|
acct = "#{username}@#{domain}"
|
|
|
|
end
|
|
|
|
|
2018-01-22 08:25:09 -05:00
|
|
|
ResolveAccountService.new.call(acct, update_profile)
|
2017-05-03 11:02:18 -04:00
|
|
|
end
|
|
|
|
end
|