MediaWiki  REL1_33
cleanupRemovedModules.php
Go to the documentation of this file.
1 <?php
27 
28 require_once __DIR__ . '/Maintenance.php';
29 
37 
38  public function __construct() {
39  parent::__construct();
40  $this->addDescription(
41  'Remove cache entries for removed ResourceLoader modules from the database' );
42  $this->setBatchSize( 500 );
43  }
44 
45  public function execute() {
46  $this->output( "Cleaning up module_deps table...\n" );
47 
48  $dbw = $this->getDB( DB_MASTER );
49  $rl = MediaWikiServices::getInstance()->getResourceLoader();
50  $moduleNames = $rl->getModuleNames();
51  $res = $dbw->select( 'module_deps',
52  [ 'md_module', 'md_skin' ],
53  $moduleNames ? 'md_module NOT IN (' . $dbw->makeList( $moduleNames ) . ')' : '1=1',
54  __METHOD__
55  );
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( 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 
81 require_once RUN_MAINTENANCE_IF_MAIN;
use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Definition: APACHE-LICENSE-2.0.txt:10
$rows
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition: hooks.txt:2818
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:329
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
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:37
LIST_AND
const LIST_AND
Definition: Defines.php:52
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
Maintenance\beginTransaction
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Definition: Maintenance.php:1399
LIST_OR
const LIST_OR
Definition: Defines.php:55
DB_MASTER
const DB_MASTER
Definition: defines.php:26
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$maintClass
$maintClass
Definition: cleanupRemovedModules.php:80
Maintenance\commitTransaction
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Definition: Maintenance.php:1414
Maintenance\getBatchSize
getBatchSize()
Returns batch size.
Definition: Maintenance.php:367
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:22
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1373
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:434
CleanupRemovedModules\execute
execute()
Do the actual work.
Definition: cleanupRemovedModules.php:45
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:56
CleanupRemovedModules\__construct
__construct()
Default constructor.
Definition: cleanupRemovedModules.php:38
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:25
CleanupRemovedModules
Maintenance script to remove cache entries for removed ResourceLoader modules from the database.
Definition: cleanupRemovedModules.php:36
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:375