The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

104 lines
3.0 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: notifications
  5. #
  6. # id :integer not null, primary key
  7. # activity_id :integer
  8. # activity_type :string
  9. # created_at :datetime not null
  10. # updated_at :datetime not null
  11. # account_id :integer
  12. # from_account_id :integer
  13. #
  14. class Notification < ApplicationRecord
  15. include Paginable
  16. include Cacheable
  17. TYPE_CLASS_MAP = {
  18. mention: 'Mention',
  19. reblog: 'Status',
  20. follow: 'Follow',
  21. follow_request: 'FollowRequest',
  22. favourite: 'Favourite',
  23. }.freeze
  24. STATUS_INCLUDES = [:account, :stream_entry, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :media_attachments, :tags, mentions: :account]].freeze
  25. belongs_to :account
  26. belongs_to :from_account, class_name: 'Account'
  27. belongs_to :activity, polymorphic: true
  28. belongs_to :mention, foreign_type: 'Mention', foreign_key: 'activity_id'
  29. belongs_to :status, foreign_type: 'Status', foreign_key: 'activity_id'
  30. belongs_to :follow, foreign_type: 'Follow', foreign_key: 'activity_id'
  31. belongs_to :follow_request, foreign_type: 'FollowRequest', foreign_key: 'activity_id'
  32. belongs_to :favourite, foreign_type: 'Favourite', foreign_key: 'activity_id'
  33. validates :account_id, uniqueness: { scope: [:activity_type, :activity_id] }
  34. validates :activity_type, inclusion: { in: TYPE_CLASS_MAP.values }
  35. scope :cache_ids, -> { select(:id, :updated_at, :activity_type, :activity_id) }
  36. scope :browserable, ->(exclude_types = []) {
  37. types = TYPE_CLASS_MAP.values - activity_types_from_types(exclude_types + [:follow_request])
  38. where(activity_type: types)
  39. }
  40. cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account
  41. def type
  42. @type ||= TYPE_CLASS_MAP.invert[activity_type].to_sym
  43. end
  44. def target_status
  45. case type
  46. when :reblog
  47. activity&.reblog
  48. when :favourite, :mention
  49. activity&.status
  50. end
  51. end
  52. def browserable?
  53. type != :follow_request
  54. end
  55. class << self
  56. def reload_stale_associations!(cached_items)
  57. account_ids = cached_items.map(&:from_account_id).uniq
  58. return if account_ids.empty?
  59. accounts = Account.where(id: account_ids).map { |a| [a.id, a] }.to_h
  60. cached_items.each do |item|
  61. item.from_account = accounts[item.from_account_id]
  62. end
  63. end
  64. private
  65. def activity_types_from_types(types)
  66. types.map { |type| TYPE_CLASS_MAP[type.to_sym] }.compact
  67. end
  68. end
  69. after_initialize :set_from_account
  70. before_validation :set_from_account
  71. private
  72. def set_from_account
  73. return unless new_record?
  74. case activity_type
  75. when 'Status', 'Follow', 'Favourite', 'FollowRequest'
  76. self.from_account_id = activity&.account_id
  77. when 'Mention'
  78. self.from_account_id = activity&.status&.account_id
  79. end
  80. end
  81. end