MediaWiki  1.29.1
updateSpecialPages.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/Maintenance.php';
26 
33  public function __construct() {
34  parent::__construct();
35  $this->addOption( 'list', 'List special page names' );
36  $this->addOption( 'only', 'Only update "page"; case sensitive, ' .
37  'check correct case by calling this script with --list. ' .
38  'Ex: --only=BrokenRedirects', false, true );
39  $this->addOption( 'override', 'Also update pages that have updates disabled' );
40  }
41 
42  public function execute() {
43  global $wgQueryCacheLimit, $wgDisableQueryPageUpdate;
44 
45  $dbw = $this->getDB( DB_MASTER );
46 
47  $this->doSpecialPageCacheUpdates( $dbw );
48 
49  foreach ( QueryPage::getPages() as $page ) {
50  list( $class, $special ) = $page;
51  $limit = isset( $page[2] ) ? $page[2] : null;
52 
53  # --list : just show the name of pages
54  if ( $this->hasOption( 'list' ) ) {
55  $this->output( "$special [QueryPage]\n" );
56  continue;
57  }
58 
59  if ( !$this->hasOption( 'override' )
60  && $wgDisableQueryPageUpdate && in_array( $special, $wgDisableQueryPageUpdate )
61  ) {
62  $this->output( sprintf( "%-30s [QueryPage] disabled\n", $special ) );
63  continue;
64  }
65 
66  $specialObj = SpecialPageFactory::getPage( $special );
67  if ( !$specialObj ) {
68  $this->output( "No such special page: $special\n" );
69  exit;
70  }
71  if ( $specialObj instanceof QueryPage ) {
72  $queryPage = $specialObj;
73  } else {
74  $class = get_class( $specialObj );
75  $this->error( "$class is not an instance of QueryPage.\n", 1 );
76  die;
77  }
78 
79  if ( !$this->hasOption( 'only' ) || $this->getOption( 'only' ) == $queryPage->getName() ) {
80  $this->output( sprintf( '%-30s [QueryPage] ', $special ) );
81  if ( $queryPage->isExpensive() ) {
82  $t1 = microtime( true );
83  # Do the query
84  $num = $queryPage->recache( $limit === null ? $wgQueryCacheLimit : $limit );
85  $t2 = microtime( true );
86  if ( $num === false ) {
87  $this->output( "FAILED: database error\n" );
88  } else {
89  $this->output( "got $num rows in " );
90 
91  $elapsed = $t2 - $t1;
92  $hours = intval( $elapsed / 3600 );
93  $minutes = intval( $elapsed % 3600 / 60 );
94  $seconds = $elapsed - $hours * 3600 - $minutes * 60;
95  if ( $hours ) {
96  $this->output( $hours . 'h ' );
97  }
98  if ( $minutes ) {
99  $this->output( $minutes . 'm ' );
100  }
101  $this->output( sprintf( "%.2fs\n", $seconds ) );
102  }
103  # Reopen any connections that have closed
104  if ( !wfGetLB()->pingAll() ) {
105  $this->output( "\n" );
106  do {
107  $this->error( "Connection failed, reconnecting in 10 seconds..." );
108  sleep( 10 );
109  } while ( !wfGetLB()->pingAll() );
110  $this->output( "Reconnected\n\n" );
111  }
112  # Wait for the replica DB to catch up
113  wfWaitForSlaves();
114  } else {
115  $this->output( "cheap, skipped\n" );
116  }
117  if ( $this->hasOption( 'only' ) ) {
118  break;
119  }
120  }
121  }
122  }
123 
124  public function doSpecialPageCacheUpdates( $dbw ) {
125  global $wgSpecialPageCacheUpdates;
126 
127  foreach ( $wgSpecialPageCacheUpdates as $special => $call ) {
128  # --list : just show the name of pages
129  if ( $this->hasOption( 'list' ) ) {
130  $this->output( "$special [callback]\n" );
131  continue;
132  }
133 
134  if ( !$this->hasOption( 'only' ) || $this->getOption( 'only' ) == $special ) {
135  if ( !is_callable( $call ) ) {
136  $this->error( "Uncallable function $call!" );
137  continue;
138  }
139  $this->output( sprintf( '%-30s [callback] ', $special ) );
140  $t1 = microtime( true );
141  call_user_func( $call, $dbw );
142  $t2 = microtime( true );
143 
144  $this->output( "completed in " );
145  $elapsed = $t2 - $t1;
146  $hours = intval( $elapsed / 3600 );
147  $minutes = intval( $elapsed % 3600 / 60 );
148  $seconds = $elapsed - $hours * 3600 - $minutes * 60;
149  if ( $hours ) {
150  $this->output( $hours . 'h ' );
151  }
152  if ( $minutes ) {
153  $this->output( $minutes . 'm ' );
154  }
155  $this->output( sprintf( "%.2fs\n", $seconds ) );
156  # Wait for the replica DB to catch up
157  wfWaitForSlaves();
158  }
159  }
160  }
161 }
162 
163 $maintClass = "UpdateSpecialPages";
164 require_once RUN_MAINTENANCE_IF_MAIN;
$maintClass
$maintClass
Definition: updateSpecialPages.php:163
wfGetLB
wfGetLB( $wiki=false)
Get a load balancer object.
Definition: GlobalFunctions.php:3073
UpdateSpecialPages
Maintenance script to update cached special pages.
Definition: updateSpecialPages.php:32
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
QueryPage
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition: QueryPage.php:34
wfWaitForSlaves
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Definition: GlobalFunctions.php:3214
php
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
UpdateSpecialPages\__construct
__construct()
Default constructor.
Definition: updateSpecialPages.php:33
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
$limit
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers please use GetContentModels hook to make them known to core if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1049
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
DB_MASTER
const DB_MASTER
Definition: defines.php:26
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
UpdateSpecialPages\doSpecialPageCacheUpdates
doSpecialPageCacheUpdates( $dbw)
Definition: updateSpecialPages.php:124
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$wgQueryCacheLimit
$wgQueryCacheLimit
Number of rows to cache in 'querycache' table when miser mode is on.
Definition: DefaultSettings.php:2154
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1251
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
$special
this hook is for auditing only RecentChangesLinked and Watchlist $special
Definition: hooks.txt:990
SpecialPageFactory\getPage
static getPage( $name)
Find the object with a given name and return it (or NULL)
Definition: SpecialPageFactory.php:379
QueryPage\getPages
static getPages()
Get a list of query page classes and their associated special pages, for periodic updates.
Definition: QueryPage.php:66
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236
UpdateSpecialPages\execute
execute()
Do the actual work.
Definition: updateSpecialPages.php:42