MediaWiki  1.29.2
purgeModuleDeps.php
Go to the documentation of this file.
1 <?php
26 
27 require_once __DIR__ . '/Maintenance.php';
28 
35  public function __construct() {
36  parent::__construct();
37  $this->addDescription(
38  'Remove all cache entries for ResourceLoader modules from the database' );
39  $this->setBatchSize( 500 );
40  }
41 
42  public function execute() {
43  $this->output( "Cleaning up module_deps table...\n" );
44 
45  $dbw = $this->getDB( DB_MASTER );
46  $res = $dbw->select( 'module_deps', [ 'md_module', 'md_skin' ], [], __METHOD__ );
47  $rows = iterator_to_array( $res, false );
48 
49  $modDeps = $dbw->tableName( 'module_deps' );
50  $i = 1;
51  foreach ( array_chunk( $rows, $this->mBatchSize ) as $chunk ) {
52  // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) ..
53  $conds = array_map( function ( stdClass $row ) use ( $dbw ) {
54  return $dbw->makeList( (array)$row, IDatabase::LIST_AND );
55  }, $chunk );
56  $conds = $dbw->makeList( $conds, IDatabase::LIST_OR );
57 
58  $this->beginTransaction( $dbw, __METHOD__ );
59  $dbw->query( "DELETE FROM $modDeps WHERE $conds", __METHOD__ );
60  $numRows = $dbw->affectedRows();
61  $this->output( "Batch $i: $numRows rows\n" );
62  $this->commitTransaction( $dbw, __METHOD__ );
63 
64  $i++;
65  }
66 
67  $this->output( "Done\n" );
68  }
69 }
70 
71 $maintClass = 'PurgeModuleDeps';
72 require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
PurgeModuleDeps\execute
execute()
Do the actual work.
Definition: purgeModuleDeps.php:42
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$res
$res
Definition: database.txt:21
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$maintClass
$maintClass
Definition: purgeModuleDeps.php:71
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
LIST_AND
const LIST_AND
Definition: Defines.php:41
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
Maintenance\beginTransaction
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Definition: Maintenance.php:1278
LIST_OR
const LIST_OR
Definition: Defines.php:44
PurgeModuleDeps
Maintenance script to purge the module_deps database cache table.
Definition: purgeModuleDeps.php:34
DB_MASTER
const DB_MASTER
Definition: defines.php:26
Maintenance\commitTransaction
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Definition: Maintenance.php:1293
PurgeModuleDeps\__construct
__construct()
Default constructor.
Definition: purgeModuleDeps.php:35
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
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1251
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:314