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
{
31 private $edits, $good, $images, $total, $users,
34 public function __construct() {
35 parent
::__construct( 'Statistics' );
38 public function execute( $par ) {
40 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
42 $this->edits
= SiteStats
::edits();
43 $this->good
= SiteStats
::articles();
44 $this->images
= SiteStats
::images();
45 $this->total
= SiteStats
::pages();
46 $this->users
= SiteStats
::users();
47 $this->activeUsers
= SiteStats
::activeUsers();
50 $text = Xml
::openElement( 'table', [ 'class' => 'wikitable mw-statistics-table' ] );
53 $text .= $this->getPageStats();
56 $text .= $this->getEditStats();
59 $text .= $this->getUserStats();
61 # Statistic - usergroups
62 $text .= $this->getGroupStats();
66 if ( Hooks
::run( 'SpecialStatsAddExtra', [ &$extraStats, $this->getContext() ] ) ) {
67 $text .= $this->getOtherStats( $extraStats );
70 $text .= Xml
::closeElement( 'table' );
73 $footer = $this->msg( 'statistics-footer' );
74 if ( !$footer->isBlank() ) {
75 $text .= "\n" . $footer->parse();
78 $this->getOutput()->addHTML( $text );
83 * @param string $text Description of the row
84 * @param float $number A statistical number
85 * @param array $trExtraParams Params to table row, see Html::elememt
86 * @param string $descMsg Message key
87 * @param array|string $descMsgParam Message parameters
88 * @return string Table row in HTML format
90 private function formatRow( $text, $number, $trExtraParams = [],
91 $descMsg = '', $descMsgParam = ''
94 $msg = $this->msg( $descMsg, $descMsgParam );
95 if ( !$msg->isDisabled() ) {
96 $descriptionHtml = $this->msg( 'parentheses' )->rawParams( $msg->parse() )
98 $text .= "<br />" . Html
::rawElement(
100 [ 'class' => 'mw-statistic-desc' ],
106 return Html
::rawElement( 'tr', $trExtraParams,
107 Html
::rawElement( 'td', [], $text ) .
108 Html
::rawElement( 'td', [ 'class' => 'mw-statistics-numbers' ], $number )
113 * Each of these methods is pretty self-explanatory, get a particular
114 * row for the table of statistics
117 private function getPageStats() {
118 $linkRenderer = $this->getLinkRenderer();
120 $specialAllPagesTitle = SpecialPage
::getTitleFor( 'Allpages' );
121 $pageStatsHtml = Xml
::openElement( 'tr' ) .
122 Xml
::tags( 'th', [ 'colspan' => '2' ], $this->msg( 'statistics-header-pages' )
124 Xml
::closeElement( 'tr' ) .
125 $this->formatRow( $linkRenderer->makeKnownLink(
126 $specialAllPagesTitle,
127 $this->msg( 'statistics-articles' )->text(),
128 [], [ 'hideredirects' => 1 ] ),
129 $this->getLanguage()->formatNum( $this->good
),
130 [ 'class' => 'mw-statistics-articles' ],
131 'statistics-articles-desc' ) .
132 $this->formatRow( $linkRenderer->makeKnownLink( $specialAllPagesTitle,
133 $this->msg( 'statistics-pages' )->text() ),
134 $this->getLanguage()->formatNum( $this->total
),
135 [ 'class' => 'mw-statistics-pages' ],
136 'statistics-pages-desc' );
138 // Show the image row only, when there are files or upload is possible
139 if ( $this->images
!== 0 ||
$this->getConfig()->get( 'EnableUploads' ) ) {
140 $pageStatsHtml .= $this->formatRow(
141 $linkRenderer->makeKnownLink( SpecialPage
::getTitleFor( 'MediaStatistics' ),
142 $this->msg( 'statistics-files' )->text() ),
143 $this->getLanguage()->formatNum( $this->images
),
144 [ 'class' => 'mw-statistics-files' ] );
147 return $pageStatsHtml;
150 private function getEditStats() {
151 return Xml
::openElement( 'tr' ) .
152 Xml
::tags( 'th', [ 'colspan' => '2' ],
153 $this->msg( 'statistics-header-edits' )->parse() ) .
154 Xml
::closeElement( 'tr' ) .
155 $this->formatRow( $this->msg( 'statistics-edits' )->parse(),
156 $this->getLanguage()->formatNum( $this->edits
),
157 [ 'class' => 'mw-statistics-edits' ]
159 $this->formatRow( $this->msg( 'statistics-edits-average' )->parse(),
160 $this->getLanguage()->formatNum(
161 sprintf( '%.2f', $this->total ?
$this->edits
/ $this->total
: 0 )
162 ), [ 'class' => 'mw-statistics-edits-average' ]
166 private function getUserStats() {
167 return Xml
::openElement( 'tr' ) .
168 Xml
::tags( 'th', [ 'colspan' => '2' ],
169 $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 [ 'class' => 'mw-statistics-users' ]
175 $this->formatRow( $this->msg( 'statistics-users-active' )->parse() . ' ' .
176 $this->getLinkRenderer()->makeKnownLink(
177 SpecialPage
::getTitleFor( 'Activeusers' ),
178 $this->msg( 'listgrouprights-members' )->text()
180 $this->getLanguage()->formatNum( $this->activeUsers
),
181 [ 'class' => 'mw-statistics-users-active' ],
182 'statistics-users-active-desc',
183 $this->getLanguage()->formatNum(
184 $this->getConfig()->get( 'ActiveUserDays' ) )
188 private function getGroupStats() {
189 $linkRenderer = $this->getLinkRenderer();
191 foreach ( $this->getConfig()->get( 'GroupPermissions' ) as $group => $permissions ) {
192 # Skip generic * and implicit groups
193 if ( in_array( $group, $this->getConfig()->get( 'ImplicitGroups' ) )
197 $groupname = htmlspecialchars( $group );
198 $msg = $this->msg( 'group-' . $groupname );
199 if ( $msg->isBlank() ) {
200 $groupnameLocalized = $groupname;
202 $groupnameLocalized = $msg->text();
204 $msg = $this->msg( 'grouppage-' . $groupname )->inContentLanguage();
205 if ( $msg->isBlank() ) {
206 $grouppageLocalized = MWNamespace
::getCanonicalName( NS_PROJECT
) .
209 $grouppageLocalized = $msg->text();
211 $linkTarget = Title
::newFromText( $grouppageLocalized );
214 $grouppage = $linkRenderer->makeLink(
219 $grouppage = htmlspecialchars( $groupnameLocalized );
222 $grouplink = $linkRenderer->makeKnownLink(
223 SpecialPage
::getTitleFor( 'Listusers' ),
224 $this->msg( 'listgrouprights-members' )->text(),
226 [ 'group' => $group ]
228 # Add a class when a usergroup contains no members to allow hiding these rows
230 $countUsers = SiteStats
::numberingroup( $groupname );
231 if ( $countUsers == 0 ) {
232 $classZero = ' statistics-group-zero';
234 $text .= $this->formatRow( $grouppage . ' ' . $grouplink,
235 $this->getLanguage()->formatNum( $countUsers ),
236 [ 'class' => 'statistics-group-' . Sanitizer
::escapeClass( $group ) .
244 * Conversion of external statistics into an internal representation
245 * Following a ([<header-message>][<item-message>] = number) pattern
247 * @param array $stats
250 private function getOtherStats( array $stats ) {
253 foreach ( $stats as $header => $items ) {
254 // Identify the structure used
255 if ( is_array( $items ) ) {
257 // Ignore headers that are recursively set as legacy header
258 if ( $header !== 'statistics-header-hooks' ) {
259 $return .= $this->formatRowHeader( $header );
262 // Collect all items that belong to the same header
263 foreach ( $items as $key => $value ) {
264 if ( is_array( $value ) ) {
265 $name = $value['name'];
266 $number = $value['number'];
268 $name = $this->msg( $key )->parse();
272 $return .= $this->formatRow(
274 $this->getLanguage()->formatNum( htmlspecialchars( $number ) ),
275 [ 'class' => 'mw-statistics-hook', 'id' => 'mw-' . $key ]
279 // Create the legacy header only once
280 if ( $return === '' ) {
281 $return .= $this->formatRowHeader( 'statistics-header-hooks' );
284 // Recursively remap the legacy structure
285 $return .= $this->getOtherStats( [ 'statistics-header-hooks' =>
286 [ $header => $items ] ] );
296 * @param string $header
299 private function formatRowHeader( $header ) {
300 return Xml
::openElement( 'tr' ) .
301 Xml
::tags( 'th', [ 'colspan' => '2' ], $this->msg( $header )->parse() ) .
302 Xml
::closeElement( 'tr' );
305 protected function getGroupName() {