2018-11-18 15:43:52 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == 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 08:36:11 -08:00
|
|
|
# last_status_at :datetime
|
2018-11-18 15:43:52 -08:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountStat < ApplicationRecord
|
|
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
|
|
|
|
def increment_count!(key)
|
2018-12-06 08:36:11 -08:00
|
|
|
update(attributes_for_increment(key))
|
2018-11-18 15:43:52 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def decrement_count!(key)
|
|
|
|
update(key => [public_send(key) - 1, 0].max)
|
|
|
|
end
|
2018-12-06 08:36:11 -08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def attributes_for_increment(key)
|
|
|
|
attrs = { key => public_send(key) + 1 }
|
|
|
|
attrs[:last_status_at] = Time.now.utc if key == :statuses_count
|
|
|
|
attrs
|
|
|
|
end
|
2018-11-18 15:43:52 -08:00
|
|
|
end
|