MediaWiki REL1_34
populateCategory.php
Go to the documentation of this file.
1<?php
25require_once __DIR__ . '/Maintenance.php';
26
33
34 const REPORTING_INTERVAL = 1000;
35
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription(
39 <<<TEXT
40This script will populate the category table, added in MediaWiki 1.13. It will
41print out progress indicators every 1000 categories it adds to the table. The
42script is perfectly safe to run on large, live wikis, and running it multiple
43times is harmless. You may want to use the throttling options if it's causing
44too much load; they will not affect correctness.
45
46If the script is stopped and later resumed, you can use the --begin option with
47the last printed progress indicator to pick up where you left off. This is
48safe, because any newly-added categories before this cutoff will have been
49added after the software update and so will be populated anyway.
50
51When the script has finished, it will make a note of this in the database, and
52will not run again without the --force option.
53TEXT
54 );
55
56 $this->addOption(
57 'begin',
58 'Only do categories whose names are alphabetically after the provided name',
59 false,
60 true
61 );
62 $this->addOption(
63 'throttle',
64 'Wait this many milliseconds after each category. Default: 0',
65 false,
66 true
67 );
68 $this->addOption( 'force', 'Run regardless of whether the database says it\'s been run already' );
69 }
70
71 public function execute() {
72 $begin = $this->getOption( 'begin', '' );
73 $throttle = $this->getOption( 'throttle', 0 );
74 $force = $this->hasOption( 'force' );
75
76 $dbw = $this->getDB( DB_MASTER );
77
78 if ( !$force ) {
79 $row = $dbw->selectRow(
80 'updatelog',
81 '1',
82 [ 'ul_key' => 'populate category' ],
83 __METHOD__
84 );
85 if ( $row ) {
86 $this->output( "Category table already populated. Use php " .
87 "maintenance/populateCategory.php\n--force from the command line " .
88 "to override.\n" );
89
90 return true;
91 }
92 }
93
94 $throttle = intval( $throttle );
95 if ( $begin !== '' ) {
96 $where = [ 'cl_to > ' . $dbw->addQuotes( $begin ) ];
97 } else {
98 $where = [ '1 = 1' ];
99 }
100 $i = 0;
101
102 while ( true ) {
103 # Find which category to update
104 $row = $dbw->selectRow(
105 'categorylinks',
106 'cl_to',
107 $where,
108 __METHOD__,
109 [
110 'ORDER BY' => 'cl_to'
111 ]
112 );
113 if ( !$row ) {
114 # Done, hopefully.
115 break;
116 }
117 $name = $row->cl_to;
118 $where = 'cl_to > ' . $dbw->addQuotes( $name );
119
120 # Use the row to update the category count
121 $cat = Category::newFromName( $name );
122 if ( !is_object( $cat ) ) {
123 $this->output( "The category named $name is not valid?!\n" );
124 } else {
125 $cat->refreshCounts();
126 }
127
128 ++$i;
129 if ( !( $i % self::REPORTING_INTERVAL ) ) {
130 $this->output( "$name\n" );
132 }
133 usleep( $throttle * 1000 );
134 }
135
136 $dbw->insert(
137 'updatelog',
138 [ 'ul_key' => 'populate category' ],
139 __METHOD__,
140 [ 'IGNORE' ]
141 );
142
143 return true;
144 }
145}
146
147$maintClass = PopulateCategory::class;
148require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
const RUN_MAINTENANCE_IF_MAIN
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 exists.
addDescription( $text)
Set the description text.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script to populate the category table.
execute()
Do the actual work.
__construct()
Default constructor.
while(( $__line=Maintenance::readconsole()) !==false) print
Definition eval.php:64
A helper class for throttling authentication attempts.
const DB_MASTER
Definition defines.php:26