Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
29 / 29
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
InitSiteStats
100.00% covered (success)
100.00%
29 / 29
100.00% covered (success)
100.00%
2 / 2
4
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
 execute
100.00% covered (success)
100.00%
24 / 24
100.00% covered (success)
100.00%
1 / 1
3
1<?php
2/**
3 * Re-initialise or update the site statistics table.
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 Maintenance
22 * @author Brooke Vibber
23 * @author Rob Church <robchur@gmail.com>
24 */
25
26use MediaWiki\Deferred\SiteStatsUpdate;
27use MediaWiki\Maintenance\Maintenance;
28use MediaWiki\SiteStats\SiteStatsInit;
29
30// @codeCoverageIgnoreStart
31require_once __DIR__ . '/Maintenance.php';
32// @codeCoverageIgnoreEnd
33
34/**
35 * Maintenance script to re-initialise or update the site statistics table
36 *
37 * @ingroup Maintenance
38 */
39class InitSiteStats extends Maintenance {
40    public function __construct() {
41        parent::__construct();
42        $this->addDescription( 'Re-initialise the site statistics tables' );
43        $this->addOption( 'update', 'Update the existing statistics' );
44        $this->addOption( 'active', 'Also update active users count' );
45        $this->addOption( 'use-master', 'Count using the primary database' );
46    }
47
48    public function execute() {
49        $this->output( "Refresh Site Statistics\n\n" );
50        $counter = new SiteStatsInit( $this->hasOption( 'use-master' ) );
51
52        $this->output( "Counting total edits..." );
53        $edits = $counter->edits();
54        $this->output( "{$edits}\nCounting number of articles..." );
55
56        $good = $counter->articles();
57        $this->output( "{$good}\nCounting total pages..." );
58
59        $pages = $counter->pages();
60        $this->output( "{$pages}\nCounting number of users..." );
61
62        $users = $counter->users();
63        $this->output( "{$users}\nCounting number of images..." );
64
65        $image = $counter->files();
66        $this->output( "{$image}\n" );
67
68        if ( $this->hasOption( 'update' ) ) {
69            $this->output( "\nUpdating site statistics..." );
70            $counter->refresh();
71            $this->output( "done.\n" );
72        } else {
73            $this->output( "\nTo update the site statistics table, run the script "
74                . "with the --update option.\n" );
75        }
76
77        if ( $this->hasOption( 'active' ) ) {
78            $this->output( "\nCounting and updating active users..." );
79            $active = SiteStatsUpdate::cacheUpdate( $this->getPrimaryDB() );
80            $this->output( "{$active}\n" );
81        }
82
83        $this->output( "\nDone.\n" );
84    }
85}
86
87// @codeCoverageIgnoreStart
88$maintClass = InitSiteStats::class;
89require_once RUN_MAINTENANCE_IF_MAIN;
90// @codeCoverageIgnoreEnd