2018-11-18 23:43:52 +00:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2018-11-18 23:43:52 +00: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 16:36:11 +00:00
|
|
|
# last_status_at :datetime
|
2018-11-18 23:43:52 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountStat < ApplicationRecord
|
2021-06-02 15:41:25 +00:00
|
|
|
self.locking_column = nil
|
2023-03-31 13:07:22 +00:00
|
|
|
self.ignored_columns += %w(lock_version)
|
2021-06-02 15:41:25 +00:00
|
|
|
|
2018-11-18 23:43:52 +00:00
|
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
|
2021-11-18 21:02:08 +00:00
|
|
|
update_index('accounts', :account)
|
2022-05-26 18:32:48 +00: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-18 23:43:52 +00:00
|
|
|
end
|