2019-03-10 23:49:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PollExpirationNotifyWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2020-03-31 19:59:03 +00:00
|
|
|
sidekiq_options lock: :until_executed
|
2019-03-10 23:49:31 +00:00
|
|
|
|
|
|
|
def perform(poll_id)
|
|
|
|
poll = Poll.find(poll_id)
|
|
|
|
|
|
|
|
# Notify poll owner and remote voters
|
|
|
|
if poll.local?
|
|
|
|
ActivityPub::DistributePollUpdateWorker.perform_async(poll.status.id)
|
|
|
|
NotifyService.new.call(poll.account, poll)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Notify local voters
|
2019-03-14 13:04:07 +00:00
|
|
|
poll.votes.includes(:account).map(&:account).select(&:local?).each do |account|
|
2019-03-10 23:49:31 +00:00
|
|
|
NotifyService.new.call(account, poll)
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|