Fixed spacing in actions/cache/filebackend/filerepo/job folder
[mediawiki.git] / includes / filerepo / file / LocalFile.php
blob8bd83769bc43f52a02fda732c05119095c5dd0b0
1 <?php
2 /**
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
20 * @file
21 * @ingroup FileAbstraction
24 /**
25 * Bump this number when serialized cache records may be incompatible.
27 define( 'MW_FILE_VERSION', 9 );
29 /**
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
42 * in most cases.
44 * @ingroup FileAbstraction
46 class LocalFile extends File {
47 const CACHE_FIELD_MAX_LEN = 1000;
49 /**#@+
50 * @private
52 var
53 $fileExists, # does the file exist on disk? (loadFromXxx)
54 $historyLine, # Number of line to return by nextHistoryLine() (constructor)
55 $historyRes, # result of the query for the file's history (nextHistoryLine)
56 $width, # \
57 $height, # |
58 $bits, # --- returned by getimagesize (loadFromXxx)
59 $attr, # /
60 $media_type, # MEDIATYPE_xxx (bitmap, drawing, audio...)
61 $mime, # MIME type, determined by MimeMagic::guessMimeType
62 $major_mime, # Major mime type
63 $minor_mime, # Minor mime type
64 $size, # Size in bytes (loadFromXxx)
65 $metadata, # Handler-specific metadata
66 $timestamp, # Upload timestamp
67 $sha1, # SHA-1 base 36 content hash
68 $user, $user_text, # User, who uploaded the file
69 $description, # Description of current revision of the file
70 $dataLoaded, # Whether or not core data has been loaded from the database (loadFromXxx)
71 $extraDataLoaded, # Whether or not lazy-loaded data has been loaded from the database
72 $upgraded, # Whether the row was upgraded on load
73 $locked, # True if the image row is locked
74 $lockedOwnTrx, # True if the image row is locked with a lock initiated transaction
75 $missing, # True if file is not present in file system. Not to be cached in memcached
76 $deleted; # Bitfield akin to rev_deleted
78 /**#@-*/
80 /**
81 * @var LocalRepo
83 var $repo;
85 protected $repoClass = 'LocalRepo';
87 const LOAD_ALL = 1; // integer; load all the lazy fields too (like metadata)
89 /**
90 * Create a LocalFile from a title
91 * Do not call this except from inside a repo class.
93 * Note: $unused param is only here to avoid an E_STRICT
95 * @param $title
96 * @param $repo
97 * @param $unused
99 * @return LocalFile
101 static function newFromTitle( $title, $repo, $unused = null ) {
102 return new self( $title, $repo );
106 * Create a LocalFile from a title
107 * Do not call this except from inside a repo class.
109 * @param $row
110 * @param $repo
112 * @return LocalFile
114 static function newFromRow( $row, $repo ) {
115 $title = Title::makeTitle( NS_FILE, $row->img_name );
116 $file = new self( $title, $repo );
117 $file->loadFromRow( $row );
119 return $file;
123 * Create a LocalFile from a SHA-1 key
124 * Do not call this except from inside a repo class.
126 * @param string $sha1 base-36 SHA-1
127 * @param $repo LocalRepo
128 * @param string|bool $timestamp MW_timestamp (optional)
130 * @return bool|LocalFile
132 static function newFromKey( $sha1, $repo, $timestamp = false ) {
133 $dbr = $repo->getSlaveDB();
135 $conds = array( 'img_sha1' => $sha1 );
136 if ( $timestamp ) {
137 $conds['img_timestamp'] = $dbr->timestamp( $timestamp );
140 $row = $dbr->selectRow( 'image', self::selectFields(), $conds, __METHOD__ );
141 if ( $row ) {
142 return self::newFromRow( $row, $repo );
143 } else {
144 return false;
149 * Fields in the image table
150 * @return array
152 static function selectFields() {
153 return array(
154 'img_name',
155 'img_size',
156 'img_width',
157 'img_height',
158 'img_metadata',
159 'img_bits',
160 'img_media_type',
161 'img_major_mime',
162 'img_minor_mime',
163 'img_description',
164 'img_user',
165 'img_user_text',
166 'img_timestamp',
167 'img_sha1',
172 * Constructor.
173 * Do not call this except from inside a repo class.
175 function __construct( $title, $repo ) {
176 parent::__construct( $title, $repo );
178 $this->metadata = '';
179 $this->historyLine = 0;
180 $this->historyRes = null;
181 $this->dataLoaded = false;
182 $this->extraDataLoaded = false;
184 $this->assertRepoDefined();
185 $this->assertTitleDefined();
189 * Get the memcached key for the main data for this file, or false if
190 * there is no access to the shared cache.
191 * @return bool
193 function getCacheKey() {
194 $hashedName = md5( $this->getName() );
196 return $this->repo->getSharedCacheKey( 'file', $hashedName );
200 * Try to load file metadata from memcached. Returns true on success.
201 * @return bool
203 function loadFromCache() {
204 global $wgMemc;
206 wfProfileIn( __METHOD__ );
207 $this->dataLoaded = false;
208 $this->extraDataLoaded = false;
209 $key = $this->getCacheKey();
211 if ( !$key ) {
212 wfProfileOut( __METHOD__ );
213 return false;
216 $cachedValues = $wgMemc->get( $key );
218 // Check if the key existed and belongs to this version of MediaWiki
219 if ( isset( $cachedValues['version'] ) && $cachedValues['version'] == MW_FILE_VERSION ) {
220 wfDebug( "Pulling file metadata from cache key $key\n" );
221 $this->fileExists = $cachedValues['fileExists'];
222 if ( $this->fileExists ) {
223 $this->setProps( $cachedValues );
225 $this->dataLoaded = true;
226 $this->extraDataLoaded = true;
227 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
228 $this->extraDataLoaded = $this->extraDataLoaded && isset( $cachedValues[$field] );
232 if ( $this->dataLoaded ) {
233 wfIncrStats( 'image_cache_hit' );
234 } else {
235 wfIncrStats( 'image_cache_miss' );
238 wfProfileOut( __METHOD__ );
239 return $this->dataLoaded;
243 * Save the file metadata to memcached
245 function saveToCache() {
246 global $wgMemc;
248 $this->load();
249 $key = $this->getCacheKey();
251 if ( !$key ) {
252 return;
255 $fields = $this->getCacheFields( '' );
256 $cache = array( 'version' => MW_FILE_VERSION );
257 $cache['fileExists'] = $this->fileExists;
259 if ( $this->fileExists ) {
260 foreach ( $fields as $field ) {
261 $cache[$field] = $this->$field;
265 // Strip off excessive entries from the subset of fields that can become large.
266 // If the cache value gets to large it will not fit in memcached and nothing will
267 // get cached at all, causing master queries for any file access.
268 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
269 if ( isset( $cache[$field] ) && strlen( $cache[$field] ) > 100 * 1024 ) {
270 unset( $cache[$field] ); // don't let the value get too big
274 // Cache presence for 1 week and negatives for 1 day
275 $wgMemc->set( $key, $cache, $this->fileExists ? 86400 * 7 : 86400 );
279 * Load metadata from the file itself
281 function loadFromFile() {
282 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
283 $this->setProps( $props );
287 * @param $prefix string
288 * @return array
290 function getCacheFields( $prefix = 'img_' ) {
291 static $fields = array( 'size', 'width', 'height', 'bits', 'media_type',
292 'major_mime', 'minor_mime', 'metadata', 'timestamp', 'sha1', 'user', 'user_text', 'description' );
293 static $results = array();
295 if ( $prefix == '' ) {
296 return $fields;
299 if ( !isset( $results[$prefix] ) ) {
300 $prefixedFields = array();
301 foreach ( $fields as $field ) {
302 $prefixedFields[] = $prefix . $field;
304 $results[$prefix] = $prefixedFields;
307 return $results[$prefix];
311 * @return array
313 function getLazyCacheFields( $prefix = 'img_' ) {
314 static $fields = array( 'metadata' );
315 static $results = array();
317 if ( $prefix == '' ) {
318 return $fields;
321 if ( !isset( $results[$prefix] ) ) {
322 $prefixedFields = array();
323 foreach ( $fields as $field ) {
324 $prefixedFields[] = $prefix . $field;
326 $results[$prefix] = $prefixedFields;
329 return $results[$prefix];
333 * Load file metadata from the DB
335 function loadFromDB() {
336 # Polymorphic function name to distinguish foreign and local fetches
337 $fname = get_class( $this ) . '::' . __FUNCTION__;
338 wfProfileIn( $fname );
340 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
341 $this->dataLoaded = true;
342 $this->extraDataLoaded = true;
344 $dbr = $this->repo->getMasterDB();
345 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
346 array( 'img_name' => $this->getName() ), $fname );
348 if ( $row ) {
349 $this->loadFromRow( $row );
350 } else {
351 $this->fileExists = false;
354 wfProfileOut( $fname );
358 * Load lazy file metadata from the DB.
359 * This covers fields that are sometimes not cached.
361 protected function loadExtraFromDB() {
362 # Polymorphic function name to distinguish foreign and local fetches
363 $fname = get_class( $this ) . '::' . __FUNCTION__;
364 wfProfileIn( $fname );
366 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
367 $this->extraDataLoaded = true;
369 $dbr = $this->repo->getSlaveDB();
370 // In theory the file could have just been renamed/deleted...oh well
371 $row = $dbr->selectRow( 'image', $this->getLazyCacheFields( 'img_' ),
372 array( 'img_name' => $this->getName() ), $fname );
374 if ( !$row ) { // fallback to master
375 $dbr = $this->repo->getMasterDB();
376 $row = $dbr->selectRow( 'image', $this->getLazyCacheFields( 'img_' ),
377 array( 'img_name' => $this->getName() ), $fname );
380 if ( $row ) {
381 foreach ( $this->unprefixRow( $row, 'img_' ) as $name => $value ) {
382 $this->$name = $value;
384 } else {
385 wfProfileOut( $fname );
386 throw new MWException( "Could not find data for image '{$this->getName()}'." );
389 wfProfileOut( $fname );
393 * @param Row $row
394 * @param $prefix string
395 * @return Array
397 protected function unprefixRow( $row, $prefix = 'img_' ) {
398 $array = (array)$row;
399 $prefixLength = strlen( $prefix );
401 // Sanity check prefix once
402 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
403 throw new MWException( __METHOD__ . ': incorrect $prefix parameter' );
406 $decoded = array();
407 foreach ( $array as $name => $value ) {
408 $decoded[substr( $name, $prefixLength )] = $value;
410 return $decoded;
414 * Decode a row from the database (either object or array) to an array
415 * with timestamps and MIME types decoded, and the field prefix removed.
416 * @param $row
417 * @param $prefix string
418 * @throws MWException
419 * @return array
421 function decodeRow( $row, $prefix = 'img_' ) {
422 $decoded = $this->unprefixRow( $row, $prefix );
424 $decoded['timestamp'] = wfTimestamp( TS_MW, $decoded['timestamp'] );
426 if ( empty( $decoded['major_mime'] ) ) {
427 $decoded['mime'] = 'unknown/unknown';
428 } else {
429 if ( !$decoded['minor_mime'] ) {
430 $decoded['minor_mime'] = 'unknown';
432 $decoded['mime'] = $decoded['major_mime'] . '/' . $decoded['minor_mime'];
435 # Trim zero padding from char/binary field
436 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
438 return $decoded;
442 * Load file metadata from a DB result row
444 function loadFromRow( $row, $prefix = 'img_' ) {
445 $this->dataLoaded = true;
446 $this->extraDataLoaded = true;
448 $array = $this->decodeRow( $row, $prefix );
450 foreach ( $array as $name => $value ) {
451 $this->$name = $value;
454 $this->fileExists = true;
455 $this->maybeUpgradeRow();
459 * Load file metadata from cache or DB, unless already loaded
460 * @param integer $flags
462 function load( $flags = 0 ) {
463 if ( !$this->dataLoaded ) {
464 if ( !$this->loadFromCache() ) {
465 $this->loadFromDB();
466 $this->saveToCache();
468 $this->dataLoaded = true;
470 if ( ( $flags & self::LOAD_ALL ) && !$this->extraDataLoaded ) {
471 $this->loadExtraFromDB();
476 * Upgrade a row if it needs it
478 function maybeUpgradeRow() {
479 global $wgUpdateCompatibleMetadata;
480 if ( wfReadOnly() ) {
481 return;
484 if ( is_null( $this->media_type ) ||
485 $this->mime == 'image/svg'
487 $this->upgradeRow();
488 $this->upgraded = true;
489 } else {
490 $handler = $this->getHandler();
491 if ( $handler ) {
492 $validity = $handler->isMetadataValid( $this, $this->getMetadata() );
493 if ( $validity === MediaHandler::METADATA_BAD
494 || ( $validity === MediaHandler::METADATA_COMPATIBLE && $wgUpdateCompatibleMetadata )
496 $this->upgradeRow();
497 $this->upgraded = true;
503 function getUpgraded() {
504 return $this->upgraded;
508 * Fix assorted version-related problems with the image row by reloading it from the file
510 function upgradeRow() {
511 wfProfileIn( __METHOD__ );
513 $this->lock(); // begin
515 $this->loadFromFile();
517 # Don't destroy file info of missing files
518 if ( !$this->fileExists ) {
519 wfDebug( __METHOD__ . ": file does not exist, aborting\n" );
520 wfProfileOut( __METHOD__ );
521 return;
524 $dbw = $this->repo->getMasterDB();
525 list( $major, $minor ) = self::splitMime( $this->mime );
527 if ( wfReadOnly() ) {
528 wfProfileOut( __METHOD__ );
529 return;
531 wfDebug( __METHOD__ . ': upgrading ' . $this->getName() . " to the current schema\n" );
533 $dbw->update( 'image',
534 array(
535 'img_size' => $this->size, // sanity
536 'img_width' => $this->width,
537 'img_height' => $this->height,
538 'img_bits' => $this->bits,
539 'img_media_type' => $this->media_type,
540 'img_major_mime' => $major,
541 'img_minor_mime' => $minor,
542 'img_metadata' => $this->metadata,
543 'img_sha1' => $this->sha1,
545 array( 'img_name' => $this->getName() ),
546 __METHOD__
549 $this->saveToCache();
551 $this->unlock(); // done
553 wfProfileOut( __METHOD__ );
557 * Set properties in this object to be equal to those given in the
558 * associative array $info. Only cacheable fields can be set.
559 * All fields *must* be set in $info except for getLazyCacheFields().
561 * If 'mime' is given, it will be split into major_mime/minor_mime.
562 * If major_mime/minor_mime are given, $this->mime will also be set.
564 function setProps( $info ) {
565 $this->dataLoaded = true;
566 $fields = $this->getCacheFields( '' );
567 $fields[] = 'fileExists';
569 foreach ( $fields as $field ) {
570 if ( isset( $info[$field] ) ) {
571 $this->$field = $info[$field];
575 // Fix up mime fields
576 if ( isset( $info['major_mime'] ) ) {
577 $this->mime = "{$info['major_mime']}/{$info['minor_mime']}";
578 } elseif ( isset( $info['mime'] ) ) {
579 $this->mime = $info['mime'];
580 list( $this->major_mime, $this->minor_mime ) = self::splitMime( $this->mime );
584 /** splitMime inherited */
585 /** getName inherited */
586 /** getTitle inherited */
587 /** getURL inherited */
588 /** getViewURL inherited */
589 /** getPath inherited */
590 /** isVisible inhereted */
593 * @return bool
595 function isMissing() {
596 if ( $this->missing === null ) {
597 list( $fileExists ) = $this->repo->fileExists( $this->getVirtualUrl() );
598 $this->missing = !$fileExists;
600 return $this->missing;
604 * Return the width of the image
606 * @param $page int
607 * @return bool|int Returns false on error
609 public function getWidth( $page = 1 ) {
610 $this->load();
612 if ( $this->isMultipage() ) {
613 $dim = $this->getHandler()->getPageDimensions( $this, $page );
614 if ( $dim ) {
615 return $dim['width'];
616 } else {
617 return false;
619 } else {
620 return $this->width;
625 * Return the height of the image
627 * @param $page int
628 * @return bool|int Returns false on error
630 public function getHeight( $page = 1 ) {
631 $this->load();
633 if ( $this->isMultipage() ) {
634 $dim = $this->getHandler()->getPageDimensions( $this, $page );
635 if ( $dim ) {
636 return $dim['height'];
637 } else {
638 return false;
640 } else {
641 return $this->height;
646 * Returns ID or name of user who uploaded the file
648 * @param string $type 'text' or 'id'
649 * @return int|string
651 function getUser( $type = 'text' ) {
652 $this->load();
654 if ( $type == 'text' ) {
655 return $this->user_text;
656 } elseif ( $type == 'id' ) {
657 return $this->user;
662 * Get handler-specific metadata
663 * @return string
665 function getMetadata() {
666 $this->load( self::LOAD_ALL ); // large metadata is loaded in another step
667 return $this->metadata;
671 * @return int
673 function getBitDepth() {
674 $this->load();
675 return $this->bits;
679 * Return the size of the image file, in bytes
680 * @return int
682 public function getSize() {
683 $this->load();
684 return $this->size;
688 * Returns the mime type of the file.
689 * @return string
691 function getMimeType() {
692 $this->load();
693 return $this->mime;
697 * Return the type of the media in the file.
698 * Use the value returned by this function with the MEDIATYPE_xxx constants.
699 * @return string
701 function getMediaType() {
702 $this->load();
703 return $this->media_type;
706 /** canRender inherited */
707 /** mustRender inherited */
708 /** allowInlineDisplay inherited */
709 /** isSafeFile inherited */
710 /** isTrustedFile inherited */
713 * Returns true if the file exists on disk.
714 * @return boolean Whether file exist on disk.
716 public function exists() {
717 $this->load();
718 return $this->fileExists;
721 /** getTransformScript inherited */
722 /** getUnscaledThumb inherited */
723 /** thumbName inherited */
724 /** createThumb inherited */
725 /** transform inherited */
728 * Fix thumbnail files from 1.4 or before, with extreme prejudice
729 * @todo : do we still care about this? Perhaps a maintenance script
730 * can be made instead. Enabling this code results in a serious
731 * RTT regression for wikis without 404 handling.
733 function migrateThumbFile( $thumbName ) {
734 /* Old code for bug 2532
735 $thumbDir = $this->getThumbPath();
736 $thumbPath = "$thumbDir/$thumbName";
737 if ( is_dir( $thumbPath ) ) {
738 // Directory where file should be
739 // This happened occasionally due to broken migration code in 1.5
740 // Rename to broken-*
741 for ( $i = 0; $i < 100; $i++ ) {
742 $broken = $this->repo->getZonePath( 'public' ) . "/broken-$i-$thumbName";
743 if ( !file_exists( $broken ) ) {
744 rename( $thumbPath, $broken );
745 break;
748 // Doesn't exist anymore
749 clearstatcache();
754 if ( $this->repo->fileExists( $thumbDir ) ) {
755 // Delete file where directory should be
756 $this->repo->cleanupBatch( array( $thumbDir ) );
761 /** getHandler inherited */
762 /** iconThumb inherited */
763 /** getLastError inherited */
766 * Get all thumbnail names previously generated for this file
767 * @param string|bool $archiveName Name of an archive file, default false
768 * @return array first element is the base dir, then files in that base dir.
770 function getThumbnails( $archiveName = false ) {
771 if ( $archiveName ) {
772 $dir = $this->getArchiveThumbPath( $archiveName );
773 } else {
774 $dir = $this->getThumbPath();
777 $backend = $this->repo->getBackend();
778 $files = array( $dir );
779 $iterator = $backend->getFileList( array( 'dir' => $dir ) );
780 foreach ( $iterator as $file ) {
781 $files[] = $file;
784 return $files;
788 * Refresh metadata in memcached, but don't touch thumbnails or squid
790 function purgeMetadataCache() {
791 $this->loadFromDB();
792 $this->saveToCache();
793 $this->purgeHistory();
797 * Purge the shared history (OldLocalFile) cache
799 function purgeHistory() {
800 global $wgMemc;
802 $hashedName = md5( $this->getName() );
803 $oldKey = $this->repo->getSharedCacheKey( 'oldfile', $hashedName );
805 // Must purge thumbnails for old versions too! bug 30192
806 foreach ( $this->getHistory() as $oldFile ) {
807 $oldFile->purgeThumbnails();
810 if ( $oldKey ) {
811 $wgMemc->delete( $oldKey );
816 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the squid
818 function purgeCache( $options = array() ) {
819 // Refresh metadata cache
820 $this->purgeMetadataCache();
822 // Delete thumbnails
823 $this->purgeThumbnails( $options );
825 // Purge squid cache for this file
826 SquidUpdate::purge( array( $this->getURL() ) );
830 * Delete cached transformed files for an archived version only.
831 * @param string $archiveName name of the archived file
833 function purgeOldThumbnails( $archiveName ) {
834 global $wgUseSquid;
835 wfProfileIn( __METHOD__ );
837 // Get a list of old thumbnails and URLs
838 $files = $this->getThumbnails( $archiveName );
839 $dir = array_shift( $files );
840 $this->purgeThumbList( $dir, $files );
842 // Purge any custom thumbnail caches
843 wfRunHooks( 'LocalFilePurgeThumbnails', array( $this, $archiveName ) );
845 // Purge the squid
846 if ( $wgUseSquid ) {
847 $urls = array();
848 foreach ( $files as $file ) {
849 $urls[] = $this->getArchiveThumbUrl( $archiveName, $file );
851 SquidUpdate::purge( $urls );
854 wfProfileOut( __METHOD__ );
858 * Delete cached transformed files for the current version only.
860 function purgeThumbnails( $options = array() ) {
861 global $wgUseSquid;
862 wfProfileIn( __METHOD__ );
864 // Delete thumbnails
865 $files = $this->getThumbnails();
866 // Always purge all files from squid regardless of handler filters
867 if ( $wgUseSquid ) {
868 $urls = array();
869 foreach ( $files as $file ) {
870 $urls[] = $this->getThumbUrl( $file );
872 array_shift( $urls ); // don't purge directory
875 // Give media handler a chance to filter the file purge list
876 if ( !empty( $options['forThumbRefresh'] ) ) {
877 $handler = $this->getHandler();
878 if ( $handler ) {
879 $handler->filterThumbnailPurgeList( $files, $options );
883 $dir = array_shift( $files );
884 $this->purgeThumbList( $dir, $files );
886 // Purge any custom thumbnail caches
887 wfRunHooks( 'LocalFilePurgeThumbnails', array( $this, false ) );
889 // Purge the squid
890 if ( $wgUseSquid ) {
891 SquidUpdate::purge( $urls );
894 wfProfileOut( __METHOD__ );
898 * Delete a list of thumbnails visible at urls
899 * @param string $dir base dir of the files.
900 * @param array $files of strings: relative filenames (to $dir)
902 protected function purgeThumbList( $dir, $files ) {
903 $fileListDebug = strtr(
904 var_export( $files, true ),
905 array( "\n" => '' )
907 wfDebug( __METHOD__ . ": $fileListDebug\n" );
909 $purgeList = array();
910 foreach ( $files as $file ) {
911 # Check that the base file name is part of the thumb name
912 # This is a basic sanity check to avoid erasing unrelated directories
913 if ( strpos( $file, $this->getName() ) !== false
914 || strpos( $file, "-thumbnail" ) !== false // "short" thumb name
916 $purgeList[] = "{$dir}/{$file}";
920 # Delete the thumbnails
921 $this->repo->quickPurgeBatch( $purgeList );
922 # Clear out the thumbnail directory if empty
923 $this->repo->quickCleanDir( $dir );
926 /** purgeDescription inherited */
927 /** purgeEverything inherited */
930 * @param $limit null
931 * @param $start null
932 * @param $end null
933 * @param $inc bool
934 * @return array
936 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
937 $dbr = $this->repo->getSlaveDB();
938 $tables = array( 'oldimage' );
939 $fields = OldLocalFile::selectFields();
940 $conds = $opts = $join_conds = array();
941 $eq = $inc ? '=' : '';
942 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title->getDBkey() );
944 if ( $start ) {
945 $conds[] = "oi_timestamp <$eq " . $dbr->addQuotes( $dbr->timestamp( $start ) );
948 if ( $end ) {
949 $conds[] = "oi_timestamp >$eq " . $dbr->addQuotes( $dbr->timestamp( $end ) );
952 if ( $limit ) {
953 $opts['LIMIT'] = $limit;
956 // Search backwards for time > x queries
957 $order = ( !$start && $end !== null ) ? 'ASC' : 'DESC';
958 $opts['ORDER BY'] = "oi_timestamp $order";
959 $opts['USE INDEX'] = array( 'oldimage' => 'oi_name_timestamp' );
961 wfRunHooks( 'LocalFile::getHistory', array( &$this, &$tables, &$fields,
962 &$conds, &$opts, &$join_conds ) );
964 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $opts, $join_conds );
965 $r = array();
967 foreach ( $res as $row ) {
968 if ( $this->repo->oldFileFromRowFactory ) {
969 $r[] = call_user_func( $this->repo->oldFileFromRowFactory, $row, $this->repo );
970 } else {
971 $r[] = OldLocalFile::newFromRow( $row, $this->repo );
975 if ( $order == 'ASC' ) {
976 $r = array_reverse( $r ); // make sure it ends up descending
979 return $r;
983 * Return the history of this file, line by line.
984 * starts with current version, then old versions.
985 * uses $this->historyLine to check which line to return:
986 * 0 return line for current version
987 * 1 query for old versions, return first one
988 * 2, ... return next old version from above query
989 * @return bool
991 public function nextHistoryLine() {
992 # Polymorphic function name to distinguish foreign and local fetches
993 $fname = get_class( $this ) . '::' . __FUNCTION__;
995 $dbr = $this->repo->getSlaveDB();
997 if ( $this->historyLine == 0 ) {// called for the first time, return line from cur
998 $this->historyRes = $dbr->select( 'image',
999 array(
1000 '*',
1001 "'' AS oi_archive_name",
1002 '0 as oi_deleted',
1003 'img_sha1'
1005 array( 'img_name' => $this->title->getDBkey() ),
1006 $fname
1009 if ( 0 == $dbr->numRows( $this->historyRes ) ) {
1010 $this->historyRes = null;
1011 return false;
1013 } elseif ( $this->historyLine == 1 ) {
1014 $this->historyRes = $dbr->select( 'oldimage', '*',
1015 array( 'oi_name' => $this->title->getDBkey() ),
1016 $fname,
1017 array( 'ORDER BY' => 'oi_timestamp DESC' )
1020 $this->historyLine ++;
1022 return $dbr->fetchObject( $this->historyRes );
1026 * Reset the history pointer to the first element of the history
1028 public function resetHistory() {
1029 $this->historyLine = 0;
1031 if ( !is_null( $this->historyRes ) ) {
1032 $this->historyRes = null;
1036 /** getHashPath inherited */
1037 /** getRel inherited */
1038 /** getUrlRel inherited */
1039 /** getArchiveRel inherited */
1040 /** getArchivePath inherited */
1041 /** getThumbPath inherited */
1042 /** getArchiveUrl inherited */
1043 /** getThumbUrl inherited */
1044 /** getArchiveVirtualUrl inherited */
1045 /** getThumbVirtualUrl inherited */
1046 /** isHashed inherited */
1049 * Upload a file and record it in the DB
1050 * @param string $srcPath source storage path, virtual URL, or filesystem path
1051 * @param string $comment upload description
1052 * @param string $pageText text to use for the new description page,
1053 * if a new description page is created
1054 * @param $flags Integer|bool: flags for publish()
1055 * @param array|bool $props File properties, if known. This can be used to reduce the
1056 * upload time when uploading virtual URLs for which the file info
1057 * is already known
1058 * @param string|bool $timestamp timestamp for img_timestamp, or false to use the current time
1059 * @param $user User|null: User object or null to use $wgUser
1061 * @return FileRepoStatus object. On success, the value member contains the
1062 * archive name, or an empty string if it was a new file.
1064 function upload( $srcPath, $comment, $pageText, $flags = 0, $props = false, $timestamp = false, $user = null ) {
1065 global $wgContLang;
1067 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1068 return $this->readOnlyFatalStatus();
1071 if ( !$props ) {
1072 wfProfileIn( __METHOD__ . '-getProps' );
1073 if ( $this->repo->isVirtualUrl( $srcPath )
1074 || FileBackend::isStoragePath( $srcPath ) )
1076 $props = $this->repo->getFileProps( $srcPath );
1077 } else {
1078 $props = FSFile::getPropsFromPath( $srcPath );
1080 wfProfileOut( __METHOD__ . '-getProps' );
1083 $options = array();
1084 $handler = MediaHandler::getHandler( $props['mime'] );
1085 if ( $handler ) {
1086 $options['headers'] = $handler->getStreamHeaders( $props['metadata'] );
1087 } else {
1088 $options['headers'] = array();
1091 // Trim spaces on user supplied text
1092 $comment = trim( $comment );
1094 // truncate nicely or the DB will do it for us
1095 // non-nicely (dangling multi-byte chars, non-truncated version in cache).
1096 $comment = $wgContLang->truncate( $comment, 255 );
1097 $this->lock(); // begin
1098 $status = $this->publish( $srcPath, $flags, $options );
1100 if ( $status->successCount > 0 ) {
1101 # Essentially we are displacing any existing current file and saving
1102 # a new current file at the old location. If just the first succeeded,
1103 # we still need to displace the current DB entry and put in a new one.
1104 if ( !$this->recordUpload2( $status->value, $comment, $pageText, $props, $timestamp, $user ) ) {
1105 $status->fatal( 'filenotfound', $srcPath );
1109 $this->unlock(); // done
1111 return $status;
1115 * Record a file upload in the upload log and the image table
1116 * @param $oldver
1117 * @param $desc string
1118 * @param $license string
1119 * @param $copyStatus string
1120 * @param $source string
1121 * @param $watch bool
1122 * @param $timestamp string|bool
1123 * @param $user User object or null to use $wgUser
1124 * @return bool
1126 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
1127 $watch = false, $timestamp = false, User $user = null )
1129 if ( !$user ) {
1130 global $wgUser;
1131 $user = $wgUser;
1134 $pageText = SpecialUpload::getInitialPageText( $desc, $license, $copyStatus, $source );
1136 if ( !$this->recordUpload2( $oldver, $desc, $pageText, false, $timestamp, $user ) ) {
1137 return false;
1140 if ( $watch ) {
1141 $user->addWatch( $this->getTitle() );
1143 return true;
1147 * Record a file upload in the upload log and the image table
1148 * @param $oldver
1149 * @param $comment string
1150 * @param $pageText string
1151 * @param $props bool|array
1152 * @param $timestamp bool|string
1153 * @param $user null|User
1154 * @return bool
1156 function recordUpload2(
1157 $oldver, $comment, $pageText, $props = false, $timestamp = false, $user = null
1159 wfProfileIn( __METHOD__ );
1161 if ( is_null( $user ) ) {
1162 global $wgUser;
1163 $user = $wgUser;
1166 $dbw = $this->repo->getMasterDB();
1167 $dbw->begin( __METHOD__ );
1169 if ( !$props ) {
1170 wfProfileIn( __METHOD__ . '-getProps' );
1171 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
1172 wfProfileOut( __METHOD__ . '-getProps' );
1175 if ( $timestamp === false ) {
1176 $timestamp = $dbw->timestamp();
1179 $props['description'] = $comment;
1180 $props['user'] = $user->getId();
1181 $props['user_text'] = $user->getName();
1182 $props['timestamp'] = wfTimestamp( TS_MW, $timestamp ); // DB -> TS_MW
1183 $this->setProps( $props );
1185 # Fail now if the file isn't there
1186 if ( !$this->fileExists ) {
1187 wfDebug( __METHOD__ . ": File " . $this->getRel() . " went missing!\n" );
1188 wfProfileOut( __METHOD__ );
1189 return false;
1192 $reupload = false;
1194 # Test to see if the row exists using INSERT IGNORE
1195 # This avoids race conditions by locking the row until the commit, and also
1196 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
1197 $dbw->insert( 'image',
1198 array(
1199 'img_name' => $this->getName(),
1200 'img_size' => $this->size,
1201 'img_width' => intval( $this->width ),
1202 'img_height' => intval( $this->height ),
1203 'img_bits' => $this->bits,
1204 'img_media_type' => $this->media_type,
1205 'img_major_mime' => $this->major_mime,
1206 'img_minor_mime' => $this->minor_mime,
1207 'img_timestamp' => $timestamp,
1208 'img_description' => $comment,
1209 'img_user' => $user->getId(),
1210 'img_user_text' => $user->getName(),
1211 'img_metadata' => $this->metadata,
1212 'img_sha1' => $this->sha1
1214 __METHOD__,
1215 'IGNORE'
1217 if ( $dbw->affectedRows() == 0 ) {
1218 # (bug 34993) Note: $oldver can be empty here, if the previous
1219 # version of the file was broken. Allow registration of the new
1220 # version to continue anyway, because that's better than having
1221 # an image that's not fixable by user operations.
1223 $reupload = true;
1224 # Collision, this is an update of a file
1225 # Insert previous contents into oldimage
1226 $dbw->insertSelect( 'oldimage', 'image',
1227 array(
1228 'oi_name' => 'img_name',
1229 'oi_archive_name' => $dbw->addQuotes( $oldver ),
1230 'oi_size' => 'img_size',
1231 'oi_width' => 'img_width',
1232 'oi_height' => 'img_height',
1233 'oi_bits' => 'img_bits',
1234 'oi_timestamp' => 'img_timestamp',
1235 'oi_description' => 'img_description',
1236 'oi_user' => 'img_user',
1237 'oi_user_text' => 'img_user_text',
1238 'oi_metadata' => 'img_metadata',
1239 'oi_media_type' => 'img_media_type',
1240 'oi_major_mime' => 'img_major_mime',
1241 'oi_minor_mime' => 'img_minor_mime',
1242 'oi_sha1' => 'img_sha1'
1244 array( 'img_name' => $this->getName() ),
1245 __METHOD__
1248 # Update the current image row
1249 $dbw->update( 'image',
1250 array( /* SET */
1251 'img_size' => $this->size,
1252 'img_width' => intval( $this->width ),
1253 'img_height' => intval( $this->height ),
1254 'img_bits' => $this->bits,
1255 'img_media_type' => $this->media_type,
1256 'img_major_mime' => $this->major_mime,
1257 'img_minor_mime' => $this->minor_mime,
1258 'img_timestamp' => $timestamp,
1259 'img_description' => $comment,
1260 'img_user' => $user->getId(),
1261 'img_user_text' => $user->getName(),
1262 'img_metadata' => $this->metadata,
1263 'img_sha1' => $this->sha1
1265 array( 'img_name' => $this->getName() ),
1266 __METHOD__
1268 } else {
1269 # This is a new file, so update the image count
1270 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => 1 ) ) );
1273 $descTitle = $this->getTitle();
1274 $wikiPage = new WikiFilePage( $descTitle );
1275 $wikiPage->setFile( $this );
1277 # Add the log entry
1278 $log = new LogPage( 'upload' );
1279 $action = $reupload ? 'overwrite' : 'upload';
1280 $logId = $log->addEntry( $action, $descTitle, $comment, array(), $user );
1282 wfProfileIn( __METHOD__ . '-edit' );
1283 $exists = $descTitle->exists();
1285 if ( $exists ) {
1286 # Create a null revision
1287 $latest = $descTitle->getLatestRevID();
1288 $nullRevision = Revision::newNullRevision(
1289 $dbw,
1290 $descTitle->getArticleID(),
1291 $log->getRcComment(),
1292 false
1294 if ( !is_null( $nullRevision ) ) {
1295 $nullRevision->insertOn( $dbw );
1297 wfRunHooks( 'NewRevisionFromEditComplete', array( $wikiPage, $nullRevision, $latest, $user ) );
1298 $wikiPage->updateRevisionOn( $dbw, $nullRevision );
1302 # Commit the transaction now, in case something goes wrong later
1303 # The most important thing is that files don't get lost, especially archives
1304 # NOTE: once we have support for nested transactions, the commit may be moved
1305 # to after $wikiPage->doEdit has been called.
1306 $dbw->commit( __METHOD__ );
1308 if ( $exists ) {
1309 # Invalidate the cache for the description page
1310 $descTitle->invalidateCache();
1311 $descTitle->purgeSquid();
1312 } else {
1313 # New file; create the description page.
1314 # There's already a log entry, so don't make a second RC entry
1315 # Squid and file cache for the description page are purged by doEditContent.
1316 $content = ContentHandler::makeContent( $pageText, $descTitle );
1317 $status = $wikiPage->doEditContent( $content, $comment, EDIT_NEW | EDIT_SUPPRESS_RC, false, $user );
1319 if ( isset( $status->value['revision'] ) ) { // XXX; doEdit() uses a transaction
1320 $dbw->begin( __METHOD__ );
1321 $dbw->update( 'logging',
1322 array( 'log_page' => $status->value['revision']->getPage() ),
1323 array( 'log_id' => $logId ),
1324 __METHOD__
1326 $dbw->commit( __METHOD__ ); // commit before anything bad can happen
1329 wfProfileOut( __METHOD__ . '-edit' );
1331 # Save to cache and purge the squid
1332 # We shall not saveToCache before the commit since otherwise
1333 # in case of a rollback there is an usable file from memcached
1334 # which in fact doesn't really exist (bug 24978)
1335 $this->saveToCache();
1337 if ( $reupload ) {
1338 # Delete old thumbnails
1339 wfProfileIn( __METHOD__ . '-purge' );
1340 $this->purgeThumbnails();
1341 wfProfileOut( __METHOD__ . '-purge' );
1343 # Remove the old file from the squid cache
1344 SquidUpdate::purge( array( $this->getURL() ) );
1347 # Hooks, hooks, the magic of hooks...
1348 wfProfileIn( __METHOD__ . '-hooks' );
1349 wfRunHooks( 'FileUpload', array( $this, $reupload, $descTitle->exists() ) );
1350 wfProfileOut( __METHOD__ . '-hooks' );
1352 # Invalidate cache for all pages using this file
1353 $update = new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' );
1354 $update->doUpdate();
1356 # Invalidate cache for all pages that redirects on this page
1357 $redirs = $this->getTitle()->getRedirectsHere();
1359 foreach ( $redirs as $redir ) {
1360 $update = new HTMLCacheUpdate( $redir, 'imagelinks' );
1361 $update->doUpdate();
1364 wfProfileOut( __METHOD__ );
1365 return true;
1369 * Move or copy a file to its public location. If a file exists at the
1370 * destination, move it to an archive. Returns a FileRepoStatus object with
1371 * the archive name in the "value" member on success.
1373 * The archive name should be passed through to recordUpload for database
1374 * registration.
1376 * @param string $srcPath local filesystem path to the source image
1377 * @param $flags Integer: a bitwise combination of:
1378 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1379 * @param array $options Optional additional parameters
1380 * @return FileRepoStatus object. On success, the value member contains the
1381 * archive name, or an empty string if it was a new file.
1383 function publish( $srcPath, $flags = 0, array $options = array() ) {
1384 return $this->publishTo( $srcPath, $this->getRel(), $flags, $options );
1388 * Move or copy a file to a specified location. Returns a FileRepoStatus
1389 * object with the archive name in the "value" member on success.
1391 * The archive name should be passed through to recordUpload for database
1392 * registration.
1394 * @param string $srcPath local filesystem path to the source image
1395 * @param string $dstRel target relative path
1396 * @param $flags Integer: a bitwise combination of:
1397 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1398 * @param array $options Optional additional parameters
1399 * @return FileRepoStatus object. On success, the value member contains the
1400 * archive name, or an empty string if it was a new file.
1402 function publishTo( $srcPath, $dstRel, $flags = 0, array $options = array() ) {
1403 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1404 return $this->readOnlyFatalStatus();
1407 $this->lock(); // begin
1409 $archiveName = wfTimestamp( TS_MW ) . '!' . $this->getName();
1410 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
1411 $flags = $flags & File::DELETE_SOURCE ? LocalRepo::DELETE_SOURCE : 0;
1412 $status = $this->repo->publish( $srcPath, $dstRel, $archiveRel, $flags, $options );
1414 if ( $status->value == 'new' ) {
1415 $status->value = '';
1416 } else {
1417 $status->value = $archiveName;
1420 $this->unlock(); // done
1422 return $status;
1425 /** getLinksTo inherited */
1426 /** getExifData inherited */
1427 /** isLocal inherited */
1428 /** wasDeleted inherited */
1431 * Move file to the new title
1433 * Move current, old version and all thumbnails
1434 * to the new filename. Old file is deleted.
1436 * Cache purging is done; checks for validity
1437 * and logging are caller's responsibility
1439 * @param $target Title New file name
1440 * @return FileRepoStatus object.
1442 function move( $target ) {
1443 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1444 return $this->readOnlyFatalStatus();
1447 wfDebugLog( 'imagemove', "Got request to move {$this->name} to " . $target->getText() );
1448 $batch = new LocalFileMoveBatch( $this, $target );
1450 $this->lock(); // begin
1451 $batch->addCurrent();
1452 $archiveNames = $batch->addOlds();
1453 $status = $batch->execute();
1454 $this->unlock(); // done
1456 wfDebugLog( 'imagemove', "Finished moving {$this->name}" );
1458 $this->purgeEverything();
1459 foreach ( $archiveNames as $archiveName ) {
1460 $this->purgeOldThumbnails( $archiveName );
1462 if ( $status->isOK() ) {
1463 // Now switch the object
1464 $this->title = $target;
1465 // Force regeneration of the name and hashpath
1466 unset( $this->name );
1467 unset( $this->hashPath );
1468 // Purge the new image
1469 $this->purgeEverything();
1472 return $status;
1476 * Delete all versions of the file.
1478 * Moves the files into an archive directory (or deletes them)
1479 * and removes the database rows.
1481 * Cache purging is done; logging is caller's responsibility.
1483 * @param $reason
1484 * @param $suppress
1485 * @return FileRepoStatus object.
1487 function delete( $reason, $suppress = false ) {
1488 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1489 return $this->readOnlyFatalStatus();
1492 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1494 $this->lock(); // begin
1495 $batch->addCurrent();
1496 # Get old version relative paths
1497 $archiveNames = $batch->addOlds();
1498 $status = $batch->execute();
1499 $this->unlock(); // done
1501 if ( $status->isOK() ) {
1502 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => -1 ) ) );
1505 $this->purgeEverything();
1506 foreach ( $archiveNames as $archiveName ) {
1507 $this->purgeOldThumbnails( $archiveName );
1510 return $status;
1514 * Delete an old version of the file.
1516 * Moves the file into an archive directory (or deletes it)
1517 * and removes the database row.
1519 * Cache purging is done; logging is caller's responsibility.
1521 * @param $archiveName String
1522 * @param $reason String
1523 * @param $suppress Boolean
1524 * @throws MWException or FSException on database or file store failure
1525 * @return FileRepoStatus object.
1527 function deleteOld( $archiveName, $reason, $suppress = false ) {
1528 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1529 return $this->readOnlyFatalStatus();
1532 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1534 $this->lock(); // begin
1535 $batch->addOld( $archiveName );
1536 $status = $batch->execute();
1537 $this->unlock(); // done
1539 $this->purgeOldThumbnails( $archiveName );
1540 if ( $status->isOK() ) {
1541 $this->purgeDescription();
1542 $this->purgeHistory();
1545 return $status;
1549 * Restore all or specified deleted revisions to the given file.
1550 * Permissions and logging are left to the caller.
1552 * May throw database exceptions on error.
1554 * @param array $versions set of record ids of deleted items to restore,
1555 * or empty to restore all revisions.
1556 * @param $unsuppress Boolean
1557 * @return FileRepoStatus
1559 function restore( $versions = array(), $unsuppress = false ) {
1560 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1561 return $this->readOnlyFatalStatus();
1564 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
1566 $this->lock(); // begin
1567 if ( !$versions ) {
1568 $batch->addAll();
1569 } else {
1570 $batch->addIds( $versions );
1572 $status = $batch->execute();
1573 if ( $status->isGood() ) {
1574 $cleanupStatus = $batch->cleanup();
1575 $cleanupStatus->successCount = 0;
1576 $cleanupStatus->failCount = 0;
1577 $status->merge( $cleanupStatus );
1579 $this->unlock(); // done
1581 return $status;
1584 /** isMultipage inherited */
1585 /** pageCount inherited */
1586 /** scaleHeight inherited */
1587 /** getImageSize inherited */
1590 * Get the URL of the file description page.
1591 * @return String
1593 function getDescriptionUrl() {
1594 return $this->title->getLocalURL();
1598 * Get the HTML text of the description page
1599 * This is not used by ImagePage for local files, since (among other things)
1600 * it skips the parser cache.
1601 * @return bool|mixed
1603 function getDescriptionText() {
1604 $revision = Revision::newFromTitle( $this->title, false, Revision::READ_NORMAL );
1605 if ( !$revision ) {
1606 return false;
1608 $content = $revision->getContent();
1609 if ( !$content ) {
1610 return false;
1612 $pout = $content->getParserOutput( $this->title, null, new ParserOptions() );
1613 return $pout->getText();
1617 * @return string
1619 function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
1620 $this->load();
1621 if ( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_COMMENT ) ) {
1622 return '';
1623 } elseif ( $audience == self::FOR_THIS_USER
1624 && !$this->userCan( self::DELETED_COMMENT, $user ) )
1626 return '';
1627 } else {
1628 return $this->description;
1633 * @return bool|string
1635 function getTimestamp() {
1636 $this->load();
1637 return $this->timestamp;
1641 * @return string
1643 function getSha1() {
1644 $this->load();
1645 // Initialise now if necessary
1646 if ( $this->sha1 == '' && $this->fileExists ) {
1647 $this->lock(); // begin
1649 $this->sha1 = $this->repo->getFileSha1( $this->getPath() );
1650 if ( !wfReadOnly() && strval( $this->sha1 ) != '' ) {
1651 $dbw = $this->repo->getMasterDB();
1652 $dbw->update( 'image',
1653 array( 'img_sha1' => $this->sha1 ),
1654 array( 'img_name' => $this->getName() ),
1655 __METHOD__ );
1656 $this->saveToCache();
1659 $this->unlock(); // done
1662 return $this->sha1;
1666 * @return bool
1668 function isCacheable() {
1669 $this->load();
1670 return strlen( $this->metadata ) <= self::CACHE_FIELD_MAX_LEN; // avoid OOMs
1674 * Start a transaction and lock the image for update
1675 * Increments a reference counter if the lock is already held
1676 * @return boolean True if the image exists, false otherwise
1678 function lock() {
1679 $dbw = $this->repo->getMasterDB();
1681 if ( !$this->locked ) {
1682 if ( !$dbw->trxLevel() ) {
1683 $dbw->begin( __METHOD__ );
1684 $this->lockedOwnTrx = true;
1686 $this->locked++;
1689 return $dbw->selectField( 'image', '1',
1690 array( 'img_name' => $this->getName() ), __METHOD__, array( 'FOR UPDATE' ) );
1694 * Decrement the lock reference count. If the reference count is reduced to zero, commits
1695 * the transaction and thereby releases the image lock.
1697 function unlock() {
1698 if ( $this->locked ) {
1699 --$this->locked;
1700 if ( !$this->locked && $this->lockedOwnTrx ) {
1701 $dbw = $this->repo->getMasterDB();
1702 $dbw->commit( __METHOD__ );
1703 $this->lockedOwnTrx = false;
1709 * Roll back the DB transaction and mark the image unlocked
1711 function unlockAndRollback() {
1712 $this->locked = false;
1713 $dbw = $this->repo->getMasterDB();
1714 $dbw->rollback( __METHOD__ );
1715 $this->lockedOwnTrx = false;
1719 * @return Status
1721 protected function readOnlyFatalStatus() {
1722 return $this->getRepo()->newFatal( 'filereadonlyerror', $this->getName(),
1723 $this->getRepo()->getName(), $this->getRepo()->getReadOnlyReason() );
1725 } // LocalFile class
1727 # ------------------------------------------------------------------------------
1730 * Helper class for file deletion
1731 * @ingroup FileAbstraction
1733 class LocalFileDeleteBatch {
1736 * @var LocalFile
1738 var $file;
1740 var $reason, $srcRels = array(), $archiveUrls = array(), $deletionBatch, $suppress;
1741 var $status;
1744 * @param $file File
1745 * @param $reason string
1746 * @param $suppress bool
1748 function __construct( File $file, $reason = '', $suppress = false ) {
1749 $this->file = $file;
1750 $this->reason = $reason;
1751 $this->suppress = $suppress;
1752 $this->status = $file->repo->newGood();
1755 function addCurrent() {
1756 $this->srcRels['.'] = $this->file->getRel();
1760 * @param $oldName string
1762 function addOld( $oldName ) {
1763 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
1764 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
1768 * Add the old versions of the image to the batch
1769 * @return Array List of archive names from old versions
1771 function addOlds() {
1772 $archiveNames = array();
1774 $dbw = $this->file->repo->getMasterDB();
1775 $result = $dbw->select( 'oldimage',
1776 array( 'oi_archive_name' ),
1777 array( 'oi_name' => $this->file->getName() ),
1778 __METHOD__
1781 foreach ( $result as $row ) {
1782 $this->addOld( $row->oi_archive_name );
1783 $archiveNames[] = $row->oi_archive_name;
1786 return $archiveNames;
1790 * @return array
1792 function getOldRels() {
1793 if ( !isset( $this->srcRels['.'] ) ) {
1794 $oldRels =& $this->srcRels;
1795 $deleteCurrent = false;
1796 } else {
1797 $oldRels = $this->srcRels;
1798 unset( $oldRels['.'] );
1799 $deleteCurrent = true;
1802 return array( $oldRels, $deleteCurrent );
1806 * @return array
1808 protected function getHashes() {
1809 $hashes = array();
1810 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1812 if ( $deleteCurrent ) {
1813 $hashes['.'] = $this->file->getSha1();
1816 if ( count( $oldRels ) ) {
1817 $dbw = $this->file->repo->getMasterDB();
1818 $res = $dbw->select(
1819 'oldimage',
1820 array( 'oi_archive_name', 'oi_sha1' ),
1821 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1822 __METHOD__
1825 foreach ( $res as $row ) {
1826 if ( rtrim( $row->oi_sha1, "\0" ) === '' ) {
1827 // Get the hash from the file
1828 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
1829 $props = $this->file->repo->getFileProps( $oldUrl );
1831 if ( $props['fileExists'] ) {
1832 // Upgrade the oldimage row
1833 $dbw->update( 'oldimage',
1834 array( 'oi_sha1' => $props['sha1'] ),
1835 array( 'oi_name' => $this->file->getName(), 'oi_archive_name' => $row->oi_archive_name ),
1836 __METHOD__ );
1837 $hashes[$row->oi_archive_name] = $props['sha1'];
1838 } else {
1839 $hashes[$row->oi_archive_name] = false;
1841 } else {
1842 $hashes[$row->oi_archive_name] = $row->oi_sha1;
1847 $missing = array_diff_key( $this->srcRels, $hashes );
1849 foreach ( $missing as $name => $rel ) {
1850 $this->status->error( 'filedelete-old-unregistered', $name );
1853 foreach ( $hashes as $name => $hash ) {
1854 if ( !$hash ) {
1855 $this->status->error( 'filedelete-missing', $this->srcRels[$name] );
1856 unset( $hashes[$name] );
1860 return $hashes;
1863 function doDBInserts() {
1864 global $wgUser;
1866 $dbw = $this->file->repo->getMasterDB();
1867 $encTimestamp = $dbw->addQuotes( $dbw->timestamp() );
1868 $encUserId = $dbw->addQuotes( $wgUser->getId() );
1869 $encReason = $dbw->addQuotes( $this->reason );
1870 $encGroup = $dbw->addQuotes( 'deleted' );
1871 $ext = $this->file->getExtension();
1872 $dotExt = $ext === '' ? '' : ".$ext";
1873 $encExt = $dbw->addQuotes( $dotExt );
1874 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1876 // Bitfields to further suppress the content
1877 if ( $this->suppress ) {
1878 $bitfield = 0;
1879 // This should be 15...
1880 $bitfield |= Revision::DELETED_TEXT;
1881 $bitfield |= Revision::DELETED_COMMENT;
1882 $bitfield |= Revision::DELETED_USER;
1883 $bitfield |= Revision::DELETED_RESTRICTED;
1884 } else {
1885 $bitfield = 'oi_deleted';
1888 if ( $deleteCurrent ) {
1889 $concat = $dbw->buildConcat( array( "img_sha1", $encExt ) );
1890 $where = array( 'img_name' => $this->file->getName() );
1891 $dbw->insertSelect( 'filearchive', 'image',
1892 array(
1893 'fa_storage_group' => $encGroup,
1894 'fa_storage_key' => "CASE WHEN img_sha1='' THEN '' ELSE $concat END",
1895 'fa_deleted_user' => $encUserId,
1896 'fa_deleted_timestamp' => $encTimestamp,
1897 'fa_deleted_reason' => $encReason,
1898 'fa_deleted' => $this->suppress ? $bitfield : 0,
1900 'fa_name' => 'img_name',
1901 'fa_archive_name' => 'NULL',
1902 'fa_size' => 'img_size',
1903 'fa_width' => 'img_width',
1904 'fa_height' => 'img_height',
1905 'fa_metadata' => 'img_metadata',
1906 'fa_bits' => 'img_bits',
1907 'fa_media_type' => 'img_media_type',
1908 'fa_major_mime' => 'img_major_mime',
1909 'fa_minor_mime' => 'img_minor_mime',
1910 'fa_description' => 'img_description',
1911 'fa_user' => 'img_user',
1912 'fa_user_text' => 'img_user_text',
1913 'fa_timestamp' => 'img_timestamp',
1914 'fa_sha1' => 'img_sha1',
1915 ), $where, __METHOD__ );
1918 if ( count( $oldRels ) ) {
1919 $concat = $dbw->buildConcat( array( "oi_sha1", $encExt ) );
1920 $where = array(
1921 'oi_name' => $this->file->getName(),
1922 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')' );
1923 $dbw->insertSelect( 'filearchive', 'oldimage',
1924 array(
1925 'fa_storage_group' => $encGroup,
1926 'fa_storage_key' => "CASE WHEN oi_sha1='' THEN '' ELSE $concat END",
1927 'fa_deleted_user' => $encUserId,
1928 'fa_deleted_timestamp' => $encTimestamp,
1929 'fa_deleted_reason' => $encReason,
1930 'fa_deleted' => $this->suppress ? $bitfield : 'oi_deleted',
1932 'fa_name' => 'oi_name',
1933 'fa_archive_name' => 'oi_archive_name',
1934 'fa_size' => 'oi_size',
1935 'fa_width' => 'oi_width',
1936 'fa_height' => 'oi_height',
1937 'fa_metadata' => 'oi_metadata',
1938 'fa_bits' => 'oi_bits',
1939 'fa_media_type' => 'oi_media_type',
1940 'fa_major_mime' => 'oi_major_mime',
1941 'fa_minor_mime' => 'oi_minor_mime',
1942 'fa_description' => 'oi_description',
1943 'fa_user' => 'oi_user',
1944 'fa_user_text' => 'oi_user_text',
1945 'fa_timestamp' => 'oi_timestamp',
1946 'fa_sha1' => 'oi_sha1',
1947 ), $where, __METHOD__ );
1951 function doDBDeletes() {
1952 $dbw = $this->file->repo->getMasterDB();
1953 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1955 if ( count( $oldRels ) ) {
1956 $dbw->delete( 'oldimage',
1957 array(
1958 'oi_name' => $this->file->getName(),
1959 'oi_archive_name' => array_keys( $oldRels )
1960 ), __METHOD__ );
1963 if ( $deleteCurrent ) {
1964 $dbw->delete( 'image', array( 'img_name' => $this->file->getName() ), __METHOD__ );
1969 * Run the transaction
1970 * @return FileRepoStatus
1972 function execute() {
1973 wfProfileIn( __METHOD__ );
1975 $this->file->lock();
1976 // Leave private files alone
1977 $privateFiles = array();
1978 list( $oldRels, ) = $this->getOldRels();
1979 $dbw = $this->file->repo->getMasterDB();
1981 if ( !empty( $oldRels ) ) {
1982 $res = $dbw->select( 'oldimage',
1983 array( 'oi_archive_name' ),
1984 array( 'oi_name' => $this->file->getName(),
1985 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1986 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ),
1987 __METHOD__ );
1989 foreach ( $res as $row ) {
1990 $privateFiles[$row->oi_archive_name] = 1;
1993 // Prepare deletion batch
1994 $hashes = $this->getHashes();
1995 $this->deletionBatch = array();
1996 $ext = $this->file->getExtension();
1997 $dotExt = $ext === '' ? '' : ".$ext";
1999 foreach ( $this->srcRels as $name => $srcRel ) {
2000 // Skip files that have no hash (missing source).
2001 // Keep private files where they are.
2002 if ( isset( $hashes[$name] ) && !array_key_exists( $name, $privateFiles ) ) {
2003 $hash = $hashes[$name];
2004 $key = $hash . $dotExt;
2005 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
2006 $this->deletionBatch[$name] = array( $srcRel, $dstRel );
2010 // Lock the filearchive rows so that the files don't get deleted by a cleanup operation
2011 // We acquire this lock by running the inserts now, before the file operations.
2013 // This potentially has poor lock contention characteristics -- an alternative
2014 // scheme would be to insert stub filearchive entries with no fa_name and commit
2015 // them in a separate transaction, then run the file ops, then update the fa_name fields.
2016 $this->doDBInserts();
2018 // Removes non-existent file from the batch, so we don't get errors.
2019 $this->deletionBatch = $this->removeNonexistentFiles( $this->deletionBatch );
2021 // Execute the file deletion batch
2022 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
2024 if ( !$status->isGood() ) {
2025 $this->status->merge( $status );
2028 if ( !$this->status->isOK() ) {
2029 // Critical file deletion error
2030 // Roll back inserts, release lock and abort
2031 // TODO: delete the defunct filearchive rows if we are using a non-transactional DB
2032 $this->file->unlockAndRollback();
2033 wfProfileOut( __METHOD__ );
2034 return $this->status;
2037 // Delete image/oldimage rows
2038 $this->doDBDeletes();
2040 // Commit and return
2041 $this->file->unlock();
2042 wfProfileOut( __METHOD__ );
2044 return $this->status;
2048 * Removes non-existent files from a deletion batch.
2049 * @param $batch array
2050 * @return array
2052 function removeNonexistentFiles( $batch ) {
2053 $files = $newBatch = array();
2055 foreach ( $batch as $batchItem ) {
2056 list( $src, ) = $batchItem;
2057 $files[$src] = $this->file->repo->getVirtualUrl( 'public' ) . '/' . rawurlencode( $src );
2060 $result = $this->file->repo->fileExistsBatch( $files );
2062 foreach ( $batch as $batchItem ) {
2063 if ( $result[$batchItem[0]] ) {
2064 $newBatch[] = $batchItem;
2068 return $newBatch;
2072 # ------------------------------------------------------------------------------
2075 * Helper class for file undeletion
2076 * @ingroup FileAbstraction
2078 class LocalFileRestoreBatch {
2080 * @var LocalFile
2082 var $file;
2084 var $cleanupBatch, $ids, $all, $unsuppress = false;
2087 * @param $file File
2088 * @param $unsuppress bool
2090 function __construct( File $file, $unsuppress = false ) {
2091 $this->file = $file;
2092 $this->cleanupBatch = $this->ids = array();
2093 $this->ids = array();
2094 $this->unsuppress = $unsuppress;
2098 * Add a file by ID
2100 function addId( $fa_id ) {
2101 $this->ids[] = $fa_id;
2105 * Add a whole lot of files by ID
2107 function addIds( $ids ) {
2108 $this->ids = array_merge( $this->ids, $ids );
2112 * Add all revisions of the file
2114 function addAll() {
2115 $this->all = true;
2119 * Run the transaction, except the cleanup batch.
2120 * The cleanup batch should be run in a separate transaction, because it locks different
2121 * rows and there's no need to keep the image row locked while it's acquiring those locks
2122 * The caller may have its own transaction open.
2123 * So we save the batch and let the caller call cleanup()
2124 * @return FileRepoStatus
2126 function execute() {
2127 global $wgLang;
2129 if ( !$this->all && !$this->ids ) {
2130 // Do nothing
2131 return $this->file->repo->newGood();
2134 $exists = $this->file->lock();
2135 $dbw = $this->file->repo->getMasterDB();
2136 $status = $this->file->repo->newGood();
2138 // Fetch all or selected archived revisions for the file,
2139 // sorted from the most recent to the oldest.
2140 $conditions = array( 'fa_name' => $this->file->getName() );
2142 if ( !$this->all ) {
2143 $conditions[] = 'fa_id IN (' . $dbw->makeList( $this->ids ) . ')';
2146 $result = $dbw->select(
2147 'filearchive',
2148 ArchivedFile::selectFields(),
2149 $conditions,
2150 __METHOD__,
2151 array( 'ORDER BY' => 'fa_timestamp DESC' )
2154 $idsPresent = array();
2155 $storeBatch = array();
2156 $insertBatch = array();
2157 $insertCurrent = false;
2158 $deleteIds = array();
2159 $first = true;
2160 $archiveNames = array();
2162 foreach ( $result as $row ) {
2163 $idsPresent[] = $row->fa_id;
2165 if ( $row->fa_name != $this->file->getName() ) {
2166 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp ) );
2167 $status->failCount++;
2168 continue;
2171 if ( $row->fa_storage_key == '' ) {
2172 // Revision was missing pre-deletion
2173 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp ) );
2174 $status->failCount++;
2175 continue;
2178 $deletedRel = $this->file->repo->getDeletedHashPath( $row->fa_storage_key ) . $row->fa_storage_key;
2179 $deletedUrl = $this->file->repo->getVirtualUrl() . '/deleted/' . $deletedRel;
2181 if ( isset( $row->fa_sha1 ) ) {
2182 $sha1 = $row->fa_sha1;
2183 } else {
2184 // old row, populate from key
2185 $sha1 = LocalRepo::getHashFromKey( $row->fa_storage_key );
2188 # Fix leading zero
2189 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
2190 $sha1 = substr( $sha1, 1 );
2193 if ( is_null( $row->fa_major_mime ) || $row->fa_major_mime == 'unknown'
2194 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime == 'unknown'
2195 || is_null( $row->fa_media_type ) || $row->fa_media_type == 'UNKNOWN'
2196 || is_null( $row->fa_metadata ) ) {
2197 // Refresh our metadata
2198 // Required for a new current revision; nice for older ones too. :)
2199 $props = RepoGroup::singleton()->getFileProps( $deletedUrl );
2200 } else {
2201 $props = array(
2202 'minor_mime' => $row->fa_minor_mime,
2203 'major_mime' => $row->fa_major_mime,
2204 'media_type' => $row->fa_media_type,
2205 'metadata' => $row->fa_metadata
2209 if ( $first && !$exists ) {
2210 // This revision will be published as the new current version
2211 $destRel = $this->file->getRel();
2212 $insertCurrent = array(
2213 'img_name' => $row->fa_name,
2214 'img_size' => $row->fa_size,
2215 'img_width' => $row->fa_width,
2216 'img_height' => $row->fa_height,
2217 'img_metadata' => $props['metadata'],
2218 'img_bits' => $row->fa_bits,
2219 'img_media_type' => $props['media_type'],
2220 'img_major_mime' => $props['major_mime'],
2221 'img_minor_mime' => $props['minor_mime'],
2222 'img_description' => $row->fa_description,
2223 'img_user' => $row->fa_user,
2224 'img_user_text' => $row->fa_user_text,
2225 'img_timestamp' => $row->fa_timestamp,
2226 'img_sha1' => $sha1
2229 // The live (current) version cannot be hidden!
2230 if ( !$this->unsuppress && $row->fa_deleted ) {
2231 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
2232 $this->cleanupBatch[] = $row->fa_storage_key;
2234 } else {
2235 $archiveName = $row->fa_archive_name;
2237 if ( $archiveName == '' ) {
2238 // This was originally a current version; we
2239 // have to devise a new archive name for it.
2240 // Format is <timestamp of archiving>!<name>
2241 $timestamp = wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
2243 do {
2244 $archiveName = wfTimestamp( TS_MW, $timestamp ) . '!' . $row->fa_name;
2245 $timestamp++;
2246 } while ( isset( $archiveNames[$archiveName] ) );
2249 $archiveNames[$archiveName] = true;
2250 $destRel = $this->file->getArchiveRel( $archiveName );
2251 $insertBatch[] = array(
2252 'oi_name' => $row->fa_name,
2253 'oi_archive_name' => $archiveName,
2254 'oi_size' => $row->fa_size,
2255 'oi_width' => $row->fa_width,
2256 'oi_height' => $row->fa_height,
2257 'oi_bits' => $row->fa_bits,
2258 'oi_description' => $row->fa_description,
2259 'oi_user' => $row->fa_user,
2260 'oi_user_text' => $row->fa_user_text,
2261 'oi_timestamp' => $row->fa_timestamp,
2262 'oi_metadata' => $props['metadata'],
2263 'oi_media_type' => $props['media_type'],
2264 'oi_major_mime' => $props['major_mime'],
2265 'oi_minor_mime' => $props['minor_mime'],
2266 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
2267 'oi_sha1' => $sha1 );
2270 $deleteIds[] = $row->fa_id;
2272 if ( !$this->unsuppress && $row->fa_deleted & File::DELETED_FILE ) {
2273 // private files can stay where they are
2274 $status->successCount++;
2275 } else {
2276 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
2277 $this->cleanupBatch[] = $row->fa_storage_key;
2280 $first = false;
2283 unset( $result );
2285 // Add a warning to the status object for missing IDs
2286 $missingIds = array_diff( $this->ids, $idsPresent );
2288 foreach ( $missingIds as $id ) {
2289 $status->error( 'undelete-missing-filearchive', $id );
2292 // Remove missing files from batch, so we don't get errors when undeleting them
2293 $storeBatch = $this->removeNonexistentFiles( $storeBatch );
2295 // Run the store batch
2296 // Use the OVERWRITE_SAME flag to smooth over a common error
2297 $storeStatus = $this->file->repo->storeBatch( $storeBatch, FileRepo::OVERWRITE_SAME );
2298 $status->merge( $storeStatus );
2300 if ( !$status->isGood() ) {
2301 // Even if some files could be copied, fail entirely as that is the
2302 // easiest thing to do without data loss
2303 $this->cleanupFailedBatch( $storeStatus, $storeBatch );
2304 $status->ok = false;
2305 $this->file->unlock();
2307 return $status;
2310 // Run the DB updates
2311 // Because we have locked the image row, key conflicts should be rare.
2312 // If they do occur, we can roll back the transaction at this time with
2313 // no data loss, but leaving unregistered files scattered throughout the
2314 // public zone.
2315 // This is not ideal, which is why it's important to lock the image row.
2316 if ( $insertCurrent ) {
2317 $dbw->insert( 'image', $insertCurrent, __METHOD__ );
2320 if ( $insertBatch ) {
2321 $dbw->insert( 'oldimage', $insertBatch, __METHOD__ );
2324 if ( $deleteIds ) {
2325 $dbw->delete( 'filearchive',
2326 array( 'fa_id IN (' . $dbw->makeList( $deleteIds ) . ')' ),
2327 __METHOD__ );
2330 // If store batch is empty (all files are missing), deletion is to be considered successful
2331 if ( $status->successCount > 0 || !$storeBatch ) {
2332 if ( !$exists ) {
2333 wfDebug( __METHOD__ . " restored {$status->successCount} items, creating a new current\n" );
2335 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => 1 ) ) );
2337 $this->file->purgeEverything();
2338 } else {
2339 wfDebug( __METHOD__ . " restored {$status->successCount} as archived versions\n" );
2340 $this->file->purgeDescription();
2341 $this->file->purgeHistory();
2345 $this->file->unlock();
2347 return $status;
2351 * Removes non-existent files from a store batch.
2352 * @param $triplets array
2353 * @return array
2355 function removeNonexistentFiles( $triplets ) {
2356 $files = $filteredTriplets = array();
2357 foreach ( $triplets as $file ) {
2358 $files[$file[0]] = $file[0];
2361 $result = $this->file->repo->fileExistsBatch( $files );
2363 foreach ( $triplets as $file ) {
2364 if ( $result[$file[0]] ) {
2365 $filteredTriplets[] = $file;
2369 return $filteredTriplets;
2373 * Removes non-existent files from a cleanup batch.
2374 * @param $batch array
2375 * @return array
2377 function removeNonexistentFromCleanup( $batch ) {
2378 $files = $newBatch = array();
2379 $repo = $this->file->repo;
2381 foreach ( $batch as $file ) {
2382 $files[$file] = $repo->getVirtualUrl( 'deleted' ) . '/' .
2383 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
2386 $result = $repo->fileExistsBatch( $files );
2388 foreach ( $batch as $file ) {
2389 if ( $result[$file] ) {
2390 $newBatch[] = $file;
2394 return $newBatch;
2398 * Delete unused files in the deleted zone.
2399 * This should be called from outside the transaction in which execute() was called.
2400 * @return FileRepoStatus
2402 function cleanup() {
2403 if ( !$this->cleanupBatch ) {
2404 return $this->file->repo->newGood();
2407 $this->cleanupBatch = $this->removeNonexistentFromCleanup( $this->cleanupBatch );
2409 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
2411 return $status;
2415 * Cleanup a failed batch. The batch was only partially successful, so
2416 * rollback by removing all items that were succesfully copied.
2418 * @param Status $storeStatus
2419 * @param array $storeBatch
2421 function cleanupFailedBatch( $storeStatus, $storeBatch ) {
2422 $cleanupBatch = array();
2424 foreach ( $storeStatus->success as $i => $success ) {
2425 // Check if this item of the batch was successfully copied
2426 if ( $success ) {
2427 // Item was successfully copied and needs to be removed again
2428 // Extract ($dstZone, $dstRel) from the batch
2429 $cleanupBatch[] = array( $storeBatch[$i][1], $storeBatch[$i][2] );
2432 $this->file->repo->cleanupBatch( $cleanupBatch );
2436 # ------------------------------------------------------------------------------
2439 * Helper class for file movement
2440 * @ingroup FileAbstraction
2442 class LocalFileMoveBatch {
2445 * @var LocalFile
2447 var $file;
2450 * @var Title
2452 var $target;
2454 var $cur, $olds, $oldCount, $archive;
2457 * @var DatabaseBase
2459 var $db;
2462 * @param File $file
2463 * @param Title $target
2465 function __construct( File $file, Title $target ) {
2466 $this->file = $file;
2467 $this->target = $target;
2468 $this->oldHash = $this->file->repo->getHashPath( $this->file->getName() );
2469 $this->newHash = $this->file->repo->getHashPath( $this->target->getDBkey() );
2470 $this->oldName = $this->file->getName();
2471 $this->newName = $this->file->repo->getNameFromTitle( $this->target );
2472 $this->oldRel = $this->oldHash . $this->oldName;
2473 $this->newRel = $this->newHash . $this->newName;
2474 $this->db = $file->getRepo()->getMasterDb();
2478 * Add the current image to the batch
2480 function addCurrent() {
2481 $this->cur = array( $this->oldRel, $this->newRel );
2485 * Add the old versions of the image to the batch
2486 * @return Array List of archive names from old versions
2488 function addOlds() {
2489 $archiveBase = 'archive';
2490 $this->olds = array();
2491 $this->oldCount = 0;
2492 $archiveNames = array();
2494 $result = $this->db->select( 'oldimage',
2495 array( 'oi_archive_name', 'oi_deleted' ),
2496 array( 'oi_name' => $this->oldName ),
2497 __METHOD__
2500 foreach ( $result as $row ) {
2501 $archiveNames[] = $row->oi_archive_name;
2502 $oldName = $row->oi_archive_name;
2503 $bits = explode( '!', $oldName, 2 );
2505 if ( count( $bits ) != 2 ) {
2506 wfDebug( "Old file name missing !: '$oldName' \n" );
2507 continue;
2510 list( $timestamp, $filename ) = $bits;
2512 if ( $this->oldName != $filename ) {
2513 wfDebug( "Old file name doesn't match: '$oldName' \n" );
2514 continue;
2517 $this->oldCount++;
2519 // Do we want to add those to oldCount?
2520 if ( $row->oi_deleted & File::DELETED_FILE ) {
2521 continue;
2524 $this->olds[] = array(
2525 "{$archiveBase}/{$this->oldHash}{$oldName}",
2526 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
2530 return $archiveNames;
2534 * Perform the move.
2535 * @return FileRepoStatus
2537 function execute() {
2538 $repo = $this->file->repo;
2539 $status = $repo->newGood();
2541 $triplets = $this->getMoveTriplets();
2542 $triplets = $this->removeNonexistentFiles( $triplets );
2544 $this->file->lock(); // begin
2545 // Rename the file versions metadata in the DB.
2546 // This implicitly locks the destination file, which avoids race conditions.
2547 // If we moved the files from A -> C before DB updates, another process could
2548 // move files from B -> C at this point, causing storeBatch() to fail and thus
2549 // cleanupTarget() to trigger. It would delete the C files and cause data loss.
2550 $statusDb = $this->doDBUpdates();
2551 if ( !$statusDb->isGood() ) {
2552 $this->file->unlockAndRollback();
2553 $statusDb->ok = false;
2554 return $statusDb;
2556 wfDebugLog( 'imagemove', "Renamed {$this->file->getName()} in database: {$statusDb->successCount} successes, {$statusDb->failCount} failures" );
2558 // Copy the files into their new location.
2559 // If a prior process fataled copying or cleaning up files we tolerate any
2560 // of the existing files if they are identical to the ones being stored.
2561 $statusMove = $repo->storeBatch( $triplets, FileRepo::OVERWRITE_SAME );
2562 wfDebugLog( 'imagemove', "Moved files for {$this->file->getName()}: {$statusMove->successCount} successes, {$statusMove->failCount} failures" );
2563 if ( !$statusMove->isGood() ) {
2564 // Delete any files copied over (while the destination is still locked)
2565 $this->cleanupTarget( $triplets );
2566 $this->file->unlockAndRollback(); // unlocks the destination
2567 wfDebugLog( 'imagemove', "Error in moving files: " . $statusMove->getWikiText() );
2568 $statusMove->ok = false;
2569 return $statusMove;
2571 $this->file->unlock(); // done
2573 // Everything went ok, remove the source files
2574 $this->cleanupSource( $triplets );
2576 $status->merge( $statusDb );
2577 $status->merge( $statusMove );
2579 return $status;
2583 * Do the database updates and return a new FileRepoStatus indicating how
2584 * many rows where updated.
2586 * @return FileRepoStatus
2588 function doDBUpdates() {
2589 $repo = $this->file->repo;
2590 $status = $repo->newGood();
2591 $dbw = $this->db;
2593 // Update current image
2594 $dbw->update(
2595 'image',
2596 array( 'img_name' => $this->newName ),
2597 array( 'img_name' => $this->oldName ),
2598 __METHOD__
2601 if ( $dbw->affectedRows() ) {
2602 $status->successCount++;
2603 } else {
2604 $status->failCount++;
2605 $status->fatal( 'imageinvalidfilename' );
2606 return $status;
2609 // Update old images
2610 $dbw->update(
2611 'oldimage',
2612 array(
2613 'oi_name' => $this->newName,
2614 'oi_archive_name = ' . $dbw->strreplace( 'oi_archive_name',
2615 $dbw->addQuotes( $this->oldName ), $dbw->addQuotes( $this->newName ) ),
2617 array( 'oi_name' => $this->oldName ),
2618 __METHOD__
2621 $affected = $dbw->affectedRows();
2622 $total = $this->oldCount;
2623 $status->successCount += $affected;
2624 // Bug 34934: $total is based on files that actually exist.
2625 // There may be more DB rows than such files, in which case $affected
2626 // can be greater than $total. We use max() to avoid negatives here.
2627 $status->failCount += max( 0, $total - $affected );
2628 if ( $status->failCount ) {
2629 $status->error( 'imageinvalidfilename' );
2632 return $status;
2636 * Generate triplets for FileRepo::storeBatch().
2637 * @return array
2639 function getMoveTriplets() {
2640 $moves = array_merge( array( $this->cur ), $this->olds );
2641 $triplets = array(); // The format is: (srcUrl, destZone, destUrl)
2643 foreach ( $moves as $move ) {
2644 // $move: (oldRelativePath, newRelativePath)
2645 $srcUrl = $this->file->repo->getVirtualUrl() . '/public/' . rawurlencode( $move[0] );
2646 $triplets[] = array( $srcUrl, 'public', $move[1] );
2647 wfDebugLog( 'imagemove', "Generated move triplet for {$this->file->getName()}: {$srcUrl} :: public :: {$move[1]}" );
2650 return $triplets;
2654 * Removes non-existent files from move batch.
2655 * @param $triplets array
2656 * @return array
2658 function removeNonexistentFiles( $triplets ) {
2659 $files = array();
2661 foreach ( $triplets as $file ) {
2662 $files[$file[0]] = $file[0];
2665 $result = $this->file->repo->fileExistsBatch( $files );
2666 $filteredTriplets = array();
2668 foreach ( $triplets as $file ) {
2669 if ( $result[$file[0]] ) {
2670 $filteredTriplets[] = $file;
2671 } else {
2672 wfDebugLog( 'imagemove', "File {$file[0]} does not exist" );
2676 return $filteredTriplets;
2680 * Cleanup a partially moved array of triplets by deleting the target
2681 * files. Called if something went wrong half way.
2683 function cleanupTarget( $triplets ) {
2684 // Create dest pairs from the triplets
2685 $pairs = array();
2686 foreach ( $triplets as $triplet ) {
2687 // $triplet: (old source virtual URL, dst zone, dest rel)
2688 $pairs[] = array( $triplet[1], $triplet[2] );
2691 $this->file->repo->cleanupBatch( $pairs );
2695 * Cleanup a fully moved array of triplets by deleting the source files.
2696 * Called at the end of the move process if everything else went ok.
2698 function cleanupSource( $triplets ) {
2699 // Create source file names from the triplets
2700 $files = array();
2701 foreach ( $triplets as $triplet ) {
2702 $files[] = $triplet[0];
2705 $this->file->repo->cleanupBatch( $files );