2020-01-26 19:07:26 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnpublishAnnouncementWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
include Redisable
|
|
|
|
|
|
|
|
def perform(announcement_id)
|
|
|
|
payload = Oj.dump(event: :'announcement.delete', payload: announcement_id.to_s)
|
|
|
|
|
|
|
|
FeedManager.instance.with_active_accounts do |account|
|
2020-07-01 17:05:21 +00:00
|
|
|
redis.publish("timeline:#{account.id}", payload) if redis.exists?("subscribed:timeline:#{account.id}")
|
2020-01-26 19:07:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|