poll.rb 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: polls
  5. #
  6. # id :bigint(8) not null, primary key
  7. # account_id :bigint(8)
  8. # status_id :bigint(8)
  9. # expires_at :datetime
  10. # options :string default([]), not null, is an Array
  11. # cached_tallies :bigint(8) default([]), not null, is an Array
  12. # multiple :boolean default(FALSE), not null
  13. # hide_totals :boolean default(FALSE), not null
  14. # votes_count :bigint(8) default(0), not null
  15. # last_fetched_at :datetime
  16. # created_at :datetime not null
  17. # updated_at :datetime not null
  18. # lock_version :integer default(0), not null
  19. # voters_count :bigint(8)
  20. #
  21. class Poll < ApplicationRecord
  22. include Expireable
  23. belongs_to :account
  24. belongs_to :status
  25. has_many :votes, class_name: 'PollVote', inverse_of: :poll, dependent: :delete_all
  26. has_many :voters, -> { group('accounts.id') }, through: :votes, class_name: 'Account', source: :account
  27. has_many :notifications, as: :activity, dependent: :destroy
  28. validates :options, presence: true
  29. validates :expires_at, presence: true, if: :local?
  30. validates_with PollValidator, on: :create, if: :local?
  31. scope :attached, -> { where.not(status_id: nil) }
  32. scope :unattached, -> { where(status_id: nil) }
  33. before_validation :prepare_options, if: :local?
  34. before_validation :prepare_votes_count
  35. before_validation :prepare_cached_tallies
  36. after_commit :reset_parent_cache, on: :update
  37. def loaded_options
  38. options.map.with_index { |title, key| Option.new(self, key.to_s, title, show_totals_now? ? (cached_tallies[key] || 0) : nil) }
  39. end
  40. def possibly_stale?
  41. remote? && last_fetched_before_expiration? && time_passed_since_last_fetch?
  42. end
  43. def voted?(account)
  44. account.id == account_id || votes.where(account: account).exists?
  45. end
  46. def own_votes(account)
  47. votes.where(account: account).pluck(:choice)
  48. end
  49. delegate :local?, to: :account
  50. def remote?
  51. !local?
  52. end
  53. def emojis
  54. @emojis ||= CustomEmoji.from_text(options.join(' '), account.domain)
  55. end
  56. class Option < ActiveModelSerializers::Model
  57. attributes :id, :title, :votes_count, :poll
  58. def initialize(poll, id, title, votes_count)
  59. super(
  60. poll: poll,
  61. id: id,
  62. title: title,
  63. votes_count: votes_count,
  64. )
  65. end
  66. end
  67. def reset_votes!
  68. self.cached_tallies = options.map { 0 }
  69. self.votes_count = 0
  70. self.voters_count = 0
  71. votes.delete_all unless new_record?
  72. end
  73. private
  74. def prepare_cached_tallies
  75. self.cached_tallies = options.map { 0 } if cached_tallies.empty?
  76. end
  77. def prepare_votes_count
  78. self.votes_count = cached_tallies.sum unless cached_tallies.empty?
  79. end
  80. def prepare_options
  81. self.options = options.map(&:strip).reject(&:blank?)
  82. end
  83. def reset_parent_cache
  84. return if status_id.nil?
  85. Rails.cache.delete("statuses/#{status_id}")
  86. end
  87. def last_fetched_before_expiration?
  88. last_fetched_at.nil? || expires_at.nil? || last_fetched_at < expires_at
  89. end
  90. def time_passed_since_last_fetch?
  91. last_fetched_at.nil? || last_fetched_at < 1.minute.ago
  92. end
  93. def show_totals_now?
  94. expired? || !hide_totals?
  95. end
  96. end