about summary refs log tree commit diff
path: root/app/services/update_remote_profile_service.rb
blob: 2909ae12aa1fa7dad4b440b12356e4dd5d9f1bdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class UpdateRemoteProfileService < BaseService
  POCO_NS = 'http://portablecontacts.net/spec/1.0'

  def call(author_xml, account)
    return if author_xml.nil?

    account.display_name = if author_xml.at_xpath('./poco:displayName', poco: POCO_NS).nil?
                             account.username
                           else
                             author_xml.at_xpath('./poco:displayName', poco: POCO_NS).content
                           end

    unless author_xml.at_xpath('./poco:note').nil?
      account.note = author_xml.at_xpath('./poco:note', poco: POCO_NS).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