mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
21 lines
498 B
Ruby
21 lines
498 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoteAccountRefreshWorker
|
|
include Sidekiq::Worker
|
|
include ExponentialBackoff
|
|
include JsonLdHelper
|
|
|
|
sidekiq_options queue: 'pull', retry: 3
|
|
|
|
def perform(id)
|
|
account = Account.find_by(id: id)
|
|
return if account.nil? || account.local?
|
|
|
|
ActivityPub::FetchRemoteAccountService.new.call(account.uri)
|
|
rescue Mastodon::UnexpectedResponseError => e
|
|
response = e.response
|
|
|
|
raise(e) unless response_error_unsalvageable?(response)
|
|
end
|
|
end
|