This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-01-23 13:00:13 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PublishScheduledAnnouncementWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
include Redisable
|
|
|
|
|
|
|
|
def perform(announcement_id)
|
|
|
|
announcement = Announcement.find(announcement_id)
|
2020-01-26 13:43:18 -08:00
|
|
|
|
2020-01-27 02:05:33 -08:00
|
|
|
announcement.publish! unless announcement.published?
|
2020-01-23 13:00:13 -08:00
|
|
|
|
|
|
|
payload = InlineRenderer.render(announcement, nil, :announcement)
|
|
|
|
payload = Oj.dump(event: :announcement, payload: payload)
|
|
|
|
|
2020-01-26 11:07:26 -08:00
|
|
|
FeedManager.instance.with_active_accounts do |account|
|
2020-01-23 13:00:13 -08:00
|
|
|
redis.publish("timeline:#{account.id}", payload) if redis.exists("subscribed:timeline:#{account.id}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|