MediaWiki  1.28.1
initSiteStats.php
Go to the documentation of this file.
1 <?php
26 require_once __DIR__ . '/Maintenance.php';
27 
33 class InitSiteStats extends Maintenance {
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";
82 require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
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.
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
const DB_MASTER
Definition: defines.php:23
static cacheUpdate($dbw)
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Class designed for counting of stats.
Definition: SiteStats.php:278
Maintenance script to re-initialise or update the site statistics table.
addDescription($text)
Set the description text.
output($out, $channel=null)
Throw some output to the user.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
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:802
$maintClass