2019-03-10 19:49:31 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PollExpirationNotifyWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options unique: :until_executed
|
|
|
|
|
|
|
|
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 09:04:07 -04:00
|
|
|
poll.votes.includes(:account).map(&:account).select(&:local?).each do |account|
|
2019-03-10 19:49:31 -04:00
|
|
|
NotifyService.new.call(account, poll)
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|