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