2017-04-09 14:47:25 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InstancePresenter
|
|
|
|
delegate(
|
|
|
|
:closed_registrations_message,
|
2017-04-15 13:33:25 +02:00
|
|
|
:site_contact_email,
|
2017-04-09 14:47:25 +02:00
|
|
|
:open_registrations,
|
2017-07-11 15:27:59 +02:00
|
|
|
:site_title,
|
2017-04-09 14:47:25 +02:00
|
|
|
:site_description,
|
|
|
|
:site_extended_description,
|
2017-07-04 15:19:24 +02:00
|
|
|
:site_terms,
|
2017-04-09 14:47:25 +02:00
|
|
|
to: Setting
|
|
|
|
)
|
|
|
|
|
|
|
|
def contact_account
|
|
|
|
Account.find_local(Setting.site_contact_username)
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_count
|
2017-04-19 14:58:27 +02:00
|
|
|
Rails.cache.fetch('user_count') { User.confirmed.count }
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_count
|
2017-09-18 14:59:57 +02:00
|
|
|
Rails.cache.fetch('local_status_count') { Account.local.sum(:statuses_count) }
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_count
|
|
|
|
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
|
|
|
|
end
|
2017-04-21 03:30:59 +02:00
|
|
|
|
|
|
|
def version_number
|
2017-04-27 15:22:19 +02:00
|
|
|
Mastodon::Version
|
2017-04-21 03:30:59 +02:00
|
|
|
end
|
2017-07-12 02:32:16 +02:00
|
|
|
|
|
|
|
def commit_hash
|
|
|
|
current_release_file = Pathname.new('CURRENT_RELEASE').expand_path
|
|
|
|
if current_release_file.file?
|
2017-07-25 21:54:12 +02:00
|
|
|
IO.read(current_release_file).strip!
|
2017-07-12 02:32:16 +02:00
|
|
|
else
|
2017-07-25 21:54:12 +02:00
|
|
|
''
|
2017-07-12 02:32:16 +02:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 21:27:47 +02:00
|
|
|
|
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
|
2017-04-09 14:47:25 +02:00
|
|
|
end
|