2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-06 07:05:03 -04:00
|
|
|
class DistributionWorker
|
2016-03-24 22:22:26 -04:00
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2022-01-19 16:37:27 -05:00
|
|
|
def perform(status_id, options = {})
|
2021-05-19 17:52:08 -04:00
|
|
|
RedisLock.acquire(redis: Redis.current, key: "distribute:#{status_id}", autorelease: 5.minutes.seconds) do |lock|
|
2019-03-16 15:18:47 -04:00
|
|
|
if lock.acquired?
|
2022-01-19 16:37:27 -05:00
|
|
|
FanOutOnWriteService.new.call(Status.find(status_id), **options.symbolize_keys)
|
2019-03-16 15:18:47 -04:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
|
|
|
end
|
|
|
|
end
|
2016-12-19 03:31:12 -05:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2017-05-06 07:05:03 -04:00
|
|
|
true
|
2016-03-24 22:22:26 -04:00
|
|
|
end
|
|
|
|
end
|