2017-04-09 12:47:25 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-10-05 01:47:56 +00:00
|
|
|
class InstancePresenter < ActiveModelSerializers::Model
|
|
|
|
attributes :domain, :title, :version, :source_url,
|
|
|
|
:description, :languages, :rules, :contact
|
|
|
|
|
|
|
|
class ContactPresenter < ActiveModelSerializers::Model
|
|
|
|
attributes :email, :account
|
|
|
|
|
|
|
|
def email
|
|
|
|
Setting.site_contact_email
|
|
|
|
end
|
|
|
|
|
|
|
|
def account
|
2022-10-21 12:07:02 +00:00
|
|
|
username, domain = Setting.site_contact_username.strip.gsub(/\A@/, '').split('@', 2)
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
|
|
|
Account.find_remote(username, domain) if username.present?
|
2022-10-05 01:47:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def contact
|
|
|
|
ContactPresenter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
Setting.site_short_description
|
|
|
|
end
|
|
|
|
|
|
|
|
def extended_description
|
|
|
|
Setting.site_extended_description
|
|
|
|
end
|
|
|
|
|
2023-02-04 03:56:06 +00:00
|
|
|
def status_page_url
|
|
|
|
Setting.status_page_url
|
|
|
|
end
|
|
|
|
|
2022-10-05 01:47:56 +00:00
|
|
|
def domain
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
Setting.site_title
|
|
|
|
end
|
|
|
|
|
|
|
|
def languages
|
|
|
|
[I18n.default_locale]
|
2017-04-09 12:47:25 +00:00
|
|
|
end
|
|
|
|
|
2021-02-21 18:50:12 +00:00
|
|
|
def rules
|
|
|
|
Rule.ordered
|
|
|
|
end
|
|
|
|
|
2017-04-09 12:47:25 +00:00
|
|
|
def user_count
|
2018-11-27 17:49:37 +00:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
|
2017-04-09 12:47:25 +00:00
|
|
|
end
|
|
|
|
|
2021-10-14 18:44:59 +00: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-12 16:34:00 +00:00
|
|
|
end
|
|
|
|
|
2017-04-09 12:47:25 +00:00
|
|
|
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 12:47:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
2020-12-14 08:06:34 +00:00
|
|
|
Rails.cache.fetch('distinct_domain_count') { Instance.count }
|
2017-04-09 12:47:25 +00:00
|
|
|
end
|
2017-04-21 01:30:59 +00:00
|
|
|
|
2022-10-05 01:47:56 +00:00
|
|
|
def version
|
|
|
|
Mastodon::Version.to_s
|
2017-04-21 01:30:59 +00:00
|
|
|
end
|
2017-08-22 20:54:19 +00:00
|
|
|
|
|
|
|
def source_url
|
|
|
|
Mastodon::Version.source_url
|
|
|
|
end
|
2017-09-13 22:04:30 +00:00
|
|
|
|
|
|
|
def thumbnail
|
|
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
|
|
end
|
2018-02-22 00:03:48 +00:00
|
|
|
|
2018-10-07 22:20:45 +00:00
|
|
|
def mascot
|
|
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
|
|
end
|
2017-04-09 12:47:25 +00:00
|
|
|
end
|