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