2019-03-10 19:49:31 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PollExpirationNotifyWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2020-03-31 15:59:03 -04:00
|
|
|
sidekiq_options lock: :until_executed
|
2019-03-10 19:49:31 -04: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)
|
2020-09-18 11:26:45 -04:00
|
|
|
NotifyService.new.call(poll.account, :poll, poll)
|
2019-03-10 19:49:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Notify local voters
|
2020-11-01 01:34:43 -04:00
|
|
|
poll.votes.includes(:account).group(:account_id).select(:account_id).map(&:account).select(&:local?).each do |account|
|
2020-09-18 11:26:45 -04:00
|
|
|
NotifyService.new.call(account, :poll, poll)
|
2019-03-10 19:49:31 -04:00
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|