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