2016-11-19 23:33:02 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Notification < ApplicationRecord
|
|
|
|
include Paginable
|
2016-11-30 14:57:56 +00:00
|
|
|
include Cacheable
|
2016-11-19 23:33:02 +00:00
|
|
|
|
|
|
|
belongs_to :account
|
2016-12-03 17:21:26 +00:00
|
|
|
belongs_to :from_account, class_name: 'Account'
|
2016-11-19 23:33:02 +00:00
|
|
|
belongs_to :activity, polymorphic: true
|
|
|
|
|
2016-12-26 20:52:03 +00:00
|
|
|
belongs_to :mention, foreign_type: 'Mention', foreign_key: 'activity_id'
|
|
|
|
belongs_to :status, foreign_type: 'Status', foreign_key: 'activity_id'
|
|
|
|
belongs_to :follow, foreign_type: 'Follow', foreign_key: 'activity_id'
|
|
|
|
belongs_to :follow_request, foreign_type: 'FollowRequest', foreign_key: 'activity_id'
|
|
|
|
belongs_to :favourite, foreign_type: 'Favourite', foreign_key: 'activity_id'
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2016-11-22 16:32:51 +00:00
|
|
|
validates :account_id, uniqueness: { scope: [:activity_type, :activity_id] }
|
|
|
|
|
2016-11-21 14:16:04 +00:00
|
|
|
STATUS_INCLUDES = [:account, :stream_entry, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :media_attachments, :tags, mentions: :account]].freeze
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2016-12-03 19:04:19 +00:00
|
|
|
scope :cache_ids, -> { select(:id, :updated_at, :activity_type, :activity_id) }
|
2016-12-26 20:52:03 +00:00
|
|
|
scope :browserable, -> { where.not(activity_type: ['FollowRequest']) }
|
2016-12-03 19:04:19 +00:00
|
|
|
|
2016-12-03 17:21:26 +00:00
|
|
|
cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2016-12-03 19:04:19 +00:00
|
|
|
def activity(eager_loaded = true)
|
|
|
|
eager_loaded ? send(activity_type.downcase) : super
|
2016-11-21 14:16:04 +00:00
|
|
|
end
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def type
|
|
|
|
case activity_type
|
|
|
|
when 'Status'
|
|
|
|
:reblog
|
|
|
|
else
|
2016-12-26 20:52:03 +00:00
|
|
|
activity_type.underscore.to_sym
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def target_status
|
|
|
|
case type
|
|
|
|
when :reblog
|
2017-01-22 20:50:17 +00:00
|
|
|
activity&.reblog
|
2016-11-19 23:33:02 +00:00
|
|
|
when :favourite, :mention
|
2017-01-22 20:50:17 +00:00
|
|
|
activity&.status
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 17:21:26 +00:00
|
|
|
|
2016-12-26 20:52:03 +00:00
|
|
|
def browserable?
|
|
|
|
type != :follow_request
|
|
|
|
end
|
|
|
|
|
2016-12-03 17:21:26 +00:00
|
|
|
class << self
|
|
|
|
def reload_stale_associations!(cached_items)
|
|
|
|
account_ids = cached_items.map(&:from_account_id).uniq
|
|
|
|
accounts = Account.where(id: account_ids).map { |a| [a.id, a] }.to_h
|
|
|
|
|
|
|
|
cached_items.each do |item|
|
|
|
|
item.from_account = accounts[item.from_account_id]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-12-03 19:04:19 +00:00
|
|
|
|
|
|
|
after_initialize :set_from_account
|
|
|
|
before_validation :set_from_account
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_from_account
|
2017-01-26 13:52:07 +00:00
|
|
|
return unless new_record?
|
|
|
|
|
2016-12-03 19:04:19 +00:00
|
|
|
case activity_type
|
2016-12-26 20:52:03 +00:00
|
|
|
when 'Status', 'Follow', 'Favourite', 'FollowRequest'
|
2016-12-03 19:04:19 +00:00
|
|
|
self.from_account_id = activity(false)&.account_id
|
|
|
|
when 'Mention'
|
|
|
|
self.from_account_id = activity(false)&.status&.account_id
|
|
|
|
end
|
|
|
|
end
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|