mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
098ab29d41
This commit introduces a new plugin API to register a group of stats that will be included in about.json and also conditionally in the site about UI at /about. The usage is like this: ```ruby register_about_stat_group("chat_messages", show_in_ui: true) do { last_day: 1, "7_days" => 10, "30_days" => 100, count: 1000, previous_30_days: 120 } end ``` In reality the stats will be generated any way the implementer chooses within the plugin. The `last_day`, `7_days`, `30_days,` and `count` keys must be present but apart from that additional stats may be added. Only those core 4 stat keys will be shown in the UI, but everything will be shown in about.json. The stat group name is used to prefix the stats in about.json like so: ```json "chat_messages_last_day": 2322, "chat_messages_7_days": 2322, "chat_messages_30_days": 2322, "chat_messages_count": 2322, ``` The `show_in_ui` option (default false) is used to determine whether the group of stats is shown on the site About page in the Site Statistics table. Some stats may be needed purely for reporting purposes and thus do not need to be shown in the UI to admins/users. An extension to the Site serializer, `displayed_about_plugin_stat_groups`, has been added so this can be inspected on the client-side.
131 lines
4.4 KiB
Plaintext
131 lines
4.4 KiB
Plaintext
<% if crawler_layout? %>
|
|
|
|
<section itemscope itemtype="https://schema.org/AboutPage">
|
|
<h1 itemprop="name">
|
|
<%=t "js.about.title", **{title: @about.title} %>
|
|
</h1>
|
|
|
|
<div itemprop="text">
|
|
<%= @about.description %>
|
|
</div>
|
|
|
|
<h2><%=t "js.about.our_admins" %></h2>
|
|
|
|
<div class='admins-list' itemscope itemtype='http://schema.org/ItemList'>
|
|
<% @about.admins.each do |user| %>
|
|
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
<meta itemprop='url' content='<%= user_path(user.username_lower) %>'>
|
|
<a href='<%= user_path(user.username_lower) %>' itemprop='item'>
|
|
<span itemprop='image'>
|
|
<img width="45" height="45" class="avatar" src="<%= user.small_avatar_url %>">
|
|
</span>
|
|
<span itemprop='name'>
|
|
<%= user.username %>
|
|
<% if user.name.present? && SiteSetting.enable_names %>
|
|
- <%= user.name %>
|
|
<% end %>
|
|
</span>
|
|
</a>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if @about.moderators.count > 0 %>
|
|
<h2><%=t "js.about.our_moderators" %></h2>
|
|
<div class='moderators-list' itemscope itemtype='http://schema.org/ItemList'>
|
|
<% @about.moderators.each do |user| %>
|
|
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
<meta itemprop='url' content='<%= user_path(user.username_lower) %>'>
|
|
<a href='<%= user_path(user.username_lower) %>' itemprop='item'>
|
|
<span itemprop='image'>
|
|
<img width="45" height="45" class="avatar" src="<%= user.small_avatar_url %>">
|
|
</span>
|
|
<span itemprop='name'>
|
|
<%= user.username %>
|
|
<% if user.name.present? && SiteSetting.enable_names %>
|
|
- <%= user.name %>
|
|
<% end %>
|
|
</span>
|
|
</a>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%- stats = About.fetch_cached_stats %>
|
|
|
|
<section class='about stats'>
|
|
<h2><%=t 'js.about.stats' %></h2>
|
|
|
|
<table class='table'>
|
|
<tr>
|
|
<th> </th>
|
|
<th><%=t 'js.about.stat.all_time' %></th>
|
|
<th><%=t 'js.about.stat.last_day' %></th>
|
|
<th><%=t 'js.about.stat.last_7_days' %></th>
|
|
<th><%=t 'js.about.stat.last_30_days' %></th>
|
|
</tr>
|
|
<tr>
|
|
<td class='title'><%=t 'js.about.topic_count' %></td>
|
|
<td><%= stats["topic_count"] %></td>
|
|
<td><%= stats["topics_last_day"] %></td>
|
|
<td><%= stats["topics_7_days"] %></td>
|
|
<td><%= stats["topics_30_days"] %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%=t 'js.about.post_count' %></td>
|
|
<td><%= stats["post_count"] %></td>
|
|
<td><%= stats["posts_last_day"] %></td>
|
|
<td><%= stats["posts_7_days"] %></td>
|
|
<td><%= stats["posts_30_days"] %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%=t 'js.about.user_count' %></td>
|
|
<td><%= stats["user_count"] %></td>
|
|
<td><%= stats["users_last_day"] %></td>
|
|
<td><%= stats["users_7_days"] %></td>
|
|
<td><%= stats["users_30_days"] %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%=t 'js.about.active_user_count' %></td>
|
|
<td>—</td>
|
|
<td><%= stats["active_users_last_day"] %></td>
|
|
<td><%= stats["active_users_7_days"] %></td>
|
|
<td><%= stats["active_users_30_days"] %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%=t 'js.about.like_count' %></td>
|
|
<td><%= stats["like_count"] %></td>
|
|
<td><%= stats["likes_last_day"] %></td>
|
|
<td><%= stats["likes_7_days"] %></td>
|
|
<td><%= stats["likes_30_days"] %></td>
|
|
</tr>
|
|
<% About.displayed_plugin_stat_groups.each do |stat_group_name| %>
|
|
<tr>
|
|
<td><%=t "js.about.#{stat_group_name}_count" %></td>
|
|
<td><%= stats["#{stat_group_name}_count"] %></td>
|
|
<td><%= stats["#{stat_group_name}_last_day"] %></td>
|
|
<td><%= stats["#{stat_group_name}_7_days"] %></td>
|
|
<td><%= stats["#{stat_group_name}_30_days"] %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</section>
|
|
|
|
</section>
|
|
<br/>
|
|
<br/>
|
|
|
|
<% end %>
|
|
|
|
<% if @title %>
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
<% content_for :head do %>
|
|
<%= raw crawlable_meta_data(title: @title, description: SiteSetting.site_description) %>
|
|
<% end %>
|
|
<% else %>
|
|
<% content_for :head do %>
|
|
<%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %>
|
|
<% end %>
|
|
<% end %>
|