MediaWiki master
cleanupRemovedModules.php
Go to the documentation of this file.
1<?php
26
27require_once __DIR__ . '/Maintenance.php';
28
36
37 public function __construct() {
38 parent::__construct();
39 $this->addDescription(
40 'Remove cache entries for removed ResourceLoader modules from the database' );
41 $this->setBatchSize( 500 );
42 }
43
44 public function execute() {
45 $this->output( "Cleaning up module_deps table...\n" );
46
47 $dbw = $this->getPrimaryDB();
48 $rl = $this->getServiceContainer()->getResourceLoader();
49 $moduleNames = $rl->getModuleNames();
50 $res = $dbw->newSelectQueryBuilder()
51 ->select( [ 'md_module', 'md_skin' ] )
52 ->from( 'module_deps' )
53 ->where( $moduleNames ? 'md_module NOT IN (' . $dbw->makeList( $moduleNames ) . ')' : '1=1' )
54 ->caller( __METHOD__ )
55 ->fetchResultSet();
56 $rows = iterator_to_array( $res, false );
57
58 $modDeps = $dbw->tableName( 'module_deps' );
59 $i = 1;
60 foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) {
61 // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) ..
62 $conds = array_map( static function ( stdClass $row ) use ( $dbw ) {
63 return $dbw->makeList( (array)$row, IDatabase::LIST_AND );
64 }, $chunk );
65 $conds = $dbw->makeList( $conds, IDatabase::LIST_OR );
66
67 $this->beginTransaction( $dbw, __METHOD__ );
68 $dbw->query( "DELETE FROM $modDeps WHERE $conds", __METHOD__ );
69 $numRows = $dbw->affectedRows();
70 $this->output( "Batch $i: $numRows rows\n" );
71 $this->commitTransaction( $dbw, __METHOD__ );
72
73 $i++;
74 }
75
76 $this->output( "Done\n" );
77 }
78}
79
80$maintClass = CleanupRemovedModules::class;
81require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script to remove cache entries for removed ResourceLoader modules from the database.
execute()
Do the actual work.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getServiceContainer()
Returns the main service container.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
setBatchSize( $s=0)
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:36