2018-11-19 00:43:52 +01:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 06:58:28 +01:00
|
|
|
|
2018-11-19 00:43:52 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_stats
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# statuses_count :bigint(8) default(0), not null
|
|
|
|
# following_count :bigint(8) default(0), not null
|
|
|
|
# followers_count :bigint(8) default(0), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2018-12-06 17:36:11 +01:00
|
|
|
# last_status_at :datetime
|
2018-11-19 00:43:52 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountStat < ApplicationRecord
|
2021-06-02 17:41:25 +02:00
|
|
|
self.locking_column = nil
|
2023-03-31 15:07:22 +02:00
|
|
|
self.ignored_columns += %w(lock_version)
|
2021-06-02 17:41:25 +02:00
|
|
|
|
2018-11-19 00:43:52 +01:00
|
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
|
2024-03-26 14:12:09 +01:00
|
|
|
scope :by_recent_status, -> { order(arel_table[:last_status_at].desc.nulls_last) }
|
|
|
|
scope :without_recent_activity, -> { where(last_status_at: [nil, ...1.month.ago]) }
|
|
|
|
|
2021-11-18 22:02:08 +01:00
|
|
|
update_index('accounts', :account)
|
2022-05-26 20:32:48 +02:00
|
|
|
|
|
|
|
def following_count
|
|
|
|
[attributes['following_count'], 0].max
|
|
|
|
end
|
|
|
|
|
|
|
|
def followers_count
|
|
|
|
[attributes['followers_count'], 0].max
|
|
|
|
end
|
|
|
|
|
|
|
|
def statuses_count
|
|
|
|
[attributes['statuses_count'], 0].max
|
|
|
|
end
|
2018-11-19 00:43:52 +01:00
|
|
|
end
|