2017-04-09 22:47:25 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InstancePresenter
|
|
|
|
delegate(
|
2017-04-15 21:33:25 +10:00
|
|
|
:site_contact_email,
|
2017-07-11 23:27:59 +10:00
|
|
|
:site_title,
|
2018-08-01 02:59:34 +10:00
|
|
|
:site_short_description,
|
2017-04-09 22:47:25 +10:00
|
|
|
:site_description,
|
|
|
|
:site_extended_description,
|
2017-07-04 23:19:24 +10:00
|
|
|
:site_terms,
|
2019-03-23 12:24:01 +11:00
|
|
|
:closed_registrations_message,
|
2017-04-09 22:47:25 +10:00
|
|
|
to: Setting
|
|
|
|
)
|
|
|
|
|
|
|
|
def contact_account
|
2019-04-07 02:53:17 +11:00
|
|
|
Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|
|
|
|
|
2021-02-22 05:50:12 +11:00
|
|
|
def rules
|
|
|
|
Rule.ordered
|
|
|
|
end
|
|
|
|
|
2017-04-09 22:47:25 +10:00
|
|
|
def user_count
|
2018-11-28 04:49:37 +11:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|
|
|
|
|
2021-10-15 05:44:59 +11:00
|
|
|
def active_user_count(num_weeks = 4)
|
|
|
|
Rails.cache.fetch("active_user_count/#{num_weeks}") { ActivityTracker.new('activity:logins', :unique).sum(num_weeks.weeks.ago) }
|
2019-03-13 03:34:00 +11:00
|
|
|
end
|
|
|
|
|
2017-04-09 22:47:25 +10:00
|
|
|
def status_count
|
2018-11-20 12:52:52 +11:00
|
|
|
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
2020-12-14 19:06:34 +11:00
|
|
|
Rails.cache.fetch('distinct_domain_count') { Instance.count }
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|
2017-04-21 11:30:59 +10:00
|
|
|
|
2019-03-13 03:34:00 +11:00
|
|
|
def sample_accounts
|
2019-09-17 18:06:43 +10:00
|
|
|
Rails.cache.fetch('sample_accounts', expires_in: 12.hours) { Account.local.discoverable.popular.limit(3) }
|
2019-03-13 03:34:00 +11:00
|
|
|
end
|
|
|
|
|
2017-04-21 11:30:59 +10:00
|
|
|
def version_number
|
2017-04-27 23:22:19 +10:00
|
|
|
Mastodon::Version
|
2017-04-21 11:30:59 +10:00
|
|
|
end
|
2017-08-23 06:54:19 +10:00
|
|
|
|
|
|
|
def source_url
|
|
|
|
Mastodon::Version.source_url
|
|
|
|
end
|
2017-09-14 08:04:30 +10:00
|
|
|
|
|
|
|
def thumbnail
|
|
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
|
|
end
|
2018-02-22 11:03:48 +11:00
|
|
|
|
|
|
|
def hero
|
|
|
|
@hero ||= Rails.cache.fetch('site_uploads/hero') { SiteUpload.find_by(var: 'hero') }
|
|
|
|
end
|
2018-10-08 09:20:45 +11:00
|
|
|
|
|
|
|
def mascot
|
|
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
|
|
end
|
2017-04-09 22:47:25 +10:00
|
|
|
end
|