26 rader
738 B
Ruby
26 rader
738 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::UpdateDistributionWorker < ActivityPub::RawDistributionWorker
|
|
sidekiq_options queue: 'push', lock: :until_executed, lock_ttl: 1.day.to_i
|
|
|
|
# Distribute an profile update to servers that might have a copy
|
|
# of the account in question
|
|
def perform(account_id, options = {})
|
|
@options = options.with_indifferent_access
|
|
@account = Account.find(account_id)
|
|
|
|
distribute!
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
|
|
protected
|
|
|
|
def inboxes
|
|
@inboxes ||= AccountReachFinder.new(@account).inboxes
|
|
end
|
|
|
|
def payload
|
|
@payload ||= Oj.dump(serialize_payload(@account, ActivityPub::UpdateSerializer, signer: @account, sign_with: @options[:sign_with]))
|
|
end
|
|
end
|