Merge "Capitalized bullet points and updated last sentence to say MediaWiki instead...
[lhc/web/wiklou.git] / includes / filerepo / file / LocalFile.php
1 <?php
2 /**
3 * Local file in the wiki's own database.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup FileAbstraction
22 */
23
24 /**
25 * Bump this number when serialized cache records may be incompatible.
26 */
27 define( 'MW_FILE_VERSION', 9 );
28
29 /**
30 * Class to represent a local file in the wiki's own database
31 *
32 * Provides methods to retrieve paths (physical, logical, URL),
33 * to generate image thumbnails or for uploading.
34 *
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:
38 *
39 * RepoGroup::singleton()->getLocalRepo()->newFile( $title );
40 *
41 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
42 * in most cases.
43 *
44 * @ingroup FileAbstraction
45 */
46 class LocalFile extends File {
47 const CACHE_FIELD_MAX_LEN = 1000;
48
49 /**#@+
50 * @private
51 */
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
77
78 /**#@-*/
79
80 /**
81 * @var LocalRepo
82 */
83 var $repo;
84
85 protected $repoClass = 'LocalRepo';
86
87 const LOAD_ALL = 1; // integer; load all the lazy fields too (like metadata)
88
89 /**
90 * Create a LocalFile from a title
91 * Do not call this except from inside a repo class.
92 *
93 * Note: $unused param is only here to avoid an E_STRICT
94 *
95 * @param $title
96 * @param $repo
97 * @param $unused
98 *
99 * @return LocalFile
100 */
101 static function newFromTitle( $title, $repo, $unused = null ) {
102 return new self( $title, $repo );
103 }
104
105 /**
106 * Create a LocalFile from a title
107 * Do not call this except from inside a repo class.
108 *
109 * @param $row
110 * @param $repo
111 *
112 * @return LocalFile
113 */
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 );
118
119 return $file;
120 }
121
122 /**
123 * Create a LocalFile from a SHA-1 key
124 * Do not call this except from inside a repo class.
125 *
126 * @param string $sha1 base-36 SHA-1
127 * @param $repo LocalRepo
128 * @param string|bool $timestamp MW_timestamp (optional)
129 *
130 * @return bool|LocalFile
131 */
132 static function newFromKey( $sha1, $repo, $timestamp = false ) {
133 $dbr = $repo->getSlaveDB();
134
135 $conds = array( 'img_sha1' => $sha1 );
136 if ( $timestamp ) {
137 $conds['img_timestamp'] = $dbr->timestamp( $timestamp );
138 }
139
140 $row = $dbr->selectRow( 'image', self::selectFields(), $conds, __METHOD__ );
141 if ( $row ) {
142 return self::newFromRow( $row, $repo );
143 } else {
144 return false;
145 }
146 }
147
148 /**
149 * Fields in the image table
150 * @return array
151 */
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',
168 );
169 }
170
171 /**
172 * Constructor.
173 * Do not call this except from inside a repo class.
174 */
175 function __construct( $title, $repo ) {
176 parent::__construct( $title, $repo );
177
178 $this->metadata = '';
179 $this->historyLine = 0;
180 $this->historyRes = null;
181 $this->dataLoaded = false;
182 $this->extraDataLoaded = false;
183
184 $this->assertRepoDefined();
185 $this->assertTitleDefined();
186 }
187
188 /**
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
192 */
193 function getCacheKey() {
194 $hashedName = md5( $this->getName() );
195
196 return $this->repo->getSharedCacheKey( 'file', $hashedName );
197 }
198
199 /**
200 * Try to load file metadata from memcached. Returns true on success.
201 * @return bool
202 */
203 function loadFromCache() {
204 global $wgMemc;
205
206 wfProfileIn( __METHOD__ );
207 $this->dataLoaded = false;
208 $this->extraDataLoaded = false;
209 $key = $this->getCacheKey();
210
211 if ( !$key ) {
212 wfProfileOut( __METHOD__ );
213 return false;
214 }
215
216 $cachedValues = $wgMemc->get( $key );
217
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 );
224 }
225 $this->dataLoaded = true;
226 $this->extraDataLoaded = true;
227 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
228 $this->extraDataLoaded = $this->extraDataLoaded && isset( $cachedValues[$field] );
229 }
230 }
231
232 if ( $this->dataLoaded ) {
233 wfIncrStats( 'image_cache_hit' );
234 } else {
235 wfIncrStats( 'image_cache_miss' );
236 }
237
238 wfProfileOut( __METHOD__ );
239 return $this->dataLoaded;
240 }
241
242 /**
243 * Save the file metadata to memcached
244 */
245 function saveToCache() {
246 global $wgMemc;
247
248 $this->load();
249 $key = $this->getCacheKey();
250
251 if ( !$key ) {
252 return;
253 }
254
255 $fields = $this->getCacheFields( '' );
256 $cache = array( 'version' => MW_FILE_VERSION );
257 $cache['fileExists'] = $this->fileExists;
258
259 if ( $this->fileExists ) {
260 foreach ( $fields as $field ) {
261 $cache[$field] = $this->$field;
262 }
263 }
264
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
271 }
272 }
273
274 // Cache presence for 1 week and negatives for 1 day
275 $wgMemc->set( $key, $cache, $this->fileExists ? 86400 * 7 : 86400 );
276 }
277
278 /**
279 * Load metadata from the file itself
280 */
281 function loadFromFile() {
282 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
283 $this->setProps( $props );
284 }
285
286 /**
287 * @param $prefix string
288 * @return array
289 */
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();
294
295 if ( $prefix == '' ) {
296 return $fields;
297 }
298
299 if ( !isset( $results[$prefix] ) ) {
300 $prefixedFields = array();
301 foreach ( $fields as $field ) {
302 $prefixedFields[] = $prefix . $field;
303 }
304 $results[$prefix] = $prefixedFields;
305 }
306
307 return $results[$prefix];
308 }
309
310 /**
311 * @return array
312 */
313 function getLazyCacheFields( $prefix = 'img_' ) {
314 static $fields = array( 'metadata' );
315 static $results = array();
316
317 if ( $prefix == '' ) {
318 return $fields;
319 }
320
321 if ( !isset( $results[$prefix] ) ) {
322 $prefixedFields = array();
323 foreach ( $fields as $field ) {
324 $prefixedFields[] = $prefix . $field;
325 }
326 $results[$prefix] = $prefixedFields;
327 }
328
329 return $results[$prefix];
330 }
331
332 /**
333 * Load file metadata from the DB
334 */
335 function loadFromDB() {
336 # Polymorphic function name to distinguish foreign and local fetches
337 $fname = get_class( $this ) . '::' . __FUNCTION__;
338 wfProfileIn( $fname );
339
340 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
341 $this->dataLoaded = true;
342 $this->extraDataLoaded = true;
343
344 $dbr = $this->repo->getMasterDB();
345 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
346 array( 'img_name' => $this->getName() ), $fname );
347
348 if ( $row ) {
349 $this->loadFromRow( $row );
350 } else {
351 $this->fileExists = false;
352 }
353
354 wfProfileOut( $fname );
355 }
356
357 /**
358 * Load lazy file metadata from the DB.
359 * This covers fields that are sometimes not cached.
360 */
361 protected function loadExtraFromDB() {
362 # Polymorphic function name to distinguish foreign and local fetches
363 $fname = get_class( $this ) . '::' . __FUNCTION__;
364 wfProfileIn( $fname );
365
366 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
367 $this->extraDataLoaded = true;
368
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 );
373
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 );
378 }
379
380 if ( $row ) {
381 foreach ( $this->unprefixRow( $row, 'img_' ) as $name => $value ) {
382 $this->$name = $value;
383 }
384 } else {
385 wfProfileOut( $fname );
386 throw new MWException( "Could not find data for image '{$this->getName()}'." );
387 }
388
389 wfProfileOut( $fname );
390 }
391
392 /**
393 * @param Row $row
394 * @param $prefix string
395 * @return Array
396 */
397 protected function unprefixRow( $row, $prefix = 'img_' ) {
398 $array = (array)$row;
399 $prefixLength = strlen( $prefix );
400
401 // Sanity check prefix once
402 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
403 throw new MWException( __METHOD__ . ': incorrect $prefix parameter' );
404 }
405
406 $decoded = array();
407 foreach ( $array as $name => $value ) {
408 $decoded[substr( $name, $prefixLength )] = $value;
409 }
410 return $decoded;
411 }
412
413 /**
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
420 */
421 function decodeRow( $row, $prefix = 'img_' ) {
422 $decoded = $this->unprefixRow( $row, $prefix );
423
424 $decoded['timestamp'] = wfTimestamp( TS_MW, $decoded['timestamp'] );
425
426 if ( empty( $decoded['major_mime'] ) ) {
427 $decoded['mime'] = 'unknown/unknown';
428 } else {
429 if ( !$decoded['minor_mime'] ) {
430 $decoded['minor_mime'] = 'unknown';
431 }
432 $decoded['mime'] = $decoded['major_mime'] . '/' . $decoded['minor_mime'];
433 }
434
435 # Trim zero padding from char/binary field
436 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
437
438 return $decoded;
439 }
440
441 /**
442 * Load file metadata from a DB result row
443 */
444 function loadFromRow( $row, $prefix = 'img_' ) {
445 $this->dataLoaded = true;
446 $this->extraDataLoaded = true;
447
448 $array = $this->decodeRow( $row, $prefix );
449
450 foreach ( $array as $name => $value ) {
451 $this->$name = $value;
452 }
453
454 $this->fileExists = true;
455 $this->maybeUpgradeRow();
456 }
457
458 /**
459 * Load file metadata from cache or DB, unless already loaded
460 * @param integer $flags
461 */
462 function load( $flags = 0 ) {
463 if ( !$this->dataLoaded ) {
464 if ( !$this->loadFromCache() ) {
465 $this->loadFromDB();
466 $this->saveToCache();
467 }
468 $this->dataLoaded = true;
469 }
470 if ( ( $flags & self::LOAD_ALL ) && !$this->extraDataLoaded ) {
471 $this->loadExtraFromDB();
472 }
473 }
474
475 /**
476 * Upgrade a row if it needs it
477 */
478 function maybeUpgradeRow() {
479 global $wgUpdateCompatibleMetadata;
480 if ( wfReadOnly() ) {
481 return;
482 }
483
484 if ( is_null( $this->media_type ) ||
485 $this->mime == 'image/svg'
486 ) {
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 )
495 ) {
496 $this->upgradeRow();
497 $this->upgraded = true;
498 }
499 }
500 }
501 }
502
503 function getUpgraded() {
504 return $this->upgraded;
505 }
506
507 /**
508 * Fix assorted version-related problems with the image row by reloading it from the file
509 */
510 function upgradeRow() {
511 wfProfileIn( __METHOD__ );
512
513 $this->lock(); // begin
514
515 $this->loadFromFile();
516
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;
522 }
523
524 $dbw = $this->repo->getMasterDB();
525 list( $major, $minor ) = self::splitMime( $this->mime );
526
527 if ( wfReadOnly() ) {
528 wfProfileOut( __METHOD__ );
529 return;
530 }
531 wfDebug( __METHOD__ . ': upgrading ' . $this->getName() . " to the current schema\n" );
532
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,
544 ),
545 array( 'img_name' => $this->getName() ),
546 __METHOD__
547 );
548
549 $this->saveToCache();
550
551 $this->unlock(); // done
552
553 wfProfileOut( __METHOD__ );
554 }
555
556 /**
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().
560 *
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.
563 */
564 function setProps( $info ) {
565 $this->dataLoaded = true;
566 $fields = $this->getCacheFields( '' );
567 $fields[] = 'fileExists';
568
569 foreach ( $fields as $field ) {
570 if ( isset( $info[$field] ) ) {
571 $this->$field = $info[$field];
572 }
573 }
574
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 );
581 }
582 }
583
584 /** splitMime inherited */
585 /** getName inherited */
586 /** getTitle inherited */
587 /** getURL inherited */
588 /** getViewURL inherited */
589 /** getPath inherited */
590 /** isVisible inhereted */
591
592 /**
593 * @return bool
594 */
595 function isMissing() {
596 if ( $this->missing === null ) {
597 list( $fileExists ) = $this->repo->fileExists( $this->getVirtualUrl() );
598 $this->missing = !$fileExists;
599 }
600 return $this->missing;
601 }
602
603 /**
604 * Return the width of the image
605 *
606 * @param $page int
607 * @return int
608 */
609 public function getWidth( $page = 1 ) {
610 $this->load();
611
612 if ( $this->isMultipage() ) {
613 $handler = $this->getHandler();
614 if ( !$handler ) {
615 return 0;
616 }
617 $dim = $handler->getPageDimensions( $this, $page );
618 if ( $dim ) {
619 return $dim['width'];
620 } else {
621 // For non-paged media, the false goes through an
622 // intval, turning failure into 0, so do same here.
623 return 0;
624 }
625 } else {
626 return $this->width;
627 }
628 }
629
630 /**
631 * Return the height of the image
632 *
633 * @param $page int
634 * @return int
635 */
636 public function getHeight( $page = 1 ) {
637 $this->load();
638
639 if ( $this->isMultipage() ) {
640 $handler = $this->getHandler();
641 if ( !$handler ) {
642 return 0;
643 }
644 $dim = $handler->getPageDimensions( $this, $page );
645 if ( $dim ) {
646 return $dim['height'];
647 } else {
648 // For non-paged media, the false goes through an
649 // intval, turning failure into 0, so do same here.
650 return 0;
651 }
652 } else {
653 return $this->height;
654 }
655 }
656
657 /**
658 * Returns ID or name of user who uploaded the file
659 *
660 * @param string $type 'text' or 'id'
661 * @return int|string
662 */
663 function getUser( $type = 'text' ) {
664 $this->load();
665
666 if ( $type == 'text' ) {
667 return $this->user_text;
668 } elseif ( $type == 'id' ) {
669 return $this->user;
670 }
671 }
672
673 /**
674 * Get handler-specific metadata
675 * @return string
676 */
677 function getMetadata() {
678 $this->load( self::LOAD_ALL ); // large metadata is loaded in another step
679 return $this->metadata;
680 }
681
682 /**
683 * @return int
684 */
685 function getBitDepth() {
686 $this->load();
687 return $this->bits;
688 }
689
690 /**
691 * Return the size of the image file, in bytes
692 * @return int
693 */
694 public function getSize() {
695 $this->load();
696 return $this->size;
697 }
698
699 /**
700 * Returns the mime type of the file.
701 * @return string
702 */
703 function getMimeType() {
704 $this->load();
705 return $this->mime;
706 }
707
708 /**
709 * Return the type of the media in the file.
710 * Use the value returned by this function with the MEDIATYPE_xxx constants.
711 * @return string
712 */
713 function getMediaType() {
714 $this->load();
715 return $this->media_type;
716 }
717
718 /** canRender inherited */
719 /** mustRender inherited */
720 /** allowInlineDisplay inherited */
721 /** isSafeFile inherited */
722 /** isTrustedFile inherited */
723
724 /**
725 * Returns true if the file exists on disk.
726 * @return boolean Whether file exist on disk.
727 */
728 public function exists() {
729 $this->load();
730 return $this->fileExists;
731 }
732
733 /** getTransformScript inherited */
734 /** getUnscaledThumb inherited */
735 /** thumbName inherited */
736 /** createThumb inherited */
737 /** transform inherited */
738
739 /**
740 * Fix thumbnail files from 1.4 or before, with extreme prejudice
741 * @todo : do we still care about this? Perhaps a maintenance script
742 * can be made instead. Enabling this code results in a serious
743 * RTT regression for wikis without 404 handling.
744 */
745 function migrateThumbFile( $thumbName ) {
746 /* Old code for bug 2532
747 $thumbDir = $this->getThumbPath();
748 $thumbPath = "$thumbDir/$thumbName";
749 if ( is_dir( $thumbPath ) ) {
750 // Directory where file should be
751 // This happened occasionally due to broken migration code in 1.5
752 // Rename to broken-*
753 for ( $i = 0; $i < 100; $i++ ) {
754 $broken = $this->repo->getZonePath( 'public' ) . "/broken-$i-$thumbName";
755 if ( !file_exists( $broken ) ) {
756 rename( $thumbPath, $broken );
757 break;
758 }
759 }
760 // Doesn't exist anymore
761 clearstatcache();
762 }
763 */
764
765 /*
766 if ( $this->repo->fileExists( $thumbDir ) ) {
767 // Delete file where directory should be
768 $this->repo->cleanupBatch( array( $thumbDir ) );
769 }
770 */
771 }
772
773 /** getHandler inherited */
774 /** iconThumb inherited */
775 /** getLastError inherited */
776
777 /**
778 * Get all thumbnail names previously generated for this file
779 * @param string|bool $archiveName Name of an archive file, default false
780 * @return array first element is the base dir, then files in that base dir.
781 */
782 function getThumbnails( $archiveName = false ) {
783 if ( $archiveName ) {
784 $dir = $this->getArchiveThumbPath( $archiveName );
785 } else {
786 $dir = $this->getThumbPath();
787 }
788
789 $backend = $this->repo->getBackend();
790 $files = array( $dir );
791 try {
792 $iterator = $backend->getFileList( array( 'dir' => $dir ) );
793 foreach ( $iterator as $file ) {
794 $files[] = $file;
795 }
796 } catch ( FileBackendError $e ) {} // suppress (bug 54674)
797
798 return $files;
799 }
800
801 /**
802 * Refresh metadata in memcached, but don't touch thumbnails or squid
803 */
804 function purgeMetadataCache() {
805 $this->loadFromDB();
806 $this->saveToCache();
807 $this->purgeHistory();
808 }
809
810 /**
811 * Purge the shared history (OldLocalFile) cache.
812 *
813 * @note This used to purge old thumbnails as well.
814 */
815 function purgeHistory() {
816 global $wgMemc;
817
818 $hashedName = md5( $this->getName() );
819 $oldKey = $this->repo->getSharedCacheKey( 'oldfile', $hashedName );
820
821 if ( $oldKey ) {
822 $wgMemc->delete( $oldKey );
823 }
824 }
825
826 /**
827 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the squid.
828 *
829 * @param Array $options An array potentially with the key forThumbRefresh.
830 *
831 * @note This used to purge old thumbnails by default as well, but doesn't anymore.
832 */
833 function purgeCache( $options = array() ) {
834 wfProfileIn( __METHOD__ );
835 // Refresh metadata cache
836 $this->purgeMetadataCache();
837
838 // Delete thumbnails
839 $this->purgeThumbnails( $options );
840
841 // Purge squid cache for this file
842 SquidUpdate::purge( array( $this->getURL() ) );
843 wfProfileOut( __METHOD__ );
844 }
845
846 /**
847 * Delete cached transformed files for an archived version only.
848 * @param string $archiveName name of the archived file
849 */
850 function purgeOldThumbnails( $archiveName ) {
851 global $wgUseSquid;
852 wfProfileIn( __METHOD__ );
853
854 // Get a list of old thumbnails and URLs
855 $files = $this->getThumbnails( $archiveName );
856 $dir = array_shift( $files );
857 $this->purgeThumbList( $dir, $files );
858
859 // Purge any custom thumbnail caches
860 wfRunHooks( 'LocalFilePurgeThumbnails', array( $this, $archiveName ) );
861
862 // Purge the squid
863 if ( $wgUseSquid ) {
864 $urls = array();
865 foreach ( $files as $file ) {
866 $urls[] = $this->getArchiveThumbUrl( $archiveName, $file );
867 }
868 SquidUpdate::purge( $urls );
869 }
870
871 wfProfileOut( __METHOD__ );
872 }
873
874 /**
875 * Delete cached transformed files for the current version only.
876 */
877 function purgeThumbnails( $options = array() ) {
878 global $wgUseSquid;
879 wfProfileIn( __METHOD__ );
880
881 // Delete thumbnails
882 $files = $this->getThumbnails();
883 // Always purge all files from squid regardless of handler filters
884 if ( $wgUseSquid ) {
885 $urls = array();
886 foreach ( $files as $file ) {
887 $urls[] = $this->getThumbUrl( $file );
888 }
889 array_shift( $urls ); // don't purge directory
890 }
891
892 // Give media handler a chance to filter the file purge list
893 if ( !empty( $options['forThumbRefresh'] ) ) {
894 $handler = $this->getHandler();
895 if ( $handler ) {
896 $handler->filterThumbnailPurgeList( $files, $options );
897 }
898 }
899
900 $dir = array_shift( $files );
901 $this->purgeThumbList( $dir, $files );
902
903 // Purge any custom thumbnail caches
904 wfRunHooks( 'LocalFilePurgeThumbnails', array( $this, false ) );
905
906 // Purge the squid
907 if ( $wgUseSquid ) {
908 SquidUpdate::purge( $urls );
909 }
910
911 wfProfileOut( __METHOD__ );
912 }
913
914 /**
915 * Delete a list of thumbnails visible at urls
916 * @param string $dir base dir of the files.
917 * @param array $files of strings: relative filenames (to $dir)
918 */
919 protected function purgeThumbList( $dir, $files ) {
920 $fileListDebug = strtr(
921 var_export( $files, true ),
922 array( "\n" => '' )
923 );
924 wfDebug( __METHOD__ . ": $fileListDebug\n" );
925
926 $purgeList = array();
927 foreach ( $files as $file ) {
928 # Check that the base file name is part of the thumb name
929 # This is a basic sanity check to avoid erasing unrelated directories
930 if ( strpos( $file, $this->getName() ) !== false
931 || strpos( $file, "-thumbnail" ) !== false // "short" thumb name
932 ) {
933 $purgeList[] = "{$dir}/{$file}";
934 }
935 }
936
937 # Delete the thumbnails
938 $this->repo->quickPurgeBatch( $purgeList );
939 # Clear out the thumbnail directory if empty
940 $this->repo->quickCleanDir( $dir );
941 }
942
943 /** purgeDescription inherited */
944 /** purgeEverything inherited */
945
946 /**
947 * @param $limit null
948 * @param $start null
949 * @param $end null
950 * @param $inc bool
951 * @return array
952 */
953 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
954 $dbr = $this->repo->getSlaveDB();
955 $tables = array( 'oldimage' );
956 $fields = OldLocalFile::selectFields();
957 $conds = $opts = $join_conds = array();
958 $eq = $inc ? '=' : '';
959 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title->getDBkey() );
960
961 if ( $start ) {
962 $conds[] = "oi_timestamp <$eq " . $dbr->addQuotes( $dbr->timestamp( $start ) );
963 }
964
965 if ( $end ) {
966 $conds[] = "oi_timestamp >$eq " . $dbr->addQuotes( $dbr->timestamp( $end ) );
967 }
968
969 if ( $limit ) {
970 $opts['LIMIT'] = $limit;
971 }
972
973 // Search backwards for time > x queries
974 $order = ( !$start && $end !== null ) ? 'ASC' : 'DESC';
975 $opts['ORDER BY'] = "oi_timestamp $order";
976 $opts['USE INDEX'] = array( 'oldimage' => 'oi_name_timestamp' );
977
978 wfRunHooks( 'LocalFile::getHistory', array( &$this, &$tables, &$fields,
979 &$conds, &$opts, &$join_conds ) );
980
981 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $opts, $join_conds );
982 $r = array();
983
984 foreach ( $res as $row ) {
985 if ( $this->repo->oldFileFromRowFactory ) {
986 $r[] = call_user_func( $this->repo->oldFileFromRowFactory, $row, $this->repo );
987 } else {
988 $r[] = OldLocalFile::newFromRow( $row, $this->repo );
989 }
990 }
991
992 if ( $order == 'ASC' ) {
993 $r = array_reverse( $r ); // make sure it ends up descending
994 }
995
996 return $r;
997 }
998
999 /**
1000 * Return the history of this file, line by line.
1001 * starts with current version, then old versions.
1002 * uses $this->historyLine to check which line to return:
1003 * 0 return line for current version
1004 * 1 query for old versions, return first one
1005 * 2, ... return next old version from above query
1006 * @return bool
1007 */
1008 public function nextHistoryLine() {
1009 # Polymorphic function name to distinguish foreign and local fetches
1010 $fname = get_class( $this ) . '::' . __FUNCTION__;
1011
1012 $dbr = $this->repo->getSlaveDB();
1013
1014 if ( $this->historyLine == 0 ) {// called for the first time, return line from cur
1015 $this->historyRes = $dbr->select( 'image',
1016 array(
1017 '*',
1018 "'' AS oi_archive_name",
1019 '0 as oi_deleted',
1020 'img_sha1'
1021 ),
1022 array( 'img_name' => $this->title->getDBkey() ),
1023 $fname
1024 );
1025
1026 if ( 0 == $dbr->numRows( $this->historyRes ) ) {
1027 $this->historyRes = null;
1028 return false;
1029 }
1030 } elseif ( $this->historyLine == 1 ) {
1031 $this->historyRes = $dbr->select( 'oldimage', '*',
1032 array( 'oi_name' => $this->title->getDBkey() ),
1033 $fname,
1034 array( 'ORDER BY' => 'oi_timestamp DESC' )
1035 );
1036 }
1037 $this->historyLine ++;
1038
1039 return $dbr->fetchObject( $this->historyRes );
1040 }
1041
1042 /**
1043 * Reset the history pointer to the first element of the history
1044 */
1045 public function resetHistory() {
1046 $this->historyLine = 0;
1047
1048 if ( !is_null( $this->historyRes ) ) {
1049 $this->historyRes = null;
1050 }
1051 }
1052
1053 /** getHashPath inherited */
1054 /** getRel inherited */
1055 /** getUrlRel inherited */
1056 /** getArchiveRel inherited */
1057 /** getArchivePath inherited */
1058 /** getThumbPath inherited */
1059 /** getArchiveUrl inherited */
1060 /** getThumbUrl inherited */
1061 /** getArchiveVirtualUrl inherited */
1062 /** getThumbVirtualUrl inherited */
1063 /** isHashed inherited */
1064
1065 /**
1066 * Upload a file and record it in the DB
1067 * @param string $srcPath source storage path, virtual URL, or filesystem path
1068 * @param string $comment upload description
1069 * @param string $pageText text to use for the new description page,
1070 * if a new description page is created
1071 * @param $flags Integer|bool: flags for publish()
1072 * @param array|bool $props File properties, if known. This can be used to reduce the
1073 * upload time when uploading virtual URLs for which the file info
1074 * is already known
1075 * @param string|bool $timestamp timestamp for img_timestamp, or false to use the current time
1076 * @param $user User|null: User object or null to use $wgUser
1077 *
1078 * @return FileRepoStatus object. On success, the value member contains the
1079 * archive name, or an empty string if it was a new file.
1080 */
1081 function upload( $srcPath, $comment, $pageText, $flags = 0, $props = false, $timestamp = false, $user = null ) {
1082 global $wgContLang;
1083
1084 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1085 return $this->readOnlyFatalStatus();
1086 }
1087
1088 if ( !$props ) {
1089 wfProfileIn( __METHOD__ . '-getProps' );
1090 if ( $this->repo->isVirtualUrl( $srcPath )
1091 || FileBackend::isStoragePath( $srcPath ) )
1092 {
1093 $props = $this->repo->getFileProps( $srcPath );
1094 } else {
1095 $props = FSFile::getPropsFromPath( $srcPath );
1096 }
1097 wfProfileOut( __METHOD__ . '-getProps' );
1098 }
1099
1100 $options = array();
1101 $handler = MediaHandler::getHandler( $props['mime'] );
1102 if ( $handler ) {
1103 $options['headers'] = $handler->getStreamHeaders( $props['metadata'] );
1104 } else {
1105 $options['headers'] = array();
1106 }
1107
1108 // Trim spaces on user supplied text
1109 $comment = trim( $comment );
1110
1111 // truncate nicely or the DB will do it for us
1112 // non-nicely (dangling multi-byte chars, non-truncated version in cache).
1113 $comment = $wgContLang->truncate( $comment, 255 );
1114 $this->lock(); // begin
1115 $status = $this->publish( $srcPath, $flags, $options );
1116
1117 if ( $status->successCount > 0 ) {
1118 # Essentially we are displacing any existing current file and saving
1119 # a new current file at the old location. If just the first succeeded,
1120 # we still need to displace the current DB entry and put in a new one.
1121 if ( !$this->recordUpload2( $status->value, $comment, $pageText, $props, $timestamp, $user ) ) {
1122 $status->fatal( 'filenotfound', $srcPath );
1123 }
1124 }
1125
1126 $this->unlock(); // done
1127
1128 return $status;
1129 }
1130
1131 /**
1132 * Record a file upload in the upload log and the image table
1133 * @param $oldver
1134 * @param $desc string
1135 * @param $license string
1136 * @param $copyStatus string
1137 * @param $source string
1138 * @param $watch bool
1139 * @param $timestamp string|bool
1140 * @param $user User object or null to use $wgUser
1141 * @return bool
1142 */
1143 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
1144 $watch = false, $timestamp = false, User $user = null )
1145 {
1146 if ( !$user ) {
1147 global $wgUser;
1148 $user = $wgUser;
1149 }
1150
1151 $pageText = SpecialUpload::getInitialPageText( $desc, $license, $copyStatus, $source );
1152
1153 if ( !$this->recordUpload2( $oldver, $desc, $pageText, false, $timestamp, $user ) ) {
1154 return false;
1155 }
1156
1157 if ( $watch ) {
1158 $user->addWatch( $this->getTitle() );
1159 }
1160 return true;
1161 }
1162
1163 /**
1164 * Record a file upload in the upload log and the image table
1165 * @param $oldver
1166 * @param $comment string
1167 * @param $pageText string
1168 * @param $props bool|array
1169 * @param $timestamp bool|string
1170 * @param $user null|User
1171 * @return bool
1172 */
1173 function recordUpload2(
1174 $oldver, $comment, $pageText, $props = false, $timestamp = false, $user = null
1175 ) {
1176 wfProfileIn( __METHOD__ );
1177
1178 if ( is_null( $user ) ) {
1179 global $wgUser;
1180 $user = $wgUser;
1181 }
1182
1183 $dbw = $this->repo->getMasterDB();
1184 $dbw->begin( __METHOD__ );
1185
1186 if ( !$props ) {
1187 wfProfileIn( __METHOD__ . '-getProps' );
1188 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
1189 wfProfileOut( __METHOD__ . '-getProps' );
1190 }
1191
1192 if ( $timestamp === false ) {
1193 $timestamp = $dbw->timestamp();
1194 }
1195
1196 $props['description'] = $comment;
1197 $props['user'] = $user->getId();
1198 $props['user_text'] = $user->getName();
1199 $props['timestamp'] = wfTimestamp( TS_MW, $timestamp ); // DB -> TS_MW
1200 $this->setProps( $props );
1201
1202 # Fail now if the file isn't there
1203 if ( !$this->fileExists ) {
1204 wfDebug( __METHOD__ . ": File " . $this->getRel() . " went missing!\n" );
1205 wfProfileOut( __METHOD__ );
1206 return false;
1207 }
1208
1209 $reupload = false;
1210
1211 # Test to see if the row exists using INSERT IGNORE
1212 # This avoids race conditions by locking the row until the commit, and also
1213 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
1214 $dbw->insert( 'image',
1215 array(
1216 'img_name' => $this->getName(),
1217 'img_size' => $this->size,
1218 'img_width' => intval( $this->width ),
1219 'img_height' => intval( $this->height ),
1220 'img_bits' => $this->bits,
1221 'img_media_type' => $this->media_type,
1222 'img_major_mime' => $this->major_mime,
1223 'img_minor_mime' => $this->minor_mime,
1224 'img_timestamp' => $timestamp,
1225 'img_description' => $comment,
1226 'img_user' => $user->getId(),
1227 'img_user_text' => $user->getName(),
1228 'img_metadata' => $this->metadata,
1229 'img_sha1' => $this->sha1
1230 ),
1231 __METHOD__,
1232 'IGNORE'
1233 );
1234 if ( $dbw->affectedRows() == 0 ) {
1235 # (bug 34993) Note: $oldver can be empty here, if the previous
1236 # version of the file was broken. Allow registration of the new
1237 # version to continue anyway, because that's better than having
1238 # an image that's not fixable by user operations.
1239
1240 $reupload = true;
1241 # Collision, this is an update of a file
1242 # Insert previous contents into oldimage
1243 $dbw->insertSelect( 'oldimage', 'image',
1244 array(
1245 'oi_name' => 'img_name',
1246 'oi_archive_name' => $dbw->addQuotes( $oldver ),
1247 'oi_size' => 'img_size',
1248 'oi_width' => 'img_width',
1249 'oi_height' => 'img_height',
1250 'oi_bits' => 'img_bits',
1251 'oi_timestamp' => 'img_timestamp',
1252 'oi_description' => 'img_description',
1253 'oi_user' => 'img_user',
1254 'oi_user_text' => 'img_user_text',
1255 'oi_metadata' => 'img_metadata',
1256 'oi_media_type' => 'img_media_type',
1257 'oi_major_mime' => 'img_major_mime',
1258 'oi_minor_mime' => 'img_minor_mime',
1259 'oi_sha1' => 'img_sha1'
1260 ),
1261 array( 'img_name' => $this->getName() ),
1262 __METHOD__
1263 );
1264
1265 # Update the current image row
1266 $dbw->update( 'image',
1267 array( /* SET */
1268 'img_size' => $this->size,
1269 'img_width' => intval( $this->width ),
1270 'img_height' => intval( $this->height ),
1271 'img_bits' => $this->bits,
1272 'img_media_type' => $this->media_type,
1273 'img_major_mime' => $this->major_mime,
1274 'img_minor_mime' => $this->minor_mime,
1275 'img_timestamp' => $timestamp,
1276 'img_description' => $comment,
1277 'img_user' => $user->getId(),
1278 'img_user_text' => $user->getName(),
1279 'img_metadata' => $this->metadata,
1280 'img_sha1' => $this->sha1
1281 ),
1282 array( 'img_name' => $this->getName() ),
1283 __METHOD__
1284 );
1285 } else {
1286 # This is a new file, so update the image count
1287 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => 1 ) ) );
1288 }
1289
1290 $descTitle = $this->getTitle();
1291 $wikiPage = new WikiFilePage( $descTitle );
1292 $wikiPage->setFile( $this );
1293
1294 # Add the log entry
1295 $action = $reupload ? 'overwrite' : 'upload';
1296
1297 $logEntry = new ManualLogEntry( 'upload', $action );
1298 $logEntry->setPerformer( $user );
1299 $logEntry->setComment( $comment );
1300 $logEntry->setTarget( $descTitle );
1301
1302 // Allow people using the api to associate log entries with the upload.
1303 // Log has a timestamp, but sometimes different from upload timestamp.
1304 $logEntry->setParameters(
1305 array(
1306 'img_sha1' => $this->sha1,
1307 'img_timestamp' => $timestamp,
1308 )
1309 );
1310 // Note we keep $logId around since during new image
1311 // creation, page doesn't exist yet, so log_page = 0
1312 // but we want it to point to the page we're making,
1313 // so we later modify the log entry.
1314 // For a similar reason, we avoid making an RC entry
1315 // now and wait until the page exists.
1316 $logId = $logEntry->insert();
1317
1318 $exists = $descTitle->exists();
1319 if ( $exists ) {
1320 // Page exists, do RC entry now (otherwise we wait for later).
1321 $logEntry->publish( $logId );
1322 }
1323 wfProfileIn( __METHOD__ . '-edit' );
1324
1325 if ( $exists ) {
1326 # Create a null revision
1327 $latest = $descTitle->getLatestRevID();
1328 $editSummary = LogFormatter::newFromEntry( $logEntry )->getPlainActionText();
1329
1330 $nullRevision = Revision::newNullRevision(
1331 $dbw,
1332 $descTitle->getArticleID(),
1333 $editSummary,
1334 false
1335 );
1336 if ( !is_null( $nullRevision ) ) {
1337 $nullRevision->insertOn( $dbw );
1338
1339 wfRunHooks( 'NewRevisionFromEditComplete', array( $wikiPage, $nullRevision, $latest, $user ) );
1340 $wikiPage->updateRevisionOn( $dbw, $nullRevision );
1341 }
1342 }
1343
1344 # Commit the transaction now, in case something goes wrong later
1345 # The most important thing is that files don't get lost, especially archives
1346 # NOTE: once we have support for nested transactions, the commit may be moved
1347 # to after $wikiPage->doEdit has been called.
1348 $dbw->commit( __METHOD__ );
1349
1350 if ( $exists ) {
1351 # Invalidate the cache for the description page
1352 $descTitle->invalidateCache();
1353 $descTitle->purgeSquid();
1354 } else {
1355 # New file; create the description page.
1356 # There's already a log entry, so don't make a second RC entry
1357 # Squid and file cache for the description page are purged by doEditContent.
1358 $content = ContentHandler::makeContent( $pageText, $descTitle );
1359 $status = $wikiPage->doEditContent( $content, $comment, EDIT_NEW | EDIT_SUPPRESS_RC, false, $user );
1360
1361 $dbw->begin( __METHOD__ ); // XXX; doEdit() uses a transaction
1362 // Now that the page exists, make an RC entry.
1363 $logEntry->publish( $logId );
1364 if ( isset( $status->value['revision'] ) ) {
1365 $dbw->update( 'logging',
1366 array( 'log_page' => $status->value['revision']->getPage() ),
1367 array( 'log_id' => $logId ),
1368 __METHOD__
1369 );
1370 }
1371 $dbw->commit( __METHOD__ ); // commit before anything bad can happen
1372 }
1373
1374
1375 wfProfileOut( __METHOD__ . '-edit' );
1376
1377 # Save to cache and purge the squid
1378 # We shall not saveToCache before the commit since otherwise
1379 # in case of a rollback there is an usable file from memcached
1380 # which in fact doesn't really exist (bug 24978)
1381 $this->saveToCache();
1382
1383 if ( $reupload ) {
1384 # Delete old thumbnails
1385 wfProfileIn( __METHOD__ . '-purge' );
1386 $this->purgeThumbnails();
1387 wfProfileOut( __METHOD__ . '-purge' );
1388
1389 # Remove the old file from the squid cache
1390 SquidUpdate::purge( array( $this->getURL() ) );
1391 }
1392
1393 # Hooks, hooks, the magic of hooks...
1394 wfProfileIn( __METHOD__ . '-hooks' );
1395 wfRunHooks( 'FileUpload', array( $this, $reupload, $descTitle->exists() ) );
1396 wfProfileOut( __METHOD__ . '-hooks' );
1397
1398 # Invalidate cache for all pages using this file
1399 $update = new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' );
1400 $update->doUpdate();
1401 if ( !$reupload ) {
1402 LinksUpdate::queueRecursiveJobsForTable( $this->getTitle(), 'imagelinks' );
1403 }
1404
1405 # Invalidate cache for all pages that redirects on this page
1406 $redirs = $this->getTitle()->getRedirectsHere();
1407
1408 foreach ( $redirs as $redir ) {
1409 if ( !$reupload && $redir->getNamespace() === NS_FILE ) {
1410 LinksUpdate::queueRecursiveJobsForTable( $redir, 'imagelinks' );
1411 }
1412 $update = new HTMLCacheUpdate( $redir, 'imagelinks' );
1413 $update->doUpdate();
1414 }
1415
1416 wfProfileOut( __METHOD__ );
1417 return true;
1418 }
1419
1420 /**
1421 * Move or copy a file to its public location. If a file exists at the
1422 * destination, move it to an archive. Returns a FileRepoStatus object with
1423 * the archive name in the "value" member on success.
1424 *
1425 * The archive name should be passed through to recordUpload for database
1426 * registration.
1427 *
1428 * @param string $srcPath local filesystem path to the source image
1429 * @param $flags Integer: a bitwise combination of:
1430 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1431 * @param array $options Optional additional parameters
1432 * @return FileRepoStatus object. On success, the value member contains the
1433 * archive name, or an empty string if it was a new file.
1434 */
1435 function publish( $srcPath, $flags = 0, array $options = array() ) {
1436 return $this->publishTo( $srcPath, $this->getRel(), $flags, $options );
1437 }
1438
1439 /**
1440 * Move or copy a file to a specified location. Returns a FileRepoStatus
1441 * object with the archive name in the "value" member on success.
1442 *
1443 * The archive name should be passed through to recordUpload for database
1444 * registration.
1445 *
1446 * @param string $srcPath local filesystem path to the source image
1447 * @param string $dstRel target relative path
1448 * @param $flags Integer: a bitwise combination of:
1449 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1450 * @param array $options Optional additional parameters
1451 * @return FileRepoStatus object. On success, the value member contains the
1452 * archive name, or an empty string if it was a new file.
1453 */
1454 function publishTo( $srcPath, $dstRel, $flags = 0, array $options = array() ) {
1455 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1456 return $this->readOnlyFatalStatus();
1457 }
1458
1459 $this->lock(); // begin
1460
1461 $archiveName = wfTimestamp( TS_MW ) . '!' . $this->getName();
1462 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
1463 $flags = $flags & File::DELETE_SOURCE ? LocalRepo::DELETE_SOURCE : 0;
1464 $status = $this->repo->publish( $srcPath, $dstRel, $archiveRel, $flags, $options );
1465
1466 if ( $status->value == 'new' ) {
1467 $status->value = '';
1468 } else {
1469 $status->value = $archiveName;
1470 }
1471
1472 $this->unlock(); // done
1473
1474 return $status;
1475 }
1476
1477 /** getLinksTo inherited */
1478 /** getExifData inherited */
1479 /** isLocal inherited */
1480 /** wasDeleted inherited */
1481
1482 /**
1483 * Move file to the new title
1484 *
1485 * Move current, old version and all thumbnails
1486 * to the new filename. Old file is deleted.
1487 *
1488 * Cache purging is done; checks for validity
1489 * and logging are caller's responsibility
1490 *
1491 * @param $target Title New file name
1492 * @return FileRepoStatus object.
1493 */
1494 function move( $target ) {
1495 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1496 return $this->readOnlyFatalStatus();
1497 }
1498
1499 wfDebugLog( 'imagemove', "Got request to move {$this->name} to " . $target->getText() );
1500 $batch = new LocalFileMoveBatch( $this, $target );
1501
1502 $this->lock(); // begin
1503 $batch->addCurrent();
1504 $archiveNames = $batch->addOlds();
1505 $status = $batch->execute();
1506 $this->unlock(); // done
1507
1508 wfDebugLog( 'imagemove', "Finished moving {$this->name}" );
1509
1510 $this->purgeEverything();
1511 foreach ( $archiveNames as $archiveName ) {
1512 $this->purgeOldThumbnails( $archiveName );
1513 }
1514 if ( $status->isOK() ) {
1515 // Now switch the object
1516 $this->title = $target;
1517 // Force regeneration of the name and hashpath
1518 unset( $this->name );
1519 unset( $this->hashPath );
1520 // Purge the new image
1521 $this->purgeEverything();
1522 }
1523
1524 return $status;
1525 }
1526
1527 /**
1528 * Delete all versions of the file.
1529 *
1530 * Moves the files into an archive directory (or deletes them)
1531 * and removes the database rows.
1532 *
1533 * Cache purging is done; logging is caller's responsibility.
1534 *
1535 * @param $reason
1536 * @param $suppress
1537 * @return FileRepoStatus object.
1538 */
1539 function delete( $reason, $suppress = false ) {
1540 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1541 return $this->readOnlyFatalStatus();
1542 }
1543
1544 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1545
1546 $this->lock(); // begin
1547 $batch->addCurrent();
1548 # Get old version relative paths
1549 $archiveNames = $batch->addOlds();
1550 $status = $batch->execute();
1551 $this->unlock(); // done
1552
1553 if ( $status->isOK() ) {
1554 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => -1 ) ) );
1555 }
1556
1557 // Hack: the lock()/unlock() pair is nested in a transaction so the locking is not
1558 // tied to BEGIN/COMMIT. To avoid slow purges in the transaction, move them outside.
1559 $file = $this;
1560 $this->getRepo()->getMasterDB()->onTransactionIdle(
1561 function() use ( $file, $archiveNames ) {
1562 global $wgUseSquid;
1563
1564 $file->purgeEverything();
1565 foreach ( $archiveNames as $archiveName ) {
1566 $file->purgeOldThumbnails( $archiveName );
1567 }
1568
1569 if ( $wgUseSquid ) {
1570 // Purge the squid
1571 $purgeUrls = array();
1572 foreach ( $archiveNames as $archiveName ) {
1573 $purgeUrls[] = $file->getArchiveUrl( $archiveName );
1574 }
1575 SquidUpdate::purge( $purgeUrls );
1576 }
1577 }
1578 );
1579
1580 return $status;
1581 }
1582
1583 /**
1584 * Delete an old version of the file.
1585 *
1586 * Moves the file into an archive directory (or deletes it)
1587 * and removes the database row.
1588 *
1589 * Cache purging is done; logging is caller's responsibility.
1590 *
1591 * @param $archiveName String
1592 * @param $reason String
1593 * @param $suppress Boolean
1594 * @throws MWException or FSException on database or file store failure
1595 * @return FileRepoStatus object.
1596 */
1597 function deleteOld( $archiveName, $reason, $suppress = false ) {
1598 global $wgUseSquid;
1599 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1600 return $this->readOnlyFatalStatus();
1601 }
1602
1603 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1604
1605 $this->lock(); // begin
1606 $batch->addOld( $archiveName );
1607 $status = $batch->execute();
1608 $this->unlock(); // done
1609
1610 $this->purgeOldThumbnails( $archiveName );
1611 if ( $status->isOK() ) {
1612 $this->purgeDescription();
1613 $this->purgeHistory();
1614 }
1615
1616 if ( $wgUseSquid ) {
1617 // Purge the squid
1618 SquidUpdate::purge( array( $this->getArchiveUrl( $archiveName ) ) );
1619 }
1620
1621 return $status;
1622 }
1623
1624 /**
1625 * Restore all or specified deleted revisions to the given file.
1626 * Permissions and logging are left to the caller.
1627 *
1628 * May throw database exceptions on error.
1629 *
1630 * @param array $versions set of record ids of deleted items to restore,
1631 * or empty to restore all revisions.
1632 * @param $unsuppress Boolean
1633 * @return FileRepoStatus
1634 */
1635 function restore( $versions = array(), $unsuppress = false ) {
1636 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1637 return $this->readOnlyFatalStatus();
1638 }
1639
1640 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
1641
1642 $this->lock(); // begin
1643 if ( !$versions ) {
1644 $batch->addAll();
1645 } else {
1646 $batch->addIds( $versions );
1647 }
1648 $status = $batch->execute();
1649 if ( $status->isGood() ) {
1650 $cleanupStatus = $batch->cleanup();
1651 $cleanupStatus->successCount = 0;
1652 $cleanupStatus->failCount = 0;
1653 $status->merge( $cleanupStatus );
1654 }
1655 $this->unlock(); // done
1656
1657 return $status;
1658 }
1659
1660 /** isMultipage inherited */
1661 /** pageCount inherited */
1662 /** scaleHeight inherited */
1663 /** getImageSize inherited */
1664
1665 /**
1666 * Get the URL of the file description page.
1667 * @return String
1668 */
1669 function getDescriptionUrl() {
1670 return $this->title->getLocalURL();
1671 }
1672
1673 /**
1674 * Get the HTML text of the description page
1675 * This is not used by ImagePage for local files, since (among other things)
1676 * it skips the parser cache.
1677 *
1678 * @param $lang Language What language to get description in (Optional)
1679 * @return bool|mixed
1680 */
1681 function getDescriptionText( $lang = null ) {
1682 $revision = Revision::newFromTitle( $this->title, false, Revision::READ_NORMAL );
1683 if ( !$revision ) {
1684 return false;
1685 }
1686 $content = $revision->getContent();
1687 if ( !$content ) {
1688 return false;
1689 }
1690 $pout = $content->getParserOutput( $this->title, null, new ParserOptions( null, $lang ) );
1691 return $pout->getText();
1692 }
1693
1694 /**
1695 * @return string
1696 */
1697 function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
1698 $this->load();
1699 if ( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_COMMENT ) ) {
1700 return '';
1701 } elseif ( $audience == self::FOR_THIS_USER
1702 && !$this->userCan( self::DELETED_COMMENT, $user ) )
1703 {
1704 return '';
1705 } else {
1706 return $this->description;
1707 }
1708 }
1709
1710 /**
1711 * @return bool|string
1712 */
1713 function getTimestamp() {
1714 $this->load();
1715 return $this->timestamp;
1716 }
1717
1718 /**
1719 * @return string
1720 */
1721 function getSha1() {
1722 $this->load();
1723 // Initialise now if necessary
1724 if ( $this->sha1 == '' && $this->fileExists ) {
1725 $this->lock(); // begin
1726
1727 $this->sha1 = $this->repo->getFileSha1( $this->getPath() );
1728 if ( !wfReadOnly() && strval( $this->sha1 ) != '' ) {
1729 $dbw = $this->repo->getMasterDB();
1730 $dbw->update( 'image',
1731 array( 'img_sha1' => $this->sha1 ),
1732 array( 'img_name' => $this->getName() ),
1733 __METHOD__ );
1734 $this->saveToCache();
1735 }
1736
1737 $this->unlock(); // done
1738 }
1739
1740 return $this->sha1;
1741 }
1742
1743 /**
1744 * @return bool Whether to cache in RepoGroup (this avoids OOMs)
1745 */
1746 function isCacheable() {
1747 $this->load();
1748 // If extra data (metadata) was not loaded then it must have been large
1749 return $this->extraDataLoaded
1750 && strlen( serialize( $this->metadata ) ) <= self::CACHE_FIELD_MAX_LEN;
1751 }
1752
1753 /**
1754 * Start a transaction and lock the image for update
1755 * Increments a reference counter if the lock is already held
1756 * @return boolean True if the image exists, false otherwise
1757 */
1758 function lock() {
1759 $dbw = $this->repo->getMasterDB();
1760
1761 if ( !$this->locked ) {
1762 if ( !$dbw->trxLevel() ) {
1763 $dbw->begin( __METHOD__ );
1764 $this->lockedOwnTrx = true;
1765 }
1766 $this->locked++;
1767 }
1768
1769 return $dbw->selectField( 'image', '1',
1770 array( 'img_name' => $this->getName() ), __METHOD__, array( 'FOR UPDATE' ) );
1771 }
1772
1773 /**
1774 * Decrement the lock reference count. If the reference count is reduced to zero, commits
1775 * the transaction and thereby releases the image lock.
1776 */
1777 function unlock() {
1778 if ( $this->locked ) {
1779 --$this->locked;
1780 if ( !$this->locked && $this->lockedOwnTrx ) {
1781 $dbw = $this->repo->getMasterDB();
1782 $dbw->commit( __METHOD__ );
1783 $this->lockedOwnTrx = false;
1784 }
1785 }
1786 }
1787
1788 /**
1789 * Roll back the DB transaction and mark the image unlocked
1790 */
1791 function unlockAndRollback() {
1792 $this->locked = false;
1793 $dbw = $this->repo->getMasterDB();
1794 $dbw->rollback( __METHOD__ );
1795 $this->lockedOwnTrx = false;
1796 }
1797
1798 /**
1799 * @return Status
1800 */
1801 protected function readOnlyFatalStatus() {
1802 return $this->getRepo()->newFatal( 'filereadonlyerror', $this->getName(),
1803 $this->getRepo()->getName(), $this->getRepo()->getReadOnlyReason() );
1804 }
1805 } // LocalFile class
1806
1807 # ------------------------------------------------------------------------------
1808
1809 /**
1810 * Helper class for file deletion
1811 * @ingroup FileAbstraction
1812 */
1813 class LocalFileDeleteBatch {
1814
1815 /**
1816 * @var LocalFile
1817 */
1818 var $file;
1819
1820 var $reason, $srcRels = array(), $archiveUrls = array(), $deletionBatch, $suppress;
1821 var $status;
1822
1823 /**
1824 * @param $file File
1825 * @param $reason string
1826 * @param $suppress bool
1827 */
1828 function __construct( File $file, $reason = '', $suppress = false ) {
1829 $this->file = $file;
1830 $this->reason = $reason;
1831 $this->suppress = $suppress;
1832 $this->status = $file->repo->newGood();
1833 }
1834
1835 function addCurrent() {
1836 $this->srcRels['.'] = $this->file->getRel();
1837 }
1838
1839 /**
1840 * @param $oldName string
1841 */
1842 function addOld( $oldName ) {
1843 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
1844 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
1845 }
1846
1847 /**
1848 * Add the old versions of the image to the batch
1849 * @return Array List of archive names from old versions
1850 */
1851 function addOlds() {
1852 $archiveNames = array();
1853
1854 $dbw = $this->file->repo->getMasterDB();
1855 $result = $dbw->select( 'oldimage',
1856 array( 'oi_archive_name' ),
1857 array( 'oi_name' => $this->file->getName() ),
1858 __METHOD__
1859 );
1860
1861 foreach ( $result as $row ) {
1862 $this->addOld( $row->oi_archive_name );
1863 $archiveNames[] = $row->oi_archive_name;
1864 }
1865
1866 return $archiveNames;
1867 }
1868
1869 /**
1870 * @return array
1871 */
1872 function getOldRels() {
1873 if ( !isset( $this->srcRels['.'] ) ) {
1874 $oldRels =& $this->srcRels;
1875 $deleteCurrent = false;
1876 } else {
1877 $oldRels = $this->srcRels;
1878 unset( $oldRels['.'] );
1879 $deleteCurrent = true;
1880 }
1881
1882 return array( $oldRels, $deleteCurrent );
1883 }
1884
1885 /**
1886 * @return array
1887 */
1888 protected function getHashes() {
1889 $hashes = array();
1890 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1891
1892 if ( $deleteCurrent ) {
1893 $hashes['.'] = $this->file->getSha1();
1894 }
1895
1896 if ( count( $oldRels ) ) {
1897 $dbw = $this->file->repo->getMasterDB();
1898 $res = $dbw->select(
1899 'oldimage',
1900 array( 'oi_archive_name', 'oi_sha1' ),
1901 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1902 __METHOD__
1903 );
1904
1905 foreach ( $res as $row ) {
1906 if ( rtrim( $row->oi_sha1, "\0" ) === '' ) {
1907 // Get the hash from the file
1908 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
1909 $props = $this->file->repo->getFileProps( $oldUrl );
1910
1911 if ( $props['fileExists'] ) {
1912 // Upgrade the oldimage row
1913 $dbw->update( 'oldimage',
1914 array( 'oi_sha1' => $props['sha1'] ),
1915 array( 'oi_name' => $this->file->getName(), 'oi_archive_name' => $row->oi_archive_name ),
1916 __METHOD__ );
1917 $hashes[$row->oi_archive_name] = $props['sha1'];
1918 } else {
1919 $hashes[$row->oi_archive_name] = false;
1920 }
1921 } else {
1922 $hashes[$row->oi_archive_name] = $row->oi_sha1;
1923 }
1924 }
1925 }
1926
1927 $missing = array_diff_key( $this->srcRels, $hashes );
1928
1929 foreach ( $missing as $name => $rel ) {
1930 $this->status->error( 'filedelete-old-unregistered', $name );
1931 }
1932
1933 foreach ( $hashes as $name => $hash ) {
1934 if ( !$hash ) {
1935 $this->status->error( 'filedelete-missing', $this->srcRels[$name] );
1936 unset( $hashes[$name] );
1937 }
1938 }
1939
1940 return $hashes;
1941 }
1942
1943 function doDBInserts() {
1944 global $wgUser;
1945
1946 $dbw = $this->file->repo->getMasterDB();
1947 $encTimestamp = $dbw->addQuotes( $dbw->timestamp() );
1948 $encUserId = $dbw->addQuotes( $wgUser->getId() );
1949 $encReason = $dbw->addQuotes( $this->reason );
1950 $encGroup = $dbw->addQuotes( 'deleted' );
1951 $ext = $this->file->getExtension();
1952 $dotExt = $ext === '' ? '' : ".$ext";
1953 $encExt = $dbw->addQuotes( $dotExt );
1954 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1955
1956 // Bitfields to further suppress the content
1957 if ( $this->suppress ) {
1958 $bitfield = 0;
1959 // This should be 15...
1960 $bitfield |= Revision::DELETED_TEXT;
1961 $bitfield |= Revision::DELETED_COMMENT;
1962 $bitfield |= Revision::DELETED_USER;
1963 $bitfield |= Revision::DELETED_RESTRICTED;
1964 } else {
1965 $bitfield = 'oi_deleted';
1966 }
1967
1968 if ( $deleteCurrent ) {
1969 $concat = $dbw->buildConcat( array( "img_sha1", $encExt ) );
1970 $where = array( 'img_name' => $this->file->getName() );
1971 $dbw->insertSelect( 'filearchive', 'image',
1972 array(
1973 'fa_storage_group' => $encGroup,
1974 'fa_storage_key' => "CASE WHEN img_sha1='' THEN '' ELSE $concat END",
1975 'fa_deleted_user' => $encUserId,
1976 'fa_deleted_timestamp' => $encTimestamp,
1977 'fa_deleted_reason' => $encReason,
1978 'fa_deleted' => $this->suppress ? $bitfield : 0,
1979
1980 'fa_name' => 'img_name',
1981 'fa_archive_name' => 'NULL',
1982 'fa_size' => 'img_size',
1983 'fa_width' => 'img_width',
1984 'fa_height' => 'img_height',
1985 'fa_metadata' => 'img_metadata',
1986 'fa_bits' => 'img_bits',
1987 'fa_media_type' => 'img_media_type',
1988 'fa_major_mime' => 'img_major_mime',
1989 'fa_minor_mime' => 'img_minor_mime',
1990 'fa_description' => 'img_description',
1991 'fa_user' => 'img_user',
1992 'fa_user_text' => 'img_user_text',
1993 'fa_timestamp' => 'img_timestamp',
1994 'fa_sha1' => 'img_sha1',
1995 ), $where, __METHOD__ );
1996 }
1997
1998 if ( count( $oldRels ) ) {
1999 $concat = $dbw->buildConcat( array( "oi_sha1", $encExt ) );
2000 $where = array(
2001 'oi_name' => $this->file->getName(),
2002 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')' );
2003 $dbw->insertSelect( 'filearchive', 'oldimage',
2004 array(
2005 'fa_storage_group' => $encGroup,
2006 'fa_storage_key' => "CASE WHEN oi_sha1='' THEN '' ELSE $concat END",
2007 'fa_deleted_user' => $encUserId,
2008 'fa_deleted_timestamp' => $encTimestamp,
2009 'fa_deleted_reason' => $encReason,
2010 'fa_deleted' => $this->suppress ? $bitfield : 'oi_deleted',
2011
2012 'fa_name' => 'oi_name',
2013 'fa_archive_name' => 'oi_archive_name',
2014 'fa_size' => 'oi_size',
2015 'fa_width' => 'oi_width',
2016 'fa_height' => 'oi_height',
2017 'fa_metadata' => 'oi_metadata',
2018 'fa_bits' => 'oi_bits',
2019 'fa_media_type' => 'oi_media_type',
2020 'fa_major_mime' => 'oi_major_mime',
2021 'fa_minor_mime' => 'oi_minor_mime',
2022 'fa_description' => 'oi_description',
2023 'fa_user' => 'oi_user',
2024 'fa_user_text' => 'oi_user_text',
2025 'fa_timestamp' => 'oi_timestamp',
2026 'fa_sha1' => 'oi_sha1',
2027 ), $where, __METHOD__ );
2028 }
2029 }
2030
2031 function doDBDeletes() {
2032 $dbw = $this->file->repo->getMasterDB();
2033 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2034
2035 if ( count( $oldRels ) ) {
2036 $dbw->delete( 'oldimage',
2037 array(
2038 'oi_name' => $this->file->getName(),
2039 'oi_archive_name' => array_keys( $oldRels )
2040 ), __METHOD__ );
2041 }
2042
2043 if ( $deleteCurrent ) {
2044 $dbw->delete( 'image', array( 'img_name' => $this->file->getName() ), __METHOD__ );
2045 }
2046 }
2047
2048 /**
2049 * Run the transaction
2050 * @return FileRepoStatus
2051 */
2052 function execute() {
2053 wfProfileIn( __METHOD__ );
2054
2055 $this->file->lock();
2056 // Leave private files alone
2057 $privateFiles = array();
2058 list( $oldRels, ) = $this->getOldRels();
2059 $dbw = $this->file->repo->getMasterDB();
2060
2061 if ( !empty( $oldRels ) ) {
2062 $res = $dbw->select( 'oldimage',
2063 array( 'oi_archive_name' ),
2064 array( 'oi_name' => $this->file->getName(),
2065 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
2066 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ),
2067 __METHOD__ );
2068
2069 foreach ( $res as $row ) {
2070 $privateFiles[$row->oi_archive_name] = 1;
2071 }
2072 }
2073 // Prepare deletion batch
2074 $hashes = $this->getHashes();
2075 $this->deletionBatch = array();
2076 $ext = $this->file->getExtension();
2077 $dotExt = $ext === '' ? '' : ".$ext";
2078
2079 foreach ( $this->srcRels as $name => $srcRel ) {
2080 // Skip files that have no hash (missing source).
2081 // Keep private files where they are.
2082 if ( isset( $hashes[$name] ) && !array_key_exists( $name, $privateFiles ) ) {
2083 $hash = $hashes[$name];
2084 $key = $hash . $dotExt;
2085 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
2086 $this->deletionBatch[$name] = array( $srcRel, $dstRel );
2087 }
2088 }
2089
2090 // Lock the filearchive rows so that the files don't get deleted by a cleanup operation
2091 // We acquire this lock by running the inserts now, before the file operations.
2092 //
2093 // This potentially has poor lock contention characteristics -- an alternative
2094 // scheme would be to insert stub filearchive entries with no fa_name and commit
2095 // them in a separate transaction, then run the file ops, then update the fa_name fields.
2096 $this->doDBInserts();
2097
2098 // Removes non-existent file from the batch, so we don't get errors.
2099 $this->deletionBatch = $this->removeNonexistentFiles( $this->deletionBatch );
2100
2101 // Execute the file deletion batch
2102 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
2103
2104 if ( !$status->isGood() ) {
2105 $this->status->merge( $status );
2106 }
2107
2108 if ( !$this->status->isOK() ) {
2109 // Critical file deletion error
2110 // Roll back inserts, release lock and abort
2111 // TODO: delete the defunct filearchive rows if we are using a non-transactional DB
2112 $this->file->unlockAndRollback();
2113 wfProfileOut( __METHOD__ );
2114 return $this->status;
2115 }
2116
2117 // Delete image/oldimage rows
2118 $this->doDBDeletes();
2119
2120 // Commit and return
2121 $this->file->unlock();
2122 wfProfileOut( __METHOD__ );
2123
2124 return $this->status;
2125 }
2126
2127 /**
2128 * Removes non-existent files from a deletion batch.
2129 * @param $batch array
2130 * @return array
2131 */
2132 function removeNonexistentFiles( $batch ) {
2133 $files = $newBatch = array();
2134
2135 foreach ( $batch as $batchItem ) {
2136 list( $src, ) = $batchItem;
2137 $files[$src] = $this->file->repo->getVirtualUrl( 'public' ) . '/' . rawurlencode( $src );
2138 }
2139
2140 $result = $this->file->repo->fileExistsBatch( $files );
2141
2142 foreach ( $batch as $batchItem ) {
2143 if ( $result[$batchItem[0]] ) {
2144 $newBatch[] = $batchItem;
2145 }
2146 }
2147
2148 return $newBatch;
2149 }
2150 }
2151
2152 # ------------------------------------------------------------------------------
2153
2154 /**
2155 * Helper class for file undeletion
2156 * @ingroup FileAbstraction
2157 */
2158 class LocalFileRestoreBatch {
2159 /**
2160 * @var LocalFile
2161 */
2162 var $file;
2163
2164 var $cleanupBatch, $ids, $all, $unsuppress = false;
2165
2166 /**
2167 * @param $file File
2168 * @param $unsuppress bool
2169 */
2170 function __construct( File $file, $unsuppress = false ) {
2171 $this->file = $file;
2172 $this->cleanupBatch = $this->ids = array();
2173 $this->ids = array();
2174 $this->unsuppress = $unsuppress;
2175 }
2176
2177 /**
2178 * Add a file by ID
2179 */
2180 function addId( $fa_id ) {
2181 $this->ids[] = $fa_id;
2182 }
2183
2184 /**
2185 * Add a whole lot of files by ID
2186 */
2187 function addIds( $ids ) {
2188 $this->ids = array_merge( $this->ids, $ids );
2189 }
2190
2191 /**
2192 * Add all revisions of the file
2193 */
2194 function addAll() {
2195 $this->all = true;
2196 }
2197
2198 /**
2199 * Run the transaction, except the cleanup batch.
2200 * The cleanup batch should be run in a separate transaction, because it locks different
2201 * rows and there's no need to keep the image row locked while it's acquiring those locks
2202 * The caller may have its own transaction open.
2203 * So we save the batch and let the caller call cleanup()
2204 * @return FileRepoStatus
2205 */
2206 function execute() {
2207 global $wgLang;
2208
2209 if ( !$this->all && !$this->ids ) {
2210 // Do nothing
2211 return $this->file->repo->newGood();
2212 }
2213
2214 $exists = $this->file->lock();
2215 $dbw = $this->file->repo->getMasterDB();
2216 $status = $this->file->repo->newGood();
2217
2218 // Fetch all or selected archived revisions for the file,
2219 // sorted from the most recent to the oldest.
2220 $conditions = array( 'fa_name' => $this->file->getName() );
2221
2222 if ( !$this->all ) {
2223 $conditions[] = 'fa_id IN (' . $dbw->makeList( $this->ids ) . ')';
2224 }
2225
2226 $result = $dbw->select(
2227 'filearchive',
2228 ArchivedFile::selectFields(),
2229 $conditions,
2230 __METHOD__,
2231 array( 'ORDER BY' => 'fa_timestamp DESC' )
2232 );
2233
2234 $idsPresent = array();
2235 $storeBatch = array();
2236 $insertBatch = array();
2237 $insertCurrent = false;
2238 $deleteIds = array();
2239 $first = true;
2240 $archiveNames = array();
2241
2242 foreach ( $result as $row ) {
2243 $idsPresent[] = $row->fa_id;
2244
2245 if ( $row->fa_name != $this->file->getName() ) {
2246 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp ) );
2247 $status->failCount++;
2248 continue;
2249 }
2250
2251 if ( $row->fa_storage_key == '' ) {
2252 // Revision was missing pre-deletion
2253 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp ) );
2254 $status->failCount++;
2255 continue;
2256 }
2257
2258 $deletedRel = $this->file->repo->getDeletedHashPath( $row->fa_storage_key ) . $row->fa_storage_key;
2259 $deletedUrl = $this->file->repo->getVirtualUrl() . '/deleted/' . $deletedRel;
2260
2261 if ( isset( $row->fa_sha1 ) ) {
2262 $sha1 = $row->fa_sha1;
2263 } else {
2264 // old row, populate from key
2265 $sha1 = LocalRepo::getHashFromKey( $row->fa_storage_key );
2266 }
2267
2268 # Fix leading zero
2269 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
2270 $sha1 = substr( $sha1, 1 );
2271 }
2272
2273 if ( is_null( $row->fa_major_mime ) || $row->fa_major_mime == 'unknown'
2274 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime == 'unknown'
2275 || is_null( $row->fa_media_type ) || $row->fa_media_type == 'UNKNOWN'
2276 || is_null( $row->fa_metadata ) ) {
2277 // Refresh our metadata
2278 // Required for a new current revision; nice for older ones too. :)
2279 $props = RepoGroup::singleton()->getFileProps( $deletedUrl );
2280 } else {
2281 $props = array(
2282 'minor_mime' => $row->fa_minor_mime,
2283 'major_mime' => $row->fa_major_mime,
2284 'media_type' => $row->fa_media_type,
2285 'metadata' => $row->fa_metadata
2286 );
2287 }
2288
2289 if ( $first && !$exists ) {
2290 // This revision will be published as the new current version
2291 $destRel = $this->file->getRel();
2292 $insertCurrent = array(
2293 'img_name' => $row->fa_name,
2294 'img_size' => $row->fa_size,
2295 'img_width' => $row->fa_width,
2296 'img_height' => $row->fa_height,
2297 'img_metadata' => $props['metadata'],
2298 'img_bits' => $row->fa_bits,
2299 'img_media_type' => $props['media_type'],
2300 'img_major_mime' => $props['major_mime'],
2301 'img_minor_mime' => $props['minor_mime'],
2302 'img_description' => $row->fa_description,
2303 'img_user' => $row->fa_user,
2304 'img_user_text' => $row->fa_user_text,
2305 'img_timestamp' => $row->fa_timestamp,
2306 'img_sha1' => $sha1
2307 );
2308
2309 // The live (current) version cannot be hidden!
2310 if ( !$this->unsuppress && $row->fa_deleted ) {
2311 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
2312 $this->cleanupBatch[] = $row->fa_storage_key;
2313 }
2314 } else {
2315 $archiveName = $row->fa_archive_name;
2316
2317 if ( $archiveName == '' ) {
2318 // This was originally a current version; we
2319 // have to devise a new archive name for it.
2320 // Format is <timestamp of archiving>!<name>
2321 $timestamp = wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
2322
2323 do {
2324 $archiveName = wfTimestamp( TS_MW, $timestamp ) . '!' . $row->fa_name;
2325 $timestamp++;
2326 } while ( isset( $archiveNames[$archiveName] ) );
2327 }
2328
2329 $archiveNames[$archiveName] = true;
2330 $destRel = $this->file->getArchiveRel( $archiveName );
2331 $insertBatch[] = array(
2332 'oi_name' => $row->fa_name,
2333 'oi_archive_name' => $archiveName,
2334 'oi_size' => $row->fa_size,
2335 'oi_width' => $row->fa_width,
2336 'oi_height' => $row->fa_height,
2337 'oi_bits' => $row->fa_bits,
2338 'oi_description' => $row->fa_description,
2339 'oi_user' => $row->fa_user,
2340 'oi_user_text' => $row->fa_user_text,
2341 'oi_timestamp' => $row->fa_timestamp,
2342 'oi_metadata' => $props['metadata'],
2343 'oi_media_type' => $props['media_type'],
2344 'oi_major_mime' => $props['major_mime'],
2345 'oi_minor_mime' => $props['minor_mime'],
2346 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
2347 'oi_sha1' => $sha1 );
2348 }
2349
2350 $deleteIds[] = $row->fa_id;
2351
2352 if ( !$this->unsuppress && $row->fa_deleted & File::DELETED_FILE ) {
2353 // private files can stay where they are
2354 $status->successCount++;
2355 } else {
2356 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
2357 $this->cleanupBatch[] = $row->fa_storage_key;
2358 }
2359
2360 $first = false;
2361 }
2362
2363 unset( $result );
2364
2365 // Add a warning to the status object for missing IDs
2366 $missingIds = array_diff( $this->ids, $idsPresent );
2367
2368 foreach ( $missingIds as $id ) {
2369 $status->error( 'undelete-missing-filearchive', $id );
2370 }
2371
2372 // Remove missing files from batch, so we don't get errors when undeleting them
2373 $storeBatch = $this->removeNonexistentFiles( $storeBatch );
2374
2375 // Run the store batch
2376 // Use the OVERWRITE_SAME flag to smooth over a common error
2377 $storeStatus = $this->file->repo->storeBatch( $storeBatch, FileRepo::OVERWRITE_SAME );
2378 $status->merge( $storeStatus );
2379
2380 if ( !$status->isGood() ) {
2381 // Even if some files could be copied, fail entirely as that is the
2382 // easiest thing to do without data loss
2383 $this->cleanupFailedBatch( $storeStatus, $storeBatch );
2384 $status->ok = false;
2385 $this->file->unlock();
2386
2387 return $status;
2388 }
2389
2390 // Run the DB updates
2391 // Because we have locked the image row, key conflicts should be rare.
2392 // If they do occur, we can roll back the transaction at this time with
2393 // no data loss, but leaving unregistered files scattered throughout the
2394 // public zone.
2395 // This is not ideal, which is why it's important to lock the image row.
2396 if ( $insertCurrent ) {
2397 $dbw->insert( 'image', $insertCurrent, __METHOD__ );
2398 }
2399
2400 if ( $insertBatch ) {
2401 $dbw->insert( 'oldimage', $insertBatch, __METHOD__ );
2402 }
2403
2404 if ( $deleteIds ) {
2405 $dbw->delete( 'filearchive',
2406 array( 'fa_id IN (' . $dbw->makeList( $deleteIds ) . ')' ),
2407 __METHOD__ );
2408 }
2409
2410 // If store batch is empty (all files are missing), deletion is to be considered successful
2411 if ( $status->successCount > 0 || !$storeBatch ) {
2412 if ( !$exists ) {
2413 wfDebug( __METHOD__ . " restored {$status->successCount} items, creating a new current\n" );
2414
2415 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( array( 'images' => 1 ) ) );
2416
2417 $this->file->purgeEverything();
2418 } else {
2419 wfDebug( __METHOD__ . " restored {$status->successCount} as archived versions\n" );
2420 $this->file->purgeDescription();
2421 $this->file->purgeHistory();
2422 }
2423 }
2424
2425 $this->file->unlock();
2426
2427 return $status;
2428 }
2429
2430 /**
2431 * Removes non-existent files from a store batch.
2432 * @param $triplets array
2433 * @return array
2434 */
2435 function removeNonexistentFiles( $triplets ) {
2436 $files = $filteredTriplets = array();
2437 foreach ( $triplets as $file ) {
2438 $files[$file[0]] = $file[0];
2439 }
2440
2441 $result = $this->file->repo->fileExistsBatch( $files );
2442
2443 foreach ( $triplets as $file ) {
2444 if ( $result[$file[0]] ) {
2445 $filteredTriplets[] = $file;
2446 }
2447 }
2448
2449 return $filteredTriplets;
2450 }
2451
2452 /**
2453 * Removes non-existent files from a cleanup batch.
2454 * @param $batch array
2455 * @return array
2456 */
2457 function removeNonexistentFromCleanup( $batch ) {
2458 $files = $newBatch = array();
2459 $repo = $this->file->repo;
2460
2461 foreach ( $batch as $file ) {
2462 $files[$file] = $repo->getVirtualUrl( 'deleted' ) . '/' .
2463 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
2464 }
2465
2466 $result = $repo->fileExistsBatch( $files );
2467
2468 foreach ( $batch as $file ) {
2469 if ( $result[$file] ) {
2470 $newBatch[] = $file;
2471 }
2472 }
2473
2474 return $newBatch;
2475 }
2476
2477 /**
2478 * Delete unused files in the deleted zone.
2479 * This should be called from outside the transaction in which execute() was called.
2480 * @return FileRepoStatus
2481 */
2482 function cleanup() {
2483 if ( !$this->cleanupBatch ) {
2484 return $this->file->repo->newGood();
2485 }
2486
2487 $this->cleanupBatch = $this->removeNonexistentFromCleanup( $this->cleanupBatch );
2488
2489 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
2490
2491 return $status;
2492 }
2493
2494 /**
2495 * Cleanup a failed batch. The batch was only partially successful, so
2496 * rollback by removing all items that were succesfully copied.
2497 *
2498 * @param Status $storeStatus
2499 * @param array $storeBatch
2500 */
2501 function cleanupFailedBatch( $storeStatus, $storeBatch ) {
2502 $cleanupBatch = array();
2503
2504 foreach ( $storeStatus->success as $i => $success ) {
2505 // Check if this item of the batch was successfully copied
2506 if ( $success ) {
2507 // Item was successfully copied and needs to be removed again
2508 // Extract ($dstZone, $dstRel) from the batch
2509 $cleanupBatch[] = array( $storeBatch[$i][1], $storeBatch[$i][2] );
2510 }
2511 }
2512 $this->file->repo->cleanupBatch( $cleanupBatch );
2513 }
2514 }
2515
2516 # ------------------------------------------------------------------------------
2517
2518 /**
2519 * Helper class for file movement
2520 * @ingroup FileAbstraction
2521 */
2522 class LocalFileMoveBatch {
2523
2524 /**
2525 * @var LocalFile
2526 */
2527 var $file;
2528
2529 /**
2530 * @var Title
2531 */
2532 var $target;
2533
2534 var $cur, $olds, $oldCount, $archive;
2535
2536 /**
2537 * @var DatabaseBase
2538 */
2539 var $db;
2540
2541 /**
2542 * @param File $file
2543 * @param Title $target
2544 */
2545 function __construct( File $file, Title $target ) {
2546 $this->file = $file;
2547 $this->target = $target;
2548 $this->oldHash = $this->file->repo->getHashPath( $this->file->getName() );
2549 $this->newHash = $this->file->repo->getHashPath( $this->target->getDBkey() );
2550 $this->oldName = $this->file->getName();
2551 $this->newName = $this->file->repo->getNameFromTitle( $this->target );
2552 $this->oldRel = $this->oldHash . $this->oldName;
2553 $this->newRel = $this->newHash . $this->newName;
2554 $this->db = $file->getRepo()->getMasterDb();
2555 }
2556
2557 /**
2558 * Add the current image to the batch
2559 */
2560 function addCurrent() {
2561 $this->cur = array( $this->oldRel, $this->newRel );
2562 }
2563
2564 /**
2565 * Add the old versions of the image to the batch
2566 * @return Array List of archive names from old versions
2567 */
2568 function addOlds() {
2569 $archiveBase = 'archive';
2570 $this->olds = array();
2571 $this->oldCount = 0;
2572 $archiveNames = array();
2573
2574 $result = $this->db->select( 'oldimage',
2575 array( 'oi_archive_name', 'oi_deleted' ),
2576 array( 'oi_name' => $this->oldName ),
2577 __METHOD__
2578 );
2579
2580 foreach ( $result as $row ) {
2581 $archiveNames[] = $row->oi_archive_name;
2582 $oldName = $row->oi_archive_name;
2583 $bits = explode( '!', $oldName, 2 );
2584
2585 if ( count( $bits ) != 2 ) {
2586 wfDebug( "Old file name missing !: '$oldName' \n" );
2587 continue;
2588 }
2589
2590 list( $timestamp, $filename ) = $bits;
2591
2592 if ( $this->oldName != $filename ) {
2593 wfDebug( "Old file name doesn't match: '$oldName' \n" );
2594 continue;
2595 }
2596
2597 $this->oldCount++;
2598
2599 // Do we want to add those to oldCount?
2600 if ( $row->oi_deleted & File::DELETED_FILE ) {
2601 continue;
2602 }
2603
2604 $this->olds[] = array(
2605 "{$archiveBase}/{$this->oldHash}{$oldName}",
2606 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
2607 );
2608 }
2609
2610 return $archiveNames;
2611 }
2612
2613 /**
2614 * Perform the move.
2615 * @return FileRepoStatus
2616 */
2617 function execute() {
2618 $repo = $this->file->repo;
2619 $status = $repo->newGood();
2620
2621 $triplets = $this->getMoveTriplets();
2622 $triplets = $this->removeNonexistentFiles( $triplets );
2623
2624 $this->file->lock(); // begin
2625 // Rename the file versions metadata in the DB.
2626 // This implicitly locks the destination file, which avoids race conditions.
2627 // If we moved the files from A -> C before DB updates, another process could
2628 // move files from B -> C at this point, causing storeBatch() to fail and thus
2629 // cleanupTarget() to trigger. It would delete the C files and cause data loss.
2630 $statusDb = $this->doDBUpdates();
2631 if ( !$statusDb->isGood() ) {
2632 $this->file->unlockAndRollback();
2633 $statusDb->ok = false;
2634 return $statusDb;
2635 }
2636 wfDebugLog( 'imagemove', "Renamed {$this->file->getName()} in database: {$statusDb->successCount} successes, {$statusDb->failCount} failures" );
2637
2638 // Copy the files into their new location.
2639 // If a prior process fataled copying or cleaning up files we tolerate any
2640 // of the existing files if they are identical to the ones being stored.
2641 $statusMove = $repo->storeBatch( $triplets, FileRepo::OVERWRITE_SAME );
2642 wfDebugLog( 'imagemove', "Moved files for {$this->file->getName()}: {$statusMove->successCount} successes, {$statusMove->failCount} failures" );
2643 if ( !$statusMove->isGood() ) {
2644 // Delete any files copied over (while the destination is still locked)
2645 $this->cleanupTarget( $triplets );
2646 $this->file->unlockAndRollback(); // unlocks the destination
2647 wfDebugLog( 'imagemove', "Error in moving files: " . $statusMove->getWikiText() );
2648 $statusMove->ok = false;
2649 return $statusMove;
2650 }
2651 $this->file->unlock(); // done
2652
2653 // Everything went ok, remove the source files
2654 $this->cleanupSource( $triplets );
2655
2656 $status->merge( $statusDb );
2657 $status->merge( $statusMove );
2658
2659 return $status;
2660 }
2661
2662 /**
2663 * Do the database updates and return a new FileRepoStatus indicating how
2664 * many rows where updated.
2665 *
2666 * @return FileRepoStatus
2667 */
2668 function doDBUpdates() {
2669 $repo = $this->file->repo;
2670 $status = $repo->newGood();
2671 $dbw = $this->db;
2672
2673 // Update current image
2674 $dbw->update(
2675 'image',
2676 array( 'img_name' => $this->newName ),
2677 array( 'img_name' => $this->oldName ),
2678 __METHOD__
2679 );
2680
2681 if ( $dbw->affectedRows() ) {
2682 $status->successCount++;
2683 } else {
2684 $status->failCount++;
2685 $status->fatal( 'imageinvalidfilename' );
2686 return $status;
2687 }
2688
2689 // Update old images
2690 $dbw->update(
2691 'oldimage',
2692 array(
2693 'oi_name' => $this->newName,
2694 'oi_archive_name = ' . $dbw->strreplace( 'oi_archive_name',
2695 $dbw->addQuotes( $this->oldName ), $dbw->addQuotes( $this->newName ) ),
2696 ),
2697 array( 'oi_name' => $this->oldName ),
2698 __METHOD__
2699 );
2700
2701 $affected = $dbw->affectedRows();
2702 $total = $this->oldCount;
2703 $status->successCount += $affected;
2704 // Bug 34934: $total is based on files that actually exist.
2705 // There may be more DB rows than such files, in which case $affected
2706 // can be greater than $total. We use max() to avoid negatives here.
2707 $status->failCount += max( 0, $total - $affected );
2708 if ( $status->failCount ) {
2709 $status->error( 'imageinvalidfilename' );
2710 }
2711
2712 return $status;
2713 }
2714
2715 /**
2716 * Generate triplets for FileRepo::storeBatch().
2717 * @return array
2718 */
2719 function getMoveTriplets() {
2720 $moves = array_merge( array( $this->cur ), $this->olds );
2721 $triplets = array(); // The format is: (srcUrl, destZone, destUrl)
2722
2723 foreach ( $moves as $move ) {
2724 // $move: (oldRelativePath, newRelativePath)
2725 $srcUrl = $this->file->repo->getVirtualUrl() . '/public/' . rawurlencode( $move[0] );
2726 $triplets[] = array( $srcUrl, 'public', $move[1] );
2727 wfDebugLog( 'imagemove', "Generated move triplet for {$this->file->getName()}: {$srcUrl} :: public :: {$move[1]}" );
2728 }
2729
2730 return $triplets;
2731 }
2732
2733 /**
2734 * Removes non-existent files from move batch.
2735 * @param $triplets array
2736 * @return array
2737 */
2738 function removeNonexistentFiles( $triplets ) {
2739 $files = array();
2740
2741 foreach ( $triplets as $file ) {
2742 $files[$file[0]] = $file[0];
2743 }
2744
2745 $result = $this->file->repo->fileExistsBatch( $files );
2746 $filteredTriplets = array();
2747
2748 foreach ( $triplets as $file ) {
2749 if ( $result[$file[0]] ) {
2750 $filteredTriplets[] = $file;
2751 } else {
2752 wfDebugLog( 'imagemove', "File {$file[0]} does not exist" );
2753 }
2754 }
2755
2756 return $filteredTriplets;
2757 }
2758
2759 /**
2760 * Cleanup a partially moved array of triplets by deleting the target
2761 * files. Called if something went wrong half way.
2762 */
2763 function cleanupTarget( $triplets ) {
2764 // Create dest pairs from the triplets
2765 $pairs = array();
2766 foreach ( $triplets as $triplet ) {
2767 // $triplet: (old source virtual URL, dst zone, dest rel)
2768 $pairs[] = array( $triplet[1], $triplet[2] );
2769 }
2770
2771 $this->file->repo->cleanupBatch( $pairs );
2772 }
2773
2774 /**
2775 * Cleanup a fully moved array of triplets by deleting the source files.
2776 * Called at the end of the move process if everything else went ok.
2777 */
2778 function cleanupSource( $triplets ) {
2779 // Create source file names from the triplets
2780 $files = array();
2781 foreach ( $triplets as $triplet ) {
2782 $files[] = $triplet[0];
2783 }
2784
2785 $this->file->repo->cleanupBatch( $files );
2786 }
2787 }