mastodon/app/workers/reblog_status_worker.rb

18 lines
491 B
Ruby

# frozen_string_literal: true
class ReblogStatusWorker
include Sidekiq::Worker
sidekiq_options unique: :until_executed
def perform(account_id, status_id, reblog_params = {})
account = Account.find(account_id)
status = Status.find(status_id)
return false if status.destroyed? || !status.distributable?
ReblogService.new.call(account, status, reblog_params.symbolize_keys)
true
rescue ActiveRecord::RecordNotFound, ActiveRecord::RecordInvalid
true
end
end