2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-28 05:26:26 -08:00
|
|
|
class UpdateRemoteProfileService < BaseService
|
2017-06-11 01:41:59 -07:00
|
|
|
attr_reader :account, :remote_profile
|
2017-04-08 04:26:03 -07:00
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
def call(body, account, resubscribe = false)
|
|
|
|
@account = account
|
|
|
|
@remote_profile = RemoteProfile.new(body)
|
2016-11-28 10:11:36 -08:00
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
return if remote_profile.root.nil?
|
2016-10-06 05:39:34 -07:00
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
update_account unless remote_profile.author.nil?
|
2016-02-28 05:26:26 -08:00
|
|
|
|
2016-11-26 06:12:57 -08:00
|
|
|
old_hub_url = account.hub_url
|
2017-06-11 01:41:59 -07:00
|
|
|
account.hub_url = remote_profile.hub_link if remote_profile.hub_link.present? && remote_profile.hub_link != old_hub_url
|
2016-12-02 05:14:49 -08:00
|
|
|
|
2017-05-05 12:37:02 -07:00
|
|
|
account.save_with_optional_media!
|
2016-11-26 06:12:57 -08:00
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
Pubsubhubbub::SubscribeWorker.perform_async(account.id) if resubscribe && account.hub_url != old_hub_url
|
2016-02-28 05:26:26 -08:00
|
|
|
end
|
2017-04-08 04:26:03 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
def update_account
|
|
|
|
account.display_name = remote_profile.display_name || ''
|
|
|
|
account.note = remote_profile.note || ''
|
|
|
|
account.locked = remote_profile.locked?
|
2017-04-08 04:26:03 -07:00
|
|
|
|
2017-06-11 01:41:59 -07:00
|
|
|
if !account.suspended? && !DomainBlock.find_by(domain: account.domain)&.reject_media?
|
2017-06-14 09:01:27 -07:00
|
|
|
if remote_profile.avatar.present?
|
|
|
|
account.avatar_remote_url = remote_profile.avatar
|
|
|
|
else
|
|
|
|
account.avatar_remote_url = ''
|
|
|
|
account.avatar.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
if remote_profile.header.present?
|
|
|
|
account.header_remote_url = remote_profile.header
|
|
|
|
else
|
|
|
|
account.header_remote_url = ''
|
|
|
|
account.header.destroy
|
|
|
|
end
|
2017-06-11 01:41:59 -07:00
|
|
|
end
|
2017-04-08 04:26:03 -07:00
|
|
|
end
|
2016-02-28 05:26:26 -08:00
|
|
|
end
|