MediaWiki master
initSiteStats.php
Go to the documentation of this file.
1<?php
28
29// @codeCoverageIgnoreStart
30require_once __DIR__ . '/Maintenance.php';
31// @codeCoverageIgnoreEnd
32
39 public function __construct() {
40 parent::__construct();
41 $this->addDescription( 'Re-initialise the site statistics tables' );
42 $this->addOption( 'update', 'Update the existing statistics' );
43 $this->addOption( 'active', 'Also update active users count' );
44 $this->addOption( 'use-master', 'Count using the primary database' );
45 }
46
47 public function execute() {
48 $this->output( "Refresh Site Statistics\n\n" );
49 $counter = new SiteStatsInit( $this->hasOption( 'use-master' ) );
50
51 $this->output( "Counting total edits..." );
52 $edits = $counter->edits();
53 $this->output( "{$edits}\nCounting number of articles..." );
54
55 $good = $counter->articles();
56 $this->output( "{$good}\nCounting total pages..." );
57
58 $pages = $counter->pages();
59 $this->output( "{$pages}\nCounting number of users..." );
60
61 $users = $counter->users();
62 $this->output( "{$users}\nCounting number of images..." );
63
64 $image = $counter->files();
65 $this->output( "{$image}\n" );
66
67 if ( $this->hasOption( 'update' ) ) {
68 $this->output( "\nUpdating site statistics..." );
69 $counter->refresh();
70 $this->output( "done.\n" );
71 } else {
72 $this->output( "\nTo update the site statistics table, run the script "
73 . "with the --update option.\n" );
74 }
75
76 if ( $this->hasOption( 'active' ) ) {
77 $this->output( "\nCounting and updating active users..." );
78 $active = SiteStatsUpdate::cacheUpdate( $this->getPrimaryDB() );
79 $this->output( "{$active}\n" );
80 }
81
82 $this->output( "\nDone.\n" );
83 }
84}
85
86// @codeCoverageIgnoreStart
87$maintClass = InitSiteStats::class;
88require_once RUN_MAINTENANCE_IF_MAIN;
89// @codeCoverageIgnoreEnd
Maintenance script to re-initialise or update the site statistics table.
execute()
Do the actual work.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Class for handling updates to the site_stats table.
Class designed for counting of stats.
$maintClass