poll.rb 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 :local_voters, -> { group('accounts.id').merge(Account.local) }, through: :votes, class_name: 'Account', source: :account
  28. has_many :notifications, as: :activity, dependent: :destroy
  29. validates :options, presence: true
  30. validates :expires_at, presence: true, if: :local?
  31. validates_with PollValidator, on: :create, if: :local?
  32. scope :attached, -> { where.not(status_id: nil) }
  33. scope :unattached, -> { where(status_id: nil) }
  34. before_validation :prepare_options, if: :local?
  35. before_validation :prepare_votes_count
  36. before_validation :prepare_cached_tallies
  37. after_commit :reset_parent_cache, on: :update
  38. def loaded_options
  39. options.map.with_index { |title, key| Option.new(self, key.to_s, title, show_totals_now? ? (cached_tallies[key] || 0) : nil) }
  40. end
  41. def possibly_stale?
  42. remote? && last_fetched_before_expiration? && time_passed_since_last_fetch?
  43. end
  44. def voted?(account)
  45. account.id == account_id || votes.where(account: account).exists?
  46. end
  47. def own_votes(account)
  48. votes.where(account: account).pluck(:choice)
  49. end
  50. delegate :local?, to: :account
  51. def remote?
  52. !local?
  53. end
  54. def emojis
  55. @emojis ||= CustomEmoji.from_text(options.join(' '), account.domain)
  56. end
  57. class Option < ActiveModelSerializers::Model
  58. attributes :id, :title, :votes_count, :poll
  59. def initialize(poll, id, title, votes_count)
  60. super(
  61. poll: poll,
  62. id: id,
  63. title: title,
  64. votes_count: votes_count,
  65. )
  66. end
  67. end
  68. def reset_votes!
  69. self.cached_tallies = options.map { 0 }
  70. self.votes_count = 0
  71. self.voters_count = 0
  72. votes.delete_all unless new_record?
  73. end
  74. private
  75. def prepare_cached_tallies
  76. self.cached_tallies = options.map { 0 } if cached_tallies.empty?
  77. end
  78. def prepare_votes_count
  79. self.votes_count = cached_tallies.sum unless cached_tallies.empty?
  80. end
  81. def prepare_options
  82. self.options = options.map(&:strip).compact_blank
  83. end
  84. def reset_parent_cache
  85. return if status_id.nil?
  86. Rails.cache.delete("v3:statuses/#{status_id}")
  87. end
  88. def last_fetched_before_expiration?
  89. last_fetched_at.nil? || expires_at.nil? || last_fetched_at < expires_at
  90. end
  91. def time_passed_since_last_fetch?
  92. last_fetched_at.nil? || last_fetched_at < 1.minute.ago
  93. end
  94. def show_totals_now?
  95. expired? || !hide_totals?
  96. end
  97. end