2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-06 21:05:03 +10:00
|
|
|
class DistributionWorker
|
2016-03-25 13:22:26 +11:00
|
|
|
include Sidekiq::Worker
|
2022-04-29 01:47:34 +10:00
|
|
|
include Redisable
|
2022-05-13 08:02:35 +10:00
|
|
|
include Lockable
|
2016-03-25 13:22:26 +11:00
|
|
|
|
2022-01-20 08:37:27 +11:00
|
|
|
def perform(status_id, options = {})
|
2023-05-03 02:16:07 +10:00
|
|
|
with_redis_lock("distribute:#{status_id}") do
|
2022-05-13 08:02:35 +10:00
|
|
|
FanOutOnWriteService.new.call(Status.find(status_id), **options.symbolize_keys)
|
2019-03-17 06:18:47 +11:00
|
|
|
end
|
2016-12-19 19:31:12 +11:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2017-05-06 21:05:03 +10:00
|
|
|
true
|
2016-03-25 13:22:26 +11:00
|
|
|
end
|
|
|
|
end
|