2016-11-20 00:33:02 +01:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 02:14:47 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notifications
|
|
|
|
#
|
2017-11-18 00:16:48 +01:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# activity_id :integer
|
2017-05-02 02:14:47 +02:00
|
|
|
# activity_type :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-11-18 00:16:48 +01:00
|
|
|
# account_id :integer
|
|
|
|
# from_account_id :integer
|
2017-05-02 02:14:47 +02:00
|
|
|
#
|
2016-11-20 00:33:02 +01:00
|
|
|
|
|
|
|
class Notification < ApplicationRecord
|
|
|
|
include Paginable
|
2016-11-30 15:57:56 +01:00
|
|
|
include Cacheable
|
2016-11-20 00:33:02 +01:00
|
|
|
|
2017-05-06 21:55:40 +02:00
|
|
|
TYPE_CLASS_MAP = {
|
|
|
|
mention: 'Mention',
|
|
|
|
reblog: 'Status',
|
|
|
|
follow: 'Follow',
|
|
|
|
follow_request: 'FollowRequest',
|
|
|
|
favourite: 'Favourite',
|
|
|
|
}.freeze
|
|
|
|
|
2017-11-19 15:32:48 +01:00
|
|
|
STATUS_INCLUDES = [:account, :application, :stream_entry, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :application, :media_attachments, :tags, mentions: :account]].freeze
|
2017-05-06 21:55:40 +02:00
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
belongs_to :account
|
2016-12-03 18:21:26 +01:00
|
|
|
belongs_to :from_account, class_name: 'Account'
|
2016-11-20 00:33:02 +01:00
|
|
|
belongs_to :activity, polymorphic: true
|
|
|
|
|
2016-12-26 21:52:03 +01: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-20 00:33:02 +01:00
|
|
|
|
2016-11-22 17:32:51 +01:00
|
|
|
validates :account_id, uniqueness: { scope: [:activity_type, :activity_id] }
|
2017-05-06 21:55:40 +02:00
|
|
|
validates :activity_type, inclusion: { in: TYPE_CLASS_MAP.values }
|
2016-11-20 00:33:02 +01:00
|
|
|
|
2016-12-03 20:04:19 +01:00
|
|
|
scope :cache_ids, -> { select(:id, :updated_at, :activity_type, :activity_id) }
|
|
|
|
|
2017-05-06 21:55:40 +02:00
|
|
|
scope :browserable, ->(exclude_types = []) {
|
|
|
|
types = TYPE_CLASS_MAP.values - activity_types_from_types(exclude_types + [:follow_request])
|
|
|
|
where(activity_type: types)
|
|
|
|
}
|
|
|
|
|
2016-12-03 18:21:26 +01:00
|
|
|
cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account
|
2016-11-20 00:33:02 +01:00
|
|
|
|
|
|
|
def type
|
2017-04-10 23:45:29 +02:00
|
|
|
@type ||= TYPE_CLASS_MAP.invert[activity_type].to_sym
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def target_status
|
|
|
|
case type
|
|
|
|
when :reblog
|
2017-11-19 15:32:48 +01:00
|
|
|
status&.reblog
|
|
|
|
when :favourite
|
|
|
|
favourite&.status
|
|
|
|
when :mention
|
|
|
|
mention&.status
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 18:21:26 +01:00
|
|
|
|
2016-12-26 21:52:03 +01:00
|
|
|
def browserable?
|
|
|
|
type != :follow_request
|
|
|
|
end
|
|
|
|
|
2016-12-03 18:21:26 +01:00
|
|
|
class << self
|
|
|
|
def reload_stale_associations!(cached_items)
|
|
|
|
account_ids = cached_items.map(&:from_account_id).uniq
|
2017-10-13 16:44:29 +02:00
|
|
|
|
|
|
|
return if account_ids.empty?
|
|
|
|
|
|
|
|
accounts = Account.where(id: account_ids).map { |a| [a.id, a] }.to_h
|
2016-12-03 18:21:26 +01:00
|
|
|
|
|
|
|
cached_items.each do |item|
|
|
|
|
item.from_account = accounts[item.from_account_id]
|
|
|
|
end
|
|
|
|
end
|
2017-04-10 23:45:29 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def activity_types_from_types(types)
|
|
|
|
types.map { |type| TYPE_CLASS_MAP[type.to_sym] }.compact
|
|
|
|
end
|
2016-12-03 18:21:26 +01:00
|
|
|
end
|
2016-12-03 20:04:19 +01:00
|
|
|
|
|
|
|
after_initialize :set_from_account
|
|
|
|
before_validation :set_from_account
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_from_account
|
2017-01-26 14:52:07 +01:00
|
|
|
return unless new_record?
|
|
|
|
|
2016-12-03 20:04:19 +01:00
|
|
|
case activity_type
|
2016-12-26 21:52:03 +01:00
|
|
|
when 'Status', 'Follow', 'Favourite', 'FollowRequest'
|
2017-06-01 20:53:37 +02:00
|
|
|
self.from_account_id = activity&.account_id
|
2016-12-03 20:04:19 +01:00
|
|
|
when 'Mention'
|
2017-06-01 20:53:37 +02:00
|
|
|
self.from_account_id = activity&.status&.account_id
|
2016-12-03 20:04:19 +01:00
|
|
|
end
|
|
|
|
end
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|