2017-04-09 08:47:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InstancePresenter
|
|
|
|
delegate(
|
2017-04-15 07:33:25 -04:00
|
|
|
:site_contact_email,
|
2017-07-11 09:27:59 -04:00
|
|
|
:site_title,
|
2018-07-31 12:59:34 -04:00
|
|
|
:site_short_description,
|
2017-04-09 08:47:25 -04:00
|
|
|
:site_description,
|
|
|
|
:site_extended_description,
|
2017-07-04 09:19:24 -04:00
|
|
|
:site_terms,
|
2019-03-22 21:24:01 -04:00
|
|
|
:closed_registrations_message,
|
2017-04-09 08:47:25 -04:00
|
|
|
to: Setting
|
|
|
|
)
|
|
|
|
|
|
|
|
def contact_account
|
2019-04-06 11:53:17 -04:00
|
|
|
Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_count
|
2018-11-27 12:49:37 -05:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
2019-03-12 12:34:00 -04:00
|
|
|
def active_user_count
|
|
|
|
Rails.cache.fetch('active_user_count') { Redis.current.pfcount(*(0..3).map { |i| "activity:logins:#{i.weeks.ago.utc.to_date.cweek}" }) }
|
|
|
|
end
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
def status_count
|
2018-11-19 20:52:52 -05:00
|
|
|
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
|
|
|
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
|
|
|
|
end
|
2017-04-20 21:30:59 -04:00
|
|
|
|
2019-03-12 12:34:00 -04:00
|
|
|
def sample_accounts
|
2019-03-13 08:01:57 -04:00
|
|
|
Rails.cache.fetch('sample_accounts', expires_in: 12.hours) { Account.discoverable.popular.limit(3) }
|
2019-03-12 12:34:00 -04:00
|
|
|
end
|
|
|
|
|
2017-04-20 21:30:59 -04:00
|
|
|
def version_number
|
2017-04-27 09:22:19 -04:00
|
|
|
Mastodon::Version
|
2017-04-20 21:30:59 -04:00
|
|
|
end
|
2017-08-22 16:54:19 -04:00
|
|
|
|
|
|
|
def source_url
|
|
|
|
Mastodon::Version.source_url
|
|
|
|
end
|
2017-09-13 18:04:30 -04:00
|
|
|
|
|
|
|
def thumbnail
|
|
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
|
|
end
|
2018-02-21 19:03:48 -05:00
|
|
|
|
|
|
|
def hero
|
|
|
|
@hero ||= Rails.cache.fetch('site_uploads/hero') { SiteUpload.find_by(var: 'hero') }
|
|
|
|
end
|
2018-10-07 18:20:45 -04:00
|
|
|
|
|
|
|
def mascot
|
|
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|