2016-11-15 08:56:29 -07:00
|
|
|
# frozen_string_literal: true
|
2023-02-19 22:58:28 -07:00
|
|
|
|
2017-05-01 18:14:47 -06:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: favourites
|
|
|
|
#
|
2018-04-23 03:29:17 -06:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-05-01 18:14:47 -06:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2018-04-23 03:29:17 -06:00
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# status_id :bigint(8) not null
|
2017-05-01 18:14:47 -06:00
|
|
|
#
|
2016-11-15 08:56:29 -07:00
|
|
|
|
2016-08-17 09:56:23 -06:00
|
|
|
class Favourite < ApplicationRecord
|
2016-11-09 09:48:44 -07:00
|
|
|
include Paginable
|
2016-03-24 19:13:30 -06:00
|
|
|
|
2021-11-18 14:02:08 -07:00
|
|
|
update_index('statuses', :status)
|
2018-02-09 15:04:47 -07:00
|
|
|
|
2018-01-19 12:56:47 -07:00
|
|
|
belongs_to :account, inverse_of: :favourites
|
2018-05-29 18:50:23 -06:00
|
|
|
belongs_to :status, inverse_of: :favourites
|
2016-02-23 11:17:37 -07:00
|
|
|
|
2016-11-21 06:59:13 -07:00
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
|
2016-09-01 05:21:48 -06:00
|
|
|
validates :status_id, uniqueness: { scope: :account_id }
|
|
|
|
|
2016-12-22 03:34:05 -07:00
|
|
|
before_validation do
|
2017-04-17 07:54:33 -06:00
|
|
|
self.status = status.reblog if status&.reblog?
|
2016-12-22 03:34:05 -07:00
|
|
|
end
|
2018-05-29 18:50:23 -06:00
|
|
|
|
|
|
|
after_create :increment_cache_counters
|
|
|
|
after_destroy :decrement_cache_counters
|
2021-08-09 15:11:50 -06:00
|
|
|
after_destroy :invalidate_cleanup_info
|
2018-05-29 18:50:23 -06:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def increment_cache_counters
|
2018-08-17 19:03:23 -06:00
|
|
|
status&.increment_count!(:favourites_count)
|
2018-05-29 18:50:23 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def decrement_cache_counters
|
2020-12-22 09:13:55 -07:00
|
|
|
return if association(:status).loaded? && status.marked_for_destruction?
|
2023-02-19 22:58:28 -07:00
|
|
|
|
2018-08-17 19:03:23 -06:00
|
|
|
status&.decrement_count!(:favourites_count)
|
2018-05-29 18:50:23 -06:00
|
|
|
end
|
2021-08-09 15:11:50 -06:00
|
|
|
|
|
|
|
def invalidate_cleanup_info
|
|
|
|
return unless status&.account_id == account_id && account.local?
|
|
|
|
|
|
|
|
account.statuses_cleanup_policy&.invalidate_last_inspected(status, :unfav)
|
|
|
|
end
|
2016-02-23 11:17:37 -07:00
|
|
|
end
|