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: e6382850ca97cacd50f783fdbffcda7f26748f86 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

# TODO: Drop after 0.6
class StatisticsPresenter < NodeInfoPresenter
  def initialize
    super("1.0")
  end

  def as_json(_options={})
    base_data.merge(user_counts)
             .merge(post_counts)
             .merge(comment_counts)
  end

  def base_data
    {
      "name"               => name,
      "network"            => "Diaspora",
      "version"            => version,
      "registrations_open" => open_registrations?,
      "services"           => available_services
    }
  end

  def user_counts
    return {} unless expose_user_counts?
    {
      "total_users"           => total_users,
      "active_users_monthly"  => monthly_users,
      "active_users_halfyear" => halfyear_users
    }
  end

  def post_counts
    return {} unless expose_posts_counts?
    {
      "local_posts" => local_posts
    }
  end

  def comment_counts
    return {} unless expose_comment_counts?
    {
      "local_comments" => local_comments
    }
  end
end