2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-28 08:26:26 -05:00
|
|
|
class UpdateRemoteProfileService < BaseService
|
2016-11-26 09:12:57 -05:00
|
|
|
def call(xml, account, resubscribe = false)
|
2016-11-28 13:11:36 -05:00
|
|
|
return if xml.nil?
|
|
|
|
|
2016-11-30 15:32:11 -05:00
|
|
|
author_xml = xml.at_xpath('./xmlns:author', xmlns: TagManager::XMLNS) || xml.at_xpath('./dfrn:owner', dfrn: TagManager::DFRN_XMLNS)
|
|
|
|
hub_link = xml.at_xpath('./xmlns:link[@rel="hub"]', xmlns: TagManager::XMLNS)
|
2016-10-06 08:39:34 -04:00
|
|
|
|
2016-11-26 09:12:57 -05:00
|
|
|
unless author_xml.nil?
|
2017-01-23 15:55:29 -05:00
|
|
|
account.display_name = author_xml.at_xpath('./poco:displayName', poco: TagManager::POCO_XMLNS).content unless author_xml.at_xpath('./poco:displayName', poco: TagManager::POCO_XMLNS).nil?
|
|
|
|
account.note = author_xml.at_xpath('./poco:note', poco: TagManager::POCO_XMLNS).content unless author_xml.at_xpath('./poco:note', poco: TagManager::POCO_XMLNS).nil?
|
2017-02-10 20:12:05 -05:00
|
|
|
account.locked = author_xml.at_xpath('./mastodon:scope', mastodon: TagManager::MTDN_XMLNS)&.content == 'private'
|
2017-01-23 15:55:29 -05:00
|
|
|
|
|
|
|
unless account.suspended? || DomainBlock.find_by(domain: account.domain)&.reject_media?
|
|
|
|
account.avatar_remote_url = author_xml.at_xpath('./xmlns:link[@rel="avatar"]', xmlns: TagManager::XMLNS)['href'] unless author_xml.at_xpath('./xmlns:link[@rel="avatar"]', xmlns: TagManager::XMLNS).nil? || author_xml.at_xpath('./xmlns:link[@rel="avatar"]', xmlns: TagManager::XMLNS)['href'].blank?
|
2017-03-18 17:51:20 -04:00
|
|
|
account.header_remote_url = author_xml.at_xpath('./xmlns:link[@rel="header"]', xmlns: TagManager::XMLNS)['href'] unless author_xml.at_xpath('./xmlns:link[@rel="header"]', xmlns: TagManager::XMLNS).nil? || author_xml.at_xpath('./xmlns:link[@rel="header"]', xmlns: TagManager::XMLNS)['href'].blank?
|
2017-01-23 15:55:29 -05:00
|
|
|
end
|
2016-02-28 08:26:26 -05:00
|
|
|
end
|
|
|
|
|
2016-11-26 09:12:57 -05:00
|
|
|
old_hub_url = account.hub_url
|
|
|
|
account.hub_url = hub_link['href'] if !hub_link.nil? && !hub_link['href'].blank? && (hub_link['href'] != old_hub_url)
|
2016-12-02 08:14:49 -05:00
|
|
|
|
|
|
|
account.save_with_optional_avatar!
|
2016-11-26 09:12:57 -05:00
|
|
|
|
|
|
|
SubscribeService.new.call(account) if resubscribe && (account.hub_url != old_hub_url)
|
2016-02-28 08:26:26 -05:00
|
|
|
end
|
|
|
|
end
|