about summary refs log tree commit diff
path: root/app/services/update_remote_profile_service.rb
blob: 595fa42449aa051292f39fca562b409c5a3674b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class UpdateRemoteProfileService < BaseService
  def call(author_xml, account)
    return if author_xml.nil?

    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