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