This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-31 11:38:44 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Instance
|
|
|
|
include ActiveModel::Model
|
|
|
|
|
2019-01-08 04:39:49 -08:00
|
|
|
attr_accessor :domain, :accounts_count, :domain_block
|
2017-05-31 11:38:44 -07:00
|
|
|
|
2019-01-08 04:39:49 -08:00
|
|
|
def initialize(resource)
|
|
|
|
@domain = resource.domain
|
|
|
|
@accounts_count = resource.accounts_count
|
|
|
|
@domain_block = resource.is_a?(DomainBlock) ? resource : DomainBlock.find_by(domain: domain)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cached_sample_accounts
|
|
|
|
Rails.cache.fetch("#{cache_key}/sample_accounts", expires_in: 12.hours) { Account.where(domain: domain).searchable.joins(:account_stat).popular.limit(3) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_param
|
|
|
|
domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache_key
|
|
|
|
domain
|
2017-05-31 11:38:44 -07:00
|
|
|
end
|
|
|
|
end
|