announcement.rb 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: announcements
  5. #
  6. # id :bigint(8) not null, primary key
  7. # text :text default(""), not null
  8. # published :boolean default(FALSE), not null
  9. # all_day :boolean default(FALSE), not null
  10. # scheduled_at :datetime
  11. # starts_at :datetime
  12. # ends_at :datetime
  13. # created_at :datetime not null
  14. # updated_at :datetime not null
  15. # published_at :datetime
  16. #
  17. class Announcement < ApplicationRecord
  18. scope :unpublished, -> { where(published: false) }
  19. scope :published, -> { where(published: true) }
  20. scope :without_muted, ->(account) { joins("LEFT OUTER JOIN announcement_mutes ON announcement_mutes.announcement_id = announcements.id AND announcement_mutes.account_id = #{account.id}").where('announcement_mutes.id IS NULL') }
  21. scope :chronological, -> { order(Arel.sql('COALESCE(announcements.starts_at, announcements.scheduled_at, announcements.published_at, announcements.created_at) ASC')) }
  22. has_many :announcement_mutes, dependent: :destroy
  23. has_many :announcement_reactions, dependent: :destroy
  24. validates :text, presence: true
  25. validates :starts_at, presence: true, if: -> { ends_at.present? }
  26. validates :ends_at, presence: true, if: -> { starts_at.present? }
  27. before_validation :set_all_day
  28. before_validation :set_published, on: :create
  29. def publish!
  30. update!(published: true, published_at: Time.now.utc, scheduled_at: nil)
  31. end
  32. def unpublish!
  33. update!(published: false, scheduled_at: nil)
  34. end
  35. def time_range?
  36. starts_at.present? && ends_at.present?
  37. end
  38. def mentions
  39. @mentions ||= Account.from_text(text)
  40. end
  41. def statuses
  42. @statuses ||= Status.from_text(text)
  43. end
  44. def tags
  45. @tags ||= Tag.find_or_create_by_names(Extractor.extract_hashtags(text))
  46. end
  47. def emojis
  48. @emojis ||= CustomEmoji.from_text(text)
  49. end
  50. def reactions(account = nil)
  51. records = begin
  52. scope = announcement_reactions.group(:announcement_id, :name, :custom_emoji_id).order(Arel.sql('MIN(created_at) ASC'))
  53. if account.nil?
  54. scope.select('name, custom_emoji_id, count(*) as count, false as me')
  55. else
  56. scope.select("name, custom_emoji_id, count(*) as count, exists(select 1 from announcement_reactions r where r.account_id = #{account.id} and r.announcement_id = announcement_reactions.announcement_id and r.name = announcement_reactions.name) as me")
  57. end
  58. end
  59. ActiveRecord::Associations::Preloader.new.preload(records, :custom_emoji)
  60. records
  61. end
  62. private
  63. def set_all_day
  64. self.all_day = false if starts_at.blank? || ends_at.blank?
  65. end
  66. def set_published
  67. return unless scheduled_at.blank? || scheduled_at.past?
  68. self.published = true
  69. self.published_at = Time.now.utc
  70. end
  71. end