MediaWiki  1.28.1
cleanupRemovedModules.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/Maintenance.php';
26 
34 
35  public function __construct() {
36  parent::__construct();
37  $this->addDescription(
38  'Remove cache entries for removed ResourceLoader modules from the database' );
39  $this->addOption( 'batchsize', 'Delete rows in batches of this size. Default: 500', false, true );
40  }
41 
42  public function execute() {
43  $dbw = $this->getDB( DB_MASTER );
44  $rl = new ResourceLoader( ConfigFactory::getDefaultInstance()->makeConfig( 'main' ) );
45  $moduleNames = $rl->getModuleNames();
46  $moduleList = implode( ', ', array_map( [ $dbw, 'addQuotes' ], $moduleNames ) );
47  $limit = max( 1, intval( $this->getOption( 'batchsize', 500 ) ) );
48 
49  $this->output( "Cleaning up module_deps table...\n" );
50  $i = 1;
51  $modDeps = $dbw->tableName( 'module_deps' );
52  do {
53  // $dbw->delete() doesn't support LIMIT :(
54  $where = $moduleList ? "md_module NOT IN ($moduleList)" : '1=1';
55  $dbw->query( "DELETE FROM $modDeps WHERE $where LIMIT $limit", __METHOD__ );
56  $numRows = $dbw->affectedRows();
57  $this->output( "Batch $i: $numRows rows\n" );
58  $i++;
60  } while ( $numRows > 0 );
61  $this->output( "done\n" );
62  }
63 }
64 
65 $maintClass = "CleanupRemovedModules";
66 require_once RUN_MAINTENANCE_IF_MAIN;
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
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.
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance script to remove cache entries for removed ResourceLoader modules from the database...
const DB_MASTER
Definition: defines.php:23
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
addDescription($text)
Set the description text.
getOption($name, $default=null)
Get an option, or return the default.
output($out, $channel=null)
Throw some output to the user.
static getDefaultInstance()
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 RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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 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:1046
Dynamic JavaScript and CSS resource loading system.