Welcome to mirror list, hosted at ThFree Co, Russian Federation.

statistics_presenter.rb « presenters « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3bcb8b327e4663f70d7830f64034b45d7a5be2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class StatisticsPresenter

  def as_json(options={})
    result = {
      'name' => AppConfig.settings.pod_name,
      'version' => AppConfig.version_string,
      'registrations_open' => AppConfig.settings.enable_registrations
    }
    if AppConfig.privacy.statistics.user_counts?
      result['total_users'] = User.count
      result['active_users_halfyear'] = User.halfyear_actives.count
      result['active_users_monthly'] = User.monthly_actives.count
    end
    if AppConfig.privacy.statistics.post_counts?
      result['local_posts'] = self.local_posts
    end
    if AppConfig.privacy.statistics.comment_counts?
      result['local_comments'] = self.local_comments
    end
    Configuration::KNOWN_SERVICES.each do |service, options|
      result[service.to_s] = AppConfig["services.#{service}.enable"]
    end

    result
  end

  def local_posts
    Post.where(:type => "StatusMessage").joins(:author).where("owner_id IS NOT null").count
  end

  def local_comments
    Comment.joins(:author).where("owner_id IS NOT null").count
  end

end