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