MediaWiki REL1_35
LocalRepo.php
Go to the documentation of this file.
1<?php
29
37class LocalRepo extends FileRepo {
39 protected $fileFactory = [ LocalFile::class, 'newFromTitle' ];
41 protected $fileFactoryKey = [ LocalFile::class, 'newFromKey' ];
43 protected $fileFromRowFactory = [ LocalFile::class, 'newFromRow' ];
45 protected $oldFileFromRowFactory = [ OldLocalFile::class, 'newFromRow' ];
47 protected $oldFileFactory = [ OldLocalFile::class, 'newFromTitle' ];
49 protected $oldFileFactoryKey = [ OldLocalFile::class, 'newFromKey' ];
50
51 public function __construct( array $info = null ) {
52 parent::__construct( $info );
53
54 $this->hasSha1Storage = isset( $info['storageLayout'] )
55 && $info['storageLayout'] === 'sha1';
56
57 if ( $this->hasSha1Storage() ) {
58 $this->backend = new FileBackendDBRepoWrapper( [
59 'backend' => $this->backend,
60 'repoName' => $this->name,
61 'dbHandleFactory' => $this->getDBFactory()
62 ] );
63 }
64 }
65
71 public function newFileFromRow( $row ) {
72 if ( isset( $row->img_name ) ) {
73 return call_user_func( $this->fileFromRowFactory, $row, $this );
74 } elseif ( isset( $row->oi_name ) ) {
75 return call_user_func( $this->oldFileFromRowFactory, $row, $this );
76 } else {
77 throw new MWException( __METHOD__ . ': invalid row' );
78 }
79 }
80
86 public function newFromArchiveName( $title, $archiveName ) {
87 return OldLocalFile::newFromArchiveName( $title, $this, $archiveName );
88 }
89
100 public function cleanupDeletedBatch( array $storageKeys ) {
101 if ( $this->hasSha1Storage() ) {
102 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths" );
103 return Status::newGood();
104 }
105
106 $backend = $this->backend; // convenience
107 $root = $this->getZonePath( 'deleted' );
108 $dbw = $this->getMasterDB();
109 $status = $this->newGood();
110 $storageKeys = array_unique( $storageKeys );
111 foreach ( $storageKeys as $key ) {
112 $hashPath = $this->getDeletedHashPath( $key );
113 $path = "$root/$hashPath$key";
114 $dbw->startAtomic( __METHOD__ );
115 // Check for usage in deleted/hidden files and preemptively
116 // lock the key to avoid any future use until we are finished.
117 $deleted = $this->deletedFileHasKey( $key, 'lock' );
118 $hidden = $this->hiddenFileHasKey( $key, 'lock' );
119 if ( !$deleted && !$hidden ) { // not in use now
120 wfDebug( __METHOD__ . ": deleting $key" );
121 $op = [ 'op' => 'delete', 'src' => $path ];
122 if ( !$backend->doOperation( $op )->isOK() ) {
123 $status->error( 'undelete-cleanup-error', $path );
124 $status->failCount++;
125 }
126 } else {
127 wfDebug( __METHOD__ . ": $key still in use" );
128 $status->successCount++;
129 }
130 $dbw->endAtomic( __METHOD__ );
131 }
132
133 return $status;
134 }
135
143 protected function deletedFileHasKey( $key, $lock = null ) {
144 $options = ( $lock === 'lock' ) ? [ 'FOR UPDATE' ] : [];
145
146 $dbw = $this->getMasterDB();
147
148 return (bool)$dbw->selectField( 'filearchive', '1',
149 [ 'fa_storage_group' => 'deleted', 'fa_storage_key' => $key ],
150 __METHOD__, $options
151 );
152 }
153
161 protected function hiddenFileHasKey( $key, $lock = null ) {
162 $options = ( $lock === 'lock' ) ? [ 'FOR UPDATE' ] : [];
163
164 $sha1 = self::getHashFromKey( $key );
165 $ext = File::normalizeExtension( substr( $key, strcspn( $key, '.' ) + 1 ) );
166
167 $dbw = $this->getMasterDB();
168
169 return (bool)$dbw->selectField( 'oldimage', '1',
170 [ 'oi_sha1' => $sha1,
171 'oi_archive_name ' . $dbw->buildLike( $dbw->anyString(), ".$ext" ),
172 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ],
173 __METHOD__, $options
174 );
175 }
176
183 public static function getHashFromKey( $key ) {
184 $sha1 = strtok( $key, '.' );
185 if ( is_string( $sha1 ) && strlen( $sha1 ) === 32 && $sha1[0] === '0' ) {
186 $sha1 = substr( $sha1, 1 );
187 }
188 return $sha1;
189 }
190
197 public function checkRedirect( Title $title ) {
198 $title = File::normalizeTitle( $title, 'exception' );
199
200 $memcKey = $this->getSharedCacheKey( 'file_redirect', md5( $title->getDBkey() ) );
201 if ( $memcKey === false ) {
202 $memcKey = $this->getLocalCacheKey( 'file_redirect', md5( $title->getDBkey() ) );
203 $expiry = 300; // no invalidation, 5 minutes
204 } else {
205 $expiry = 86400; // has invalidation, 1 day
206 }
207
208 $method = __METHOD__;
209 $redirDbKey = $this->wanCache->getWithSetCallback(
210 $memcKey,
211 $expiry,
212 function ( $oldValue, &$ttl, array &$setOpts ) use ( $method, $title ) {
213 $dbr = $this->getReplicaDB(); // possibly remote DB
214
215 $setOpts += Database::getCacheSetOptions( $dbr );
216
217 $row = $dbr->selectRow(
218 [ 'page', 'redirect' ],
219 [ 'rd_namespace', 'rd_title' ],
220 [
221 'page_namespace' => $title->getNamespace(),
222 'page_title' => $title->getDBkey(),
223 'rd_from = page_id'
224 ],
225 $method
226 );
227
228 return ( $row && $row->rd_namespace == NS_FILE )
229 ? Title::makeTitle( $row->rd_namespace, $row->rd_title )->getDBkey()
230 : ''; // negative cache
231 },
232 [ 'pcTTL' => WANObjectCache::TTL_PROC_LONG ]
233 );
234
235 // @note: also checks " " for b/c
236 if ( $redirDbKey !== ' ' && strval( $redirDbKey ) !== '' ) {
237 // Page is a redirect to another file
238 return Title::newFromText( $redirDbKey, NS_FILE );
239 }
240
241 return false; // no redirect
242 }
243
244 public function findFiles( array $items, $flags = 0 ) {
245 $finalFiles = []; // map of (DB key => corresponding File) for matches
246
247 $searchSet = []; // map of (normalized DB key => search params)
248 foreach ( $items as $item ) {
249 if ( is_array( $item ) ) {
250 $title = File::normalizeTitle( $item['title'] );
251 if ( $title ) {
252 $searchSet[$title->getDBkey()] = $item;
253 }
254 } else {
255 $title = File::normalizeTitle( $item );
256 if ( $title ) {
257 $searchSet[$title->getDBkey()] = [];
258 }
259 }
260 }
261
262 $fileMatchesSearch = function ( File $file, array $search ) {
263 // Note: file name comparison done elsewhere (to handle redirects)
264 global $wgUser;
265 $user = ( !empty( $search['private'] ) && $search['private'] instanceof User )
266 ? $search['private']
267 : $wgUser;
268
269 return (
270 $file->exists() &&
271 (
272 ( empty( $search['time'] ) && !$file->isOld() ) ||
273 ( !empty( $search['time'] ) && $search['time'] === $file->getTimestamp() )
274 ) &&
275 ( !empty( $search['private'] ) || !$file->isDeleted( File::DELETED_FILE ) ) &&
276 $file->userCan( File::DELETED_FILE, $user )
277 );
278 };
279
280 $applyMatchingFiles = function ( IResultWrapper $res, &$searchSet, &$finalFiles )
281 use ( $fileMatchesSearch, $flags )
282 {
283 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
284 $info = $this->getInfo();
285 foreach ( $res as $row ) {
286 $file = $this->newFileFromRow( $row );
287 // There must have been a search for this DB key, but this has to handle the
288 // cases were title capitalization is different on the client and repo wikis.
289 $dbKeysLook = [ strtr( $file->getName(), ' ', '_' ) ];
290 if ( !empty( $info['initialCapital'] ) ) {
291 // Search keys for "hi.png" and "Hi.png" should use the "Hi.png file"
292 $dbKeysLook[] = $contLang->lcfirst( $file->getName() );
293 }
294 foreach ( $dbKeysLook as $dbKey ) {
295 if ( isset( $searchSet[$dbKey] )
296 && $fileMatchesSearch( $file, $searchSet[$dbKey] )
297 ) {
298 $finalFiles[$dbKey] = ( $flags & FileRepo::NAME_AND_TIME_ONLY )
299 ? [ 'title' => $dbKey, 'timestamp' => $file->getTimestamp() ]
300 : $file;
301 unset( $searchSet[$dbKey] );
302 }
303 }
304 }
305 };
306
307 $dbr = $this->getReplicaDB();
308
309 // Query image table
310 $imgNames = [];
311 foreach ( array_keys( $searchSet ) as $dbKey ) {
312 $imgNames[] = $this->getNameFromTitle( File::normalizeTitle( $dbKey ) );
313 }
314
315 if ( count( $imgNames ) ) {
316 $fileQuery = LocalFile::getQueryInfo();
317 $res = $dbr->select( $fileQuery['tables'], $fileQuery['fields'], [ 'img_name' => $imgNames ],
318 __METHOD__, [], $fileQuery['joins'] );
319 $applyMatchingFiles( $res, $searchSet, $finalFiles );
320 }
321
322 // Query old image table
323 $oiConds = []; // WHERE clause array for each file
324 foreach ( $searchSet as $dbKey => $search ) {
325 if ( isset( $search['time'] ) ) {
326 $oiConds[] = $dbr->makeList(
327 [
328 'oi_name' => $this->getNameFromTitle( File::normalizeTitle( $dbKey ) ),
329 'oi_timestamp' => $dbr->timestamp( $search['time'] )
330 ],
332 );
333 }
334 }
335
336 if ( count( $oiConds ) ) {
337 $fileQuery = OldLocalFile::getQueryInfo();
338 $res = $dbr->select( $fileQuery['tables'], $fileQuery['fields'],
339 $dbr->makeList( $oiConds, LIST_OR ),
340 __METHOD__, [], $fileQuery['joins'] );
341 $applyMatchingFiles( $res, $searchSet, $finalFiles );
342 }
343
344 // Check for redirects...
345 foreach ( $searchSet as $dbKey => $search ) {
346 if ( !empty( $search['ignoreRedirect'] ) ) {
347 continue;
348 }
349
350 $title = File::normalizeTitle( $dbKey );
351 $redir = $this->checkRedirect( $title ); // hopefully hits memcached
352
353 if ( $redir && $redir->getNamespace() == NS_FILE ) {
354 $file = $this->newFile( $redir );
355 if ( $file && $fileMatchesSearch( $file, $search ) ) {
356 $file->redirectedFrom( $title->getDBkey() );
357 if ( $flags & FileRepo::NAME_AND_TIME_ONLY ) {
358 $finalFiles[$dbKey] = [
359 'title' => $file->getTitle()->getDBkey(),
360 'timestamp' => $file->getTimestamp()
361 ];
362 } else {
363 $finalFiles[$dbKey] = $file;
364 }
365 }
366 }
367 }
368
369 return $finalFiles;
370 }
371
379 public function findBySha1( $hash ) {
380 $dbr = $this->getReplicaDB();
381 $fileQuery = LocalFile::getQueryInfo();
382 $res = $dbr->select(
383 $fileQuery['tables'],
384 $fileQuery['fields'],
385 [ 'img_sha1' => $hash ],
386 __METHOD__,
387 [ 'ORDER BY' => 'img_name' ],
388 $fileQuery['joins']
389 );
390
391 $result = [];
392 foreach ( $res as $row ) {
393 $result[] = $this->newFileFromRow( $row );
394 }
395 $res->free();
396
397 return $result;
398 }
399
409 public function findBySha1s( array $hashes ) {
410 if ( $hashes === [] ) {
411 return []; // empty parameter
412 }
413
414 $dbr = $this->getReplicaDB();
415 $fileQuery = LocalFile::getQueryInfo();
416 $res = $dbr->select(
417 $fileQuery['tables'],
418 $fileQuery['fields'],
419 [ 'img_sha1' => $hashes ],
420 __METHOD__,
421 [ 'ORDER BY' => 'img_name' ],
422 $fileQuery['joins']
423 );
424
425 $result = [];
426 foreach ( $res as $row ) {
427 $file = $this->newFileFromRow( $row );
428 $result[$file->getSha1()][] = $file;
429 }
430 $res->free();
431
432 return $result;
433 }
434
442 public function findFilesByPrefix( $prefix, $limit ) {
443 $selectOptions = [ 'ORDER BY' => 'img_name', 'LIMIT' => intval( $limit ) ];
444
445 // Query database
446 $dbr = $this->getReplicaDB();
447 $fileQuery = LocalFile::getQueryInfo();
448 $res = $dbr->select(
449 $fileQuery['tables'],
450 $fileQuery['fields'],
451 'img_name ' . $dbr->buildLike( $prefix, $dbr->anyString() ),
452 __METHOD__,
453 $selectOptions,
454 $fileQuery['joins']
455 );
456
457 // Build file objects
458 $files = [];
459 foreach ( $res as $row ) {
460 $files[] = $this->newFileFromRow( $row );
461 }
462
463 return $files;
464 }
465
470 public function getReplicaDB() {
471 return wfGetDB( DB_REPLICA );
472 }
473
478 public function getMasterDB() {
479 return wfGetDB( DB_MASTER );
480 }
481
486 protected function getDBFactory() {
487 return function ( $index ) {
488 return wfGetDB( $index );
489 };
490 }
491
500 public function getSharedCacheKey( ...$args ) {
501 return $this->wanCache->makeGlobalKey(
502 WikiMap::getCurrentWikiDbDomain()->getId(),
503 ...$args
504 );
505 }
506
514 $key = $this->getSharedCacheKey( 'file_redirect', md5( $title->getDBkey() ) );
515 if ( $key ) {
516 $this->getMasterDB()->onTransactionPreCommitOrIdle(
517 function () use ( $key ) {
518 $this->wanCache->delete( $key );
519 },
520 __METHOD__
521 );
522 }
523 }
524
531 public function getInfo() {
532 global $wgFavicon;
533
534 return array_merge( parent::getInfo(), [
535 'favicon' => wfExpandUrl( $wgFavicon ),
536 ] );
537 }
538
539 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
540 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
541 }
542
543 public function storeBatch( array $triplets, $flags = 0 ) {
544 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
545 }
546
547 public function cleanupBatch( array $files, $flags = 0 ) {
548 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
549 }
550
551 public function publish(
552 $src,
553 $dstRel,
554 $archiveRel,
555 $flags = 0,
556 array $options = []
557 ) {
558 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
559 }
560
561 public function publishBatch( array $ntuples, $flags = 0 ) {
562 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
563 }
564
565 public function delete( $srcRel, $archiveRel ) {
566 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
567 }
568
569 public function deleteBatch( array $sourceDestPairs ) {
570 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
571 }
572
580 protected function skipWriteOperationIfSha1( $function, array $args ) {
581 $this->assertWritableRepo(); // fail out if read-only
582
583 if ( $this->hasSha1Storage() ) {
584 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths" );
585 return Status::newGood();
586 } else {
587 return parent::$function( ...$args );
588 }
589 }
590}
$wgFavicon
The URL path of the shortcut icon.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Proxy backend that manages file layout rewriting for FileRepo.
doOperation(array $op, array $opts=[])
Same as doOperations() except it takes a single operation.
Base class for file repositories.
Definition FileRepo.php:41
assertWritableRepo()
Throw an exception if this repo is read-only by design.
newGood( $value=null)
Create a new good result.
const NAME_AND_TIME_ONLY
Definition FileRepo.php:47
getLocalCacheKey(... $args)
Get a key for this repo in the local cache domain.
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
FileBackend $backend
Definition FileRepo.php:64
getZonePath( $zone)
Get the storage path corresponding to one of the zones.
Definition FileRepo.php:392
getDeletedHashPath( $key)
Get a relative path for a deletion archive key, e.g.
newFile( $title, $time=false)
Create a new File object from the local repository.
Definition FileRepo.php:416
getNameFromTitle(Title $title)
Get the name of a file from its title object.
Definition FileRepo.php:678
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:63
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition LocalRepo.php:37
skipWriteOperationIfSha1( $function, array $args)
Skips the write operation if storage is sha1-based, executes it normally otherwise.
getDBFactory()
Get a callback to get a DB handle given an index (DB_REPLICA/DB_MASTER)
getInfo()
Return information about the repository.
newFileFromRow( $row)
Definition LocalRepo.php:71
deletedFileHasKey( $key, $lock=null)
Check if a deleted (filearchive) file has this sha1 key.
callable $oldFileFactoryKey
Definition LocalRepo.php:49
callable $oldFileFactory
Definition LocalRepo.php:47
cleanupBatch(array $files, $flags=0)
Deletes a batch of files.
publishBatch(array $ntuples, $flags=0)
Publish a batch of files.
findFiles(array $items, $flags=0)
Find many files at once.
findFilesByPrefix( $prefix, $limit)
Return an array of files where the name starts with $prefix.
findBySha1s(array $hashes)
Get an array of arrays or iterators of file objects for files that have the given SHA-1 content hashe...
callable $oldFileFromRowFactory
Definition LocalRepo.php:45
getSharedCacheKey(... $args)
Get a key on the primary cache for this repository.
cleanupDeletedBatch(array $storageKeys)
Delete files in the deleted directory if they are not referenced in the filearchive table.
invalidateImageRedirect(Title $title)
Invalidates image redirect cache related to that image.
checkRedirect(Title $title)
Checks if there is a redirect named as $title.
callable $fileFactoryKey
Definition LocalRepo.php:41
getReplicaDB()
Get a connection to the replica DB.
store( $srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
publish( $src, $dstRel, $archiveRel, $flags=0, array $options=[])
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
getMasterDB()
Get a connection to the master DB.
storeBatch(array $triplets, $flags=0)
Store a batch of files.
callable $fileFromRowFactory
Definition LocalRepo.php:43
__construct(array $info=null)
Definition LocalRepo.php:51
deleteBatch(array $sourceDestPairs)
Move a group of files to the deletion archive.
hiddenFileHasKey( $key, $lock=null)
Check if a hidden (revision delete) file has this sha1 key.
static getHashFromKey( $key)
Gets the SHA1 hash from a storage key.
newFromArchiveName( $title, $archiveName)
Definition LocalRepo.php:86
callable $fileFactory
Definition LocalRepo.php:39
findBySha1( $hash)
Get an array or iterator of file objects for files that have a given SHA-1 content hash.
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static newFromArchiveName( $title, $repo, $archiveName)
Stable to override.
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new oldlocalfile object.
Represents a title within MediaWiki.
Definition Title.php:42
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:60
Relational database abstraction object.
Definition Database.php:50
const NS_FILE
Definition Defines.php:76
const LIST_OR
Definition Defines.php:52
const LIST_AND
Definition Defines.php:49
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
Result wrapper for grabbing data queried from an IDatabase object.
if( $line===false) $args
Definition mcc.php:124
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:29
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition router.php:42
if(!is_readable( $file)) $ext
Definition router.php:48