MediaWiki REL1_31
updateArticleCount.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
35
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription( 'Count of the number of articles and update the site statistics table' );
39 $this->addOption( 'update', 'Update the site_stats table with the new count' );
40 $this->addOption( 'use-master', 'Count using the master database' );
41 }
42
43 public function execute() {
44 $this->output( "Counting articles..." );
45
46 if ( $this->hasOption( 'use-master' ) ) {
47 $dbr = $this->getDB( DB_MASTER );
48 } else {
49 $dbr = $this->getDB( DB_REPLICA, 'vslow' );
50 }
51 $counter = new SiteStatsInit( $dbr );
52 $result = $counter->articles();
53
54 $this->output( "found {$result}.\n" );
55 if ( $this->hasOption( 'update' ) ) {
56 $this->output( "Updating site statistics table... " );
57 $dbw = $this->getDB( DB_MASTER );
58 $dbw->update(
59 'site_stats',
60 [ 'ss_good_articles' => $result ],
61 [ 'ss_row_id' => 1 ],
62 __METHOD__
63 );
64 $this->output( "done.\n" );
65 } else {
66 $this->output( "To update the site statistics table, run the script "
67 . "with the --update option.\n" );
68 }
69 }
70}
71
72$maintClass = UpdateArticleCount::class;
73require_once RUN_MAINTENANCE_IF_MAIN;
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.
Maintenance script to provide a better count of the number of articles and update the site statistics...
__construct()
Default constructor.
execute()
Do the actual work.
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
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:29