MediaWiki master
initSiteStats.php
Go to the documentation of this file.
1<?php
28
29require_once __DIR__ . '/Maintenance.php';
30
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;
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