fedibird-fe/app/workers/publish_scheduled_status_worker.rb

34 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class PublishScheduledStatusWorker
include Sidekiq::Worker
sidekiq_options lock: :until_executed
def perform(scheduled_status_id)
scheduled_status = ScheduledStatus.find(scheduled_status_id)
scheduled_status.destroy!
PostStatusService.new.call(
scheduled_status.account,
options_with_objects(scheduled_status.params.with_indifferent_access)
)
2023-01-08 16:07:46 +00:00
remove_scheduled_status(scheduled_status)
rescue ActiveRecord::RecordNotFound, ActiveRecord::RecordInvalid
true
end
def options_with_objects(options)
options.tap do |options_hash|
options_hash[:application] = Doorkeeper::Application.find(options_hash.delete(:application_id)) if options[:application_id]
options_hash[:thread] = Status.find(options_hash.delete(:in_reply_to_id)) if options_hash[:in_reply_to_id]
2023-01-08 16:07:46 +00:00
options_hash[:notify] = true
end
end
2023-01-08 16:07:46 +00:00
def remove_scheduled_status(scheduled_status)
Redis.current.publish("timeline:#{scheduled_status.account.id}", Oj.dump(event: :scheduled_status, payload: scheduled_status.id.to_s))
end
end