You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.9 KiB

  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. #
  20. class Poll < ApplicationRecord
  21. include Expireable
  22. belongs_to :account
  23. belongs_to :status
  24. has_many :votes, class_name: 'PollVote', inverse_of: :poll, dependent: :destroy
  25. has_many :notifications, as: :activity, dependent: :destroy
  26. validates :options, presence: true
  27. validates :expires_at, presence: true, if: :local?
  28. validates_with PollValidator, on: :create, if: :local?
  29. scope :attached, -> { where.not(status_id: nil) }
  30. scope :unattached, -> { where(status_id: nil) }
  31. before_validation :prepare_options
  32. before_validation :prepare_votes_count
  33. after_initialize :prepare_cached_tallies
  34. after_commit :reset_parent_cache, on: :update
  35. def loaded_options
  36. options.map.with_index { |title, key| Option.new(self, key.to_s, title, show_totals_now? ? cached_tallies[key] : nil) }
  37. end
  38. def possibly_stale?
  39. remote? && last_fetched_before_expiration? && time_passed_since_last_fetch?
  40. end
  41. def voted?(account)
  42. account.id == account_id || votes.where(account: account).exists?
  43. end
  44. def own_votes(account)
  45. votes.where(account: account).pluck(:choice)
  46. end
  47. delegate :local?, to: :account
  48. def remote?
  49. !local?
  50. end
  51. def emojis
  52. @emojis ||= CustomEmoji.from_text(options.join(' '), account.domain)
  53. end
  54. class Option < ActiveModelSerializers::Model
  55. attributes :id, :title, :votes_count, :poll
  56. def initialize(poll, id, title, votes_count)
  57. @poll = poll
  58. @id = id
  59. @title = title
  60. @votes_count = votes_count
  61. end
  62. end
  63. private
  64. def prepare_cached_tallies
  65. self.cached_tallies = options.map { 0 } if cached_tallies.empty?
  66. end
  67. def prepare_votes_count
  68. self.votes_count = cached_tallies.sum unless cached_tallies.empty?
  69. end
  70. def prepare_options
  71. self.options = options.map(&:strip).reject(&:blank?)
  72. end
  73. def reset_parent_cache
  74. return if status_id.nil?
  75. Rails.cache.delete("statuses/#{status_id}")
  76. end
  77. def last_fetched_before_expiration?
  78. last_fetched_at.nil? || expires_at.nil? || last_fetched_at < expires_at
  79. end
  80. def time_passed_since_last_fetch?
  81. last_fetched_at.nil? || last_fetched_at < 1.minute.ago
  82. end
  83. def show_totals_now?
  84. expired? || !hide_totals?
  85. end
  86. end