3 * Implements Special:Statistics
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Special page lists various statistics, including the contents of
26 * `site_stats`, plus page view details if enabled
28 * @ingroup SpecialPage
30 class SpecialStatistics
extends SpecialPage
{
32 private $views, $edits, $good, $images, $total, $users,
35 public function __construct() {
36 parent
::__construct( 'Statistics' );
39 public function execute( $par ) {
40 global $wgMemc, $wgDisableCounters, $wgMiserMode;
43 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
45 $this->views
= SiteStats
::views();
46 $this->edits
= SiteStats
::edits();
47 $this->good
= SiteStats
::articles();
48 $this->images
= SiteStats
::images();
49 $this->total
= SiteStats
::pages();
50 $this->users
= SiteStats
::users();
51 $this->activeUsers
= SiteStats
::activeUsers();
56 if ( !$wgDisableCounters ) {
57 $viewsStats = $this->getViewsStats();
60 # Set active user count
61 if ( !$wgMiserMode ) {
62 $key = wfMemcKey( 'sitestats', 'activeusers-updated' );
63 // Re-calculate the count if the last tally is old...
64 if ( !$wgMemc->get( $key ) ) {
65 $dbw = wfGetDB( DB_MASTER
);
66 SiteStatsUpdate
::cacheUpdate( $dbw );
67 $wgMemc->set( $key, '1', 24 * 3600 ); // don't update for 1 day
71 $text = Xml
::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) );
74 $text .= $this->getPageStats();
77 $text .= $this->getEditStats();
80 $text .= $this->getUserStats();
82 # Statistic - usergroups
83 $text .= $this->getGroupStats();
86 # Statistic - popular pages
87 if ( !$wgDisableCounters && !$wgMiserMode ) {
88 $text .= $this->getMostViewedPages();
92 $extraStats = array();
93 if ( wfRunHooks( 'SpecialStatsAddExtra', array( &$extraStats ) ) ) {
94 $text .= $this->getOtherStats( $extraStats );
97 $text .= Xml
::closeElement( 'table' );
100 $footer = $this->msg( 'statistics-footer' );
101 if ( !$footer->isBlank() ) {
102 $text .= "\n" . $footer->parse();
105 $this->getOutput()->addHTML( $text );
110 * @param $text String: description of the row
111 * @param $number Float: a statistical number
112 * @param $trExtraParams Array: params to table row, see Html::elememt
113 * @param $descMsg String: message key
114 * @param array|string $descMsgParam Message parameters
115 * @return string table row in HTML format
117 private function formatRow( $text, $number, $trExtraParams = array(), $descMsg = '', $descMsgParam = '' ) {
119 $msg = $this->msg( $descMsg, $descMsgParam );
120 if ( $msg->exists() ) {
121 $descriptionText = $this->msg( 'parentheses' )->rawParams( $msg->parse() )->escaped();
122 $text .= "<br />" . Xml
::element( 'small', array( 'class' => 'mw-statistic-desc' ),
123 " $descriptionText" );
126 return Html
::rawElement( 'tr', $trExtraParams,
127 Html
::rawElement( 'td', array(), $text ) .
128 Html
::rawElement( 'td', array( 'class' => 'mw-statistics-numbers' ), $number )
133 * Each of these methods is pretty self-explanatory, get a particular
134 * row for the table of statistics
137 private function getPageStats() {
138 return Xml
::openElement( 'tr' ) .
139 Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-pages' )->parse() ) .
140 Xml
::closeElement( 'tr' ) .
141 $this->formatRow( Linker
::linkKnown( SpecialPage
::getTitleFor( 'Allpages' ),
142 $this->msg( 'statistics-articles' )->parse() ),
143 $this->getLanguage()->formatNum( $this->good
),
144 array( 'class' => 'mw-statistics-articles' ) ) .
145 $this->formatRow( $this->msg( 'statistics-pages' )->parse(),
146 $this->getLanguage()->formatNum( $this->total
),
147 array( 'class' => 'mw-statistics-pages' ),
148 'statistics-pages-desc' ) .
149 $this->formatRow( Linker
::linkKnown( SpecialPage
::getTitleFor( 'Listfiles' ),
150 $this->msg( 'statistics-files' )->parse() ),
151 $this->getLanguage()->formatNum( $this->images
),
152 array( 'class' => 'mw-statistics-files' ) );
154 private function getEditStats() {
155 return Xml
::openElement( 'tr' ) .
156 Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-edits' )->parse() ) .
157 Xml
::closeElement( 'tr' ) .
158 $this->formatRow( $this->msg( 'statistics-edits' )->parse(),
159 $this->getLanguage()->formatNum( $this->edits
),
160 array( 'class' => 'mw-statistics-edits' ) ) .
161 $this->formatRow( $this->msg( 'statistics-edits-average' )->parse(),
162 $this->getLanguage()->formatNum( sprintf( '%.2f', $this->total ?
$this->edits
/ $this->total
: 0 ) ),
163 array( 'class' => 'mw-statistics-edits-average' ) );
166 private function getUserStats() {
167 global $wgActiveUserDays;
168 return Xml
::openElement( 'tr' ) .
169 Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-users' )->parse() ) .
170 Xml
::closeElement( 'tr' ) .
171 $this->formatRow( $this->msg( 'statistics-users' )->parse(),
172 $this->getLanguage()->formatNum( $this->users
),
173 array( 'class' => 'mw-statistics-users' ) ) .
174 $this->formatRow( $this->msg( 'statistics-users-active' )->parse(),
175 $this->getLanguage()->formatNum( $this->activeUsers
),
176 array( 'class' => 'mw-statistics-users-active' ),
177 'statistics-users-active-desc',
178 $this->getLanguage()->formatNum( $wgActiveUserDays ) );
181 private function getGroupStats() {
182 global $wgGroupPermissions, $wgImplicitGroups;
184 foreach ( $wgGroupPermissions as $group => $permissions ) {
185 # Skip generic * and implicit groups
186 if ( in_array( $group, $wgImplicitGroups ) ||
$group == '*' ) {
189 $groupname = htmlspecialchars( $group );
190 $msg = $this->msg( 'group-' . $groupname );
191 if ( $msg->isBlank() ) {
192 $groupnameLocalized = $groupname;
194 $groupnameLocalized = $msg->text();
196 $msg = $this->msg( 'grouppage-' . $groupname )->inContentLanguage();
197 if ( $msg->isBlank() ) {
198 $grouppageLocalized = MWNamespace
::getCanonicalName( NS_PROJECT
) . ':' . $groupname;
200 $grouppageLocalized = $msg->text();
202 $linkTarget = Title
::newFromText( $grouppageLocalized );
203 $grouppage = Linker
::link(
205 htmlspecialchars( $groupnameLocalized )
207 $grouplink = Linker
::linkKnown(
208 SpecialPage
::getTitleFor( 'Listusers' ),
209 $this->msg( 'listgrouprights-members' )->escaped(),
211 array( 'group' => $group )
213 # Add a class when a usergroup contains no members to allow hiding these rows
215 $countUsers = SiteStats
::numberingroup( $groupname );
216 if ( $countUsers == 0 ) {
217 $classZero = ' statistics-group-zero';
219 $text .= $this->formatRow( $grouppage . ' ' . $grouplink,
220 $this->getLanguage()->formatNum( $countUsers ),
221 array( 'class' => 'statistics-group-' . Sanitizer
::escapeClass( $group ) . $classZero ) );
226 private function getViewsStats() {
227 return Xml
::openElement( 'tr' ) .
228 Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-views' )->parse() ) .
229 Xml
::closeElement( 'tr' ) .
230 $this->formatRow( $this->msg( 'statistics-views-total' )->parse(),
231 $this->getLanguage()->formatNum( $this->views
),
232 array( 'class' => 'mw-statistics-views-total' ), 'statistics-views-total-desc' ) .
233 $this->formatRow( $this->msg( 'statistics-views-peredit' )->parse(),
234 $this->getLanguage()->formatNum( sprintf( '%.2f', $this->edits ?
235 $this->views
/ $this->edits
: 0 ) ),
236 array( 'class' => 'mw-statistics-views-peredit' ) );
239 private function getMostViewedPages() {
241 $dbr = wfGetDB( DB_SLAVE
);
250 'page_is_redirect' => 0,
255 'ORDER BY' => 'page_counter DESC',
259 if ( $res->numRows() > 0 ) {
260 $text .= Xml
::openElement( 'tr' );
261 $text .= Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-mostpopular' )->parse() );
262 $text .= Xml
::closeElement( 'tr' );
263 foreach ( $res as $row ) {
264 $title = Title
::makeTitleSafe( $row->page_namespace
, $row->page_title
);
265 if ( $title instanceof Title
) {
266 $text .= $this->formatRow( Linker
::link( $title ),
267 $this->getLanguage()->formatNum( $row->page_counter
) );
277 * Conversion of external statistics into an internal representation
278 * Following a ([<header-message>][<item-message>] = number) pattern
280 * @param array $stats
283 private function getOtherStats( array $stats ) {
286 foreach ( $stats as $header => $items ) {
287 // Identify the structure used
288 if ( is_array( $items ) ) {
290 // Ignore headers that are recursively set as legacy header
291 if ( $header !== 'statistics-header-hooks' ) {
292 $return .= $this->formatRowHeader( $header );
295 // Collect all items that belong to the same header
296 foreach ( $items as $key => $value ) {
297 $name = $this->msg( $key )->inContentLanguage()->parse();
298 $number = htmlspecialchars( $value );
300 $return .= $this->formatRow( $name, $this->getLanguage()->formatNum( $number ), array( 'class' => 'mw-statistics-hook' ) );
303 // Create the legacy header only once
304 if ( $return === '' ) {
305 $return .= $this->formatRowHeader( 'statistics-header-hooks' );
308 // Recursively remap the legacy structure
309 $return .= $this->getOtherStats( array( 'statistics-header-hooks' => array( $header => $items ) ) );
319 * @param string $header
322 private function formatRowHeader( $header ) {
323 return Xml
::openElement( 'tr' ) .
324 Xml
::tags( 'th', array( 'colspan' => '2' ), $this->msg( $header )->parse() ) .
325 Xml
::closeElement( 'tr' );
328 protected function getGroupName() {