Merge "Cleanup a bunch of tests and add todos"
[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
155 private function getEditStats() {
156 return Xml::openElement( 'tr' ) .
157 Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-edits' )->parse() ) .
158 Xml::closeElement( 'tr' ) .
159 $this->formatRow( $this->msg( 'statistics-edits' )->parse(),
160 $this->getLanguage()->formatNum( $this->edits ),
161 array( 'class' => 'mw-statistics-edits' ) ) .
162 $this->formatRow( $this->msg( 'statistics-edits-average' )->parse(),
163 $this->getLanguage()->formatNum( sprintf( '%.2f', $this->total ? $this->edits / $this->total : 0 ) ),
164 array( 'class' => 'mw-statistics-edits-average' ) );
165 }
166
167 private function getUserStats() {
168 global $wgActiveUserDays;
169 return Xml::openElement( 'tr' ) .
170 Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-users' )->parse() ) .
171 Xml::closeElement( 'tr' ) .
172 $this->formatRow( $this->msg( 'statistics-users' )->parse(),
173 $this->getLanguage()->formatNum( $this->users ),
174 array( 'class' => 'mw-statistics-users' ) ) .
175 $this->formatRow( $this->msg( 'statistics-users-active' )->parse() . ' ' .
176 Linker::linkKnown(
177 SpecialPage::getTitleFor( 'Activeusers' ),
178 $this->msg( 'listgrouprights-members' )->escaped()
179 ),
180 $this->getLanguage()->formatNum( $this->activeUsers ),
181 array( 'class' => 'mw-statistics-users-active' ),
182 'statistics-users-active-desc',
183 $this->getLanguage()->formatNum( $wgActiveUserDays ) );
184 }
185
186 private function getGroupStats() {
187 global $wgGroupPermissions, $wgImplicitGroups;
188 $text = '';
189 foreach ( $wgGroupPermissions as $group => $permissions ) {
190 # Skip generic * and implicit groups
191 if ( in_array( $group, $wgImplicitGroups ) || $group == '*' ) {
192 continue;
193 }
194 $groupname = htmlspecialchars( $group );
195 $msg = $this->msg( 'group-' . $groupname );
196 if ( $msg->isBlank() ) {
197 $groupnameLocalized = $groupname;
198 } else {
199 $groupnameLocalized = $msg->text();
200 }
201 $msg = $this->msg( 'grouppage-' . $groupname )->inContentLanguage();
202 if ( $msg->isBlank() ) {
203 $grouppageLocalized = MWNamespace::getCanonicalName( NS_PROJECT ) . ':' . $groupname;
204 } else {
205 $grouppageLocalized = $msg->text();
206 }
207 $linkTarget = Title::newFromText( $grouppageLocalized );
208 $grouppage = Linker::link(
209 $linkTarget,
210 htmlspecialchars( $groupnameLocalized )
211 );
212 $grouplink = Linker::linkKnown(
213 SpecialPage::getTitleFor( 'Listusers' ),
214 $this->msg( 'listgrouprights-members' )->escaped(),
215 array(),
216 array( 'group' => $group )
217 );
218 # Add a class when a usergroup contains no members to allow hiding these rows
219 $classZero = '';
220 $countUsers = SiteStats::numberingroup( $groupname );
221 if ( $countUsers == 0 ) {
222 $classZero = ' statistics-group-zero';
223 }
224 $text .= $this->formatRow( $grouppage . ' ' . $grouplink,
225 $this->getLanguage()->formatNum( $countUsers ),
226 array( 'class' => 'statistics-group-' . Sanitizer::escapeClass( $group ) . $classZero ) );
227 }
228 return $text;
229 }
230
231 private function getViewsStats() {
232 return Xml::openElement( 'tr' ) .
233 Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-header-views' )->parse() ) .
234 Xml::closeElement( 'tr' ) .
235 $this->formatRow( $this->msg( 'statistics-views-total' )->parse(),
236 $this->getLanguage()->formatNum( $this->views ),
237 array( 'class' => 'mw-statistics-views-total' ), 'statistics-views-total-desc' ) .
238 $this->formatRow( $this->msg( 'statistics-views-peredit' )->parse(),
239 $this->getLanguage()->formatNum( sprintf( '%.2f', $this->edits ?
240 $this->views / $this->edits : 0 ) ),
241 array( 'class' => 'mw-statistics-views-peredit' ) );
242 }
243
244 private function getMostViewedPages() {
245 $text = '';
246 $dbr = wfGetDB( DB_SLAVE );
247 $res = $dbr->select(
248 'page',
249 array(
250 'page_namespace',
251 'page_title',
252 'page_counter',
253 ),
254 array(
255 'page_is_redirect' => 0,
256 'page_counter > 0',
257 ),
258 __METHOD__,
259 array(
260 'ORDER BY' => 'page_counter DESC',
261 'LIMIT' => 10,
262 )
263 );
264 if ( $res->numRows() > 0 ) {
265 $text .= Xml::openElement( 'tr' );
266 $text .= Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( 'statistics-mostpopular' )->parse() );
267 $text .= Xml::closeElement( 'tr' );
268 foreach ( $res as $row ) {
269 $title = Title::makeTitleSafe( $row->page_namespace, $row->page_title );
270 if ( $title instanceof Title ) {
271 $text .= $this->formatRow( Linker::link( $title ),
272 $this->getLanguage()->formatNum( $row->page_counter ) );
273
274 }
275 }
276 $res->free();
277 }
278 return $text;
279 }
280
281 /**
282 * Conversion of external statistics into an internal representation
283 * Following a ([<header-message>][<item-message>] = number) pattern
284 *
285 * @param array $stats
286 * @return string
287 */
288 private function getOtherStats( array $stats ) {
289 $return = '';
290
291 foreach ( $stats as $header => $items ) {
292 // Identify the structure used
293 if ( is_array( $items ) ) {
294
295 // Ignore headers that are recursively set as legacy header
296 if ( $header !== 'statistics-header-hooks' ) {
297 $return .= $this->formatRowHeader( $header );
298 }
299
300 // Collect all items that belong to the same header
301 foreach ( $items as $key => $value ) {
302 $name = $this->msg( $key )->parse();
303 $number = htmlspecialchars( $value );
304
305 $return .= $this->formatRow( $name, $this->getLanguage()->formatNum( $number ), array( 'class' => 'mw-statistics-hook', 'id' => 'mw-' . $key ) );
306 }
307 } else {
308 // Create the legacy header only once
309 if ( $return === '' ) {
310 $return .= $this->formatRowHeader( 'statistics-header-hooks' );
311 }
312
313 // Recursively remap the legacy structure
314 $return .= $this->getOtherStats( array( 'statistics-header-hooks' => array( $header => $items ) ) );
315 }
316 }
317
318 return $return;
319 }
320
321 /**
322 * Format row header
323 *
324 * @param string $header
325 * @return string
326 */
327 private function formatRowHeader( $header ) {
328 return Xml::openElement( 'tr' ) .
329 Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( $header )->parse() ) .
330 Xml::closeElement( 'tr' );
331 }
332
333 protected function getGroupName() {
334 return 'wiki';
335 }
336 }