3 * Local file in the wiki's own database.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup FileAbstraction
25 * Bump this number when serialized cache records may be incompatible.
27 define( 'MW_FILE_VERSION', 9 );
30 * Class to represent a local file in the wiki's own database
32 * Provides methods to retrieve paths (physical, logical, URL),
33 * to generate image thumbnails or for uploading.
35 * Note that only the repo object knows what its file class is called. You should
36 * never name a file class explictly outside of the repo class. Instead use the
37 * repo's factory functions to generate file objects, for example:
39 * RepoGroup::singleton()->getLocalRepo()->newFile( $title );
41 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
44 * @ingroup FileAbstraction
46 class LocalFile
extends File
{
47 const CACHE_FIELD_MAX_LEN
= 1000;
49 /** @var bool Does the file exist on disk? (loadFromXxx) */
50 protected $fileExists;
52 /** @var int Image width */
55 /** @var int Image height */
58 /** @var int Returned by getimagesize (loadFromXxx) */
61 /** @var string MEDIATYPE_xxx (bitmap, drawing, audio...) */
62 protected $media_type;
64 /** @var string MIME type, determined by MimeMagic::guessMimeType */
67 /** @var int Size in bytes (loadFromXxx) */
70 /** @var string Handler-specific metadata */
73 /** @var string SHA-1 base 36 content hash */
76 /** @var bool Whether or not core data has been loaded from the database (loadFromXxx) */
77 protected $dataLoaded;
79 /** @var bool Whether or not lazy-loaded data has been loaded from the database */
80 protected $extraDataLoaded;
82 /** @var int Bitfield akin to rev_deleted */
86 protected $repoClass = 'LocalRepo';
88 /** @var int Number of line to return by nextHistoryLine() (constructor) */
91 /** @var int Result of the query for the file's history (nextHistoryLine) */
94 /** @var string Major MIME type */
97 /** @var string Minor MIME type */
100 /** @var string Upload timestamp */
103 /** @var int User ID of uploader */
106 /** @var string User name of uploader */
109 /** @var string Description of current revision of the file */
110 private $description;
112 /** @var string TS_MW timestamp of the last change of the file description */
113 private $descriptionTouched;
115 /** @var bool Whether the row was upgraded on load */
118 /** @var bool True if the image row is locked */
121 /** @var bool True if the image row is locked with a lock initiated transaction */
122 private $lockedOwnTrx;
124 /** @var bool True if file is not present in file system. Not to be cached in memcached */
127 // @note: higher than IDBAccessObject constants
128 const LOAD_ALL
= 16; // integer; load all the lazy fields too (like metadata)
131 * Create a LocalFile from a title
132 * Do not call this except from inside a repo class.
134 * Note: $unused param is only here to avoid an E_STRICT
136 * @param Title $title
137 * @param FileRepo $repo
138 * @param null $unused
142 static function newFromTitle( $title, $repo, $unused = null ) {
143 return new self( $title, $repo );
147 * Create a LocalFile from a title
148 * Do not call this except from inside a repo class.
150 * @param stdClass $row
151 * @param FileRepo $repo
155 static function newFromRow( $row, $repo ) {
156 $title = Title
::makeTitle( NS_FILE
, $row->img_name
);
157 $file = new self( $title, $repo );
158 $file->loadFromRow( $row );
164 * Create a LocalFile from a SHA-1 key
165 * Do not call this except from inside a repo class.
167 * @param string $sha1 Base-36 SHA-1
168 * @param LocalRepo $repo
169 * @param string|bool $timestamp MW_timestamp (optional)
170 * @return bool|LocalFile
172 static function newFromKey( $sha1, $repo, $timestamp = false ) {
173 $dbr = $repo->getSlaveDB();
175 $conds = [ 'img_sha1' => $sha1 ];
177 $conds['img_timestamp'] = $dbr->timestamp( $timestamp );
180 $row = $dbr->selectRow( 'image', self
::selectFields(), $conds, __METHOD__
);
182 return self
::newFromRow( $row, $repo );
189 * Fields in the image table
192 static function selectFields() {
213 * Do not call this except from inside a repo class.
214 * @param Title $title
215 * @param FileRepo $repo
217 function __construct( $title, $repo ) {
218 parent
::__construct( $title, $repo );
220 $this->metadata
= '';
221 $this->historyLine
= 0;
222 $this->historyRes
= null;
223 $this->dataLoaded
= false;
224 $this->extraDataLoaded
= false;
226 $this->assertRepoDefined();
227 $this->assertTitleDefined();
231 * Get the memcached key for the main data for this file, or false if
232 * there is no access to the shared cache.
233 * @return string|bool
235 function getCacheKey() {
236 $hashedName = md5( $this->getName() );
238 return $this->repo
->getSharedCacheKey( 'file', $hashedName );
242 * Try to load file metadata from memcached. Returns true on success.
245 function loadFromCache() {
246 $this->dataLoaded
= false;
247 $this->extraDataLoaded
= false;
248 $key = $this->getCacheKey();
254 $cache = ObjectCache
::getMainWANInstance();
255 $cachedValues = $cache->get( $key );
257 // Check if the key existed and belongs to this version of MediaWiki
258 if ( is_array( $cachedValues ) && $cachedValues['version'] == MW_FILE_VERSION
) {
259 $this->fileExists
= $cachedValues['fileExists'];
260 if ( $this->fileExists
) {
261 $this->setProps( $cachedValues );
263 $this->dataLoaded
= true;
264 $this->extraDataLoaded
= true;
265 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
266 $this->extraDataLoaded
= $this->extraDataLoaded
&& isset( $cachedValues[$field] );
270 if ( $this->dataLoaded
) {
271 wfIncrStats( 'image_cache.hit' );
273 wfIncrStats( 'image_cache.miss' );
276 return $this->dataLoaded
;
280 * Save the file metadata to memcached
282 function saveToCache() {
285 $key = $this->getCacheKey();
290 $fields = $this->getCacheFields( '' );
291 $cacheVal = [ 'version' => MW_FILE_VERSION
];
292 $cacheVal['fileExists'] = $this->fileExists
;
294 if ( $this->fileExists
) {
295 foreach ( $fields as $field ) {
296 $cacheVal[$field] = $this->$field;
300 // Strip off excessive entries from the subset of fields that can become large.
301 // If the cache value gets to large it will not fit in memcached and nothing will
302 // get cached at all, causing master queries for any file access.
303 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
304 if ( isset( $cacheVal[$field] ) && strlen( $cacheVal[$field] ) > 100 * 1024 ) {
305 unset( $cacheVal[$field] ); // don't let the value get too big
309 // Cache presence for 1 week and negatives for 1 day
310 $ttl = $this->fileExists ?
86400 * 7 : 86400;
311 $opts = Database
::getCacheSetOptions( $this->repo
->getSlaveDB() );
312 ObjectCache
::getMainWANInstance()->set( $key, $cacheVal, $ttl, $opts );
316 * Purge the file object/metadata cache
318 public function invalidateCache() {
319 $key = $this->getCacheKey();
324 $this->repo
->getMasterDB()->onTransactionPreCommitOrIdle( function() use ( $key ) {
325 ObjectCache
::getMainWANInstance()->delete( $key );
330 * Load metadata from the file itself
332 function loadFromFile() {
333 $props = $this->repo
->getFileProps( $this->getVirtualUrl() );
334 $this->setProps( $props );
338 * @param string $prefix
341 function getCacheFields( $prefix = 'img_' ) {
342 static $fields = [ 'size', 'width', 'height', 'bits', 'media_type',
343 'major_mime', 'minor_mime', 'metadata', 'timestamp', 'sha1', 'user',
344 'user_text', 'description' ];
345 static $results = [];
347 if ( $prefix == '' ) {
351 if ( !isset( $results[$prefix] ) ) {
352 $prefixedFields = [];
353 foreach ( $fields as $field ) {
354 $prefixedFields[] = $prefix . $field;
356 $results[$prefix] = $prefixedFields;
359 return $results[$prefix];
363 * @param string $prefix
366 function getLazyCacheFields( $prefix = 'img_' ) {
367 static $fields = [ 'metadata' ];
368 static $results = [];
370 if ( $prefix == '' ) {
374 if ( !isset( $results[$prefix] ) ) {
375 $prefixedFields = [];
376 foreach ( $fields as $field ) {
377 $prefixedFields[] = $prefix . $field;
379 $results[$prefix] = $prefixedFields;
382 return $results[$prefix];
386 * Load file metadata from the DB
389 function loadFromDB( $flags = 0 ) {
390 $fname = get_class( $this ) . '::' . __FUNCTION__
;
392 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
393 $this->dataLoaded
= true;
394 $this->extraDataLoaded
= true;
396 $dbr = ( $flags & self
::READ_LATEST
)
397 ?
$this->repo
->getMasterDB()
398 : $this->repo
->getSlaveDB();
400 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
401 [ 'img_name' => $this->getName() ], $fname );
404 $this->loadFromRow( $row );
406 $this->fileExists
= false;
411 * Load lazy file metadata from the DB.
412 * This covers fields that are sometimes not cached.
414 protected function loadExtraFromDB() {
415 $fname = get_class( $this ) . '::' . __FUNCTION__
;
417 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
418 $this->extraDataLoaded
= true;
420 $fieldMap = $this->loadFieldsWithTimestamp( $this->repo
->getSlaveDB(), $fname );
422 $fieldMap = $this->loadFieldsWithTimestamp( $this->repo
->getMasterDB(), $fname );
426 foreach ( $fieldMap as $name => $value ) {
427 $this->$name = $value;
430 throw new MWException( "Could not find data for image '{$this->getName()}'." );
435 * @param IDatabase $dbr
436 * @param string $fname
439 private function loadFieldsWithTimestamp( $dbr, $fname ) {
442 $row = $dbr->selectRow( 'image', $this->getLazyCacheFields( 'img_' ),
443 [ 'img_name' => $this->getName(), 'img_timestamp' => $this->getTimestamp() ],
446 $fieldMap = $this->unprefixRow( $row, 'img_' );
448 # File may have been uploaded over in the meantime; check the old versions
449 $row = $dbr->selectRow( 'oldimage', $this->getLazyCacheFields( 'oi_' ),
450 [ 'oi_name' => $this->getName(), 'oi_timestamp' => $this->getTimestamp() ],
453 $fieldMap = $this->unprefixRow( $row, 'oi_' );
461 * @param array|object $row
462 * @param string $prefix
463 * @throws MWException
466 protected function unprefixRow( $row, $prefix = 'img_' ) {
467 $array = (array)$row;
468 $prefixLength = strlen( $prefix );
470 // Sanity check prefix once
471 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
472 throw new MWException( __METHOD__
. ': incorrect $prefix parameter' );
476 foreach ( $array as $name => $value ) {
477 $decoded[substr( $name, $prefixLength )] = $value;
484 * Decode a row from the database (either object or array) to an array
485 * with timestamps and MIME types decoded, and the field prefix removed.
487 * @param string $prefix
488 * @throws MWException
491 function decodeRow( $row, $prefix = 'img_' ) {
492 $decoded = $this->unprefixRow( $row, $prefix );
494 $decoded['timestamp'] = wfTimestamp( TS_MW
, $decoded['timestamp'] );
496 $decoded['metadata'] = $this->repo
->getSlaveDB()->decodeBlob( $decoded['metadata'] );
498 if ( empty( $decoded['major_mime'] ) ) {
499 $decoded['mime'] = 'unknown/unknown';
501 if ( !$decoded['minor_mime'] ) {
502 $decoded['minor_mime'] = 'unknown';
504 $decoded['mime'] = $decoded['major_mime'] . '/' . $decoded['minor_mime'];
507 // Trim zero padding from char/binary field
508 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
510 // Normalize some fields to integer type, per their database definition.
511 // Use unary + so that overflows will be upgraded to double instead of
512 // being trucated as with intval(). This is important to allow >2GB
513 // files on 32-bit systems.
514 foreach ( [ 'size', 'width', 'height', 'bits' ] as $field ) {
515 $decoded[$field] = +
$decoded[$field];
522 * Load file metadata from a DB result row
525 * @param string $prefix
527 function loadFromRow( $row, $prefix = 'img_' ) {
528 $this->dataLoaded
= true;
529 $this->extraDataLoaded
= true;
531 $array = $this->decodeRow( $row, $prefix );
533 foreach ( $array as $name => $value ) {
534 $this->$name = $value;
537 $this->fileExists
= true;
538 $this->maybeUpgradeRow();
542 * Load file metadata from cache or DB, unless already loaded
545 function load( $flags = 0 ) {
546 if ( !$this->dataLoaded
) {
547 if ( ( $flags & self
::READ_LATEST
) ||
!$this->loadFromCache() ) {
548 $this->loadFromDB( $flags );
549 $this->saveToCache();
551 $this->dataLoaded
= true;
553 if ( ( $flags & self
::LOAD_ALL
) && !$this->extraDataLoaded
) {
554 // @note: loads on name/timestamp to reduce race condition problems
555 $this->loadExtraFromDB();
560 * Upgrade a row if it needs it
562 function maybeUpgradeRow() {
563 global $wgUpdateCompatibleMetadata;
564 if ( wfReadOnly() ) {
568 if ( is_null( $this->media_type
) ||
569 $this->mime
== 'image/svg'
572 $this->upgraded
= true;
574 $handler = $this->getHandler();
576 $validity = $handler->isMetadataValid( $this, $this->getMetadata() );
577 if ( $validity === MediaHandler
::METADATA_BAD
578 ||
( $validity === MediaHandler
::METADATA_COMPATIBLE
&& $wgUpdateCompatibleMetadata )
581 $this->upgraded
= true;
587 function getUpgraded() {
588 return $this->upgraded
;
592 * Fix assorted version-related problems with the image row by reloading it from the file
594 function upgradeRow() {
596 $this->lock(); // begin
598 $this->loadFromFile();
600 # Don't destroy file info of missing files
601 if ( !$this->fileExists
) {
603 wfDebug( __METHOD__
. ": file does not exist, aborting\n" );
608 $dbw = $this->repo
->getMasterDB();
609 list( $major, $minor ) = self
::splitMime( $this->mime
);
611 if ( wfReadOnly() ) {
616 wfDebug( __METHOD__
. ': upgrading ' . $this->getName() . " to the current schema\n" );
618 $dbw->update( 'image',
620 'img_size' => $this->size
, // sanity
621 'img_width' => $this->width
,
622 'img_height' => $this->height
,
623 'img_bits' => $this->bits
,
624 'img_media_type' => $this->media_type
,
625 'img_major_mime' => $major,
626 'img_minor_mime' => $minor,
627 'img_metadata' => $dbw->encodeBlob( $this->metadata
),
628 'img_sha1' => $this->sha1
,
630 [ 'img_name' => $this->getName() ],
634 $this->invalidateCache();
636 $this->unlock(); // done
641 * Set properties in this object to be equal to those given in the
642 * associative array $info. Only cacheable fields can be set.
643 * All fields *must* be set in $info except for getLazyCacheFields().
645 * If 'mime' is given, it will be split into major_mime/minor_mime.
646 * If major_mime/minor_mime are given, $this->mime will also be set.
650 function setProps( $info ) {
651 $this->dataLoaded
= true;
652 $fields = $this->getCacheFields( '' );
653 $fields[] = 'fileExists';
655 foreach ( $fields as $field ) {
656 if ( isset( $info[$field] ) ) {
657 $this->$field = $info[$field];
661 // Fix up mime fields
662 if ( isset( $info['major_mime'] ) ) {
663 $this->mime
= "{$info['major_mime']}/{$info['minor_mime']}";
664 } elseif ( isset( $info['mime'] ) ) {
665 $this->mime
= $info['mime'];
666 list( $this->major_mime
, $this->minor_mime
) = self
::splitMime( $this->mime
);
670 /** splitMime inherited */
671 /** getName inherited */
672 /** getTitle inherited */
673 /** getURL inherited */
674 /** getViewURL inherited */
675 /** getPath inherited */
676 /** isVisible inherited */
681 function isMissing() {
682 if ( $this->missing
=== null ) {
683 list( $fileExists ) = $this->repo
->fileExists( $this->getVirtualUrl() );
684 $this->missing
= !$fileExists;
687 return $this->missing
;
691 * Return the width of the image
696 public function getWidth( $page = 1 ) {
699 if ( $this->isMultipage() ) {
700 $handler = $this->getHandler();
704 $dim = $handler->getPageDimensions( $this, $page );
706 return $dim['width'];
708 // For non-paged media, the false goes through an
709 // intval, turning failure into 0, so do same here.
718 * Return the height of the image
723 public function getHeight( $page = 1 ) {
726 if ( $this->isMultipage() ) {
727 $handler = $this->getHandler();
731 $dim = $handler->getPageDimensions( $this, $page );
733 return $dim['height'];
735 // For non-paged media, the false goes through an
736 // intval, turning failure into 0, so do same here.
740 return $this->height
;
745 * Returns ID or name of user who uploaded the file
747 * @param string $type 'text' or 'id'
750 function getUser( $type = 'text' ) {
753 if ( $type == 'text' ) {
754 return $this->user_text
;
755 } elseif ( $type == 'id' ) {
756 return (int)$this->user
;
761 * Get short description URL for a file based on the page ID.
763 * @return string|null
764 * @throws MWException
767 public function getDescriptionShortUrl() {
768 $pageId = $this->title
->getArticleID();
770 if ( $pageId !== null ) {
771 $url = $this->repo
->makeUrl( [ 'curid' => $pageId ] );
772 if ( $url !== false ) {
780 * Get handler-specific metadata
783 function getMetadata() {
784 $this->load( self
::LOAD_ALL
); // large metadata is loaded in another step
785 return $this->metadata
;
791 function getBitDepth() {
794 return (int)$this->bits
;
798 * Returns the size of the image file, in bytes
801 public function getSize() {
808 * Returns the MIME type of the file.
811 function getMimeType() {
818 * Returns the type of the media in the file.
819 * Use the value returned by this function with the MEDIATYPE_xxx constants.
822 function getMediaType() {
825 return $this->media_type
;
828 /** canRender inherited */
829 /** mustRender inherited */
830 /** allowInlineDisplay inherited */
831 /** isSafeFile inherited */
832 /** isTrustedFile inherited */
835 * Returns true if the file exists on disk.
836 * @return bool Whether file exist on disk.
838 public function exists() {
841 return $this->fileExists
;
844 /** getTransformScript inherited */
845 /** getUnscaledThumb inherited */
846 /** thumbName inherited */
847 /** createThumb inherited */
848 /** transform inherited */
850 /** getHandler inherited */
851 /** iconThumb inherited */
852 /** getLastError inherited */
855 * Get all thumbnail names previously generated for this file
856 * @param string|bool $archiveName Name of an archive file, default false
857 * @return array First element is the base dir, then files in that base dir.
859 function getThumbnails( $archiveName = false ) {
860 if ( $archiveName ) {
861 $dir = $this->getArchiveThumbPath( $archiveName );
863 $dir = $this->getThumbPath();
866 $backend = $this->repo
->getBackend();
869 $iterator = $backend->getFileList( [ 'dir' => $dir ] );
870 foreach ( $iterator as $file ) {
873 } catch ( FileBackendError
$e ) {
874 } // suppress (bug 54674)
880 * Refresh metadata in memcached, but don't touch thumbnails or CDN
882 function purgeMetadataCache() {
883 $this->invalidateCache();
887 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the CDN.
889 * @param array $options An array potentially with the key forThumbRefresh.
891 * @note This used to purge old thumbnails by default as well, but doesn't anymore.
893 function purgeCache( $options = [] ) {
894 // Refresh metadata cache
895 $this->purgeMetadataCache();
898 $this->purgeThumbnails( $options );
900 // Purge CDN cache for this file
901 DeferredUpdates
::addUpdate(
902 new CdnCacheUpdate( [ $this->getUrl() ] ),
903 DeferredUpdates
::PRESEND
908 * Delete cached transformed files for an archived version only.
909 * @param string $archiveName Name of the archived file
911 function purgeOldThumbnails( $archiveName ) {
912 // Get a list of old thumbnails and URLs
913 $files = $this->getThumbnails( $archiveName );
915 // Purge any custom thumbnail caches
916 Hooks
::run( 'LocalFilePurgeThumbnails', [ $this, $archiveName ] );
918 $dir = array_shift( $files );
919 $this->purgeThumbList( $dir, $files );
923 foreach ( $files as $file ) {
924 $urls[] = $this->getArchiveThumbUrl( $archiveName, $file );
926 DeferredUpdates
::addUpdate( new CdnCacheUpdate( $urls ), DeferredUpdates
::PRESEND
);
930 * Delete cached transformed files for the current version only.
931 * @param array $options
933 public function purgeThumbnails( $options = [] ) {
935 $files = $this->getThumbnails();
936 // Always purge all files from CDN regardless of handler filters
938 foreach ( $files as $file ) {
939 $urls[] = $this->getThumbUrl( $file );
941 array_shift( $urls ); // don't purge directory
943 // Give media handler a chance to filter the file purge list
944 if ( !empty( $options['forThumbRefresh'] ) ) {
945 $handler = $this->getHandler();
947 $handler->filterThumbnailPurgeList( $files, $options );
951 // Purge any custom thumbnail caches
952 Hooks
::run( 'LocalFilePurgeThumbnails', [ $this, false ] );
954 $dir = array_shift( $files );
955 $this->purgeThumbList( $dir, $files );
958 DeferredUpdates
::addUpdate( new CdnCacheUpdate( $urls ), DeferredUpdates
::PRESEND
);
962 * Delete a list of thumbnails visible at urls
963 * @param string $dir Base dir of the files.
964 * @param array $files Array of strings: relative filenames (to $dir)
966 protected function purgeThumbList( $dir, $files ) {
967 $fileListDebug = strtr(
968 var_export( $files, true ),
971 wfDebug( __METHOD__
. ": $fileListDebug\n" );
974 foreach ( $files as $file ) {
975 # Check that the base file name is part of the thumb name
976 # This is a basic sanity check to avoid erasing unrelated directories
977 if ( strpos( $file, $this->getName() ) !== false
978 ||
strpos( $file, "-thumbnail" ) !== false // "short" thumb name
980 $purgeList[] = "{$dir}/{$file}";
984 # Delete the thumbnails
985 $this->repo
->quickPurgeBatch( $purgeList );
986 # Clear out the thumbnail directory if empty
987 $this->repo
->quickCleanDir( $dir );
990 /** purgeDescription inherited */
991 /** purgeEverything inherited */
994 * @param int $limit Optional: Limit to number of results
995 * @param int $start Optional: Timestamp, start from
996 * @param int $end Optional: Timestamp, end at
998 * @return OldLocalFile[]
1000 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
1001 $dbr = $this->repo
->getSlaveDB();
1002 $tables = [ 'oldimage' ];
1003 $fields = OldLocalFile
::selectFields();
1004 $conds = $opts = $join_conds = [];
1005 $eq = $inc ?
'=' : '';
1006 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title
->getDBkey() );
1009 $conds[] = "oi_timestamp <$eq " . $dbr->addQuotes( $dbr->timestamp( $start ) );
1013 $conds[] = "oi_timestamp >$eq " . $dbr->addQuotes( $dbr->timestamp( $end ) );
1017 $opts['LIMIT'] = $limit;
1020 // Search backwards for time > x queries
1021 $order = ( !$start && $end !== null ) ?
'ASC' : 'DESC';
1022 $opts['ORDER BY'] = "oi_timestamp $order";
1023 $opts['USE INDEX'] = [ 'oldimage' => 'oi_name_timestamp' ];
1025 Hooks
::run( 'LocalFile::getHistory', [ &$this, &$tables, &$fields,
1026 &$conds, &$opts, &$join_conds ] );
1028 $res = $dbr->select( $tables, $fields, $conds, __METHOD__
, $opts, $join_conds );
1031 foreach ( $res as $row ) {
1032 $r[] = $this->repo
->newFileFromRow( $row );
1035 if ( $order == 'ASC' ) {
1036 $r = array_reverse( $r ); // make sure it ends up descending
1043 * Returns the history of this file, line by line.
1044 * starts with current version, then old versions.
1045 * uses $this->historyLine to check which line to return:
1046 * 0 return line for current version
1047 * 1 query for old versions, return first one
1048 * 2, ... return next old version from above query
1051 public function nextHistoryLine() {
1052 # Polymorphic function name to distinguish foreign and local fetches
1053 $fname = get_class( $this ) . '::' . __FUNCTION__
;
1055 $dbr = $this->repo
->getSlaveDB();
1057 if ( $this->historyLine
== 0 ) { // called for the first time, return line from cur
1058 $this->historyRes
= $dbr->select( 'image',
1061 "'' AS oi_archive_name",
1065 [ 'img_name' => $this->title
->getDBkey() ],
1069 if ( 0 == $dbr->numRows( $this->historyRes
) ) {
1070 $this->historyRes
= null;
1074 } elseif ( $this->historyLine
== 1 ) {
1075 $this->historyRes
= $dbr->select( 'oldimage', '*',
1076 [ 'oi_name' => $this->title
->getDBkey() ],
1078 [ 'ORDER BY' => 'oi_timestamp DESC' ]
1081 $this->historyLine++
;
1083 return $dbr->fetchObject( $this->historyRes
);
1087 * Reset the history pointer to the first element of the history
1089 public function resetHistory() {
1090 $this->historyLine
= 0;
1092 if ( !is_null( $this->historyRes
) ) {
1093 $this->historyRes
= null;
1097 /** getHashPath inherited */
1098 /** getRel inherited */
1099 /** getUrlRel inherited */
1100 /** getArchiveRel inherited */
1101 /** getArchivePath inherited */
1102 /** getThumbPath inherited */
1103 /** getArchiveUrl inherited */
1104 /** getThumbUrl inherited */
1105 /** getArchiveVirtualUrl inherited */
1106 /** getThumbVirtualUrl inherited */
1107 /** isHashed inherited */
1110 * Upload a file and record it in the DB
1111 * @param string $srcPath Source storage path, virtual URL, or filesystem path
1112 * @param string $comment Upload description
1113 * @param string $pageText Text to use for the new description page,
1114 * if a new description page is created
1115 * @param int|bool $flags Flags for publish()
1116 * @param array|bool $props File properties, if known. This can be used to
1117 * reduce the upload time when uploading virtual URLs for which the file
1118 * info is already known
1119 * @param string|bool $timestamp Timestamp for img_timestamp, or false to use the
1121 * @param User|null $user User object or null to use $wgUser
1122 * @param string[] $tags Change tags to add to the log entry and page revision.
1123 * (This doesn't check $user's permissions.)
1124 * @return FileRepoStatus On success, the value member contains the
1125 * archive name, or an empty string if it was a new file.
1127 function upload( $srcPath, $comment, $pageText, $flags = 0, $props = false,
1128 $timestamp = false, $user = null, $tags = []
1132 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1133 return $this->readOnlyFatalStatus();
1137 if ( $this->repo
->isVirtualUrl( $srcPath )
1138 || FileBackend
::isStoragePath( $srcPath )
1140 $props = $this->repo
->getFileProps( $srcPath );
1142 $props = FSFile
::getPropsFromPath( $srcPath );
1147 $handler = MediaHandler
::getHandler( $props['mime'] );
1149 $options['headers'] = $handler->getStreamHeaders( $props['metadata'] );
1151 $options['headers'] = [];
1154 // Trim spaces on user supplied text
1155 $comment = trim( $comment );
1157 // Truncate nicely or the DB will do it for us
1158 // non-nicely (dangling multi-byte chars, non-truncated version in cache).
1159 $comment = $wgContLang->truncate( $comment, 255 );
1160 $this->lock(); // begin
1161 $status = $this->publish( $srcPath, $flags, $options );
1163 if ( $status->successCount
>= 2 ) {
1164 // There will be a copy+(one of move,copy,store).
1165 // The first succeeding does not commit us to updating the DB
1166 // since it simply copied the current version to a timestamped file name.
1167 // It is only *preferable* to avoid leaving such files orphaned.
1168 // Once the second operation goes through, then the current version was
1169 // updated and we must therefore update the DB too.
1170 $oldver = $status->value
;
1171 if ( !$this->recordUpload2( $oldver, $comment, $pageText, $props, $timestamp, $user, $tags ) ) {
1172 $status->fatal( 'filenotfound', $srcPath );
1176 $this->unlock(); // done
1182 * Record a file upload in the upload log and the image table
1183 * @param string $oldver
1184 * @param string $desc
1185 * @param string $license
1186 * @param string $copyStatus
1187 * @param string $source
1188 * @param bool $watch
1189 * @param string|bool $timestamp
1190 * @param User|null $user User object or null to use $wgUser
1193 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
1194 $watch = false, $timestamp = false, User
$user = null ) {
1200 $pageText = SpecialUpload
::getInitialPageText( $desc, $license, $copyStatus, $source );
1202 if ( !$this->recordUpload2( $oldver, $desc, $pageText, false, $timestamp, $user ) ) {
1207 $user->addWatch( $this->getTitle() );
1214 * Record a file upload in the upload log and the image table
1215 * @param string $oldver
1216 * @param string $comment
1217 * @param string $pageText
1218 * @param bool|array $props
1219 * @param string|bool $timestamp
1220 * @param null|User $user
1221 * @param string[] $tags
1224 function recordUpload2(
1225 $oldver, $comment, $pageText, $props = false, $timestamp = false, $user = null, $tags = []
1227 if ( is_null( $user ) ) {
1232 $dbw = $this->repo
->getMasterDB();
1234 # Imports or such might force a certain timestamp; otherwise we generate
1235 # it and can fudge it slightly to keep (name,timestamp) unique on re-upload.
1236 if ( $timestamp === false ) {
1237 $timestamp = $dbw->timestamp();
1238 $allowTimeKludge = true;
1240 $allowTimeKludge = false;
1243 $props = $props ?
: $this->repo
->getFileProps( $this->getVirtualUrl() );
1244 $props['description'] = $comment;
1245 $props['user'] = $user->getId();
1246 $props['user_text'] = $user->getName();
1247 $props['timestamp'] = wfTimestamp( TS_MW
, $timestamp ); // DB -> TS_MW
1248 $this->setProps( $props );
1250 # Fail now if the file isn't there
1251 if ( !$this->fileExists
) {
1252 wfDebug( __METHOD__
. ": File " . $this->getRel() . " went missing!\n" );
1257 $dbw->startAtomic( __METHOD__
);
1259 # Test to see if the row exists using INSERT IGNORE
1260 # This avoids race conditions by locking the row until the commit, and also
1261 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
1262 $dbw->insert( 'image',
1264 'img_name' => $this->getName(),
1265 'img_size' => $this->size
,
1266 'img_width' => intval( $this->width
),
1267 'img_height' => intval( $this->height
),
1268 'img_bits' => $this->bits
,
1269 'img_media_type' => $this->media_type
,
1270 'img_major_mime' => $this->major_mime
,
1271 'img_minor_mime' => $this->minor_mime
,
1272 'img_timestamp' => $timestamp,
1273 'img_description' => $comment,
1274 'img_user' => $user->getId(),
1275 'img_user_text' => $user->getName(),
1276 'img_metadata' => $dbw->encodeBlob( $this->metadata
),
1277 'img_sha1' => $this->sha1
1283 $reupload = ( $dbw->affectedRows() == 0 );
1285 if ( $allowTimeKludge ) {
1286 # Use LOCK IN SHARE MODE to ignore any transaction snapshotting
1287 $ltimestamp = $dbw->selectField(
1290 [ 'img_name' => $this->getName() ],
1292 [ 'LOCK IN SHARE MODE' ]
1294 $lUnixtime = $ltimestamp ?
wfTimestamp( TS_UNIX
, $ltimestamp ) : false;
1295 # Avoid a timestamp that is not newer than the last version
1296 # TODO: the image/oldimage tables should be like page/revision with an ID field
1297 if ( $lUnixtime && wfTimestamp( TS_UNIX
, $timestamp ) <= $lUnixtime ) {
1298 sleep( 1 ); // fast enough re-uploads would go far in the future otherwise
1299 $timestamp = $dbw->timestamp( $lUnixtime +
1 );
1300 $this->timestamp
= wfTimestamp( TS_MW
, $timestamp ); // DB -> TS_MW
1304 # (bug 34993) Note: $oldver can be empty here, if the previous
1305 # version of the file was broken. Allow registration of the new
1306 # version to continue anyway, because that's better than having
1307 # an image that's not fixable by user operations.
1308 # Collision, this is an update of a file
1309 # Insert previous contents into oldimage
1310 $dbw->insertSelect( 'oldimage', 'image',
1312 'oi_name' => 'img_name',
1313 'oi_archive_name' => $dbw->addQuotes( $oldver ),
1314 'oi_size' => 'img_size',
1315 'oi_width' => 'img_width',
1316 'oi_height' => 'img_height',
1317 'oi_bits' => 'img_bits',
1318 'oi_timestamp' => 'img_timestamp',
1319 'oi_description' => 'img_description',
1320 'oi_user' => 'img_user',
1321 'oi_user_text' => 'img_user_text',
1322 'oi_metadata' => 'img_metadata',
1323 'oi_media_type' => 'img_media_type',
1324 'oi_major_mime' => 'img_major_mime',
1325 'oi_minor_mime' => 'img_minor_mime',
1326 'oi_sha1' => 'img_sha1'
1328 [ 'img_name' => $this->getName() ],
1332 # Update the current image row
1333 $dbw->update( 'image',
1335 'img_size' => $this->size
,
1336 'img_width' => intval( $this->width
),
1337 'img_height' => intval( $this->height
),
1338 'img_bits' => $this->bits
,
1339 'img_media_type' => $this->media_type
,
1340 'img_major_mime' => $this->major_mime
,
1341 'img_minor_mime' => $this->minor_mime
,
1342 'img_timestamp' => $timestamp,
1343 'img_description' => $comment,
1344 'img_user' => $user->getId(),
1345 'img_user_text' => $user->getName(),
1346 'img_metadata' => $dbw->encodeBlob( $this->metadata
),
1347 'img_sha1' => $this->sha1
1349 [ 'img_name' => $this->getName() ],
1354 $descTitle = $this->getTitle();
1355 $descId = $descTitle->getArticleID();
1356 $wikiPage = new WikiFilePage( $descTitle );
1357 $wikiPage->setFile( $this );
1359 // Add the log entry...
1360 $logEntry = new ManualLogEntry( 'upload', $reupload ?
'overwrite' : 'upload' );
1361 $logEntry->setTimestamp( $this->timestamp
);
1362 $logEntry->setPerformer( $user );
1363 $logEntry->setComment( $comment );
1364 $logEntry->setTarget( $descTitle );
1365 // Allow people using the api to associate log entries with the upload.
1366 // Log has a timestamp, but sometimes different from upload timestamp.
1367 $logEntry->setParameters(
1369 'img_sha1' => $this->sha1
,
1370 'img_timestamp' => $timestamp,
1373 // Note we keep $logId around since during new image
1374 // creation, page doesn't exist yet, so log_page = 0
1375 // but we want it to point to the page we're making,
1376 // so we later modify the log entry.
1377 // For a similar reason, we avoid making an RC entry
1378 // now and wait until the page exists.
1379 $logId = $logEntry->insert();
1381 if ( $descTitle->exists() ) {
1382 // Use own context to get the action text in content language
1383 $formatter = LogFormatter
::newFromEntry( $logEntry );
1384 $formatter->setContext( RequestContext
::newExtraneousContext( $descTitle ) );
1385 $editSummary = $formatter->getPlainActionText();
1387 $nullRevision = Revision
::newNullRevision(
1394 if ( $nullRevision ) {
1395 $nullRevision->insertOn( $dbw );
1397 'NewRevisionFromEditComplete',
1398 [ $wikiPage, $nullRevision, $nullRevision->getParentId(), $user ]
1400 $wikiPage->updateRevisionOn( $dbw, $nullRevision );
1401 // Associate null revision id
1402 $logEntry->setAssociatedRevId( $nullRevision->getId() );
1405 $newPageContent = null;
1407 // Make the description page and RC log entry post-commit
1408 $newPageContent = ContentHandler
::makeContent( $pageText, $descTitle );
1411 # Defer purges, page creation, and link updates in case they error out.
1412 # The most important thing is that files and the DB registry stay synced.
1413 $dbw->endAtomic( __METHOD__
);
1415 # Do some cache purges after final commit so that:
1416 # a) Changes are more likely to be seen post-purge
1417 # b) They won't cause rollback of the log publish/update above
1419 $dbw->onTransactionIdle( function () use (
1420 $that, $reupload, $wikiPage, $newPageContent, $comment, $user, $logEntry, $logId, $descId, $tags
1422 # Update memcache after the commit
1423 $that->invalidateCache();
1425 $updateLogPage = false;
1426 if ( $newPageContent ) {
1427 # New file page; create the description page.
1428 # There's already a log entry, so don't make a second RC entry
1429 # CDN and file cache for the description page are purged by doEditContent.
1430 $status = $wikiPage->doEditContent(
1433 EDIT_NEW | EDIT_SUPPRESS_RC
,
1438 if ( isset( $status->value
['revision'] ) ) {
1439 // Associate new page revision id
1440 $logEntry->setAssociatedRevId( $status->value
['revision']->getId() );
1442 // This relies on the resetArticleID() call in WikiPage::insertOn(),
1443 // which is triggered on $descTitle by doEditContent() above.
1444 if ( isset( $status->value
['revision'] ) ) {
1445 /** @var $rev Revision */
1446 $rev = $status->value
['revision'];
1447 $updateLogPage = $rev->getPage();
1450 # Existing file page: invalidate description page cache
1451 $wikiPage->getTitle()->invalidateCache();
1452 $wikiPage->getTitle()->purgeSquid();
1453 # Allow the new file version to be patrolled from the page footer
1454 Article
::purgePatrolFooterCache( $descId );
1457 # Update associated rev id. This should be done by $logEntry->insert() earlier,
1458 # but setAssociatedRevId() wasn't called at that point yet...
1459 $logParams = $logEntry->getParameters();
1460 $logParams['associated_rev_id'] = $logEntry->getAssociatedRevId();
1461 $update = [ 'log_params' => LogEntryBase
::makeParamBlob( $logParams ) ];
1462 if ( $updateLogPage ) {
1463 # Also log page, in case where we just created it above
1464 $update['log_page'] = $updateLogPage;
1466 $that->getRepo()->getMasterDB()->update(
1469 [ 'log_id' => $logId ],
1472 $that->getRepo()->getMasterDB()->insert(
1475 'ls_field' => 'associated_rev_id',
1476 'ls_value' => $logEntry->getAssociatedRevId(),
1477 'ls_log_id' => $logId,
1482 # Now that the log entry is up-to-date, make an RC entry.
1483 $recentChange = $logEntry->publish( $logId );
1486 ChangeTags
::addTags(
1488 $recentChange ?
$recentChange->getAttribute( 'rc_id' ) : null,
1489 $logEntry->getAssociatedRevId(),
1494 # Run hook for other updates (typically more cache purging)
1495 Hooks
::run( 'FileUpload', [ $that, $reupload, !$newPageContent ] );
1498 # Delete old thumbnails
1499 $that->purgeThumbnails();
1500 # Remove the old file from the CDN cache
1501 DeferredUpdates
::addUpdate(
1502 new CdnCacheUpdate( [ $that->getUrl() ] ),
1503 DeferredUpdates
::PRESEND
1506 # Update backlink pages pointing to this title if created
1507 LinksUpdate
::queueRecursiveJobsForTable( $that->getTitle(), 'imagelinks' );
1512 # This is a new file, so update the image count
1513 DeferredUpdates
::addUpdate( SiteStatsUpdate
::factory( [ 'images' => 1 ] ) );
1516 # Invalidate cache for all pages using this file
1517 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' ) );
1523 * Move or copy a file to its public location. If a file exists at the
1524 * destination, move it to an archive. Returns a FileRepoStatus object with
1525 * the archive name in the "value" member on success.
1527 * The archive name should be passed through to recordUpload for database
1530 * @param string $srcPath Local filesystem path or virtual URL to the source image
1531 * @param int $flags A bitwise combination of:
1532 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1533 * @param array $options Optional additional parameters
1534 * @return FileRepoStatus On success, the value member contains the
1535 * archive name, or an empty string if it was a new file.
1537 function publish( $srcPath, $flags = 0, array $options = [] ) {
1538 return $this->publishTo( $srcPath, $this->getRel(), $flags, $options );
1542 * Move or copy a file to a specified location. Returns a FileRepoStatus
1543 * object with the archive name in the "value" member on success.
1545 * The archive name should be passed through to recordUpload for database
1548 * @param string $srcPath Local filesystem path or virtual URL to the source image
1549 * @param string $dstRel Target relative path
1550 * @param int $flags A bitwise combination of:
1551 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1552 * @param array $options Optional additional parameters
1553 * @return FileRepoStatus On success, the value member contains the
1554 * archive name, or an empty string if it was a new file.
1556 function publishTo( $srcPath, $dstRel, $flags = 0, array $options = [] ) {
1557 $repo = $this->getRepo();
1558 if ( $repo->getReadOnlyReason() !== false ) {
1559 return $this->readOnlyFatalStatus();
1562 $this->lock(); // begin
1564 $archiveName = wfTimestamp( TS_MW
) . '!' . $this->getName();
1565 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
1567 if ( $repo->hasSha1Storage() ) {
1568 $sha1 = $repo->isVirtualUrl( $srcPath )
1569 ?
$repo->getFileSha1( $srcPath )
1570 : File
::sha1Base36( $srcPath );
1571 $dst = $repo->getBackend()->getPathForSHA1( $sha1 );
1572 $status = $repo->quickImport( $srcPath, $dst );
1573 if ( $flags & File
::DELETE_SOURCE
) {
1577 if ( $this->exists() ) {
1578 $status->value
= $archiveName;
1581 $flags = $flags & File
::DELETE_SOURCE ? LocalRepo
::DELETE_SOURCE
: 0;
1582 $status = $repo->publish( $srcPath, $dstRel, $archiveRel, $flags, $options );
1584 if ( $status->value
== 'new' ) {
1585 $status->value
= '';
1587 $status->value
= $archiveName;
1591 $this->unlock(); // done
1596 /** getLinksTo inherited */
1597 /** getExifData inherited */
1598 /** isLocal inherited */
1599 /** wasDeleted inherited */
1602 * Move file to the new title
1604 * Move current, old version and all thumbnails
1605 * to the new filename. Old file is deleted.
1607 * Cache purging is done; checks for validity
1608 * and logging are caller's responsibility
1610 * @param Title $target New file name
1611 * @return FileRepoStatus
1613 function move( $target ) {
1614 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1615 return $this->readOnlyFatalStatus();
1618 wfDebugLog( 'imagemove', "Got request to move {$this->name} to " . $target->getText() );
1619 $batch = new LocalFileMoveBatch( $this, $target );
1621 $this->lock(); // begin
1622 $batch->addCurrent();
1623 $archiveNames = $batch->addOlds();
1624 $status = $batch->execute();
1625 $this->unlock(); // done
1627 wfDebugLog( 'imagemove', "Finished moving {$this->name}" );
1629 // Purge the source and target files...
1630 $oldTitleFile = wfLocalFile( $this->title
);
1631 $newTitleFile = wfLocalFile( $target );
1632 // Hack: the lock()/unlock() pair is nested in a transaction so the locking is not
1633 // tied to BEGIN/COMMIT. To avoid slow purges in the transaction, move them outside.
1634 $this->getRepo()->getMasterDB()->onTransactionIdle(
1635 function () use ( $oldTitleFile, $newTitleFile, $archiveNames ) {
1636 $oldTitleFile->purgeEverything();
1637 foreach ( $archiveNames as $archiveName ) {
1638 $oldTitleFile->purgeOldThumbnails( $archiveName );
1640 $newTitleFile->purgeEverything();
1644 if ( $status->isOK() ) {
1645 // Now switch the object
1646 $this->title
= $target;
1647 // Force regeneration of the name and hashpath
1648 unset( $this->name
);
1649 unset( $this->hashPath
);
1656 * Delete all versions of the file.
1658 * Moves the files into an archive directory (or deletes them)
1659 * and removes the database rows.
1661 * Cache purging is done; logging is caller's responsibility.
1663 * @param string $reason
1664 * @param bool $suppress
1665 * @param User|null $user
1666 * @return FileRepoStatus
1668 function delete( $reason, $suppress = false, $user = null ) {
1669 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1670 return $this->readOnlyFatalStatus();
1673 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress, $user );
1675 $this->lock(); // begin
1676 $batch->addCurrent();
1677 # Get old version relative paths
1678 $archiveNames = $batch->addOlds();
1679 $status = $batch->execute();
1680 $this->unlock(); // done
1682 if ( $status->isOK() ) {
1683 DeferredUpdates
::addUpdate( SiteStatsUpdate
::factory( [ 'images' => -1 ] ) );
1686 // Hack: the lock()/unlock() pair is nested in a transaction so the locking is not
1687 // tied to BEGIN/COMMIT. To avoid slow purges in the transaction, move them outside.
1689 $this->getRepo()->getMasterDB()->onTransactionIdle(
1690 function () use ( $that, $archiveNames ) {
1691 $that->purgeEverything();
1692 foreach ( $archiveNames as $archiveName ) {
1693 $that->purgeOldThumbnails( $archiveName );
1700 foreach ( $archiveNames as $archiveName ) {
1701 $purgeUrls[] = $this->getArchiveUrl( $archiveName );
1703 DeferredUpdates
::addUpdate( new CdnCacheUpdate( $purgeUrls ), DeferredUpdates
::PRESEND
);
1709 * Delete an old version of the file.
1711 * Moves the file into an archive directory (or deletes it)
1712 * and removes the database row.
1714 * Cache purging is done; logging is caller's responsibility.
1716 * @param string $archiveName
1717 * @param string $reason
1718 * @param bool $suppress
1719 * @param User|null $user
1720 * @throws MWException Exception on database or file store failure
1721 * @return FileRepoStatus
1723 function deleteOld( $archiveName, $reason, $suppress = false, $user = null ) {
1724 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1725 return $this->readOnlyFatalStatus();
1728 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress, $user );
1730 $this->lock(); // begin
1731 $batch->addOld( $archiveName );
1732 $status = $batch->execute();
1733 $this->unlock(); // done
1735 $this->purgeOldThumbnails( $archiveName );
1736 if ( $status->isOK() ) {
1737 $this->purgeDescription();
1740 DeferredUpdates
::addUpdate(
1741 new CdnCacheUpdate( [ $this->getArchiveUrl( $archiveName ) ] ),
1742 DeferredUpdates
::PRESEND
1749 * Restore all or specified deleted revisions to the given file.
1750 * Permissions and logging are left to the caller.
1752 * May throw database exceptions on error.
1754 * @param array $versions Set of record ids of deleted items to restore,
1755 * or empty to restore all revisions.
1756 * @param bool $unsuppress
1757 * @return FileRepoStatus
1759 function restore( $versions = [], $unsuppress = false ) {
1760 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1761 return $this->readOnlyFatalStatus();
1764 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
1766 $this->lock(); // begin
1770 $batch->addIds( $versions );
1772 $status = $batch->execute();
1773 if ( $status->isGood() ) {
1774 $cleanupStatus = $batch->cleanup();
1775 $cleanupStatus->successCount
= 0;
1776 $cleanupStatus->failCount
= 0;
1777 $status->merge( $cleanupStatus );
1779 $this->unlock(); // done
1784 /** isMultipage inherited */
1785 /** pageCount inherited */
1786 /** scaleHeight inherited */
1787 /** getImageSize inherited */
1790 * Get the URL of the file description page.
1793 function getDescriptionUrl() {
1794 return $this->title
->getLocalURL();
1798 * Get the HTML text of the description page
1799 * This is not used by ImagePage for local files, since (among other things)
1800 * it skips the parser cache.
1802 * @param Language $lang What language to get description in (Optional)
1803 * @return bool|mixed
1805 function getDescriptionText( $lang = null ) {
1806 $revision = Revision
::newFromTitle( $this->title
, false, Revision
::READ_NORMAL
);
1810 $content = $revision->getContent();
1814 $pout = $content->getParserOutput( $this->title
, null, new ParserOptions( null, $lang ) );
1816 return $pout->getText();
1820 * @param int $audience
1824 function getDescription( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
1826 if ( $audience == self
::FOR_PUBLIC
&& $this->isDeleted( self
::DELETED_COMMENT
) ) {
1828 } elseif ( $audience == self
::FOR_THIS_USER
1829 && !$this->userCan( self
::DELETED_COMMENT
, $user )
1833 return $this->description
;
1838 * @return bool|string
1840 function getTimestamp() {
1843 return $this->timestamp
;
1847 * @return bool|string
1849 public function getDescriptionTouched() {
1850 // The DB lookup might return false, e.g. if the file was just deleted, or the shared DB repo
1851 // itself gets it from elsewhere. To avoid repeating the DB lookups in such a case, we
1852 // need to differentiate between null (uninitialized) and false (failed to load).
1853 if ( $this->descriptionTouched
=== null ) {
1855 'page_namespace' => $this->title
->getNamespace(),
1856 'page_title' => $this->title
->getDBkey()
1858 $touched = $this->repo
->getSlaveDB()->selectField( 'page', 'page_touched', $cond, __METHOD__
);
1859 $this->descriptionTouched
= $touched ?
wfTimestamp( TS_MW
, $touched ) : false;
1862 return $this->descriptionTouched
;
1868 function getSha1() {
1870 // Initialise now if necessary
1871 if ( $this->sha1
== '' && $this->fileExists
) {
1872 $this->lock(); // begin
1874 $this->sha1
= $this->repo
->getFileSha1( $this->getPath() );
1875 if ( !wfReadOnly() && strval( $this->sha1
) != '' ) {
1876 $dbw = $this->repo
->getMasterDB();
1877 $dbw->update( 'image',
1878 [ 'img_sha1' => $this->sha1
],
1879 [ 'img_name' => $this->getName() ],
1881 $this->invalidateCache();
1884 $this->unlock(); // done
1891 * @return bool Whether to cache in RepoGroup (this avoids OOMs)
1893 function isCacheable() {
1896 // If extra data (metadata) was not loaded then it must have been large
1897 return $this->extraDataLoaded
1898 && strlen( serialize( $this->metadata
) ) <= self
::CACHE_FIELD_MAX_LEN
;
1902 * Start a transaction and lock the image for update
1903 * Increments a reference counter if the lock is already held
1904 * @throws MWException Throws an error if the lock was not acquired
1905 * @return bool Whether the file lock owns/spawned the DB transaction
1908 $dbw = $this->repo
->getMasterDB();
1910 if ( !$this->locked
) {
1911 if ( !$dbw->trxLevel() ) {
1912 $dbw->begin( __METHOD__
);
1913 $this->lockedOwnTrx
= true;
1916 // Bug 54736: use simple lock to handle when the file does not exist.
1917 // SELECT FOR UPDATE prevents changes, not other SELECTs with FOR UPDATE.
1918 // Also, that would cause contention on INSERT of similarly named rows.
1919 $backend = $this->getRepo()->getBackend();
1920 $lockPaths = [ $this->getPath() ]; // represents all versions of the file
1921 $status = $backend->lockFiles( $lockPaths, LockManager
::LOCK_EX
, 5 );
1922 if ( !$status->isGood() ) {
1923 throw new MWException( "Could not acquire lock for '{$this->getName()}.'" );
1925 $dbw->onTransactionIdle( function () use ( $backend, $lockPaths ) {
1926 $backend->unlockFiles( $lockPaths, LockManager
::LOCK_EX
); // release on commit
1930 return $this->lockedOwnTrx
;
1934 * Decrement the lock reference count. If the reference count is reduced to zero, commits
1935 * the transaction and thereby releases the image lock.
1938 if ( $this->locked
) {
1940 if ( !$this->locked
&& $this->lockedOwnTrx
) {
1941 $dbw = $this->repo
->getMasterDB();
1942 $dbw->commit( __METHOD__
);
1943 $this->lockedOwnTrx
= false;
1949 * Roll back the DB transaction and mark the image unlocked
1951 function unlockAndRollback() {
1952 $this->locked
= false;
1953 $dbw = $this->repo
->getMasterDB();
1954 $dbw->rollback( __METHOD__
);
1955 $this->lockedOwnTrx
= false;
1961 protected function readOnlyFatalStatus() {
1962 return $this->getRepo()->newFatal( 'filereadonlyerror', $this->getName(),
1963 $this->getRepo()->getName(), $this->getRepo()->getReadOnlyReason() );
1967 * Clean up any dangling locks
1969 function __destruct() {
1972 } // LocalFile class
1974 # ------------------------------------------------------------------------------
1977 * Helper class for file deletion
1978 * @ingroup FileAbstraction
1980 class LocalFileDeleteBatch
{
1981 /** @var LocalFile */
1988 private $srcRels = [];
1991 private $archiveUrls = [];
1993 /** @var array Items to be processed in the deletion batch */
1994 private $deletionBatch;
1996 /** @var bool Whether to suppress all suppressable fields when deleting */
1999 /** @var FileRepoStatus */
2007 * @param string $reason
2008 * @param bool $suppress
2009 * @param User|null $user
2011 function __construct( File
$file, $reason = '', $suppress = false, $user = null ) {
2012 $this->file
= $file;
2013 $this->reason
= $reason;
2014 $this->suppress
= $suppress;
2016 $this->user
= $user;
2019 $this->user
= $wgUser;
2021 $this->status
= $file->repo
->newGood();
2024 public function addCurrent() {
2025 $this->srcRels
['.'] = $this->file
->getRel();
2029 * @param string $oldName
2031 public function addOld( $oldName ) {
2032 $this->srcRels
[$oldName] = $this->file
->getArchiveRel( $oldName );
2033 $this->archiveUrls
[] = $this->file
->getArchiveUrl( $oldName );
2037 * Add the old versions of the image to the batch
2038 * @return array List of archive names from old versions
2040 public function addOlds() {
2043 $dbw = $this->file
->repo
->getMasterDB();
2044 $result = $dbw->select( 'oldimage',
2045 [ 'oi_archive_name' ],
2046 [ 'oi_name' => $this->file
->getName() ],
2050 foreach ( $result as $row ) {
2051 $this->addOld( $row->oi_archive_name
);
2052 $archiveNames[] = $row->oi_archive_name
;
2055 return $archiveNames;
2061 protected function getOldRels() {
2062 if ( !isset( $this->srcRels
['.'] ) ) {
2063 $oldRels =& $this->srcRels
;
2064 $deleteCurrent = false;
2066 $oldRels = $this->srcRels
;
2067 unset( $oldRels['.'] );
2068 $deleteCurrent = true;
2071 return [ $oldRels, $deleteCurrent ];
2077 protected function getHashes() {
2079 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2081 if ( $deleteCurrent ) {
2082 $hashes['.'] = $this->file
->getSha1();
2085 if ( count( $oldRels ) ) {
2086 $dbw = $this->file
->repo
->getMasterDB();
2087 $res = $dbw->select(
2089 [ 'oi_archive_name', 'oi_sha1' ],
2090 [ 'oi_archive_name' => array_keys( $oldRels ),
2091 'oi_name' => $this->file
->getName() ], // performance
2095 foreach ( $res as $row ) {
2096 if ( rtrim( $row->oi_sha1
, "\0" ) === '' ) {
2097 // Get the hash from the file
2098 $oldUrl = $this->file
->getArchiveVirtualUrl( $row->oi_archive_name
);
2099 $props = $this->file
->repo
->getFileProps( $oldUrl );
2101 if ( $props['fileExists'] ) {
2102 // Upgrade the oldimage row
2103 $dbw->update( 'oldimage',
2104 [ 'oi_sha1' => $props['sha1'] ],
2105 [ 'oi_name' => $this->file
->getName(), 'oi_archive_name' => $row->oi_archive_name
],
2107 $hashes[$row->oi_archive_name
] = $props['sha1'];
2109 $hashes[$row->oi_archive_name
] = false;
2112 $hashes[$row->oi_archive_name
] = $row->oi_sha1
;
2117 $missing = array_diff_key( $this->srcRels
, $hashes );
2119 foreach ( $missing as $name => $rel ) {
2120 $this->status
->error( 'filedelete-old-unregistered', $name );
2123 foreach ( $hashes as $name => $hash ) {
2125 $this->status
->error( 'filedelete-missing', $this->srcRels
[$name] );
2126 unset( $hashes[$name] );
2133 protected function doDBInserts() {
2134 $dbw = $this->file
->repo
->getMasterDB();
2135 $encTimestamp = $dbw->addQuotes( $dbw->timestamp() );
2136 $encUserId = $dbw->addQuotes( $this->user
->getId() );
2137 $encReason = $dbw->addQuotes( $this->reason
);
2138 $encGroup = $dbw->addQuotes( 'deleted' );
2139 $ext = $this->file
->getExtension();
2140 $dotExt = $ext === '' ?
'' : ".$ext";
2141 $encExt = $dbw->addQuotes( $dotExt );
2142 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2144 // Bitfields to further suppress the content
2145 if ( $this->suppress
) {
2147 // This should be 15...
2148 $bitfield |
= Revision
::DELETED_TEXT
;
2149 $bitfield |
= Revision
::DELETED_COMMENT
;
2150 $bitfield |
= Revision
::DELETED_USER
;
2151 $bitfield |
= Revision
::DELETED_RESTRICTED
;
2153 $bitfield = 'oi_deleted';
2156 if ( $deleteCurrent ) {
2157 $concat = $dbw->buildConcat( [ "img_sha1", $encExt ] );
2158 $where = [ 'img_name' => $this->file
->getName() ];
2159 $dbw->insertSelect( 'filearchive', 'image',
2161 'fa_storage_group' => $encGroup,
2162 'fa_storage_key' => $dbw->conditional(
2163 [ 'img_sha1' => '' ],
2164 $dbw->addQuotes( '' ),
2167 'fa_deleted_user' => $encUserId,
2168 'fa_deleted_timestamp' => $encTimestamp,
2169 'fa_deleted_reason' => $encReason,
2170 'fa_deleted' => $this->suppress ?
$bitfield : 0,
2172 'fa_name' => 'img_name',
2173 'fa_archive_name' => 'NULL',
2174 'fa_size' => 'img_size',
2175 'fa_width' => 'img_width',
2176 'fa_height' => 'img_height',
2177 'fa_metadata' => 'img_metadata',
2178 'fa_bits' => 'img_bits',
2179 'fa_media_type' => 'img_media_type',
2180 'fa_major_mime' => 'img_major_mime',
2181 'fa_minor_mime' => 'img_minor_mime',
2182 'fa_description' => 'img_description',
2183 'fa_user' => 'img_user',
2184 'fa_user_text' => 'img_user_text',
2185 'fa_timestamp' => 'img_timestamp',
2186 'fa_sha1' => 'img_sha1',
2187 ], $where, __METHOD__
);
2190 if ( count( $oldRels ) ) {
2191 $concat = $dbw->buildConcat( [ "oi_sha1", $encExt ] );
2193 'oi_name' => $this->file
->getName(),
2194 'oi_archive_name' => array_keys( $oldRels ) ];
2195 $dbw->insertSelect( 'filearchive', 'oldimage',
2197 'fa_storage_group' => $encGroup,
2198 'fa_storage_key' => $dbw->conditional(
2199 [ 'oi_sha1' => '' ],
2200 $dbw->addQuotes( '' ),
2203 'fa_deleted_user' => $encUserId,
2204 'fa_deleted_timestamp' => $encTimestamp,
2205 'fa_deleted_reason' => $encReason,
2206 'fa_deleted' => $this->suppress ?
$bitfield : 'oi_deleted',
2208 'fa_name' => 'oi_name',
2209 'fa_archive_name' => 'oi_archive_name',
2210 'fa_size' => 'oi_size',
2211 'fa_width' => 'oi_width',
2212 'fa_height' => 'oi_height',
2213 'fa_metadata' => 'oi_metadata',
2214 'fa_bits' => 'oi_bits',
2215 'fa_media_type' => 'oi_media_type',
2216 'fa_major_mime' => 'oi_major_mime',
2217 'fa_minor_mime' => 'oi_minor_mime',
2218 'fa_description' => 'oi_description',
2219 'fa_user' => 'oi_user',
2220 'fa_user_text' => 'oi_user_text',
2221 'fa_timestamp' => 'oi_timestamp',
2222 'fa_sha1' => 'oi_sha1',
2223 ], $where, __METHOD__
);
2227 function doDBDeletes() {
2228 $dbw = $this->file
->repo
->getMasterDB();
2229 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2231 if ( count( $oldRels ) ) {
2232 $dbw->delete( 'oldimage',
2234 'oi_name' => $this->file
->getName(),
2235 'oi_archive_name' => array_keys( $oldRels )
2239 if ( $deleteCurrent ) {
2240 $dbw->delete( 'image', [ 'img_name' => $this->file
->getName() ], __METHOD__
);
2245 * Run the transaction
2246 * @return FileRepoStatus
2248 public function execute() {
2249 $repo = $this->file
->getRepo();
2250 $this->file
->lock();
2252 // Prepare deletion batch
2253 $hashes = $this->getHashes();
2254 $this->deletionBatch
= [];
2255 $ext = $this->file
->getExtension();
2256 $dotExt = $ext === '' ?
'' : ".$ext";
2258 foreach ( $this->srcRels
as $name => $srcRel ) {
2259 // Skip files that have no hash (e.g. missing DB record, or sha1 field and file source)
2260 if ( isset( $hashes[$name] ) ) {
2261 $hash = $hashes[$name];
2262 $key = $hash . $dotExt;
2263 $dstRel = $repo->getDeletedHashPath( $key ) . $key;
2264 $this->deletionBatch
[$name] = [ $srcRel, $dstRel ];
2268 // Lock the filearchive rows so that the files don't get deleted by a cleanup operation
2269 // We acquire this lock by running the inserts now, before the file operations.
2270 // This potentially has poor lock contention characteristics -- an alternative
2271 // scheme would be to insert stub filearchive entries with no fa_name and commit
2272 // them in a separate transaction, then run the file ops, then update the fa_name fields.
2273 $this->doDBInserts();
2275 if ( !$repo->hasSha1Storage() ) {
2276 // Removes non-existent file from the batch, so we don't get errors.
2277 // This also handles files in the 'deleted' zone deleted via revision deletion.
2278 $checkStatus = $this->removeNonexistentFiles( $this->deletionBatch
);
2279 if ( !$checkStatus->isGood() ) {
2280 $this->status
->merge( $checkStatus );
2281 return $this->status
;
2283 $this->deletionBatch
= $checkStatus->value
;
2285 // Execute the file deletion batch
2286 $status = $this->file
->repo
->deleteBatch( $this->deletionBatch
);
2288 if ( !$status->isGood() ) {
2289 $this->status
->merge( $status );
2293 if ( !$this->status
->isOK() ) {
2294 // Critical file deletion error
2295 // Roll back inserts, release lock and abort
2296 // TODO: delete the defunct filearchive rows if we are using a non-transactional DB
2297 $this->file
->unlockAndRollback();
2299 return $this->status
;
2302 // Delete image/oldimage rows
2303 $this->doDBDeletes();
2305 // Commit and return
2306 $this->file
->unlock();
2308 return $this->status
;
2312 * Removes non-existent files from a deletion batch.
2313 * @param array $batch
2316 protected function removeNonexistentFiles( $batch ) {
2317 $files = $newBatch = [];
2319 foreach ( $batch as $batchItem ) {
2320 list( $src, ) = $batchItem;
2321 $files[$src] = $this->file
->repo
->getVirtualUrl( 'public' ) . '/' . rawurlencode( $src );
2324 $result = $this->file
->repo
->fileExistsBatch( $files );
2325 if ( in_array( null, $result, true ) ) {
2326 return Status
::newFatal( 'backend-fail-internal',
2327 $this->file
->repo
->getBackend()->getName() );
2330 foreach ( $batch as $batchItem ) {
2331 if ( $result[$batchItem[0]] ) {
2332 $newBatch[] = $batchItem;
2336 return Status
::newGood( $newBatch );
2340 # ------------------------------------------------------------------------------
2343 * Helper class for file undeletion
2344 * @ingroup FileAbstraction
2346 class LocalFileRestoreBatch
{
2347 /** @var LocalFile */
2350 /** @var array List of file IDs to restore */
2351 private $cleanupBatch;
2353 /** @var array List of file IDs to restore */
2356 /** @var bool Add all revisions of the file */
2359 /** @var bool Whether to remove all settings for suppressed fields */
2360 private $unsuppress = false;
2364 * @param bool $unsuppress
2366 function __construct( File
$file, $unsuppress = false ) {
2367 $this->file
= $file;
2368 $this->cleanupBatch
= $this->ids
= [];
2370 $this->unsuppress
= $unsuppress;
2377 public function addId( $fa_id ) {
2378 $this->ids
[] = $fa_id;
2382 * Add a whole lot of files by ID
2385 public function addIds( $ids ) {
2386 $this->ids
= array_merge( $this->ids
, $ids );
2390 * Add all revisions of the file
2392 public function addAll() {
2397 * Run the transaction, except the cleanup batch.
2398 * The cleanup batch should be run in a separate transaction, because it locks different
2399 * rows and there's no need to keep the image row locked while it's acquiring those locks
2400 * The caller may have its own transaction open.
2401 * So we save the batch and let the caller call cleanup()
2402 * @return FileRepoStatus
2404 public function execute() {
2407 $repo = $this->file
->getRepo();
2408 if ( !$this->all
&& !$this->ids
) {
2410 return $repo->newGood();
2413 $lockOwnsTrx = $this->file
->lock();
2415 $dbw = $this->file
->repo
->getMasterDB();
2416 $status = $this->file
->repo
->newGood();
2418 $exists = (bool)$dbw->selectField( 'image', '1',
2419 [ 'img_name' => $this->file
->getName() ],
2421 // The lock() should already prevents changes, but this still may need
2422 // to bypass any transaction snapshot. However, if lock() started the
2423 // trx (which it probably did) then snapshot is post-lock and up-to-date.
2424 $lockOwnsTrx ?
[] : [ 'LOCK IN SHARE MODE' ]
2427 // Fetch all or selected archived revisions for the file,
2428 // sorted from the most recent to the oldest.
2429 $conditions = [ 'fa_name' => $this->file
->getName() ];
2431 if ( !$this->all
) {
2432 $conditions['fa_id'] = $this->ids
;
2435 $result = $dbw->select(
2437 ArchivedFile
::selectFields(),
2440 [ 'ORDER BY' => 'fa_timestamp DESC' ]
2446 $insertCurrent = false;
2451 foreach ( $result as $row ) {
2452 $idsPresent[] = $row->fa_id
;
2454 if ( $row->fa_name
!= $this->file
->getName() ) {
2455 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp
) );
2456 $status->failCount++
;
2460 if ( $row->fa_storage_key
== '' ) {
2461 // Revision was missing pre-deletion
2462 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp
) );
2463 $status->failCount++
;
2467 $deletedRel = $repo->getDeletedHashPath( $row->fa_storage_key
) .
2468 $row->fa_storage_key
;
2469 $deletedUrl = $repo->getVirtualUrl() . '/deleted/' . $deletedRel;
2471 if ( isset( $row->fa_sha1
) ) {
2472 $sha1 = $row->fa_sha1
;
2474 // old row, populate from key
2475 $sha1 = LocalRepo
::getHashFromKey( $row->fa_storage_key
);
2479 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
2480 $sha1 = substr( $sha1, 1 );
2483 if ( is_null( $row->fa_major_mime
) ||
$row->fa_major_mime
== 'unknown'
2484 ||
is_null( $row->fa_minor_mime
) ||
$row->fa_minor_mime
== 'unknown'
2485 ||
is_null( $row->fa_media_type
) ||
$row->fa_media_type
== 'UNKNOWN'
2486 ||
is_null( $row->fa_metadata
)
2488 // Refresh our metadata
2489 // Required for a new current revision; nice for older ones too. :)
2490 $props = RepoGroup
::singleton()->getFileProps( $deletedUrl );
2493 'minor_mime' => $row->fa_minor_mime
,
2494 'major_mime' => $row->fa_major_mime
,
2495 'media_type' => $row->fa_media_type
,
2496 'metadata' => $row->fa_metadata
2500 if ( $first && !$exists ) {
2501 // This revision will be published as the new current version
2502 $destRel = $this->file
->getRel();
2504 'img_name' => $row->fa_name
,
2505 'img_size' => $row->fa_size
,
2506 'img_width' => $row->fa_width
,
2507 'img_height' => $row->fa_height
,
2508 'img_metadata' => $props['metadata'],
2509 'img_bits' => $row->fa_bits
,
2510 'img_media_type' => $props['media_type'],
2511 'img_major_mime' => $props['major_mime'],
2512 'img_minor_mime' => $props['minor_mime'],
2513 'img_description' => $row->fa_description
,
2514 'img_user' => $row->fa_user
,
2515 'img_user_text' => $row->fa_user_text
,
2516 'img_timestamp' => $row->fa_timestamp
,
2520 // The live (current) version cannot be hidden!
2521 if ( !$this->unsuppress
&& $row->fa_deleted
) {
2522 $storeBatch[] = [ $deletedUrl, 'public', $destRel ];
2523 $this->cleanupBatch
[] = $row->fa_storage_key
;
2526 $archiveName = $row->fa_archive_name
;
2528 if ( $archiveName == '' ) {
2529 // This was originally a current version; we
2530 // have to devise a new archive name for it.
2531 // Format is <timestamp of archiving>!<name>
2532 $timestamp = wfTimestamp( TS_UNIX
, $row->fa_deleted_timestamp
);
2535 $archiveName = wfTimestamp( TS_MW
, $timestamp ) . '!' . $row->fa_name
;
2537 } while ( isset( $archiveNames[$archiveName] ) );
2540 $archiveNames[$archiveName] = true;
2541 $destRel = $this->file
->getArchiveRel( $archiveName );
2543 'oi_name' => $row->fa_name
,
2544 'oi_archive_name' => $archiveName,
2545 'oi_size' => $row->fa_size
,
2546 'oi_width' => $row->fa_width
,
2547 'oi_height' => $row->fa_height
,
2548 'oi_bits' => $row->fa_bits
,
2549 'oi_description' => $row->fa_description
,
2550 'oi_user' => $row->fa_user
,
2551 'oi_user_text' => $row->fa_user_text
,
2552 'oi_timestamp' => $row->fa_timestamp
,
2553 'oi_metadata' => $props['metadata'],
2554 'oi_media_type' => $props['media_type'],
2555 'oi_major_mime' => $props['major_mime'],
2556 'oi_minor_mime' => $props['minor_mime'],
2557 'oi_deleted' => $this->unsuppress ?
0 : $row->fa_deleted
,
2558 'oi_sha1' => $sha1 ];
2561 $deleteIds[] = $row->fa_id
;
2563 if ( !$this->unsuppress
&& $row->fa_deleted
& File
::DELETED_FILE
) {
2564 // private files can stay where they are
2565 $status->successCount++
;
2567 $storeBatch[] = [ $deletedUrl, 'public', $destRel ];
2568 $this->cleanupBatch
[] = $row->fa_storage_key
;
2576 // Add a warning to the status object for missing IDs
2577 $missingIds = array_diff( $this->ids
, $idsPresent );
2579 foreach ( $missingIds as $id ) {
2580 $status->error( 'undelete-missing-filearchive', $id );
2583 if ( !$repo->hasSha1Storage() ) {
2584 // Remove missing files from batch, so we don't get errors when undeleting them
2585 $checkStatus = $this->removeNonexistentFiles( $storeBatch );
2586 if ( !$checkStatus->isGood() ) {
2587 $status->merge( $checkStatus );
2590 $storeBatch = $checkStatus->value
;
2592 // Run the store batch
2593 // Use the OVERWRITE_SAME flag to smooth over a common error
2594 $storeStatus = $this->file
->repo
->storeBatch( $storeBatch, FileRepo
::OVERWRITE_SAME
);
2595 $status->merge( $storeStatus );
2597 if ( !$status->isGood() ) {
2598 // Even if some files could be copied, fail entirely as that is the
2599 // easiest thing to do without data loss
2600 $this->cleanupFailedBatch( $storeStatus, $storeBatch );
2601 $status->ok
= false;
2602 $this->file
->unlock();
2608 // Run the DB updates
2609 // Because we have locked the image row, key conflicts should be rare.
2610 // If they do occur, we can roll back the transaction at this time with
2611 // no data loss, but leaving unregistered files scattered throughout the
2613 // This is not ideal, which is why it's important to lock the image row.
2614 if ( $insertCurrent ) {
2615 $dbw->insert( 'image', $insertCurrent, __METHOD__
);
2618 if ( $insertBatch ) {
2619 $dbw->insert( 'oldimage', $insertBatch, __METHOD__
);
2623 $dbw->delete( 'filearchive',
2624 [ 'fa_id' => $deleteIds ],
2628 // If store batch is empty (all files are missing), deletion is to be considered successful
2629 if ( $status->successCount
> 0 ||
!$storeBatch ||
$repo->hasSha1Storage() ) {
2631 wfDebug( __METHOD__
. " restored {$status->successCount} items, creating a new current\n" );
2633 DeferredUpdates
::addUpdate( SiteStatsUpdate
::factory( [ 'images' => 1 ] ) );
2635 $this->file
->purgeEverything();
2637 wfDebug( __METHOD__
. " restored {$status->successCount} as archived versions\n" );
2638 $this->file
->purgeDescription();
2642 $this->file
->unlock();
2648 * Removes non-existent files from a store batch.
2649 * @param array $triplets
2652 protected function removeNonexistentFiles( $triplets ) {
2653 $files = $filteredTriplets = [];
2654 foreach ( $triplets as $file ) {
2655 $files[$file[0]] = $file[0];
2658 $result = $this->file
->repo
->fileExistsBatch( $files );
2659 if ( in_array( null, $result, true ) ) {
2660 return Status
::newFatal( 'backend-fail-internal',
2661 $this->file
->repo
->getBackend()->getName() );
2664 foreach ( $triplets as $file ) {
2665 if ( $result[$file[0]] ) {
2666 $filteredTriplets[] = $file;
2670 return Status
::newGood( $filteredTriplets );
2674 * Removes non-existent files from a cleanup batch.
2675 * @param array $batch
2678 protected function removeNonexistentFromCleanup( $batch ) {
2679 $files = $newBatch = [];
2680 $repo = $this->file
->repo
;
2682 foreach ( $batch as $file ) {
2683 $files[$file] = $repo->getVirtualUrl( 'deleted' ) . '/' .
2684 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
2687 $result = $repo->fileExistsBatch( $files );
2689 foreach ( $batch as $file ) {
2690 if ( $result[$file] ) {
2691 $newBatch[] = $file;
2699 * Delete unused files in the deleted zone.
2700 * This should be called from outside the transaction in which execute() was called.
2701 * @return FileRepoStatus
2703 public function cleanup() {
2704 if ( !$this->cleanupBatch
) {
2705 return $this->file
->repo
->newGood();
2708 $this->cleanupBatch
= $this->removeNonexistentFromCleanup( $this->cleanupBatch
);
2710 $status = $this->file
->repo
->cleanupDeletedBatch( $this->cleanupBatch
);
2716 * Cleanup a failed batch. The batch was only partially successful, so
2717 * rollback by removing all items that were succesfully copied.
2719 * @param Status $storeStatus
2720 * @param array $storeBatch
2722 protected function cleanupFailedBatch( $storeStatus, $storeBatch ) {
2725 foreach ( $storeStatus->success
as $i => $success ) {
2726 // Check if this item of the batch was successfully copied
2728 // Item was successfully copied and needs to be removed again
2729 // Extract ($dstZone, $dstRel) from the batch
2730 $cleanupBatch[] = [ $storeBatch[$i][1], $storeBatch[$i][2] ];
2733 $this->file
->repo
->cleanupBatch( $cleanupBatch );
2737 # ------------------------------------------------------------------------------
2740 * Helper class for file movement
2741 * @ingroup FileAbstraction
2743 class LocalFileMoveBatch
{
2744 /** @var LocalFile */
2754 protected $oldCount;
2758 /** @var DatabaseBase */
2763 * @param Title $target
2765 function __construct( File
$file, Title
$target ) {
2766 $this->file
= $file;
2767 $this->target
= $target;
2768 $this->oldHash
= $this->file
->repo
->getHashPath( $this->file
->getName() );
2769 $this->newHash
= $this->file
->repo
->getHashPath( $this->target
->getDBkey() );
2770 $this->oldName
= $this->file
->getName();
2771 $this->newName
= $this->file
->repo
->getNameFromTitle( $this->target
);
2772 $this->oldRel
= $this->oldHash
. $this->oldName
;
2773 $this->newRel
= $this->newHash
. $this->newName
;
2774 $this->db
= $file->getRepo()->getMasterDb();
2778 * Add the current image to the batch
2780 public function addCurrent() {
2781 $this->cur
= [ $this->oldRel
, $this->newRel
];
2785 * Add the old versions of the image to the batch
2786 * @return array List of archive names from old versions
2788 public function addOlds() {
2789 $archiveBase = 'archive';
2791 $this->oldCount
= 0;
2794 $result = $this->db
->select( 'oldimage',
2795 [ 'oi_archive_name', 'oi_deleted' ],
2796 [ 'oi_name' => $this->oldName
],
2798 [ 'LOCK IN SHARE MODE' ] // ignore snapshot
2801 foreach ( $result as $row ) {
2802 $archiveNames[] = $row->oi_archive_name
;
2803 $oldName = $row->oi_archive_name
;
2804 $bits = explode( '!', $oldName, 2 );
2806 if ( count( $bits ) != 2 ) {
2807 wfDebug( "Old file name missing !: '$oldName' \n" );
2811 list( $timestamp, $filename ) = $bits;
2813 if ( $this->oldName
!= $filename ) {
2814 wfDebug( "Old file name doesn't match: '$oldName' \n" );
2820 // Do we want to add those to oldCount?
2821 if ( $row->oi_deleted
& File
::DELETED_FILE
) {
2826 "{$archiveBase}/{$this->oldHash}{$oldName}",
2827 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
2831 return $archiveNames;
2836 * @return FileRepoStatus
2838 public function execute() {
2839 $repo = $this->file
->repo
;
2840 $status = $repo->newGood();
2842 $triplets = $this->getMoveTriplets();
2843 $checkStatus = $this->removeNonexistentFiles( $triplets );
2844 if ( !$checkStatus->isGood() ) {
2845 $status->merge( $checkStatus );
2848 $triplets = $checkStatus->value
;
2849 $destFile = wfLocalFile( $this->target
);
2851 $this->file
->lock(); // begin
2852 $destFile->lock(); // quickly fail if destination is not available
2853 // Rename the file versions metadata in the DB.
2854 // This implicitly locks the destination file, which avoids race conditions.
2855 // If we moved the files from A -> C before DB updates, another process could
2856 // move files from B -> C at this point, causing storeBatch() to fail and thus
2857 // cleanupTarget() to trigger. It would delete the C files and cause data loss.
2858 $statusDb = $this->doDBUpdates();
2859 if ( !$statusDb->isGood() ) {
2860 $destFile->unlock();
2861 $this->file
->unlockAndRollback();
2862 $statusDb->ok
= false;
2866 wfDebugLog( 'imagemove', "Renamed {$this->file->getName()} in database: " .
2867 "{$statusDb->successCount} successes, {$statusDb->failCount} failures" );
2869 if ( !$repo->hasSha1Storage() ) {
2870 // Copy the files into their new location.
2871 // If a prior process fataled copying or cleaning up files we tolerate any
2872 // of the existing files if they are identical to the ones being stored.
2873 $statusMove = $repo->storeBatch( $triplets, FileRepo
::OVERWRITE_SAME
);
2874 wfDebugLog( 'imagemove', "Moved files for {$this->file->getName()}: " .
2875 "{$statusMove->successCount} successes, {$statusMove->failCount} failures" );
2876 if ( !$statusMove->isGood() ) {
2877 // Delete any files copied over (while the destination is still locked)
2878 $this->cleanupTarget( $triplets );
2879 $destFile->unlock();
2880 $this->file
->unlockAndRollback(); // unlocks the destination
2881 wfDebugLog( 'imagemove', "Error in moving files: " . $statusMove->getWikiText() );
2882 $statusMove->ok
= false;
2886 $status->merge( $statusMove );
2889 $destFile->unlock();
2890 $this->file
->unlock(); // done
2892 // Everything went ok, remove the source files
2893 $this->cleanupSource( $triplets );
2895 $status->merge( $statusDb );
2901 * Do the database updates and return a new FileRepoStatus indicating how
2902 * many rows where updated.
2904 * @return FileRepoStatus
2906 protected function doDBUpdates() {
2907 $repo = $this->file
->repo
;
2908 $status = $repo->newGood();
2911 // Update current image
2914 [ 'img_name' => $this->newName
],
2915 [ 'img_name' => $this->oldName
],
2919 if ( $dbw->affectedRows() ) {
2920 $status->successCount++
;
2922 $status->failCount++
;
2923 $status->fatal( 'imageinvalidfilename' );
2928 // Update old images
2932 'oi_name' => $this->newName
,
2933 'oi_archive_name = ' . $dbw->strreplace( 'oi_archive_name',
2934 $dbw->addQuotes( $this->oldName
), $dbw->addQuotes( $this->newName
) ),
2936 [ 'oi_name' => $this->oldName
],
2940 $affected = $dbw->affectedRows();
2941 $total = $this->oldCount
;
2942 $status->successCount +
= $affected;
2943 // Bug 34934: $total is based on files that actually exist.
2944 // There may be more DB rows than such files, in which case $affected
2945 // can be greater than $total. We use max() to avoid negatives here.
2946 $status->failCount +
= max( 0, $total - $affected );
2947 if ( $status->failCount
) {
2948 $status->error( 'imageinvalidfilename' );
2955 * Generate triplets for FileRepo::storeBatch().
2958 protected function getMoveTriplets() {
2959 $moves = array_merge( [ $this->cur
], $this->olds
);
2960 $triplets = []; // The format is: (srcUrl, destZone, destUrl)
2962 foreach ( $moves as $move ) {
2963 // $move: (oldRelativePath, newRelativePath)
2964 $srcUrl = $this->file
->repo
->getVirtualUrl() . '/public/' . rawurlencode( $move[0] );
2965 $triplets[] = [ $srcUrl, 'public', $move[1] ];
2968 "Generated move triplet for {$this->file->getName()}: {$srcUrl} :: public :: {$move[1]}"
2976 * Removes non-existent files from move batch.
2977 * @param array $triplets
2980 protected function removeNonexistentFiles( $triplets ) {
2983 foreach ( $triplets as $file ) {
2984 $files[$file[0]] = $file[0];
2987 $result = $this->file
->repo
->fileExistsBatch( $files );
2988 if ( in_array( null, $result, true ) ) {
2989 return Status
::newFatal( 'backend-fail-internal',
2990 $this->file
->repo
->getBackend()->getName() );
2993 $filteredTriplets = [];
2994 foreach ( $triplets as $file ) {
2995 if ( $result[$file[0]] ) {
2996 $filteredTriplets[] = $file;
2998 wfDebugLog( 'imagemove', "File {$file[0]} does not exist" );
3002 return Status
::newGood( $filteredTriplets );
3006 * Cleanup a partially moved array of triplets by deleting the target
3007 * files. Called if something went wrong half way.
3008 * @param array $triplets
3010 protected function cleanupTarget( $triplets ) {
3011 // Create dest pairs from the triplets
3013 foreach ( $triplets as $triplet ) {
3014 // $triplet: (old source virtual URL, dst zone, dest rel)
3015 $pairs[] = [ $triplet[1], $triplet[2] ];
3018 $this->file
->repo
->cleanupBatch( $pairs );
3022 * Cleanup a fully moved array of triplets by deleting the source files.
3023 * Called at the end of the move process if everything else went ok.
3024 * @param array $triplets
3026 protected function cleanupSource( $triplets ) {
3027 // Create source file names from the triplets
3029 foreach ( $triplets as $triplet ) {
3030 $files[] = $triplet[0];
3033 $this->file
->repo
->cleanupBatch( $files );