mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-16 05:04:02 -05:00
5f69eb89e2
* Add nodeinfo endpoint * dont commit stuff from my local dev * consistant naming since we implimented 2.1 schema * Add some additional node info stuff * Add nodeinfo endpoint * dont commit stuff from my local dev * consistant naming since we implimented 2.1 schema * expanding this to include federation info * codeclimate feedback * CC feedback * using activeserializers seems like a good idea... * get rid of draft 2.1 version * Reimplement 2.1, also fix metaData -> metadata * Fix metaData -> metadata here too * Fix nodeinfo 2.1 tests * Implement cache for monthly user aggregate * Useless * Remove ostatus from the list of supported protocols * Fix nodeinfo's open_registration reading obsolete setting variable * Only serialize domain blocks with user-facing limitations * Do not needlessly list noop severity in nodeinfo * Only serialize domain blocks info in nodeinfo when they are set to be displayed to everyone * Enable caching for nodeinfo endpoints * Fix rendering nodeinfo * CodeClimate fixes * Please CodeClimate * Change InstancePresenter#active_user_count_months for clarity * Refactor NodeInfoSerializer#metadata * Remove nodeinfo 2.1 support as the schema doesn't exist * Clean-up
59 lines
1.5 KiB
Ruby
59 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class InstancePresenter
|
|
delegate(
|
|
:site_contact_email,
|
|
:site_title,
|
|
:site_short_description,
|
|
:site_description,
|
|
:site_extended_description,
|
|
:site_terms,
|
|
:closed_registrations_message,
|
|
to: Setting
|
|
)
|
|
|
|
def contact_account
|
|
Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, ''))
|
|
end
|
|
|
|
def user_count
|
|
Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
|
|
end
|
|
|
|
def active_user_count(weeks = 4)
|
|
Rails.cache.fetch('active_user_count') { Redis.current.pfcount(*(0...weeks).map { |i| "activity:logins:#{i.weeks.ago.utc.to_date.cweek}" }) }
|
|
end
|
|
|
|
def status_count
|
|
Rails.cache.fetch('local_status_count') { Account.local.joins(:account_stat).sum('account_stats.statuses_count') }.to_i
|
|
end
|
|
|
|
def domain_count
|
|
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
|
|
end
|
|
|
|
def sample_accounts
|
|
Rails.cache.fetch('sample_accounts', expires_in: 12.hours) { Account.local.discoverable.popular.limit(3) }
|
|
end
|
|
|
|
def version_number
|
|
Mastodon::Version
|
|
end
|
|
|
|
def source_url
|
|
Mastodon::Version.source_url
|
|
end
|
|
|
|
def thumbnail
|
|
@thumbnail ||= Rails.cache.fetch('site_uploads/thumbnail') { SiteUpload.find_by(var: 'thumbnail') }
|
|
end
|
|
|
|
def hero
|
|
@hero ||= Rails.cache.fetch('site_uploads/hero') { SiteUpload.find_by(var: 'hero') }
|
|
end
|
|
|
|
def mascot
|
|
@mascot ||= Rails.cache.fetch('site_uploads/mascot') { SiteUpload.find_by(var: 'mascot') }
|
|
end
|
|
end
|