MediaWiki REL1_31
initSiteStats.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Re-initialise the site statistics tables' );
37 $this->addOption( 'update', 'Update the existing statistics' );
38 $this->addOption( 'active', 'Also update active users count' );
39 $this->addOption( 'use-master', 'Count using the master database' );
40 }
41
42 public function execute() {
43 $this->output( "Refresh Site Statistics\n\n" );
44 $counter = new SiteStatsInit( $this->hasOption( 'use-master' ) );
45
46 $this->output( "Counting total edits..." );
47 $edits = $counter->edits();
48 $this->output( "{$edits}\nCounting number of articles..." );
49
50 $good = $counter->articles();
51 $this->output( "{$good}\nCounting total pages..." );
52
53 $pages = $counter->pages();
54 $this->output( "{$pages}\nCounting number of users..." );
55
56 $users = $counter->users();
57 $this->output( "{$users}\nCounting number of images..." );
58
59 $image = $counter->files();
60 $this->output( "{$image}\n" );
61
62 if ( $this->hasOption( 'update' ) ) {
63 $this->output( "\nUpdating site statistics..." );
64 $counter->refresh();
65 $this->output( "done.\n" );
66 } else {
67 $this->output( "\nTo update the site statistics table, run the script "
68 . "with the --update option.\n" );
69 }
70
71 if ( $this->hasOption( 'active' ) ) {
72 $this->output( "\nCounting and updating active users..." );
73 $active = SiteStatsUpdate::cacheUpdate( $this->getDB( DB_MASTER ) );
74 $this->output( "{$active}\n" );
75 }
76
77 $this->output( "\nDone.\n" );
78 }
79}
80
81$maintClass = InitSiteStats::class;
82require_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...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Class designed for counting of stats.
static cacheUpdate(IDatabase $dbw)
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
Definition hooks.txt:895
$maintClass
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:29