2017-04-09 14:47:25 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-10-05 03:47:56 +02: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 14:07:02 +02: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 03:47:56 +02: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 04:56:06 +01:00
|
|
|
def status_page_url
|
|
|
|
Setting.status_page_url
|
|
|
|
end
|
|
|
|
|
2022-10-05 03:47:56 +02:00
|
|
|
def domain
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
Setting.site_title
|
|
|
|
end
|
|
|
|
|
|
|
|
def languages
|
|
|
|
[I18n.default_locale]
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
|
|
|
|
2021-02-21 19:50:12 +01:00
|
|
|
def rules
|
|
|
|
Rule.ordered
|
|
|
|
end
|
|
|
|
|
2017-04-09 14:47:25 +02:00
|
|
|
def user_count
|
2018-11-27 18:49:37 +01:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
|
|
|
|
2021-10-14 20:44:59 +02: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 17:34:00 +01:00
|
|
|
end
|
|
|
|
|
2017-04-09 14:47:25 +02:00
|
|
|
def status_count
|
2018-11-20 02:52:52 +01:00
|
|
|
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
2020-12-14 09:06:34 +01:00
|
|
|
Rails.cache.fetch('distinct_domain_count') { Instance.count }
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
2017-04-21 03:30:59 +02:00
|
|
|
|
2022-10-05 03:47:56 +02:00
|
|
|
def version
|
|
|
|
Mastodon::Version.to_s
|
2017-04-21 03:30:59 +02:00
|
|
|
end
|
2017-08-22 22:54:19 +02:00
|
|
|
|
|
|
|
def source_url
|
|
|
|
Mastodon::Version.source_url
|
|
|
|
end
|
2017-09-14 00:04:30 +02:00
|
|
|
|
|
|
|
def thumbnail
|
|
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
|
|
end
|
2018-02-22 01:03:48 +01:00
|
|
|
|
2018-10-08 00:20:45 +02:00
|
|
|
def mascot
|
|
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
|
|
end
|
2024-05-15 11:38:16 +02:00
|
|
|
|
|
|
|
def favicon
|
|
|
|
return @favicon if defined?(@favicon)
|
|
|
|
|
|
|
|
@favicon ||= Rails.cache.fetch('site_uploads/favicon') { SiteUpload.find_by(var: 'favicon') }
|
|
|
|
end
|
|
|
|
|
|
|
|
def app_icon
|
|
|
|
return @app_icon if defined?(@app_icon)
|
|
|
|
|
|
|
|
@app_icon ||= Rails.cache.fetch('site_uploads/app_icon') { SiteUpload.find_by(var: 'app_icon') }
|
|
|
|
end
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|