MediaWiki REL1_37
cleanupImages.php
Go to the documentation of this file.
1<?php
29
30require_once __DIR__ . '/TableCleanup.php';
31
38 protected $defaultParams = [
39 'table' => 'image',
40 'conds' => [],
41 'index' => 'img_name',
42 'callback' => 'processRow',
43 ];
44
46 private $repo;
47
48 public function __construct() {
49 parent::__construct();
50 $this->addDescription( 'Script to clean up broken, unparseable upload filenames' );
51 }
52
53 protected function processRow( $row ) {
54 $source = $row->img_name;
55 if ( $source == '' ) {
56 // Ye olde empty rows. Just kill them.
57 $this->killRow( $source );
58
59 return $this->progress( 1 );
60 }
61
62 $cleaned = $source;
63
64 // About half of old bad image names have percent-codes
65 $cleaned = rawurldecode( $cleaned );
66
67 // We also have some HTML entities there
68 $cleaned = Sanitizer::decodeCharReferences( $cleaned );
69
70 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
71
72 // Some are old latin-1
73 $cleaned = $contLang->checkTitleEncoding( $cleaned );
74
75 // Many of remainder look like non-normalized unicode
76 $cleaned = $contLang->normalize( $cleaned );
77
78 $title = Title::makeTitleSafe( NS_FILE, $cleaned );
79
80 if ( $title === null ) {
81 $this->output( "page $source ($cleaned) is illegal.\n" );
82 $safe = $this->buildSafeTitle( $cleaned );
83 if ( $safe === false ) {
84 return $this->progress( 0 );
85 }
86 $this->pokeFile( $source, $safe );
87
88 return $this->progress( 1 );
89 }
90
91 if ( $title->getDBkey() !== $source ) {
92 $munged = $title->getDBkey();
93 $this->output( "page $source ($munged) doesn't match self.\n" );
94 $this->pokeFile( $source, $munged );
95
96 return $this->progress( 1 );
97 }
98
99 return $this->progress( 0 );
100 }
101
105 private function killRow( $name ) {
106 if ( $this->dryrun ) {
107 $this->output( "DRY RUN: would delete bogus row '$name'\n" );
108 } else {
109 $this->output( "deleting bogus row '$name'\n" );
110 $db = $this->getDB( DB_PRIMARY );
111 $db->delete( 'image',
112 [ 'img_name' => $name ],
113 __METHOD__ );
114 }
115 }
116
121 private function filePath( $name ) {
122 if ( $this->repo === null ) {
123 $this->repo = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo();
124 }
125
126 return $this->repo->getRootDirectory() . '/' . $this->repo->getHashPath( $name ) . $name;
127 }
128
129 private function imageExists( $name, $db ) {
130 return (bool)$db->selectField( 'image', '1', [ 'img_name' => $name ], __METHOD__ );
131 }
132
133 private function pageExists( $name, $db ) {
134 return (bool)$db->selectField( 'page', '1',
135 [ 'page_namespace' => NS_FILE, 'page_title' => $name ],
136 __METHOD__
137 );
138 }
139
140 private function pokeFile( $orig, $new ) {
141 $path = $this->filePath( $orig );
142 if ( !file_exists( $path ) ) {
143 $this->output( "missing file: $path\n" );
144 $this->killRow( $orig );
145
146 return;
147 }
148
149 $db = $this->getDB( DB_PRIMARY );
150
151 /*
152 * To prevent key collisions in the update() statements below,
153 * if the target title exists in the image table, or if both the
154 * original and target titles exist in the page table, append
155 * increasing version numbers until the target title exists in
156 * neither. (See also T18916.)
157 */
158 $version = 0;
159 $final = $new;
160 $conflict = ( $this->imageExists( $final, $db ) ||
161 ( $this->pageExists( $orig, $db ) && $this->pageExists( $final, $db ) ) );
162
163 while ( $conflict ) {
164 $this->output( "Rename conflicts with '$final'...\n" );
165 $version++;
166 $final = $this->appendTitle( $new, "_$version" );
167 $conflict = ( $this->imageExists( $final, $db ) || $this->pageExists( $final, $db ) );
168 }
169
170 $finalPath = $this->filePath( $final );
171
172 if ( $this->dryrun ) {
173 $this->output( "DRY RUN: would rename $path to $finalPath\n" );
174 } else {
175 $this->output( "renaming $path to $finalPath\n" );
176 // @todo FIXME: Should this use File::move()?
177 $this->beginTransaction( $db, __METHOD__ );
178 $db->update( 'image',
179 [ 'img_name' => $final ],
180 [ 'img_name' => $orig ],
181 __METHOD__ );
182 $db->update( 'oldimage',
183 [ 'oi_name' => $final ],
184 [ 'oi_name' => $orig ],
185 __METHOD__ );
186 $db->update( 'page',
187 [ 'page_title' => $final ],
188 [ 'page_title' => $orig, 'page_namespace' => NS_FILE ],
189 __METHOD__ );
190 $dir = dirname( $finalPath );
191 if ( !file_exists( $dir ) ) {
192 if ( !wfMkdirParents( $dir, null, __METHOD__ ) ) {
193 $this->output( "RENAME FAILED, COULD NOT CREATE $dir" );
194 $this->rollbackTransaction( $db, __METHOD__ );
195
196 return;
197 }
198 }
199 if ( rename( $path, $finalPath ) ) {
200 $this->commitTransaction( $db, __METHOD__ );
201 } else {
202 $this->error( "RENAME FAILED" );
203 $this->rollbackTransaction( $db, __METHOD__ );
204 }
205 }
206 }
207
208 private function appendTitle( $name, $suffix ) {
209 return preg_replace( '/^(.*)(\..*?)$/',
210 "\\1$suffix\\2", $name );
211 }
212
213 private function buildSafeTitle( $name ) {
214 $x = preg_replace_callback(
215 '/([^' . Title::legalChars() . ']|~)/',
216 [ $this, 'hexChar' ],
217 $name );
218
219 $test = Title::makeTitleSafe( NS_FILE, $x );
220 if ( $test === null || $test->getDBkey() !== $x ) {
221 $this->error( "Unable to generate safe title from '$name', got '$x'" );
222
223 return false;
224 }
225
226 return $x;
227 }
228}
229
230$maintClass = CleanupImages::class;
231require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
const NS_FILE
Definition Defines.php:70
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
Maintenance script to clean up broken, unparseable upload filenames.
imageExists( $name, $db)
pokeFile( $orig, $new)
pageExists( $name, $db)
appendTitle( $name, $suffix)
LocalRepo null $repo
__construct()
Default constructor.
buildSafeTitle( $name)
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition LocalRepo.php:41
error( $err, $die=0)
Throw an error to the user.
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.
addDescription( $text)
Set the description text.
rollbackTransaction(IDatabase $dbw, $fname)
Rollback the transaction on a DB handle.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Generic class to cleanup a database table.
progress( $updated)
$maintClass
$source
const DB_PRIMARY
Definition defines.php:27