2017-04-09 13:47:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InstancePresenter
|
|
|
|
delegate(
|
|
|
|
:closed_registrations_message,
|
2017-04-15 12:33:25 +01:00
|
|
|
:site_contact_email,
|
2017-04-09 13:47:25 +01:00
|
|
|
:open_registrations,
|
2017-07-11 14:27:59 +01:00
|
|
|
:site_title,
|
2018-07-31 17:59:34 +01:00
|
|
|
:site_short_description,
|
2017-04-09 13:47:25 +01:00
|
|
|
:site_description,
|
|
|
|
:site_extended_description,
|
2017-07-04 14:19:24 +01:00
|
|
|
:site_terms,
|
2017-04-09 13:47:25 +01:00
|
|
|
to: Setting
|
|
|
|
)
|
|
|
|
|
|
|
|
def contact_account
|
2018-08-24 03:33:27 +01:00
|
|
|
Account.find_local(Setting.site_contact_username.gsub(/\A@/, ''))
|
2017-04-09 13:47:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_count
|
2017-04-19 13:58:27 +01:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.count }
|
2017-04-09 13:47:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_count
|
2018-11-20 01:52:52 +00:00
|
|
|
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
|
2017-04-09 13:47:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
|
|
|
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
|
|
|
|
end
|
2017-04-21 02:30:59 +01:00
|
|
|
|
|
|
|
def version_number
|
2017-04-27 14:22:19 +01:00
|
|
|
Mastodon::Version
|
2017-04-21 02:30:59 +01:00
|
|
|
end
|
2017-08-22 21:54:19 +01:00
|
|
|
|
|
|
|
def source_url
|
|
|
|
Mastodon::Version.source_url
|
|
|
|
end
|
2017-09-13 23:04:30 +01:00
|
|
|
|
|
|
|
def thumbnail
|
|
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
|
|
end
|
2018-02-22 00:03:48 +00:00
|
|
|
|
|
|
|
def hero
|
|
|
|
@hero ||= Rails.cache.fetch('site_uploads/hero') { SiteUpload.find_by(var: 'hero') }
|
|
|
|
end
|
2018-10-07 23:20:45 +01:00
|
|
|
|
|
|
|
def mascot
|
|
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
|
|
end
|
2017-04-09 13:47:25 +01:00
|
|
|
end
|