Merge "Various code and doc cleanups to ChronologyProtector."
[lhc/web/wiklou.git] / includes / specials / SpecialStatistics.php
1 <?php
2 /**
3 * Implements Special:Statistics
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Special page lists various statistics, including the contents of
26 * `site_stats`, plus page view details if enabled
27 *
28 * @ingroup SpecialPage
29 */
30 class SpecialStatistics extends SpecialPage {
31
32 private $views, $edits, $good, $images, $total, $users,
33 $activeUsers = 0;
34
35 public function __construct() {
36 parent::__construct( 'Statistics' );
37 }
38
39 public function execute( $par ) {
40 global $wgMemc, $wgDisableCounters, $wgMiserMode;
41
42 $this->setHeaders();
43 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
44
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();
52 $this->hook = '';
53
54 # Staticic - views
55 $viewsStats = '';
56 if( !$wgDisableCounters ) {
57 $viewsStats = $this->getViewsStats();
58 }
59
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
68 }
69 }
70
71 $text = Xml::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) );
72
73 # Statistic - pages
74 $text .= $this->getPageStats();
75
76 # Statistic - edits
77 $text .= $this->getEditStats();
78
79 # Statistic - users
80 $text .= $this->getUserStats();
81
82 # Statistic - usergroups
83 $text .= $this->getGroupStats();
84 $text .= $viewsStats;
85
86 # Statistic - popular pages
87 if( !$wgDisableCounters && !$wgMiserMode ) {
88 $text .= $this->getMostViewedPages();
89 }
90
91 # Statistic - other
92 $extraStats = array();
93 if( wfRunHooks( 'SpecialStatsAddExtra', array( &$extraStats ) ) ) {
94 $text .= $this->getOtherStats( $extraStats );
95 }
96
97 $text .= Xml::closeElement( 'table' );
98
99 # Customizable footer
100 $footer = $this->msg( 'statistics-footer' );
101 if ( !$footer->isBlank() ) {
102 $text .= "\n" . $footer->parse();
103 }
104
105 $this->getOutput()->addHTML( $text );
106 }
107
108 /**
109 * Format a row
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
116 */
117 private function formatRow( $text, $number, $trExtraParams = array(), $descMsg = '', $descMsgParam = '' ) {
118 if( $descMsg ) {
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" );
124 }
125 }
126 return Html::rawElement( 'tr', $trExtraParams,
127 Html::rawElement( 'td', array(), $text ) .
128 Html::rawElement( 'td', array( 'class' => 'mw-statistics-numbers' ), $number )
129 );
130 }
131
132 /**
133 * Each of these methods is pretty self-explanatory, get a particular
134 * row for the table of statistics
135 * @return string
136 */
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' ) );
153 }
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' ) );
164 }
165
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 ) );
179 }
180
181 private function getGroupStats() {
182 global $wgGroupPermissions, $wgImplicitGroups;
183 $text = '';
184 foreach( $wgGroupPermissions as $group => $permissions ) {
185 # Skip generic * and implicit groups
186 if ( in_array( $group, $wgImplicitGroups ) || $group == '*' ) {
187 continue;
188 }
189 $groupname = htmlspecialchars( $group );
190 $msg = $this->msg( 'group-' . $groupname );
191 if ( $msg->isBlank() ) {
192 $groupnameLocalized = $groupname;
193 } else {
194 $groupnameLocalized = $msg->text();
195 }
196 $msg = $this->msg( 'grouppage-' . $groupname )->inContentLanguage();
197 if ( $msg->isBlank() ) {
198 $grouppageLocalized = MWNamespace::getCanonicalName( NS_PROJECT ) . ':' . $groupname;
199 } else {
200 $grouppageLocalized = $msg->text();
201 }
202 $linkTarget = Title::newFromText( $grouppageLocalized );
203 $grouppage = Linker::link(
204 $linkTarget,
205 htmlspecialchars( $groupnameLocalized )
206 );
207 $grouplink = Linker::linkKnown(
208 SpecialPage::getTitleFor( 'Listusers' ),
209 $this->msg( 'listgrouprights-members' )->escaped(),
210 array(),
211 array( 'group' => $group )
212 );
213 # Add a class when a usergroup contains no members to allow hiding these rows
214 $classZero = '';
215 $countUsers = SiteStats::numberingroup( $groupname );
216 if( $countUsers == 0 ) {
217 $classZero = ' statistics-group-zero';
218 }
219 $text .= $this->formatRow( $grouppage . ' ' . $grouplink,
220 $this->getLanguage()->formatNum( $countUsers ),
221 array( 'class' => 'statistics-group-' . Sanitizer::escapeClass( $group ) . $classZero ) );
222 }
223 return $text;
224 }
225
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' ) );
237 }
238
239 private function getMostViewedPages() {
240 $text = '';
241 $dbr = wfGetDB( DB_SLAVE );
242 $res = $dbr->select(
243 'page',
244 array(
245 'page_namespace',
246 'page_title',
247 'page_counter',
248 ),
249 array(
250 'page_is_redirect' => 0,
251 'page_counter > 0',
252 ),
253 __METHOD__,
254 array(
255 'ORDER BY' => 'page_counter DESC',
256 'LIMIT' => 10,
257 )
258 );
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 ) );
268
269 }
270 }
271 $res->free();
272 }
273 return $text;
274 }
275
276 /**
277 * Conversion of external statistics into an internal representation
278 * Following a ([<header-message>][<item-message>] = number) pattern
279 *
280 * @param array $stats
281 * @return string
282 */
283 private function getOtherStats( array $stats ) {
284 $return = '';
285
286 foreach( $stats as $header => $items ) {
287
288 // Identify the structure used
289 if ( is_array( $items ) ) {
290
291 // Ignore headers that are recursively set as legacy header
292 if ( $header !== 'statistics-header-hooks' ) {
293 $return .= $this->formatRowHeader( $header );
294 }
295
296 // Collect all items that belong to the same header
297 foreach( $items as $key => $value ) {
298 $name = $this->msg( $key )->inContentLanguage()->parse();
299 $number = htmlspecialchars( $value );
300
301 $return .= $this->formatRow( $name, $this->getLanguage()->formatNum( $number ), array( 'class' => 'mw-statistics-hook' ) );
302 }
303 } else {
304 // Create the legacy header only once
305 if ( $return === '' ) {
306 $return .= $this->formatRowHeader( 'statistics-header-hooks' );
307 }
308
309 // Recursively remap the legacy structure
310 $return .= $this->getOtherStats( array( 'statistics-header-hooks' => array( $header => $items ) ) );
311 }
312 }
313
314 return $return;
315 }
316
317 /**
318 * Format row header
319 *
320 * @param string $header
321 * @return string
322 */
323 private function formatRowHeader( $header ) {
324 return Xml::openElement( 'tr' ) .
325 Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( $header )->parse() ) .
326 Xml::closeElement( 'tr' );
327 }
328
329 protected function getGroupName() {
330 return 'wiki';
331 }
332 }