Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 25 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
PurgeModuleDeps | |
0.00% |
0 / 25 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
execute | |
0.00% |
0 / 21 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | /** |
3 | * This program is free software; you can redistribute it and/or modify |
4 | * it under the terms of the GNU General Public License as published by |
5 | * the Free Software Foundation; either version 2 of the License, or |
6 | * (at your option) any later version. |
7 | * |
8 | * This program is distributed in the hope that it will be useful, |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | * GNU General Public License for more details. |
12 | * |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
16 | * http://www.gnu.org/copyleft/gpl.html |
17 | * |
18 | * @file |
19 | * @ingroup Maintenance |
20 | */ |
21 | |
22 | use Wikimedia\Rdbms\IDatabase; |
23 | |
24 | // @codeCoverageIgnoreStart |
25 | require_once __DIR__ . '/Maintenance.php'; |
26 | // @codeCoverageIgnoreEnd |
27 | |
28 | /** |
29 | * Maintenance script to purge the module_deps database cache table for ResourceLoader. |
30 | * |
31 | * @ingroup Maintenance |
32 | * @ingroup ResourceLoader |
33 | */ |
34 | class PurgeModuleDeps extends Maintenance { |
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->getPrimaryDB(); |
46 | $res = $dbw->newSelectQueryBuilder() |
47 | ->select( [ 'md_module', 'md_skin' ] ) |
48 | ->from( 'module_deps' ) |
49 | ->caller( __METHOD__ )->fetchResultSet(); |
50 | $rows = iterator_to_array( $res, false ); |
51 | |
52 | $modDeps = $dbw->tableName( 'module_deps' ); |
53 | $i = 1; |
54 | foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) { |
55 | // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) .. |
56 | $conds = array_map( static function ( stdClass $row ) use ( $dbw ) { |
57 | return $dbw->makeList( (array)$row, IDatabase::LIST_AND ); |
58 | }, $chunk ); |
59 | $conds = $dbw->makeList( $conds, IDatabase::LIST_OR ); |
60 | |
61 | $this->beginTransaction( $dbw, __METHOD__ ); |
62 | $dbw->query( "DELETE FROM $modDeps WHERE $conds", __METHOD__ ); |
63 | $numRows = $dbw->affectedRows(); |
64 | $this->output( "Batch $i: $numRows rows\n" ); |
65 | $this->commitTransaction( $dbw, __METHOD__ ); |
66 | |
67 | $i++; |
68 | } |
69 | |
70 | $this->output( "Done\n" ); |
71 | } |
72 | } |
73 | |
74 | // @codeCoverageIgnoreStart |
75 | $maintClass = PurgeModuleDeps::class; |
76 | require_once RUN_MAINTENANCE_IF_MAIN; |
77 | // @codeCoverageIgnoreEnd |