2019-03-03 22:18:23 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: polls
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8)
|
|
|
|
# status_id :bigint(8)
|
|
|
|
# expires_at :datetime
|
|
|
|
# options :string default([]), not null, is an Array
|
|
|
|
# cached_tallies :bigint(8) default([]), not null, is an Array
|
|
|
|
# multiple :boolean default(FALSE), not null
|
|
|
|
# hide_totals :boolean default(FALSE), not null
|
|
|
|
# votes_count :bigint(8) default(0), not null
|
|
|
|
# last_fetched_at :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2019-03-06 19:53:57 +01:00
|
|
|
# lock_version :integer default(0), not null
|
2019-09-29 22:58:01 +02:00
|
|
|
# voters_count :bigint(8)
|
2019-03-03 22:18:23 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
class Poll < ApplicationRecord
|
|
|
|
include Expireable
|
|
|
|
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :status
|
|
|
|
|
2020-12-20 18:25:00 +01:00
|
|
|
has_many :votes, class_name: 'PollVote', inverse_of: :poll, dependent: :delete_all
|
2019-03-03 22:18:23 +01:00
|
|
|
|
2019-03-13 19:29:54 +01:00
|
|
|
has_many :notifications, as: :activity, dependent: :destroy
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
validates :options, presence: true
|
|
|
|
validates :expires_at, presence: true, if: :local?
|
2019-03-08 00:54:50 +01:00
|
|
|
validates_with PollValidator, on: :create, if: :local?
|
2019-03-03 22:18:23 +01:00
|
|
|
|
|
|
|
scope :attached, -> { where.not(status_id: nil) }
|
|
|
|
scope :unattached, -> { where(status_id: nil) }
|
|
|
|
|
2019-12-01 17:24:33 +01:00
|
|
|
before_validation :prepare_options, if: :local?
|
2019-03-03 22:18:23 +01:00
|
|
|
before_validation :prepare_votes_count
|
2019-03-05 03:45:56 +01:00
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
after_initialize :prepare_cached_tallies
|
2019-03-05 03:45:56 +01:00
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
after_commit :reset_parent_cache, on: :update
|
|
|
|
|
|
|
|
def loaded_options
|
2019-03-07 22:53:47 +01:00
|
|
|
options.map.with_index { |title, key| Option.new(self, key.to_s, title, show_totals_now? ? cached_tallies[key] : nil) }
|
2019-03-03 22:18:23 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def possibly_stale?
|
|
|
|
remote? && last_fetched_before_expiration? && time_passed_since_last_fetch?
|
|
|
|
end
|
|
|
|
|
2019-03-07 22:53:47 +01:00
|
|
|
def voted?(account)
|
|
|
|
account.id == account_id || votes.where(account: account).exists?
|
|
|
|
end
|
|
|
|
|
2019-09-22 14:15:18 +02:00
|
|
|
def own_votes(account)
|
|
|
|
votes.where(account: account).pluck(:choice)
|
|
|
|
end
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
delegate :local?, to: :account
|
|
|
|
|
|
|
|
def remote?
|
|
|
|
!local?
|
|
|
|
end
|
|
|
|
|
2019-03-20 17:29:12 +01:00
|
|
|
def emojis
|
|
|
|
@emojis ||= CustomEmoji.from_text(options.join(' '), account.domain)
|
|
|
|
end
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
class Option < ActiveModelSerializers::Model
|
|
|
|
attributes :id, :title, :votes_count, :poll
|
|
|
|
|
|
|
|
def initialize(poll, id, title, votes_count)
|
2021-01-07 09:40:55 +01:00
|
|
|
super(
|
|
|
|
poll: poll,
|
|
|
|
id: id,
|
|
|
|
title: title,
|
|
|
|
votes_count: votes_count,
|
|
|
|
)
|
2019-03-03 22:18:23 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def prepare_cached_tallies
|
|
|
|
self.cached_tallies = options.map { 0 } if cached_tallies.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def prepare_votes_count
|
|
|
|
self.votes_count = cached_tallies.sum unless cached_tallies.empty?
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:45:56 +01:00
|
|
|
def prepare_options
|
|
|
|
self.options = options.map(&:strip).reject(&:blank?)
|
|
|
|
end
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
def reset_parent_cache
|
|
|
|
return if status_id.nil?
|
|
|
|
Rails.cache.delete("statuses/#{status_id}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_fetched_before_expiration?
|
|
|
|
last_fetched_at.nil? || expires_at.nil? || last_fetched_at < expires_at
|
|
|
|
end
|
|
|
|
|
|
|
|
def time_passed_since_last_fetch?
|
|
|
|
last_fetched_at.nil? || last_fetched_at < 1.minute.ago
|
|
|
|
end
|
2019-03-07 22:53:47 +01:00
|
|
|
|
|
|
|
def show_totals_now?
|
|
|
|
expired? || !hide_totals?
|
|
|
|
end
|
2019-03-03 22:18:23 +01:00
|
|
|
end
|