This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-28 05:26:26 -08:00
|
|
|
class UpdateRemoteProfileService < BaseService
|
|
|
|
def call(author_xml, account)
|
2016-10-06 05:39:34 -07:00
|
|
|
return if author_xml.nil?
|
|
|
|
|
2016-02-28 05:26:26 -08:00
|
|
|
if author_xml.at_xpath('./poco:displayName').nil?
|
|
|
|
account.display_name = account.username
|
|
|
|
else
|
|
|
|
account.display_name = author_xml.at_xpath('./poco:displayName').content
|
|
|
|
end
|
|
|
|
|
|
|
|
unless author_xml.at_xpath('./poco:note').nil?
|
|
|
|
account.note = author_xml.at_xpath('./poco:note').content
|
|
|
|
end
|
|
|
|
|
|
|
|
unless author_xml.at_xpath('./xmlns:link[@rel="avatar"]').nil?
|
|
|
|
account.avatar_remote_url = author_xml.at_xpath('./xmlns:link[@rel="avatar"]').attribute('href').value
|
|
|
|
end
|
|
|
|
|
|
|
|
account.save!
|
|
|
|
end
|
|
|
|
end
|