Skip to content
Extraits de code Groupes Projets
instance_presenter.rb 1,54 ko
Newer Older
  • Learn to ignore specific revisions
  • # frozen_string_literal: true
    
    class InstancePresenter
      delegate(
        :closed_registrations_message,
    
        :site_contact_email,
    
        :open_registrations,
    
        :site_description,
        :site_extended_description,
    
        to: Setting
      )
    
      def contact_account
    
        Account.find_local(Setting.site_contact_username.gsub(/\A@/, ''))
    
      end
    
      def user_count
    
        Rails.cache.fetch('user_count') { User.confirmed.joins(:account).merge(Account.without_suspended).count }
    
      def active_user_count
        Rails.cache.fetch('active_user_count') { Redis.current.pfcount(*(0..3).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.searchable.joins(:account_stat).popular.limit(3) }
      end
    
    
      def version_number
    
    
      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