Merge "registration: Only allow one extension to set a specific config setting"
[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 use MediaWiki\Logger\LoggerFactory;
25 use Wikimedia\Rdbms\Database;
26 use Wikimedia\Rdbms\IDatabase;
27
28 /**
29 * Class to represent a local file in the wiki's own database
30 *
31 * Provides methods to retrieve paths (physical, logical, URL),
32 * to generate image thumbnails or for uploading.
33 *
34 * Note that only the repo object knows what its file class is called. You should
35 * never name a file class explictly outside of the repo class. Instead use the
36 * repo's factory functions to generate file objects, for example:
37 *
38 * RepoGroup::singleton()->getLocalRepo()->newFile( $title );
39 *
40 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
41 * in most cases.
42 *
43 * @ingroup FileAbstraction
44 */
45 class LocalFile extends File {
46 const VERSION = 11; // cache version
47
48 const CACHE_FIELD_MAX_LEN = 1000;
49
50 /** @var bool Does the file exist on disk? (loadFromXxx) */
51 protected $fileExists;
52
53 /** @var int Image width */
54 protected $width;
55
56 /** @var int Image height */
57 protected $height;
58
59 /** @var int Returned by getimagesize (loadFromXxx) */
60 protected $bits;
61
62 /** @var string MEDIATYPE_xxx (bitmap, drawing, audio...) */
63 protected $media_type;
64
65 /** @var string MIME type, determined by MimeMagic::guessMimeType */
66 protected $mime;
67
68 /** @var int Size in bytes (loadFromXxx) */
69 protected $size;
70
71 /** @var string Handler-specific metadata */
72 protected $metadata;
73
74 /** @var string SHA-1 base 36 content hash */
75 protected $sha1;
76
77 /** @var bool Whether or not core data has been loaded from the database (loadFromXxx) */
78 protected $dataLoaded;
79
80 /** @var bool Whether or not lazy-loaded data has been loaded from the database */
81 protected $extraDataLoaded;
82
83 /** @var int Bitfield akin to rev_deleted */
84 protected $deleted;
85
86 /** @var string */
87 protected $repoClass = 'LocalRepo';
88
89 /** @var int Number of line to return by nextHistoryLine() (constructor) */
90 private $historyLine;
91
92 /** @var int Result of the query for the file's history (nextHistoryLine) */
93 private $historyRes;
94
95 /** @var string Major MIME type */
96 private $major_mime;
97
98 /** @var string Minor MIME type */
99 private $minor_mime;
100
101 /** @var string Upload timestamp */
102 private $timestamp;
103
104 /** @var int User ID of uploader */
105 private $user;
106
107 /** @var string User name of uploader */
108 private $user_text;
109
110 /** @var string Description of current revision of the file */
111 private $description;
112
113 /** @var string TS_MW timestamp of the last change of the file description */
114 private $descriptionTouched;
115
116 /** @var bool Whether the row was upgraded on load */
117 private $upgraded;
118
119 /** @var bool Whether the row was scheduled to upgrade on load */
120 private $upgrading;
121
122 /** @var bool True if the image row is locked */
123 private $locked;
124
125 /** @var bool True if the image row is locked with a lock initiated transaction */
126 private $lockedOwnTrx;
127
128 /** @var bool True if file is not present in file system. Not to be cached in memcached */
129 private $missing;
130
131 // @note: higher than IDBAccessObject constants
132 const LOAD_ALL = 16; // integer; load all the lazy fields too (like metadata)
133
134 const ATOMIC_SECTION_LOCK = 'LocalFile::lockingTransaction';
135
136 /**
137 * Create a LocalFile from a title
138 * Do not call this except from inside a repo class.
139 *
140 * Note: $unused param is only here to avoid an E_STRICT
141 *
142 * @param Title $title
143 * @param FileRepo $repo
144 * @param null $unused
145 *
146 * @return LocalFile
147 */
148 static function newFromTitle( $title, $repo, $unused = null ) {
149 return new self( $title, $repo );
150 }
151
152 /**
153 * Create a LocalFile from a title
154 * Do not call this except from inside a repo class.
155 *
156 * @param stdClass $row
157 * @param FileRepo $repo
158 *
159 * @return LocalFile
160 */
161 static function newFromRow( $row, $repo ) {
162 $title = Title::makeTitle( NS_FILE, $row->img_name );
163 $file = new self( $title, $repo );
164 $file->loadFromRow( $row );
165
166 return $file;
167 }
168
169 /**
170 * Create a LocalFile from a SHA-1 key
171 * Do not call this except from inside a repo class.
172 *
173 * @param string $sha1 Base-36 SHA-1
174 * @param LocalRepo $repo
175 * @param string|bool $timestamp MW_timestamp (optional)
176 * @return bool|LocalFile
177 */
178 static function newFromKey( $sha1, $repo, $timestamp = false ) {
179 $dbr = $repo->getReplicaDB();
180
181 $conds = [ 'img_sha1' => $sha1 ];
182 if ( $timestamp ) {
183 $conds['img_timestamp'] = $dbr->timestamp( $timestamp );
184 }
185
186 $row = $dbr->selectRow( 'image', self::selectFields(), $conds, __METHOD__ );
187 if ( $row ) {
188 return self::newFromRow( $row, $repo );
189 } else {
190 return false;
191 }
192 }
193
194 /**
195 * Fields in the image table
196 * @todo Deprecate this in favor of a method that returns tables and joins
197 * as well, and use CommentStore::getJoin().
198 * @return array
199 */
200 static function selectFields() {
201 return [
202 'img_name',
203 'img_size',
204 'img_width',
205 'img_height',
206 'img_metadata',
207 'img_bits',
208 'img_media_type',
209 'img_major_mime',
210 'img_minor_mime',
211 'img_user',
212 'img_user_text',
213 'img_timestamp',
214 'img_sha1',
215 ] + CommentStore::newKey( 'img_description' )->getFields();
216 }
217
218 /**
219 * Do not call this except from inside a repo class.
220 * @param Title $title
221 * @param FileRepo $repo
222 */
223 function __construct( $title, $repo ) {
224 parent::__construct( $title, $repo );
225
226 $this->metadata = '';
227 $this->historyLine = 0;
228 $this->historyRes = null;
229 $this->dataLoaded = false;
230 $this->extraDataLoaded = false;
231
232 $this->assertRepoDefined();
233 $this->assertTitleDefined();
234 }
235
236 /**
237 * Get the memcached key for the main data for this file, or false if
238 * there is no access to the shared cache.
239 * @return string|bool
240 */
241 function getCacheKey() {
242 return $this->repo->getSharedCacheKey( 'file', sha1( $this->getName() ) );
243 }
244
245 /**
246 * @param WANObjectCache $cache
247 * @return string[]
248 * @since 1.28
249 */
250 public function getMutableCacheKeys( WANObjectCache $cache ) {
251 return [ $this->getCacheKey() ];
252 }
253
254 /**
255 * Try to load file metadata from memcached, falling back to the database
256 */
257 private function loadFromCache() {
258 $this->dataLoaded = false;
259 $this->extraDataLoaded = false;
260
261 $key = $this->getCacheKey();
262 if ( !$key ) {
263 $this->loadFromDB( self::READ_NORMAL );
264
265 return;
266 }
267
268 $cache = ObjectCache::getMainWANInstance();
269 $cachedValues = $cache->getWithSetCallback(
270 $key,
271 $cache::TTL_WEEK,
272 function ( $oldValue, &$ttl, array &$setOpts ) use ( $cache ) {
273 $setOpts += Database::getCacheSetOptions( $this->repo->getReplicaDB() );
274
275 $this->loadFromDB( self::READ_NORMAL );
276
277 $fields = $this->getCacheFields( '' );
278 $cacheVal['fileExists'] = $this->fileExists;
279 if ( $this->fileExists ) {
280 foreach ( $fields as $field ) {
281 $cacheVal[$field] = $this->$field;
282 }
283 }
284 // Strip off excessive entries from the subset of fields that can become large.
285 // If the cache value gets to large it will not fit in memcached and nothing will
286 // get cached at all, causing master queries for any file access.
287 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
288 if ( isset( $cacheVal[$field] )
289 && strlen( $cacheVal[$field] ) > 100 * 1024
290 ) {
291 unset( $cacheVal[$field] ); // don't let the value get too big
292 }
293 }
294
295 if ( $this->fileExists ) {
296 $ttl = $cache->adaptiveTTL( wfTimestamp( TS_UNIX, $this->timestamp ), $ttl );
297 } else {
298 $ttl = $cache::TTL_DAY;
299 }
300
301 return $cacheVal;
302 },
303 [ 'version' => self::VERSION ]
304 );
305
306 $this->fileExists = $cachedValues['fileExists'];
307 if ( $this->fileExists ) {
308 $this->setProps( $cachedValues );
309 }
310
311 $this->dataLoaded = true;
312 $this->extraDataLoaded = true;
313 foreach ( $this->getLazyCacheFields( '' ) as $field ) {
314 $this->extraDataLoaded = $this->extraDataLoaded && isset( $cachedValues[$field] );
315 }
316 }
317
318 /**
319 * Purge the file object/metadata cache
320 */
321 public function invalidateCache() {
322 $key = $this->getCacheKey();
323 if ( !$key ) {
324 return;
325 }
326
327 $this->repo->getMasterDB()->onTransactionPreCommitOrIdle(
328 function () use ( $key ) {
329 ObjectCache::getMainWANInstance()->delete( $key );
330 },
331 __METHOD__
332 );
333 }
334
335 /**
336 * Load metadata from the file itself
337 */
338 function loadFromFile() {
339 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
340 $this->setProps( $props );
341 }
342
343 /**
344 * @param string $prefix
345 * @return array
346 */
347 function getCacheFields( $prefix = 'img_' ) {
348 static $fields = [ 'size', 'width', 'height', 'bits', 'media_type',
349 'major_mime', 'minor_mime', 'metadata', 'timestamp', 'sha1', 'user',
350 'user_text' ];
351 static $results = [];
352
353 if ( $prefix == '' ) {
354 return array_merge( $fields, [ 'description' ] );
355 }
356 if ( !isset( $results[$prefix] ) ) {
357 $prefixedFields = [];
358 foreach ( $fields as $field ) {
359 $prefixedFields[] = $prefix . $field;
360 }
361 $prefixedFields += CommentStore::newKey( "{$prefix}description" )->getFields();
362 $results[$prefix] = $prefixedFields;
363 }
364
365 return $results[$prefix];
366 }
367
368 /**
369 * @param string $prefix
370 * @return array
371 */
372 function getLazyCacheFields( $prefix = 'img_' ) {
373 static $fields = [ 'metadata' ];
374 static $results = [];
375
376 if ( $prefix == '' ) {
377 return $fields;
378 }
379
380 if ( !isset( $results[$prefix] ) ) {
381 $prefixedFields = [];
382 foreach ( $fields as $field ) {
383 $prefixedFields[] = $prefix . $field;
384 }
385 $results[$prefix] = $prefixedFields;
386 }
387
388 return $results[$prefix];
389 }
390
391 /**
392 * Load file metadata from the DB
393 * @param int $flags
394 */
395 function loadFromDB( $flags = 0 ) {
396 $fname = static::class . '::' . __FUNCTION__;
397
398 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
399 $this->dataLoaded = true;
400 $this->extraDataLoaded = true;
401
402 $dbr = ( $flags & self::READ_LATEST )
403 ? $this->repo->getMasterDB()
404 : $this->repo->getReplicaDB();
405
406 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
407 [ 'img_name' => $this->getName() ], $fname );
408
409 if ( $row ) {
410 $this->loadFromRow( $row );
411 } else {
412 $this->fileExists = false;
413 }
414 }
415
416 /**
417 * Load lazy file metadata from the DB.
418 * This covers fields that are sometimes not cached.
419 */
420 protected function loadExtraFromDB() {
421 $fname = static::class . '::' . __FUNCTION__;
422
423 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
424 $this->extraDataLoaded = true;
425
426 $fieldMap = $this->loadFieldsWithTimestamp( $this->repo->getReplicaDB(), $fname );
427 if ( !$fieldMap ) {
428 $fieldMap = $this->loadFieldsWithTimestamp( $this->repo->getMasterDB(), $fname );
429 }
430
431 if ( $fieldMap ) {
432 foreach ( $fieldMap as $name => $value ) {
433 $this->$name = $value;
434 }
435 } else {
436 throw new MWException( "Could not find data for image '{$this->getName()}'." );
437 }
438 }
439
440 /**
441 * @param IDatabase $dbr
442 * @param string $fname
443 * @return array|bool
444 */
445 private function loadFieldsWithTimestamp( $dbr, $fname ) {
446 $fieldMap = false;
447
448 $row = $dbr->selectRow( 'image', $this->getLazyCacheFields( 'img_' ), [
449 'img_name' => $this->getName(),
450 'img_timestamp' => $dbr->timestamp( $this->getTimestamp() )
451 ], $fname );
452 if ( $row ) {
453 $fieldMap = $this->unprefixRow( $row, 'img_' );
454 } else {
455 # File may have been uploaded over in the meantime; check the old versions
456 $row = $dbr->selectRow( 'oldimage', $this->getLazyCacheFields( 'oi_' ), [
457 'oi_name' => $this->getName(),
458 'oi_timestamp' => $dbr->timestamp( $this->getTimestamp() )
459 ], $fname );
460 if ( $row ) {
461 $fieldMap = $this->unprefixRow( $row, 'oi_' );
462 }
463 }
464
465 return $fieldMap;
466 }
467
468 /**
469 * @param array|object $row
470 * @param string $prefix
471 * @throws MWException
472 * @return array
473 */
474 protected function unprefixRow( $row, $prefix = 'img_' ) {
475 $array = (array)$row;
476 $prefixLength = strlen( $prefix );
477
478 // Sanity check prefix once
479 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
480 throw new MWException( __METHOD__ . ': incorrect $prefix parameter' );
481 }
482
483 $decoded = [];
484 foreach ( $array as $name => $value ) {
485 $decoded[substr( $name, $prefixLength )] = $value;
486 }
487
488 return $decoded;
489 }
490
491 /**
492 * Decode a row from the database (either object or array) to an array
493 * with timestamps and MIME types decoded, and the field prefix removed.
494 * @param object $row
495 * @param string $prefix
496 * @throws MWException
497 * @return array
498 */
499 function decodeRow( $row, $prefix = 'img_' ) {
500 $decoded = $this->unprefixRow( $row, $prefix );
501
502 $decoded['timestamp'] = wfTimestamp( TS_MW, $decoded['timestamp'] );
503
504 $decoded['metadata'] = $this->repo->getReplicaDB()->decodeBlob( $decoded['metadata'] );
505
506 if ( empty( $decoded['major_mime'] ) ) {
507 $decoded['mime'] = 'unknown/unknown';
508 } else {
509 if ( !$decoded['minor_mime'] ) {
510 $decoded['minor_mime'] = 'unknown';
511 }
512 $decoded['mime'] = $decoded['major_mime'] . '/' . $decoded['minor_mime'];
513 }
514
515 // Trim zero padding from char/binary field
516 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
517
518 // Normalize some fields to integer type, per their database definition.
519 // Use unary + so that overflows will be upgraded to double instead of
520 // being trucated as with intval(). This is important to allow >2GB
521 // files on 32-bit systems.
522 foreach ( [ 'size', 'width', 'height', 'bits' ] as $field ) {
523 $decoded[$field] = +$decoded[$field];
524 }
525
526 return $decoded;
527 }
528
529 /**
530 * Load file metadata from a DB result row
531 *
532 * @param object $row
533 * @param string $prefix
534 */
535 function loadFromRow( $row, $prefix = 'img_' ) {
536 $this->dataLoaded = true;
537 $this->extraDataLoaded = true;
538
539 $this->description = CommentStore::newKey( "{$prefix}description" )
540 // $row is probably using getFields() from self::getCacheFields()
541 ->getCommentLegacy( wfGetDB( DB_REPLICA ), $row )->text;
542
543 $array = $this->decodeRow( $row, $prefix );
544
545 foreach ( $array as $name => $value ) {
546 $this->$name = $value;
547 }
548
549 $this->fileExists = true;
550 $this->maybeUpgradeRow();
551 }
552
553 /**
554 * Load file metadata from cache or DB, unless already loaded
555 * @param int $flags
556 */
557 function load( $flags = 0 ) {
558 if ( !$this->dataLoaded ) {
559 if ( $flags & self::READ_LATEST ) {
560 $this->loadFromDB( $flags );
561 } else {
562 $this->loadFromCache();
563 }
564 }
565
566 if ( ( $flags & self::LOAD_ALL ) && !$this->extraDataLoaded ) {
567 // @note: loads on name/timestamp to reduce race condition problems
568 $this->loadExtraFromDB();
569 }
570 }
571
572 /**
573 * Upgrade a row if it needs it
574 */
575 function maybeUpgradeRow() {
576 global $wgUpdateCompatibleMetadata;
577
578 if ( wfReadOnly() || $this->upgrading ) {
579 return;
580 }
581
582 $upgrade = false;
583 if ( is_null( $this->media_type ) || $this->mime == 'image/svg' ) {
584 $upgrade = true;
585 } else {
586 $handler = $this->getHandler();
587 if ( $handler ) {
588 $validity = $handler->isMetadataValid( $this, $this->getMetadata() );
589 if ( $validity === MediaHandler::METADATA_BAD ) {
590 $upgrade = true;
591 } elseif ( $validity === MediaHandler::METADATA_COMPATIBLE ) {
592 $upgrade = $wgUpdateCompatibleMetadata;
593 }
594 }
595 }
596
597 if ( $upgrade ) {
598 $this->upgrading = true;
599 // Defer updates unless in auto-commit CLI mode
600 DeferredUpdates::addCallableUpdate( function () {
601 $this->upgrading = false; // avoid duplicate updates
602 try {
603 $this->upgradeRow();
604 } catch ( LocalFileLockError $e ) {
605 // let the other process handle it (or do it next time)
606 }
607 } );
608 }
609 }
610
611 /**
612 * @return bool Whether upgradeRow() ran for this object
613 */
614 function getUpgraded() {
615 return $this->upgraded;
616 }
617
618 /**
619 * Fix assorted version-related problems with the image row by reloading it from the file
620 */
621 function upgradeRow() {
622 $this->lock(); // begin
623
624 $this->loadFromFile();
625
626 # Don't destroy file info of missing files
627 if ( !$this->fileExists ) {
628 $this->unlock();
629 wfDebug( __METHOD__ . ": file does not exist, aborting\n" );
630
631 return;
632 }
633
634 $dbw = $this->repo->getMasterDB();
635 list( $major, $minor ) = self::splitMime( $this->mime );
636
637 if ( wfReadOnly() ) {
638 $this->unlock();
639
640 return;
641 }
642 wfDebug( __METHOD__ . ': upgrading ' . $this->getName() . " to the current schema\n" );
643
644 $dbw->update( 'image',
645 [
646 'img_size' => $this->size, // sanity
647 'img_width' => $this->width,
648 'img_height' => $this->height,
649 'img_bits' => $this->bits,
650 'img_media_type' => $this->media_type,
651 'img_major_mime' => $major,
652 'img_minor_mime' => $minor,
653 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
654 'img_sha1' => $this->sha1,
655 ],
656 [ 'img_name' => $this->getName() ],
657 __METHOD__
658 );
659
660 $this->invalidateCache();
661
662 $this->unlock(); // done
663 $this->upgraded = true; // avoid rework/retries
664 }
665
666 /**
667 * Set properties in this object to be equal to those given in the
668 * associative array $info. Only cacheable fields can be set.
669 * All fields *must* be set in $info except for getLazyCacheFields().
670 *
671 * If 'mime' is given, it will be split into major_mime/minor_mime.
672 * If major_mime/minor_mime are given, $this->mime will also be set.
673 *
674 * @param array $info
675 */
676 function setProps( $info ) {
677 $this->dataLoaded = true;
678 $fields = $this->getCacheFields( '' );
679 $fields[] = 'fileExists';
680
681 foreach ( $fields as $field ) {
682 if ( isset( $info[$field] ) ) {
683 $this->$field = $info[$field];
684 }
685 }
686
687 // Fix up mime fields
688 if ( isset( $info['major_mime'] ) ) {
689 $this->mime = "{$info['major_mime']}/{$info['minor_mime']}";
690 } elseif ( isset( $info['mime'] ) ) {
691 $this->mime = $info['mime'];
692 list( $this->major_mime, $this->minor_mime ) = self::splitMime( $this->mime );
693 }
694 }
695
696 /** splitMime inherited */
697 /** getName inherited */
698 /** getTitle inherited */
699 /** getURL inherited */
700 /** getViewURL inherited */
701 /** getPath inherited */
702 /** isVisible inherited */
703
704 /**
705 * @return bool
706 */
707 function isMissing() {
708 if ( $this->missing === null ) {
709 list( $fileExists ) = $this->repo->fileExists( $this->getVirtualUrl() );
710 $this->missing = !$fileExists;
711 }
712
713 return $this->missing;
714 }
715
716 /**
717 * Return the width of the image
718 *
719 * @param int $page
720 * @return int
721 */
722 public function getWidth( $page = 1 ) {
723 $page = (int)$page;
724 if ( $page < 1 ) {
725 $page = 1;
726 }
727
728 $this->load();
729
730 if ( $this->isMultipage() ) {
731 $handler = $this->getHandler();
732 if ( !$handler ) {
733 return 0;
734 }
735 $dim = $handler->getPageDimensions( $this, $page );
736 if ( $dim ) {
737 return $dim['width'];
738 } else {
739 // For non-paged media, the false goes through an
740 // intval, turning failure into 0, so do same here.
741 return 0;
742 }
743 } else {
744 return $this->width;
745 }
746 }
747
748 /**
749 * Return the height of the image
750 *
751 * @param int $page
752 * @return int
753 */
754 public function getHeight( $page = 1 ) {
755 $page = (int)$page;
756 if ( $page < 1 ) {
757 $page = 1;
758 }
759
760 $this->load();
761
762 if ( $this->isMultipage() ) {
763 $handler = $this->getHandler();
764 if ( !$handler ) {
765 return 0;
766 }
767 $dim = $handler->getPageDimensions( $this, $page );
768 if ( $dim ) {
769 return $dim['height'];
770 } else {
771 // For non-paged media, the false goes through an
772 // intval, turning failure into 0, so do same here.
773 return 0;
774 }
775 } else {
776 return $this->height;
777 }
778 }
779
780 /**
781 * Returns ID or name of user who uploaded the file
782 *
783 * @param string $type 'text' or 'id'
784 * @return int|string
785 */
786 function getUser( $type = 'text' ) {
787 $this->load();
788
789 if ( $type == 'text' ) {
790 return $this->user_text;
791 } else { // id
792 return (int)$this->user;
793 }
794 }
795
796 /**
797 * Get short description URL for a file based on the page ID.
798 *
799 * @return string|null
800 * @throws MWException
801 * @since 1.27
802 */
803 public function getDescriptionShortUrl() {
804 $pageId = $this->title->getArticleID();
805
806 if ( $pageId !== null ) {
807 $url = $this->repo->makeUrl( [ 'curid' => $pageId ] );
808 if ( $url !== false ) {
809 return $url;
810 }
811 }
812 return null;
813 }
814
815 /**
816 * Get handler-specific metadata
817 * @return string
818 */
819 function getMetadata() {
820 $this->load( self::LOAD_ALL ); // large metadata is loaded in another step
821 return $this->metadata;
822 }
823
824 /**
825 * @return int
826 */
827 function getBitDepth() {
828 $this->load();
829
830 return (int)$this->bits;
831 }
832
833 /**
834 * Returns the size of the image file, in bytes
835 * @return int
836 */
837 public function getSize() {
838 $this->load();
839
840 return $this->size;
841 }
842
843 /**
844 * Returns the MIME type of the file.
845 * @return string
846 */
847 function getMimeType() {
848 $this->load();
849
850 return $this->mime;
851 }
852
853 /**
854 * Returns the type of the media in the file.
855 * Use the value returned by this function with the MEDIATYPE_xxx constants.
856 * @return string
857 */
858 function getMediaType() {
859 $this->load();
860
861 return $this->media_type;
862 }
863
864 /** canRender inherited */
865 /** mustRender inherited */
866 /** allowInlineDisplay inherited */
867 /** isSafeFile inherited */
868 /** isTrustedFile inherited */
869
870 /**
871 * Returns true if the file exists on disk.
872 * @return bool Whether file exist on disk.
873 */
874 public function exists() {
875 $this->load();
876
877 return $this->fileExists;
878 }
879
880 /** getTransformScript inherited */
881 /** getUnscaledThumb inherited */
882 /** thumbName inherited */
883 /** createThumb inherited */
884 /** transform inherited */
885
886 /** getHandler inherited */
887 /** iconThumb inherited */
888 /** getLastError inherited */
889
890 /**
891 * Get all thumbnail names previously generated for this file
892 * @param string|bool $archiveName Name of an archive file, default false
893 * @return array First element is the base dir, then files in that base dir.
894 */
895 function getThumbnails( $archiveName = false ) {
896 if ( $archiveName ) {
897 $dir = $this->getArchiveThumbPath( $archiveName );
898 } else {
899 $dir = $this->getThumbPath();
900 }
901
902 $backend = $this->repo->getBackend();
903 $files = [ $dir ];
904 try {
905 $iterator = $backend->getFileList( [ 'dir' => $dir ] );
906 foreach ( $iterator as $file ) {
907 $files[] = $file;
908 }
909 } catch ( FileBackendError $e ) {
910 } // suppress (T56674)
911
912 return $files;
913 }
914
915 /**
916 * Refresh metadata in memcached, but don't touch thumbnails or CDN
917 */
918 function purgeMetadataCache() {
919 $this->invalidateCache();
920 }
921
922 /**
923 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the CDN.
924 *
925 * @param array $options An array potentially with the key forThumbRefresh.
926 *
927 * @note This used to purge old thumbnails by default as well, but doesn't anymore.
928 */
929 function purgeCache( $options = [] ) {
930 // Refresh metadata cache
931 $this->purgeMetadataCache();
932
933 // Delete thumbnails
934 $this->purgeThumbnails( $options );
935
936 // Purge CDN cache for this file
937 DeferredUpdates::addUpdate(
938 new CdnCacheUpdate( [ $this->getUrl() ] ),
939 DeferredUpdates::PRESEND
940 );
941 }
942
943 /**
944 * Delete cached transformed files for an archived version only.
945 * @param string $archiveName Name of the archived file
946 */
947 function purgeOldThumbnails( $archiveName ) {
948 // Get a list of old thumbnails and URLs
949 $files = $this->getThumbnails( $archiveName );
950
951 // Purge any custom thumbnail caches
952 Hooks::run( 'LocalFilePurgeThumbnails', [ $this, $archiveName ] );
953
954 // Delete thumbnails
955 $dir = array_shift( $files );
956 $this->purgeThumbList( $dir, $files );
957
958 // Purge the CDN
959 $urls = [];
960 foreach ( $files as $file ) {
961 $urls[] = $this->getArchiveThumbUrl( $archiveName, $file );
962 }
963 DeferredUpdates::addUpdate( new CdnCacheUpdate( $urls ), DeferredUpdates::PRESEND );
964 }
965
966 /**
967 * Delete cached transformed files for the current version only.
968 * @param array $options
969 */
970 public function purgeThumbnails( $options = [] ) {
971 $files = $this->getThumbnails();
972 // Always purge all files from CDN regardless of handler filters
973 $urls = [];
974 foreach ( $files as $file ) {
975 $urls[] = $this->getThumbUrl( $file );
976 }
977 array_shift( $urls ); // don't purge directory
978
979 // Give media handler a chance to filter the file purge list
980 if ( !empty( $options['forThumbRefresh'] ) ) {
981 $handler = $this->getHandler();
982 if ( $handler ) {
983 $handler->filterThumbnailPurgeList( $files, $options );
984 }
985 }
986
987 // Purge any custom thumbnail caches
988 Hooks::run( 'LocalFilePurgeThumbnails', [ $this, false ] );
989
990 // Delete thumbnails
991 $dir = array_shift( $files );
992 $this->purgeThumbList( $dir, $files );
993
994 // Purge the CDN
995 DeferredUpdates::addUpdate( new CdnCacheUpdate( $urls ), DeferredUpdates::PRESEND );
996 }
997
998 /**
999 * Prerenders a configurable set of thumbnails
1000 *
1001 * @since 1.28
1002 */
1003 public function prerenderThumbnails() {
1004 global $wgUploadThumbnailRenderMap;
1005
1006 $jobs = [];
1007
1008 $sizes = $wgUploadThumbnailRenderMap;
1009 rsort( $sizes );
1010
1011 foreach ( $sizes as $size ) {
1012 if ( $this->isVectorized() || $this->getWidth() > $size ) {
1013 $jobs[] = new ThumbnailRenderJob(
1014 $this->getTitle(),
1015 [ 'transformParams' => [ 'width' => $size ] ]
1016 );
1017 }
1018 }
1019
1020 if ( $jobs ) {
1021 JobQueueGroup::singleton()->lazyPush( $jobs );
1022 }
1023 }
1024
1025 /**
1026 * Delete a list of thumbnails visible at urls
1027 * @param string $dir Base dir of the files.
1028 * @param array $files Array of strings: relative filenames (to $dir)
1029 */
1030 protected function purgeThumbList( $dir, $files ) {
1031 $fileListDebug = strtr(
1032 var_export( $files, true ),
1033 [ "\n" => '' ]
1034 );
1035 wfDebug( __METHOD__ . ": $fileListDebug\n" );
1036
1037 $purgeList = [];
1038 foreach ( $files as $file ) {
1039 if ( $this->repo->supportsSha1URLs() ) {
1040 $reference = $this->getSha1();
1041 } else {
1042 $reference = $this->getName();
1043 }
1044
1045 # Check that the reference (filename or sha1) is part of the thumb name
1046 # This is a basic sanity check to avoid erasing unrelated directories
1047 if ( strpos( $file, $reference ) !== false
1048 || strpos( $file, "-thumbnail" ) !== false // "short" thumb name
1049 ) {
1050 $purgeList[] = "{$dir}/{$file}";
1051 }
1052 }
1053
1054 # Delete the thumbnails
1055 $this->repo->quickPurgeBatch( $purgeList );
1056 # Clear out the thumbnail directory if empty
1057 $this->repo->quickCleanDir( $dir );
1058 }
1059
1060 /** purgeDescription inherited */
1061 /** purgeEverything inherited */
1062
1063 /**
1064 * @param int $limit Optional: Limit to number of results
1065 * @param int $start Optional: Timestamp, start from
1066 * @param int $end Optional: Timestamp, end at
1067 * @param bool $inc
1068 * @return OldLocalFile[]
1069 */
1070 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
1071 $dbr = $this->repo->getReplicaDB();
1072 $tables = [ 'oldimage' ];
1073 $fields = OldLocalFile::selectFields();
1074 $conds = $opts = $join_conds = [];
1075 $eq = $inc ? '=' : '';
1076 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title->getDBkey() );
1077
1078 if ( $start ) {
1079 $conds[] = "oi_timestamp <$eq " . $dbr->addQuotes( $dbr->timestamp( $start ) );
1080 }
1081
1082 if ( $end ) {
1083 $conds[] = "oi_timestamp >$eq " . $dbr->addQuotes( $dbr->timestamp( $end ) );
1084 }
1085
1086 if ( $limit ) {
1087 $opts['LIMIT'] = $limit;
1088 }
1089
1090 // Search backwards for time > x queries
1091 $order = ( !$start && $end !== null ) ? 'ASC' : 'DESC';
1092 $opts['ORDER BY'] = "oi_timestamp $order";
1093 $opts['USE INDEX'] = [ 'oldimage' => 'oi_name_timestamp' ];
1094
1095 // Avoid PHP 7.1 warning from passing $this by reference
1096 $localFile = $this;
1097 Hooks::run( 'LocalFile::getHistory', [ &$localFile, &$tables, &$fields,
1098 &$conds, &$opts, &$join_conds ] );
1099
1100 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $opts, $join_conds );
1101 $r = [];
1102
1103 foreach ( $res as $row ) {
1104 $r[] = $this->repo->newFileFromRow( $row );
1105 }
1106
1107 if ( $order == 'ASC' ) {
1108 $r = array_reverse( $r ); // make sure it ends up descending
1109 }
1110
1111 return $r;
1112 }
1113
1114 /**
1115 * Returns the history of this file, line by line.
1116 * starts with current version, then old versions.
1117 * uses $this->historyLine to check which line to return:
1118 * 0 return line for current version
1119 * 1 query for old versions, return first one
1120 * 2, ... return next old version from above query
1121 * @return bool
1122 */
1123 public function nextHistoryLine() {
1124 # Polymorphic function name to distinguish foreign and local fetches
1125 $fname = static::class . '::' . __FUNCTION__;
1126
1127 $dbr = $this->repo->getReplicaDB();
1128
1129 if ( $this->historyLine == 0 ) { // called for the first time, return line from cur
1130 $this->historyRes = $dbr->select( 'image',
1131 self::selectFields() + [
1132 'oi_archive_name' => $dbr->addQuotes( '' ),
1133 'oi_deleted' => 0,
1134 ],
1135 [ 'img_name' => $this->title->getDBkey() ],
1136 $fname
1137 );
1138
1139 if ( 0 == $dbr->numRows( $this->historyRes ) ) {
1140 $this->historyRes = null;
1141
1142 return false;
1143 }
1144 } elseif ( $this->historyLine == 1 ) {
1145 $this->historyRes = $dbr->select(
1146 'oldimage',
1147 OldLocalFile::selectFields(),
1148 [ 'oi_name' => $this->title->getDBkey() ],
1149 $fname,
1150 [ 'ORDER BY' => 'oi_timestamp DESC' ]
1151 );
1152 }
1153 $this->historyLine++;
1154
1155 return $dbr->fetchObject( $this->historyRes );
1156 }
1157
1158 /**
1159 * Reset the history pointer to the first element of the history
1160 */
1161 public function resetHistory() {
1162 $this->historyLine = 0;
1163
1164 if ( !is_null( $this->historyRes ) ) {
1165 $this->historyRes = null;
1166 }
1167 }
1168
1169 /** getHashPath inherited */
1170 /** getRel inherited */
1171 /** getUrlRel inherited */
1172 /** getArchiveRel inherited */
1173 /** getArchivePath inherited */
1174 /** getThumbPath inherited */
1175 /** getArchiveUrl inherited */
1176 /** getThumbUrl inherited */
1177 /** getArchiveVirtualUrl inherited */
1178 /** getThumbVirtualUrl inherited */
1179 /** isHashed inherited */
1180
1181 /**
1182 * Upload a file and record it in the DB
1183 * @param string|FSFile $src Source storage path, virtual URL, or filesystem path
1184 * @param string $comment Upload description
1185 * @param string $pageText Text to use for the new description page,
1186 * if a new description page is created
1187 * @param int|bool $flags Flags for publish()
1188 * @param array|bool $props File properties, if known. This can be used to
1189 * reduce the upload time when uploading virtual URLs for which the file
1190 * info is already known
1191 * @param string|bool $timestamp Timestamp for img_timestamp, or false to use the
1192 * current time
1193 * @param User|null $user User object or null to use $wgUser
1194 * @param string[] $tags Change tags to add to the log entry and page revision.
1195 * (This doesn't check $user's permissions.)
1196 * @return Status On success, the value member contains the
1197 * archive name, or an empty string if it was a new file.
1198 */
1199 function upload( $src, $comment, $pageText, $flags = 0, $props = false,
1200 $timestamp = false, $user = null, $tags = []
1201 ) {
1202 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1203 return $this->readOnlyFatalStatus();
1204 }
1205
1206 $srcPath = ( $src instanceof FSFile ) ? $src->getPath() : $src;
1207 if ( !$props ) {
1208 if ( $this->repo->isVirtualUrl( $srcPath )
1209 || FileBackend::isStoragePath( $srcPath )
1210 ) {
1211 $props = $this->repo->getFileProps( $srcPath );
1212 } else {
1213 $mwProps = new MWFileProps( MimeMagic::singleton() );
1214 $props = $mwProps->getPropsFromPath( $srcPath, true );
1215 }
1216 }
1217
1218 $options = [];
1219 $handler = MediaHandler::getHandler( $props['mime'] );
1220 if ( $handler ) {
1221 $metadata = MediaWiki\quietCall( 'unserialize', $props['metadata'] );
1222
1223 if ( !is_array( $metadata ) ) {
1224 $metadata = [];
1225 }
1226
1227 $options['headers'] = $handler->getContentHeaders( $metadata );
1228 } else {
1229 $options['headers'] = [];
1230 }
1231
1232 // Trim spaces on user supplied text
1233 $comment = trim( $comment );
1234
1235 $this->lock(); // begin
1236 $status = $this->publish( $src, $flags, $options );
1237
1238 if ( $status->successCount >= 2 ) {
1239 // There will be a copy+(one of move,copy,store).
1240 // The first succeeding does not commit us to updating the DB
1241 // since it simply copied the current version to a timestamped file name.
1242 // It is only *preferable* to avoid leaving such files orphaned.
1243 // Once the second operation goes through, then the current version was
1244 // updated and we must therefore update the DB too.
1245 $oldver = $status->value;
1246 $uploadStatus = $this->recordUpload2(
1247 $oldver,
1248 $comment,
1249 $pageText,
1250 $props,
1251 $timestamp,
1252 $user,
1253 $tags
1254 );
1255 if ( !$uploadStatus->isOK() ) {
1256 if ( $uploadStatus->hasMessage( 'filenotfound' ) ) {
1257 // update filenotfound error with more specific path
1258 $status->fatal( 'filenotfound', $srcPath );
1259 } else {
1260 $status->merge( $uploadStatus );
1261 }
1262 }
1263 }
1264
1265 $this->unlock(); // done
1266
1267 return $status;
1268 }
1269
1270 /**
1271 * Record a file upload in the upload log and the image table
1272 * @param string $oldver
1273 * @param string $desc
1274 * @param string $license
1275 * @param string $copyStatus
1276 * @param string $source
1277 * @param bool $watch
1278 * @param string|bool $timestamp
1279 * @param User|null $user User object or null to use $wgUser
1280 * @return bool
1281 */
1282 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
1283 $watch = false, $timestamp = false, User $user = null ) {
1284 if ( !$user ) {
1285 global $wgUser;
1286 $user = $wgUser;
1287 }
1288
1289 $pageText = SpecialUpload::getInitialPageText( $desc, $license, $copyStatus, $source );
1290
1291 if ( !$this->recordUpload2( $oldver, $desc, $pageText, false, $timestamp, $user )->isOK() ) {
1292 return false;
1293 }
1294
1295 if ( $watch ) {
1296 $user->addWatch( $this->getTitle() );
1297 }
1298
1299 return true;
1300 }
1301
1302 /**
1303 * Record a file upload in the upload log and the image table
1304 * @param string $oldver
1305 * @param string $comment
1306 * @param string $pageText
1307 * @param bool|array $props
1308 * @param string|bool $timestamp
1309 * @param null|User $user
1310 * @param string[] $tags
1311 * @return Status
1312 */
1313 function recordUpload2(
1314 $oldver, $comment, $pageText, $props = false, $timestamp = false, $user = null, $tags = []
1315 ) {
1316 global $wgCommentTableSchemaMigrationStage;
1317
1318 if ( is_null( $user ) ) {
1319 global $wgUser;
1320 $user = $wgUser;
1321 }
1322
1323 $dbw = $this->repo->getMasterDB();
1324
1325 # Imports or such might force a certain timestamp; otherwise we generate
1326 # it and can fudge it slightly to keep (name,timestamp) unique on re-upload.
1327 if ( $timestamp === false ) {
1328 $timestamp = $dbw->timestamp();
1329 $allowTimeKludge = true;
1330 } else {
1331 $allowTimeKludge = false;
1332 }
1333
1334 $props = $props ?: $this->repo->getFileProps( $this->getVirtualUrl() );
1335 $props['description'] = $comment;
1336 $props['user'] = $user->getId();
1337 $props['user_text'] = $user->getName();
1338 $props['timestamp'] = wfTimestamp( TS_MW, $timestamp ); // DB -> TS_MW
1339 $this->setProps( $props );
1340
1341 # Fail now if the file isn't there
1342 if ( !$this->fileExists ) {
1343 wfDebug( __METHOD__ . ": File " . $this->getRel() . " went missing!\n" );
1344
1345 return Status::newFatal( 'filenotfound', $this->getRel() );
1346 }
1347
1348 $dbw->startAtomic( __METHOD__ );
1349
1350 # Test to see if the row exists using INSERT IGNORE
1351 # This avoids race conditions by locking the row until the commit, and also
1352 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
1353 $commentStore = new CommentStore( 'img_description' );
1354 list( $commentFields, $commentCallback ) =
1355 $commentStore->insertWithTempTable( $dbw, $comment );
1356 $dbw->insert( 'image',
1357 [
1358 'img_name' => $this->getName(),
1359 'img_size' => $this->size,
1360 'img_width' => intval( $this->width ),
1361 'img_height' => intval( $this->height ),
1362 'img_bits' => $this->bits,
1363 'img_media_type' => $this->media_type,
1364 'img_major_mime' => $this->major_mime,
1365 'img_minor_mime' => $this->minor_mime,
1366 'img_timestamp' => $timestamp,
1367 'img_user' => $user->getId(),
1368 'img_user_text' => $user->getName(),
1369 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
1370 'img_sha1' => $this->sha1
1371 ] + $commentFields,
1372 __METHOD__,
1373 'IGNORE'
1374 );
1375 $reupload = ( $dbw->affectedRows() == 0 );
1376
1377 if ( $reupload ) {
1378 $row = $dbw->selectRow(
1379 'image',
1380 [ 'img_timestamp', 'img_sha1' ],
1381 [ 'img_name' => $this->getName() ],
1382 __METHOD__,
1383 [ 'LOCK IN SHARE MODE' ]
1384 );
1385
1386 if ( $row && $row->img_sha1 === $this->sha1 ) {
1387 $dbw->endAtomic( __METHOD__ );
1388 wfDebug( __METHOD__ . ": File " . $this->getRel() . " already exists!\n" );
1389 $title = Title::newFromText( $this->getName(), NS_FILE );
1390 return Status::newFatal( 'fileexists-no-change', $title->getPrefixedText() );
1391 }
1392
1393 if ( $allowTimeKludge ) {
1394 # Use LOCK IN SHARE MODE to ignore any transaction snapshotting
1395 $lUnixtime = $row ? wfTimestamp( TS_UNIX, $row->img_timestamp ) : false;
1396 # Avoid a timestamp that is not newer than the last version
1397 # TODO: the image/oldimage tables should be like page/revision with an ID field
1398 if ( $lUnixtime && wfTimestamp( TS_UNIX, $timestamp ) <= $lUnixtime ) {
1399 sleep( 1 ); // fast enough re-uploads would go far in the future otherwise
1400 $timestamp = $dbw->timestamp( $lUnixtime + 1 );
1401 $this->timestamp = wfTimestamp( TS_MW, $timestamp ); // DB -> TS_MW
1402 }
1403 }
1404
1405 $tables = [ 'image' ];
1406 $fields = [
1407 'oi_name' => 'img_name',
1408 'oi_archive_name' => $dbw->addQuotes( $oldver ),
1409 'oi_size' => 'img_size',
1410 'oi_width' => 'img_width',
1411 'oi_height' => 'img_height',
1412 'oi_bits' => 'img_bits',
1413 'oi_timestamp' => 'img_timestamp',
1414 'oi_user' => 'img_user',
1415 'oi_user_text' => 'img_user_text',
1416 'oi_metadata' => 'img_metadata',
1417 'oi_media_type' => 'img_media_type',
1418 'oi_major_mime' => 'img_major_mime',
1419 'oi_minor_mime' => 'img_minor_mime',
1420 'oi_sha1' => 'img_sha1',
1421 ];
1422 $joins = [];
1423
1424 if ( $wgCommentTableSchemaMigrationStage <= MIGRATION_WRITE_BOTH ) {
1425 $fields['oi_description'] = 'img_description';
1426 }
1427 if ( $wgCommentTableSchemaMigrationStage >= MIGRATION_WRITE_BOTH ) {
1428 $tables[] = 'image_comment_temp';
1429 $fields['oi_description_id'] = 'imgcomment_description_id';
1430 $joins['image_comment_temp'] = [
1431 $wgCommentTableSchemaMigrationStage === MIGRATION_NEW ? 'JOIN' : 'LEFT JOIN',
1432 [ 'imgcomment_name = img_name' ]
1433 ];
1434 }
1435
1436 if ( $wgCommentTableSchemaMigrationStage !== MIGRATION_OLD &&
1437 $wgCommentTableSchemaMigrationStage !== MIGRATION_NEW
1438 ) {
1439 // Upgrade any rows that are still old-style. Otherwise an upgrade
1440 // might be missed if a deletion happens while the migration script
1441 // is running.
1442 $res = $dbw->select(
1443 [ 'image', 'image_comment_temp' ],
1444 [ 'img_name', 'img_description' ],
1445 [ 'img_name' => $this->getName(), 'imgcomment_name' => null ],
1446 __METHOD__,
1447 [],
1448 [ 'image_comment_temp' => [ 'LEFT JOIN', [ 'imgcomment_name = img_name' ] ] ]
1449 );
1450 foreach ( $res as $row ) {
1451 list( , $callback ) = $commentStore->insertWithTempTable( $dbw, $row->img_description );
1452 $callback( $row->img_name );
1453 }
1454 }
1455
1456 # (T36993) Note: $oldver can be empty here, if the previous
1457 # version of the file was broken. Allow registration of the new
1458 # version to continue anyway, because that's better than having
1459 # an image that's not fixable by user operations.
1460 # Collision, this is an update of a file
1461 # Insert previous contents into oldimage
1462 $dbw->insertSelect( 'oldimage', $tables, $fields,
1463 [ 'img_name' => $this->getName() ], __METHOD__, [], [], $joins );
1464
1465 # Update the current image row
1466 $dbw->update( 'image',
1467 [
1468 'img_size' => $this->size,
1469 'img_width' => intval( $this->width ),
1470 'img_height' => intval( $this->height ),
1471 'img_bits' => $this->bits,
1472 'img_media_type' => $this->media_type,
1473 'img_major_mime' => $this->major_mime,
1474 'img_minor_mime' => $this->minor_mime,
1475 'img_timestamp' => $timestamp,
1476 'img_user' => $user->getId(),
1477 'img_user_text' => $user->getName(),
1478 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
1479 'img_sha1' => $this->sha1
1480 ] + $commentFields,
1481 [ 'img_name' => $this->getName() ],
1482 __METHOD__
1483 );
1484 if ( $wgCommentTableSchemaMigrationStage > MIGRATION_OLD ) {
1485 // So $commentCallback can insert the new row
1486 $dbw->delete( 'image_comment_temp', [ 'imgcomment_name' => $this->getName() ], __METHOD__ );
1487 }
1488 }
1489 $commentCallback( $this->getName() );
1490
1491 $descTitle = $this->getTitle();
1492 $descId = $descTitle->getArticleID();
1493 $wikiPage = new WikiFilePage( $descTitle );
1494 $wikiPage->setFile( $this );
1495
1496 // Add the log entry...
1497 $logEntry = new ManualLogEntry( 'upload', $reupload ? 'overwrite' : 'upload' );
1498 $logEntry->setTimestamp( $this->timestamp );
1499 $logEntry->setPerformer( $user );
1500 $logEntry->setComment( $comment );
1501 $logEntry->setTarget( $descTitle );
1502 // Allow people using the api to associate log entries with the upload.
1503 // Log has a timestamp, but sometimes different from upload timestamp.
1504 $logEntry->setParameters(
1505 [
1506 'img_sha1' => $this->sha1,
1507 'img_timestamp' => $timestamp,
1508 ]
1509 );
1510 // Note we keep $logId around since during new image
1511 // creation, page doesn't exist yet, so log_page = 0
1512 // but we want it to point to the page we're making,
1513 // so we later modify the log entry.
1514 // For a similar reason, we avoid making an RC entry
1515 // now and wait until the page exists.
1516 $logId = $logEntry->insert();
1517
1518 if ( $descTitle->exists() ) {
1519 // Use own context to get the action text in content language
1520 $formatter = LogFormatter::newFromEntry( $logEntry );
1521 $formatter->setContext( RequestContext::newExtraneousContext( $descTitle ) );
1522 $editSummary = $formatter->getPlainActionText();
1523
1524 $nullRevision = Revision::newNullRevision(
1525 $dbw,
1526 $descId,
1527 $editSummary,
1528 false,
1529 $user
1530 );
1531 if ( $nullRevision ) {
1532 $nullRevision->insertOn( $dbw );
1533 Hooks::run(
1534 'NewRevisionFromEditComplete',
1535 [ $wikiPage, $nullRevision, $nullRevision->getParentId(), $user ]
1536 );
1537 $wikiPage->updateRevisionOn( $dbw, $nullRevision );
1538 // Associate null revision id
1539 $logEntry->setAssociatedRevId( $nullRevision->getId() );
1540 }
1541
1542 $newPageContent = null;
1543 } else {
1544 // Make the description page and RC log entry post-commit
1545 $newPageContent = ContentHandler::makeContent( $pageText, $descTitle );
1546 }
1547
1548 # Defer purges, page creation, and link updates in case they error out.
1549 # The most important thing is that files and the DB registry stay synced.
1550 $dbw->endAtomic( __METHOD__ );
1551
1552 # Do some cache purges after final commit so that:
1553 # a) Changes are more likely to be seen post-purge
1554 # b) They won't cause rollback of the log publish/update above
1555 DeferredUpdates::addUpdate(
1556 new AutoCommitUpdate(
1557 $dbw,
1558 __METHOD__,
1559 function () use (
1560 $reupload, $wikiPage, $newPageContent, $comment, $user,
1561 $logEntry, $logId, $descId, $tags
1562 ) {
1563 # Update memcache after the commit
1564 $this->invalidateCache();
1565
1566 $updateLogPage = false;
1567 if ( $newPageContent ) {
1568 # New file page; create the description page.
1569 # There's already a log entry, so don't make a second RC entry
1570 # CDN and file cache for the description page are purged by doEditContent.
1571 $status = $wikiPage->doEditContent(
1572 $newPageContent,
1573 $comment,
1574 EDIT_NEW | EDIT_SUPPRESS_RC,
1575 false,
1576 $user
1577 );
1578
1579 if ( isset( $status->value['revision'] ) ) {
1580 /** @var Revision $rev */
1581 $rev = $status->value['revision'];
1582 // Associate new page revision id
1583 $logEntry->setAssociatedRevId( $rev->getId() );
1584 }
1585 // This relies on the resetArticleID() call in WikiPage::insertOn(),
1586 // which is triggered on $descTitle by doEditContent() above.
1587 if ( isset( $status->value['revision'] ) ) {
1588 /** @var Revision $rev */
1589 $rev = $status->value['revision'];
1590 $updateLogPage = $rev->getPage();
1591 }
1592 } else {
1593 # Existing file page: invalidate description page cache
1594 $wikiPage->getTitle()->invalidateCache();
1595 $wikiPage->getTitle()->purgeSquid();
1596 # Allow the new file version to be patrolled from the page footer
1597 Article::purgePatrolFooterCache( $descId );
1598 }
1599
1600 # Update associated rev id. This should be done by $logEntry->insert() earlier,
1601 # but setAssociatedRevId() wasn't called at that point yet...
1602 $logParams = $logEntry->getParameters();
1603 $logParams['associated_rev_id'] = $logEntry->getAssociatedRevId();
1604 $update = [ 'log_params' => LogEntryBase::makeParamBlob( $logParams ) ];
1605 if ( $updateLogPage ) {
1606 # Also log page, in case where we just created it above
1607 $update['log_page'] = $updateLogPage;
1608 }
1609 $this->getRepo()->getMasterDB()->update(
1610 'logging',
1611 $update,
1612 [ 'log_id' => $logId ],
1613 __METHOD__
1614 );
1615 $this->getRepo()->getMasterDB()->insert(
1616 'log_search',
1617 [
1618 'ls_field' => 'associated_rev_id',
1619 'ls_value' => $logEntry->getAssociatedRevId(),
1620 'ls_log_id' => $logId,
1621 ],
1622 __METHOD__
1623 );
1624
1625 # Add change tags, if any
1626 if ( $tags ) {
1627 $logEntry->setTags( $tags );
1628 }
1629
1630 # Uploads can be patrolled
1631 $logEntry->setIsPatrollable( true );
1632
1633 # Now that the log entry is up-to-date, make an RC entry.
1634 $logEntry->publish( $logId );
1635
1636 # Run hook for other updates (typically more cache purging)
1637 Hooks::run( 'FileUpload', [ $this, $reupload, !$newPageContent ] );
1638
1639 if ( $reupload ) {
1640 # Delete old thumbnails
1641 $this->purgeThumbnails();
1642 # Remove the old file from the CDN cache
1643 DeferredUpdates::addUpdate(
1644 new CdnCacheUpdate( [ $this->getUrl() ] ),
1645 DeferredUpdates::PRESEND
1646 );
1647 } else {
1648 # Update backlink pages pointing to this title if created
1649 LinksUpdate::queueRecursiveJobsForTable( $this->getTitle(), 'imagelinks' );
1650 }
1651
1652 $this->prerenderThumbnails();
1653 }
1654 ),
1655 DeferredUpdates::PRESEND
1656 );
1657
1658 if ( !$reupload ) {
1659 # This is a new file, so update the image count
1660 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [ 'images' => 1 ] ) );
1661 }
1662
1663 # Invalidate cache for all pages using this file
1664 DeferredUpdates::addUpdate( new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' ) );
1665
1666 return Status::newGood();
1667 }
1668
1669 /**
1670 * Move or copy a file to its public location. If a file exists at the
1671 * destination, move it to an archive. Returns a Status object with
1672 * the archive name in the "value" member on success.
1673 *
1674 * The archive name should be passed through to recordUpload for database
1675 * registration.
1676 *
1677 * @param string|FSFile $src Local filesystem path or virtual URL to the source image
1678 * @param int $flags A bitwise combination of:
1679 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1680 * @param array $options Optional additional parameters
1681 * @return Status On success, the value member contains the
1682 * archive name, or an empty string if it was a new file.
1683 */
1684 function publish( $src, $flags = 0, array $options = [] ) {
1685 return $this->publishTo( $src, $this->getRel(), $flags, $options );
1686 }
1687
1688 /**
1689 * Move or copy a file to a specified location. Returns a Status
1690 * object with the archive name in the "value" member on success.
1691 *
1692 * The archive name should be passed through to recordUpload for database
1693 * registration.
1694 *
1695 * @param string|FSFile $src Local filesystem path or virtual URL to the source image
1696 * @param string $dstRel Target relative path
1697 * @param int $flags A bitwise combination of:
1698 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1699 * @param array $options Optional additional parameters
1700 * @return Status On success, the value member contains the
1701 * archive name, or an empty string if it was a new file.
1702 */
1703 function publishTo( $src, $dstRel, $flags = 0, array $options = [] ) {
1704 $srcPath = ( $src instanceof FSFile ) ? $src->getPath() : $src;
1705
1706 $repo = $this->getRepo();
1707 if ( $repo->getReadOnlyReason() !== false ) {
1708 return $this->readOnlyFatalStatus();
1709 }
1710
1711 $this->lock(); // begin
1712
1713 $archiveName = wfTimestamp( TS_MW ) . '!' . $this->getName();
1714 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
1715
1716 if ( $repo->hasSha1Storage() ) {
1717 $sha1 = $repo->isVirtualUrl( $srcPath )
1718 ? $repo->getFileSha1( $srcPath )
1719 : FSFile::getSha1Base36FromPath( $srcPath );
1720 /** @var FileBackendDBRepoWrapper $wrapperBackend */
1721 $wrapperBackend = $repo->getBackend();
1722 $dst = $wrapperBackend->getPathForSHA1( $sha1 );
1723 $status = $repo->quickImport( $src, $dst );
1724 if ( $flags & File::DELETE_SOURCE ) {
1725 unlink( $srcPath );
1726 }
1727
1728 if ( $this->exists() ) {
1729 $status->value = $archiveName;
1730 }
1731 } else {
1732 $flags = $flags & File::DELETE_SOURCE ? LocalRepo::DELETE_SOURCE : 0;
1733 $status = $repo->publish( $srcPath, $dstRel, $archiveRel, $flags, $options );
1734
1735 if ( $status->value == 'new' ) {
1736 $status->value = '';
1737 } else {
1738 $status->value = $archiveName;
1739 }
1740 }
1741
1742 $this->unlock(); // done
1743
1744 return $status;
1745 }
1746
1747 /** getLinksTo inherited */
1748 /** getExifData inherited */
1749 /** isLocal inherited */
1750 /** wasDeleted inherited */
1751
1752 /**
1753 * Move file to the new title
1754 *
1755 * Move current, old version and all thumbnails
1756 * to the new filename. Old file is deleted.
1757 *
1758 * Cache purging is done; checks for validity
1759 * and logging are caller's responsibility
1760 *
1761 * @param Title $target New file name
1762 * @return Status
1763 */
1764 function move( $target ) {
1765 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1766 return $this->readOnlyFatalStatus();
1767 }
1768
1769 wfDebugLog( 'imagemove', "Got request to move {$this->name} to " . $target->getText() );
1770 $batch = new LocalFileMoveBatch( $this, $target );
1771
1772 $this->lock(); // begin
1773 $batch->addCurrent();
1774 $archiveNames = $batch->addOlds();
1775 $status = $batch->execute();
1776 $this->unlock(); // done
1777
1778 wfDebugLog( 'imagemove', "Finished moving {$this->name}" );
1779
1780 // Purge the source and target files...
1781 $oldTitleFile = wfLocalFile( $this->title );
1782 $newTitleFile = wfLocalFile( $target );
1783 // To avoid slow purges in the transaction, move them outside...
1784 DeferredUpdates::addUpdate(
1785 new AutoCommitUpdate(
1786 $this->getRepo()->getMasterDB(),
1787 __METHOD__,
1788 function () use ( $oldTitleFile, $newTitleFile, $archiveNames ) {
1789 $oldTitleFile->purgeEverything();
1790 foreach ( $archiveNames as $archiveName ) {
1791 $oldTitleFile->purgeOldThumbnails( $archiveName );
1792 }
1793 $newTitleFile->purgeEverything();
1794 }
1795 ),
1796 DeferredUpdates::PRESEND
1797 );
1798
1799 if ( $status->isOK() ) {
1800 // Now switch the object
1801 $this->title = $target;
1802 // Force regeneration of the name and hashpath
1803 unset( $this->name );
1804 unset( $this->hashPath );
1805 }
1806
1807 return $status;
1808 }
1809
1810 /**
1811 * Delete all versions of the file.
1812 *
1813 * Moves the files into an archive directory (or deletes them)
1814 * and removes the database rows.
1815 *
1816 * Cache purging is done; logging is caller's responsibility.
1817 *
1818 * @param string $reason
1819 * @param bool $suppress
1820 * @param User|null $user
1821 * @return Status
1822 */
1823 function delete( $reason, $suppress = false, $user = null ) {
1824 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1825 return $this->readOnlyFatalStatus();
1826 }
1827
1828 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress, $user );
1829
1830 $this->lock(); // begin
1831 $batch->addCurrent();
1832 // Get old version relative paths
1833 $archiveNames = $batch->addOlds();
1834 $status = $batch->execute();
1835 $this->unlock(); // done
1836
1837 if ( $status->isOK() ) {
1838 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [ 'images' => -1 ] ) );
1839 }
1840
1841 // To avoid slow purges in the transaction, move them outside...
1842 DeferredUpdates::addUpdate(
1843 new AutoCommitUpdate(
1844 $this->getRepo()->getMasterDB(),
1845 __METHOD__,
1846 function () use ( $archiveNames ) {
1847 $this->purgeEverything();
1848 foreach ( $archiveNames as $archiveName ) {
1849 $this->purgeOldThumbnails( $archiveName );
1850 }
1851 }
1852 ),
1853 DeferredUpdates::PRESEND
1854 );
1855
1856 // Purge the CDN
1857 $purgeUrls = [];
1858 foreach ( $archiveNames as $archiveName ) {
1859 $purgeUrls[] = $this->getArchiveUrl( $archiveName );
1860 }
1861 DeferredUpdates::addUpdate( new CdnCacheUpdate( $purgeUrls ), DeferredUpdates::PRESEND );
1862
1863 return $status;
1864 }
1865
1866 /**
1867 * Delete an old version of the file.
1868 *
1869 * Moves the file into an archive directory (or deletes it)
1870 * and removes the database row.
1871 *
1872 * Cache purging is done; logging is caller's responsibility.
1873 *
1874 * @param string $archiveName
1875 * @param string $reason
1876 * @param bool $suppress
1877 * @param User|null $user
1878 * @throws MWException Exception on database or file store failure
1879 * @return Status
1880 */
1881 function deleteOld( $archiveName, $reason, $suppress = false, $user = null ) {
1882 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1883 return $this->readOnlyFatalStatus();
1884 }
1885
1886 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress, $user );
1887
1888 $this->lock(); // begin
1889 $batch->addOld( $archiveName );
1890 $status = $batch->execute();
1891 $this->unlock(); // done
1892
1893 $this->purgeOldThumbnails( $archiveName );
1894 if ( $status->isOK() ) {
1895 $this->purgeDescription();
1896 }
1897
1898 DeferredUpdates::addUpdate(
1899 new CdnCacheUpdate( [ $this->getArchiveUrl( $archiveName ) ] ),
1900 DeferredUpdates::PRESEND
1901 );
1902
1903 return $status;
1904 }
1905
1906 /**
1907 * Restore all or specified deleted revisions to the given file.
1908 * Permissions and logging are left to the caller.
1909 *
1910 * May throw database exceptions on error.
1911 *
1912 * @param array $versions Set of record ids of deleted items to restore,
1913 * or empty to restore all revisions.
1914 * @param bool $unsuppress
1915 * @return Status
1916 */
1917 function restore( $versions = [], $unsuppress = false ) {
1918 if ( $this->getRepo()->getReadOnlyReason() !== false ) {
1919 return $this->readOnlyFatalStatus();
1920 }
1921
1922 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
1923
1924 $this->lock(); // begin
1925 if ( !$versions ) {
1926 $batch->addAll();
1927 } else {
1928 $batch->addIds( $versions );
1929 }
1930 $status = $batch->execute();
1931 if ( $status->isGood() ) {
1932 $cleanupStatus = $batch->cleanup();
1933 $cleanupStatus->successCount = 0;
1934 $cleanupStatus->failCount = 0;
1935 $status->merge( $cleanupStatus );
1936 }
1937 $this->unlock(); // done
1938
1939 return $status;
1940 }
1941
1942 /** isMultipage inherited */
1943 /** pageCount inherited */
1944 /** scaleHeight inherited */
1945 /** getImageSize inherited */
1946
1947 /**
1948 * Get the URL of the file description page.
1949 * @return string
1950 */
1951 function getDescriptionUrl() {
1952 return $this->title->getLocalURL();
1953 }
1954
1955 /**
1956 * Get the HTML text of the description page
1957 * This is not used by ImagePage for local files, since (among other things)
1958 * it skips the parser cache.
1959 *
1960 * @param Language $lang What language to get description in (Optional)
1961 * @return bool|mixed
1962 */
1963 function getDescriptionText( $lang = null ) {
1964 $revision = Revision::newFromTitle( $this->title, false, Revision::READ_NORMAL );
1965 if ( !$revision ) {
1966 return false;
1967 }
1968 $content = $revision->getContent();
1969 if ( !$content ) {
1970 return false;
1971 }
1972 $pout = $content->getParserOutput( $this->title, null, new ParserOptions( null, $lang ) );
1973
1974 return $pout->getText();
1975 }
1976
1977 /**
1978 * @param int $audience
1979 * @param User $user
1980 * @return string
1981 */
1982 function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
1983 $this->load();
1984 if ( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_COMMENT ) ) {
1985 return '';
1986 } elseif ( $audience == self::FOR_THIS_USER
1987 && !$this->userCan( self::DELETED_COMMENT, $user )
1988 ) {
1989 return '';
1990 } else {
1991 return $this->description;
1992 }
1993 }
1994
1995 /**
1996 * @return bool|string
1997 */
1998 function getTimestamp() {
1999 $this->load();
2000
2001 return $this->timestamp;
2002 }
2003
2004 /**
2005 * @return bool|string
2006 */
2007 public function getDescriptionTouched() {
2008 // The DB lookup might return false, e.g. if the file was just deleted, or the shared DB repo
2009 // itself gets it from elsewhere. To avoid repeating the DB lookups in such a case, we
2010 // need to differentiate between null (uninitialized) and false (failed to load).
2011 if ( $this->descriptionTouched === null ) {
2012 $cond = [
2013 'page_namespace' => $this->title->getNamespace(),
2014 'page_title' => $this->title->getDBkey()
2015 ];
2016 $touched = $this->repo->getReplicaDB()->selectField( 'page', 'page_touched', $cond, __METHOD__ );
2017 $this->descriptionTouched = $touched ? wfTimestamp( TS_MW, $touched ) : false;
2018 }
2019
2020 return $this->descriptionTouched;
2021 }
2022
2023 /**
2024 * @return string
2025 */
2026 function getSha1() {
2027 $this->load();
2028 // Initialise now if necessary
2029 if ( $this->sha1 == '' && $this->fileExists ) {
2030 $this->lock(); // begin
2031
2032 $this->sha1 = $this->repo->getFileSha1( $this->getPath() );
2033 if ( !wfReadOnly() && strval( $this->sha1 ) != '' ) {
2034 $dbw = $this->repo->getMasterDB();
2035 $dbw->update( 'image',
2036 [ 'img_sha1' => $this->sha1 ],
2037 [ 'img_name' => $this->getName() ],
2038 __METHOD__ );
2039 $this->invalidateCache();
2040 }
2041
2042 $this->unlock(); // done
2043 }
2044
2045 return $this->sha1;
2046 }
2047
2048 /**
2049 * @return bool Whether to cache in RepoGroup (this avoids OOMs)
2050 */
2051 function isCacheable() {
2052 $this->load();
2053
2054 // If extra data (metadata) was not loaded then it must have been large
2055 return $this->extraDataLoaded
2056 && strlen( serialize( $this->metadata ) ) <= self::CACHE_FIELD_MAX_LEN;
2057 }
2058
2059 /**
2060 * @return Status
2061 * @since 1.28
2062 */
2063 public function acquireFileLock() {
2064 return $this->getRepo()->getBackend()->lockFiles(
2065 [ $this->getPath() ], LockManager::LOCK_EX, 10
2066 );
2067 }
2068
2069 /**
2070 * @return Status
2071 * @since 1.28
2072 */
2073 public function releaseFileLock() {
2074 return $this->getRepo()->getBackend()->unlockFiles(
2075 [ $this->getPath() ], LockManager::LOCK_EX
2076 );
2077 }
2078
2079 /**
2080 * Start an atomic DB section and lock the image for update
2081 * or increments a reference counter if the lock is already held
2082 *
2083 * This method should not be used outside of LocalFile/LocalFile*Batch
2084 *
2085 * @throws LocalFileLockError Throws an error if the lock was not acquired
2086 * @return bool Whether the file lock owns/spawned the DB transaction
2087 */
2088 public function lock() {
2089 if ( !$this->locked ) {
2090 $logger = LoggerFactory::getInstance( 'LocalFile' );
2091
2092 $dbw = $this->repo->getMasterDB();
2093 $makesTransaction = !$dbw->trxLevel();
2094 $dbw->startAtomic( self::ATOMIC_SECTION_LOCK );
2095 // T56736: use simple lock to handle when the file does not exist.
2096 // SELECT FOR UPDATE prevents changes, not other SELECTs with FOR UPDATE.
2097 // Also, that would cause contention on INSERT of similarly named rows.
2098 $status = $this->acquireFileLock(); // represents all versions of the file
2099 if ( !$status->isGood() ) {
2100 $dbw->endAtomic( self::ATOMIC_SECTION_LOCK );
2101 $logger->warning( "Failed to lock '{file}'", [ 'file' => $this->name ] );
2102
2103 throw new LocalFileLockError( $status );
2104 }
2105 // Release the lock *after* commit to avoid row-level contention.
2106 // Make sure it triggers on rollback() as well as commit() (T132921).
2107 $dbw->onTransactionResolution(
2108 function () use ( $logger ) {
2109 $status = $this->releaseFileLock();
2110 if ( !$status->isGood() ) {
2111 $logger->error( "Failed to unlock '{file}'", [ 'file' => $this->name ] );
2112 }
2113 },
2114 __METHOD__
2115 );
2116 // Callers might care if the SELECT snapshot is safely fresh
2117 $this->lockedOwnTrx = $makesTransaction;
2118 }
2119
2120 $this->locked++;
2121
2122 return $this->lockedOwnTrx;
2123 }
2124
2125 /**
2126 * Decrement the lock reference count and end the atomic section if it reaches zero
2127 *
2128 * This method should not be used outside of LocalFile/LocalFile*Batch
2129 *
2130 * The commit and loc release will happen when no atomic sections are active, which
2131 * may happen immediately or at some point after calling this
2132 */
2133 public function unlock() {
2134 if ( $this->locked ) {
2135 --$this->locked;
2136 if ( !$this->locked ) {
2137 $dbw = $this->repo->getMasterDB();
2138 $dbw->endAtomic( self::ATOMIC_SECTION_LOCK );
2139 $this->lockedOwnTrx = false;
2140 }
2141 }
2142 }
2143
2144 /**
2145 * @return Status
2146 */
2147 protected function readOnlyFatalStatus() {
2148 return $this->getRepo()->newFatal( 'filereadonlyerror', $this->getName(),
2149 $this->getRepo()->getName(), $this->getRepo()->getReadOnlyReason() );
2150 }
2151
2152 /**
2153 * Clean up any dangling locks
2154 */
2155 function __destruct() {
2156 $this->unlock();
2157 }
2158 } // LocalFile class
2159
2160 # ------------------------------------------------------------------------------
2161
2162 /**
2163 * Helper class for file deletion
2164 * @ingroup FileAbstraction
2165 */
2166 class LocalFileDeleteBatch {
2167 /** @var LocalFile */
2168 private $file;
2169
2170 /** @var string */
2171 private $reason;
2172
2173 /** @var array */
2174 private $srcRels = [];
2175
2176 /** @var array */
2177 private $archiveUrls = [];
2178
2179 /** @var array Items to be processed in the deletion batch */
2180 private $deletionBatch;
2181
2182 /** @var bool Whether to suppress all suppressable fields when deleting */
2183 private $suppress;
2184
2185 /** @var Status */
2186 private $status;
2187
2188 /** @var User */
2189 private $user;
2190
2191 /**
2192 * @param File $file
2193 * @param string $reason
2194 * @param bool $suppress
2195 * @param User|null $user
2196 */
2197 function __construct( File $file, $reason = '', $suppress = false, $user = null ) {
2198 $this->file = $file;
2199 $this->reason = $reason;
2200 $this->suppress = $suppress;
2201 if ( $user ) {
2202 $this->user = $user;
2203 } else {
2204 global $wgUser;
2205 $this->user = $wgUser;
2206 }
2207 $this->status = $file->repo->newGood();
2208 }
2209
2210 public function addCurrent() {
2211 $this->srcRels['.'] = $this->file->getRel();
2212 }
2213
2214 /**
2215 * @param string $oldName
2216 */
2217 public function addOld( $oldName ) {
2218 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
2219 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
2220 }
2221
2222 /**
2223 * Add the old versions of the image to the batch
2224 * @return array List of archive names from old versions
2225 */
2226 public function addOlds() {
2227 $archiveNames = [];
2228
2229 $dbw = $this->file->repo->getMasterDB();
2230 $result = $dbw->select( 'oldimage',
2231 [ 'oi_archive_name' ],
2232 [ 'oi_name' => $this->file->getName() ],
2233 __METHOD__
2234 );
2235
2236 foreach ( $result as $row ) {
2237 $this->addOld( $row->oi_archive_name );
2238 $archiveNames[] = $row->oi_archive_name;
2239 }
2240
2241 return $archiveNames;
2242 }
2243
2244 /**
2245 * @return array
2246 */
2247 protected function getOldRels() {
2248 if ( !isset( $this->srcRels['.'] ) ) {
2249 $oldRels =& $this->srcRels;
2250 $deleteCurrent = false;
2251 } else {
2252 $oldRels = $this->srcRels;
2253 unset( $oldRels['.'] );
2254 $deleteCurrent = true;
2255 }
2256
2257 return [ $oldRels, $deleteCurrent ];
2258 }
2259
2260 /**
2261 * @return array
2262 */
2263 protected function getHashes() {
2264 $hashes = [];
2265 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2266
2267 if ( $deleteCurrent ) {
2268 $hashes['.'] = $this->file->getSha1();
2269 }
2270
2271 if ( count( $oldRels ) ) {
2272 $dbw = $this->file->repo->getMasterDB();
2273 $res = $dbw->select(
2274 'oldimage',
2275 [ 'oi_archive_name', 'oi_sha1' ],
2276 [ 'oi_archive_name' => array_keys( $oldRels ),
2277 'oi_name' => $this->file->getName() ], // performance
2278 __METHOD__
2279 );
2280
2281 foreach ( $res as $row ) {
2282 if ( rtrim( $row->oi_sha1, "\0" ) === '' ) {
2283 // Get the hash from the file
2284 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
2285 $props = $this->file->repo->getFileProps( $oldUrl );
2286
2287 if ( $props['fileExists'] ) {
2288 // Upgrade the oldimage row
2289 $dbw->update( 'oldimage',
2290 [ 'oi_sha1' => $props['sha1'] ],
2291 [ 'oi_name' => $this->file->getName(), 'oi_archive_name' => $row->oi_archive_name ],
2292 __METHOD__ );
2293 $hashes[$row->oi_archive_name] = $props['sha1'];
2294 } else {
2295 $hashes[$row->oi_archive_name] = false;
2296 }
2297 } else {
2298 $hashes[$row->oi_archive_name] = $row->oi_sha1;
2299 }
2300 }
2301 }
2302
2303 $missing = array_diff_key( $this->srcRels, $hashes );
2304
2305 foreach ( $missing as $name => $rel ) {
2306 $this->status->error( 'filedelete-old-unregistered', $name );
2307 }
2308
2309 foreach ( $hashes as $name => $hash ) {
2310 if ( !$hash ) {
2311 $this->status->error( 'filedelete-missing', $this->srcRels[$name] );
2312 unset( $hashes[$name] );
2313 }
2314 }
2315
2316 return $hashes;
2317 }
2318
2319 protected function doDBInserts() {
2320 global $wgCommentTableSchemaMigrationStage;
2321
2322 $now = time();
2323 $dbw = $this->file->repo->getMasterDB();
2324
2325 $commentStoreImgDesc = new CommentStore( 'img_description' );
2326 $commentStoreOiDesc = new CommentStore( 'oi_description' );
2327 $commentStoreFaDesc = new CommentStore( 'fa_description' );
2328 $commentStoreFaReason = new CommentStore( 'fa_deleted_reason' );
2329
2330 $encTimestamp = $dbw->addQuotes( $dbw->timestamp( $now ) );
2331 $encUserId = $dbw->addQuotes( $this->user->getId() );
2332 $encGroup = $dbw->addQuotes( 'deleted' );
2333 $ext = $this->file->getExtension();
2334 $dotExt = $ext === '' ? '' : ".$ext";
2335 $encExt = $dbw->addQuotes( $dotExt );
2336 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2337
2338 // Bitfields to further suppress the content
2339 if ( $this->suppress ) {
2340 $bitfield = Revision::SUPPRESSED_ALL;
2341 } else {
2342 $bitfield = 'oi_deleted';
2343 }
2344
2345 if ( $deleteCurrent ) {
2346 $tables = [ 'image' ];
2347 $fields = [
2348 'fa_storage_group' => $encGroup,
2349 'fa_storage_key' => $dbw->conditional(
2350 [ 'img_sha1' => '' ],
2351 $dbw->addQuotes( '' ),
2352 $dbw->buildConcat( [ "img_sha1", $encExt ] )
2353 ),
2354 'fa_deleted_user' => $encUserId,
2355 'fa_deleted_timestamp' => $encTimestamp,
2356 'fa_deleted' => $this->suppress ? $bitfield : 0,
2357 'fa_name' => 'img_name',
2358 'fa_archive_name' => 'NULL',
2359 'fa_size' => 'img_size',
2360 'fa_width' => 'img_width',
2361 'fa_height' => 'img_height',
2362 'fa_metadata' => 'img_metadata',
2363 'fa_bits' => 'img_bits',
2364 'fa_media_type' => 'img_media_type',
2365 'fa_major_mime' => 'img_major_mime',
2366 'fa_minor_mime' => 'img_minor_mime',
2367 'fa_user' => 'img_user',
2368 'fa_user_text' => 'img_user_text',
2369 'fa_timestamp' => 'img_timestamp',
2370 'fa_sha1' => 'img_sha1'
2371 ];
2372 $joins = [];
2373
2374 $fields += array_map(
2375 [ $dbw, 'addQuotes' ],
2376 $commentStoreFaReason->insert( $dbw, $this->reason )
2377 );
2378
2379 if ( $wgCommentTableSchemaMigrationStage <= MIGRATION_WRITE_BOTH ) {
2380 $fields['fa_description'] = 'img_description';
2381 }
2382 if ( $wgCommentTableSchemaMigrationStage >= MIGRATION_WRITE_BOTH ) {
2383 $tables[] = 'image_comment_temp';
2384 $fields['fa_description_id'] = 'imgcomment_description_id';
2385 $joins['image_comment_temp'] = [
2386 $wgCommentTableSchemaMigrationStage === MIGRATION_NEW ? 'JOIN' : 'LEFT JOIN',
2387 [ 'imgcomment_name = img_name' ]
2388 ];
2389 }
2390
2391 if ( $wgCommentTableSchemaMigrationStage !== MIGRATION_OLD &&
2392 $wgCommentTableSchemaMigrationStage !== MIGRATION_NEW
2393 ) {
2394 // Upgrade any rows that are still old-style. Otherwise an upgrade
2395 // might be missed if a deletion happens while the migration script
2396 // is running.
2397 $res = $dbw->select(
2398 [ 'image', 'image_comment_temp' ],
2399 [ 'img_name', 'img_description' ],
2400 [ 'img_name' => $this->file->getName(), 'imgcomment_name' => null ],
2401 __METHOD__,
2402 [],
2403 [ 'image_comment_temp' => [ 'LEFT JOIN', [ 'imgcomment_name = img_name' ] ] ]
2404 );
2405 foreach ( $res as $row ) {
2406 list( , $callback ) = $commentStoreImgDesc->insertWithTempTable( $dbw, $row->img_description );
2407 $callback( $row->img_name );
2408 }
2409 }
2410
2411 $dbw->insertSelect( 'filearchive', $tables, $fields,
2412 [ 'img_name' => $this->file->getName() ], __METHOD__, [], [], $joins );
2413 }
2414
2415 if ( count( $oldRels ) ) {
2416 $res = $dbw->select(
2417 'oldimage',
2418 OldLocalFile::selectFields(),
2419 [
2420 'oi_name' => $this->file->getName(),
2421 'oi_archive_name' => array_keys( $oldRels )
2422 ],
2423 __METHOD__,
2424 [ 'FOR UPDATE' ]
2425 );
2426 $rowsInsert = [];
2427 if ( $res->numRows() ) {
2428 $reason = $commentStoreFaReason->createComment( $dbw, $this->reason );
2429 foreach ( $res as $row ) {
2430 // Legacy from OldLocalFile::selectFields() just above
2431 $comment = $commentStoreOiDesc->getCommentLegacy( $dbw, $row );
2432 $rowsInsert[] = [
2433 // Deletion-specific fields
2434 'fa_storage_group' => 'deleted',
2435 'fa_storage_key' => ( $row->oi_sha1 === '' )
2436 ? ''
2437 : "{$row->oi_sha1}{$dotExt}",
2438 'fa_deleted_user' => $this->user->getId(),
2439 'fa_deleted_timestamp' => $dbw->timestamp( $now ),
2440 // Counterpart fields
2441 'fa_deleted' => $this->suppress ? $bitfield : $row->oi_deleted,
2442 'fa_name' => $row->oi_name,
2443 'fa_archive_name' => $row->oi_archive_name,
2444 'fa_size' => $row->oi_size,
2445 'fa_width' => $row->oi_width,
2446 'fa_height' => $row->oi_height,
2447 'fa_metadata' => $row->oi_metadata,
2448 'fa_bits' => $row->oi_bits,
2449 'fa_media_type' => $row->oi_media_type,
2450 'fa_major_mime' => $row->oi_major_mime,
2451 'fa_minor_mime' => $row->oi_minor_mime,
2452 'fa_user' => $row->oi_user,
2453 'fa_user_text' => $row->oi_user_text,
2454 'fa_timestamp' => $row->oi_timestamp,
2455 'fa_sha1' => $row->oi_sha1
2456 ] + $commentStoreFaReason->insert( $dbw, $reason )
2457 + $commentStoreFaDesc->insert( $dbw, $comment );
2458 }
2459 }
2460
2461 $dbw->insert( 'filearchive', $rowsInsert, __METHOD__ );
2462 }
2463 }
2464
2465 function doDBDeletes() {
2466 global $wgCommentTableSchemaMigrationStage;
2467
2468 $dbw = $this->file->repo->getMasterDB();
2469 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
2470
2471 if ( count( $oldRels ) ) {
2472 $dbw->delete( 'oldimage',
2473 [
2474 'oi_name' => $this->file->getName(),
2475 'oi_archive_name' => array_keys( $oldRels )
2476 ], __METHOD__ );
2477 }
2478
2479 if ( $deleteCurrent ) {
2480 $dbw->delete( 'image', [ 'img_name' => $this->file->getName() ], __METHOD__ );
2481 if ( $wgCommentTableSchemaMigrationStage > MIGRATION_OLD ) {
2482 $dbw->delete(
2483 'image_comment_temp', [ 'imgcomment_name' => $this->file->getName() ], __METHOD__
2484 );
2485 }
2486 }
2487 }
2488
2489 /**
2490 * Run the transaction
2491 * @return Status
2492 */
2493 public function execute() {
2494 $repo = $this->file->getRepo();
2495 $this->file->lock();
2496
2497 // Prepare deletion batch
2498 $hashes = $this->getHashes();
2499 $this->deletionBatch = [];
2500 $ext = $this->file->getExtension();
2501 $dotExt = $ext === '' ? '' : ".$ext";
2502
2503 foreach ( $this->srcRels as $name => $srcRel ) {
2504 // Skip files that have no hash (e.g. missing DB record, or sha1 field and file source)
2505 if ( isset( $hashes[$name] ) ) {
2506 $hash = $hashes[$name];
2507 $key = $hash . $dotExt;
2508 $dstRel = $repo->getDeletedHashPath( $key ) . $key;
2509 $this->deletionBatch[$name] = [ $srcRel, $dstRel ];
2510 }
2511 }
2512
2513 if ( !$repo->hasSha1Storage() ) {
2514 // Removes non-existent file from the batch, so we don't get errors.
2515 // This also handles files in the 'deleted' zone deleted via revision deletion.
2516 $checkStatus = $this->removeNonexistentFiles( $this->deletionBatch );
2517 if ( !$checkStatus->isGood() ) {
2518 $this->status->merge( $checkStatus );
2519 return $this->status;
2520 }
2521 $this->deletionBatch = $checkStatus->value;
2522
2523 // Execute the file deletion batch
2524 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
2525 if ( !$status->isGood() ) {
2526 $this->status->merge( $status );
2527 }
2528 }
2529
2530 if ( !$this->status->isOK() ) {
2531 // Critical file deletion error; abort
2532 $this->file->unlock();
2533
2534 return $this->status;
2535 }
2536
2537 // Copy the image/oldimage rows to filearchive
2538 $this->doDBInserts();
2539 // Delete image/oldimage rows
2540 $this->doDBDeletes();
2541
2542 // Commit and return
2543 $this->file->unlock();
2544
2545 return $this->status;
2546 }
2547
2548 /**
2549 * Removes non-existent files from a deletion batch.
2550 * @param array $batch
2551 * @return Status
2552 */
2553 protected function removeNonexistentFiles( $batch ) {
2554 $files = $newBatch = [];
2555
2556 foreach ( $batch as $batchItem ) {
2557 list( $src, ) = $batchItem;
2558 $files[$src] = $this->file->repo->getVirtualUrl( 'public' ) . '/' . rawurlencode( $src );
2559 }
2560
2561 $result = $this->file->repo->fileExistsBatch( $files );
2562 if ( in_array( null, $result, true ) ) {
2563 return Status::newFatal( 'backend-fail-internal',
2564 $this->file->repo->getBackend()->getName() );
2565 }
2566
2567 foreach ( $batch as $batchItem ) {
2568 if ( $result[$batchItem[0]] ) {
2569 $newBatch[] = $batchItem;
2570 }
2571 }
2572
2573 return Status::newGood( $newBatch );
2574 }
2575 }
2576
2577 # ------------------------------------------------------------------------------
2578
2579 /**
2580 * Helper class for file undeletion
2581 * @ingroup FileAbstraction
2582 */
2583 class LocalFileRestoreBatch {
2584 /** @var LocalFile */
2585 private $file;
2586
2587 /** @var array List of file IDs to restore */
2588 private $cleanupBatch;
2589
2590 /** @var array List of file IDs to restore */
2591 private $ids;
2592
2593 /** @var bool Add all revisions of the file */
2594 private $all;
2595
2596 /** @var bool Whether to remove all settings for suppressed fields */
2597 private $unsuppress = false;
2598
2599 /**
2600 * @param File $file
2601 * @param bool $unsuppress
2602 */
2603 function __construct( File $file, $unsuppress = false ) {
2604 $this->file = $file;
2605 $this->cleanupBatch = $this->ids = [];
2606 $this->ids = [];
2607 $this->unsuppress = $unsuppress;
2608 }
2609
2610 /**
2611 * Add a file by ID
2612 * @param int $fa_id
2613 */
2614 public function addId( $fa_id ) {
2615 $this->ids[] = $fa_id;
2616 }
2617
2618 /**
2619 * Add a whole lot of files by ID
2620 * @param int[] $ids
2621 */
2622 public function addIds( $ids ) {
2623 $this->ids = array_merge( $this->ids, $ids );
2624 }
2625
2626 /**
2627 * Add all revisions of the file
2628 */
2629 public function addAll() {
2630 $this->all = true;
2631 }
2632
2633 /**
2634 * Run the transaction, except the cleanup batch.
2635 * The cleanup batch should be run in a separate transaction, because it locks different
2636 * rows and there's no need to keep the image row locked while it's acquiring those locks
2637 * The caller may have its own transaction open.
2638 * So we save the batch and let the caller call cleanup()
2639 * @return Status
2640 */
2641 public function execute() {
2642 /** @var Language */
2643 global $wgLang;
2644
2645 $repo = $this->file->getRepo();
2646 if ( !$this->all && !$this->ids ) {
2647 // Do nothing
2648 return $repo->newGood();
2649 }
2650
2651 $lockOwnsTrx = $this->file->lock();
2652
2653 $dbw = $this->file->repo->getMasterDB();
2654
2655 $commentStoreImgDesc = new CommentStore( 'img_description' );
2656 $commentStoreOiDesc = new CommentStore( 'oi_description' );
2657 $commentStoreFaDesc = new CommentStore( 'fa_description' );
2658
2659 $status = $this->file->repo->newGood();
2660
2661 $exists = (bool)$dbw->selectField( 'image', '1',
2662 [ 'img_name' => $this->file->getName() ],
2663 __METHOD__,
2664 // The lock() should already prevents changes, but this still may need
2665 // to bypass any transaction snapshot. However, if lock() started the
2666 // trx (which it probably did) then snapshot is post-lock and up-to-date.
2667 $lockOwnsTrx ? [] : [ 'LOCK IN SHARE MODE' ]
2668 );
2669
2670 // Fetch all or selected archived revisions for the file,
2671 // sorted from the most recent to the oldest.
2672 $conditions = [ 'fa_name' => $this->file->getName() ];
2673
2674 if ( !$this->all ) {
2675 $conditions['fa_id'] = $this->ids;
2676 }
2677
2678 $result = $dbw->select(
2679 'filearchive',
2680 ArchivedFile::selectFields(),
2681 $conditions,
2682 __METHOD__,
2683 [ 'ORDER BY' => 'fa_timestamp DESC' ]
2684 );
2685
2686 $idsPresent = [];
2687 $storeBatch = [];
2688 $insertBatch = [];
2689 $insertCurrent = false;
2690 $deleteIds = [];
2691 $first = true;
2692 $archiveNames = [];
2693
2694 foreach ( $result as $row ) {
2695 $idsPresent[] = $row->fa_id;
2696
2697 if ( $row->fa_name != $this->file->getName() ) {
2698 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp ) );
2699 $status->failCount++;
2700 continue;
2701 }
2702
2703 if ( $row->fa_storage_key == '' ) {
2704 // Revision was missing pre-deletion
2705 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp ) );
2706 $status->failCount++;
2707 continue;
2708 }
2709
2710 $deletedRel = $repo->getDeletedHashPath( $row->fa_storage_key ) .
2711 $row->fa_storage_key;
2712 $deletedUrl = $repo->getVirtualUrl() . '/deleted/' . $deletedRel;
2713
2714 if ( isset( $row->fa_sha1 ) ) {
2715 $sha1 = $row->fa_sha1;
2716 } else {
2717 // old row, populate from key
2718 $sha1 = LocalRepo::getHashFromKey( $row->fa_storage_key );
2719 }
2720
2721 # Fix leading zero
2722 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
2723 $sha1 = substr( $sha1, 1 );
2724 }
2725
2726 if ( is_null( $row->fa_major_mime ) || $row->fa_major_mime == 'unknown'
2727 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime == 'unknown'
2728 || is_null( $row->fa_media_type ) || $row->fa_media_type == 'UNKNOWN'
2729 || is_null( $row->fa_metadata )
2730 ) {
2731 // Refresh our metadata
2732 // Required for a new current revision; nice for older ones too. :)
2733 $props = RepoGroup::singleton()->getFileProps( $deletedUrl );
2734 } else {
2735 $props = [
2736 'minor_mime' => $row->fa_minor_mime,
2737 'major_mime' => $row->fa_major_mime,
2738 'media_type' => $row->fa_media_type,
2739 'metadata' => $row->fa_metadata
2740 ];
2741 }
2742
2743 // Legacy from ArchivedFile::selectFields() just above
2744 $comment = $commentStoreFaDesc->getCommentLegacy( $dbw, $row );
2745 if ( $first && !$exists ) {
2746 // This revision will be published as the new current version
2747 $destRel = $this->file->getRel();
2748 list( $commentFields, $commentCallback ) =
2749 $commentStoreImgDesc->insertWithTempTable( $dbw, $comment );
2750 $insertCurrent = [
2751 'img_name' => $row->fa_name,
2752 'img_size' => $row->fa_size,
2753 'img_width' => $row->fa_width,
2754 'img_height' => $row->fa_height,
2755 'img_metadata' => $props['metadata'],
2756 'img_bits' => $row->fa_bits,
2757 'img_media_type' => $props['media_type'],
2758 'img_major_mime' => $props['major_mime'],
2759 'img_minor_mime' => $props['minor_mime'],
2760 'img_user' => $row->fa_user,
2761 'img_user_text' => $row->fa_user_text,
2762 'img_timestamp' => $row->fa_timestamp,
2763 'img_sha1' => $sha1
2764 ] + $commentFields;
2765
2766 // The live (current) version cannot be hidden!
2767 if ( !$this->unsuppress && $row->fa_deleted ) {
2768 $status->fatal( 'undeleterevdel' );
2769 $this->file->unlock();
2770 return $status;
2771 }
2772 } else {
2773 $archiveName = $row->fa_archive_name;
2774
2775 if ( $archiveName == '' ) {
2776 // This was originally a current version; we
2777 // have to devise a new archive name for it.
2778 // Format is <timestamp of archiving>!<name>
2779 $timestamp = wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
2780
2781 do {
2782 $archiveName = wfTimestamp( TS_MW, $timestamp ) . '!' . $row->fa_name;
2783 $timestamp++;
2784 } while ( isset( $archiveNames[$archiveName] ) );
2785 }
2786
2787 $archiveNames[$archiveName] = true;
2788 $destRel = $this->file->getArchiveRel( $archiveName );
2789 $insertBatch[] = [
2790 'oi_name' => $row->fa_name,
2791 'oi_archive_name' => $archiveName,
2792 'oi_size' => $row->fa_size,
2793 'oi_width' => $row->fa_width,
2794 'oi_height' => $row->fa_height,
2795 'oi_bits' => $row->fa_bits,
2796 'oi_user' => $row->fa_user,
2797 'oi_user_text' => $row->fa_user_text,
2798 'oi_timestamp' => $row->fa_timestamp,
2799 'oi_metadata' => $props['metadata'],
2800 'oi_media_type' => $props['media_type'],
2801 'oi_major_mime' => $props['major_mime'],
2802 'oi_minor_mime' => $props['minor_mime'],
2803 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
2804 'oi_sha1' => $sha1
2805 ] + $commentStoreOiDesc->insert( $dbw, $comment );
2806 }
2807
2808 $deleteIds[] = $row->fa_id;
2809
2810 if ( !$this->unsuppress && $row->fa_deleted & File::DELETED_FILE ) {
2811 // private files can stay where they are
2812 $status->successCount++;
2813 } else {
2814 $storeBatch[] = [ $deletedUrl, 'public', $destRel ];
2815 $this->cleanupBatch[] = $row->fa_storage_key;
2816 }
2817
2818 $first = false;
2819 }
2820
2821 unset( $result );
2822
2823 // Add a warning to the status object for missing IDs
2824 $missingIds = array_diff( $this->ids, $idsPresent );
2825
2826 foreach ( $missingIds as $id ) {
2827 $status->error( 'undelete-missing-filearchive', $id );
2828 }
2829
2830 if ( !$repo->hasSha1Storage() ) {
2831 // Remove missing files from batch, so we don't get errors when undeleting them
2832 $checkStatus = $this->removeNonexistentFiles( $storeBatch );
2833 if ( !$checkStatus->isGood() ) {
2834 $status->merge( $checkStatus );
2835 return $status;
2836 }
2837 $storeBatch = $checkStatus->value;
2838
2839 // Run the store batch
2840 // Use the OVERWRITE_SAME flag to smooth over a common error
2841 $storeStatus = $this->file->repo->storeBatch( $storeBatch, FileRepo::OVERWRITE_SAME );
2842 $status->merge( $storeStatus );
2843
2844 if ( !$status->isGood() ) {
2845 // Even if some files could be copied, fail entirely as that is the
2846 // easiest thing to do without data loss
2847 $this->cleanupFailedBatch( $storeStatus, $storeBatch );
2848 $status->setOK( false );
2849 $this->file->unlock();
2850
2851 return $status;
2852 }
2853 }
2854
2855 // Run the DB updates
2856 // Because we have locked the image row, key conflicts should be rare.
2857 // If they do occur, we can roll back the transaction at this time with
2858 // no data loss, but leaving unregistered files scattered throughout the
2859 // public zone.
2860 // This is not ideal, which is why it's important to lock the image row.
2861 if ( $insertCurrent ) {
2862 $dbw->insert( 'image', $insertCurrent, __METHOD__ );
2863 $commentCallback( $insertCurrent['img_name'] );
2864 }
2865
2866 if ( $insertBatch ) {
2867 $dbw->insert( 'oldimage', $insertBatch, __METHOD__ );
2868 }
2869
2870 if ( $deleteIds ) {
2871 $dbw->delete( 'filearchive',
2872 [ 'fa_id' => $deleteIds ],
2873 __METHOD__ );
2874 }
2875
2876 // If store batch is empty (all files are missing), deletion is to be considered successful
2877 if ( $status->successCount > 0 || !$storeBatch || $repo->hasSha1Storage() ) {
2878 if ( !$exists ) {
2879 wfDebug( __METHOD__ . " restored {$status->successCount} items, creating a new current\n" );
2880
2881 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [ 'images' => 1 ] ) );
2882
2883 $this->file->purgeEverything();
2884 } else {
2885 wfDebug( __METHOD__ . " restored {$status->successCount} as archived versions\n" );
2886 $this->file->purgeDescription();
2887 }
2888 }
2889
2890 $this->file->unlock();
2891
2892 return $status;
2893 }
2894
2895 /**
2896 * Removes non-existent files from a store batch.
2897 * @param array $triplets
2898 * @return Status
2899 */
2900 protected function removeNonexistentFiles( $triplets ) {
2901 $files = $filteredTriplets = [];
2902 foreach ( $triplets as $file ) {
2903 $files[$file[0]] = $file[0];
2904 }
2905
2906 $result = $this->file->repo->fileExistsBatch( $files );
2907 if ( in_array( null, $result, true ) ) {
2908 return Status::newFatal( 'backend-fail-internal',
2909 $this->file->repo->getBackend()->getName() );
2910 }
2911
2912 foreach ( $triplets as $file ) {
2913 if ( $result[$file[0]] ) {
2914 $filteredTriplets[] = $file;
2915 }
2916 }
2917
2918 return Status::newGood( $filteredTriplets );
2919 }
2920
2921 /**
2922 * Removes non-existent files from a cleanup batch.
2923 * @param array $batch
2924 * @return array
2925 */
2926 protected function removeNonexistentFromCleanup( $batch ) {
2927 $files = $newBatch = [];
2928 $repo = $this->file->repo;
2929
2930 foreach ( $batch as $file ) {
2931 $files[$file] = $repo->getVirtualUrl( 'deleted' ) . '/' .
2932 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
2933 }
2934
2935 $result = $repo->fileExistsBatch( $files );
2936
2937 foreach ( $batch as $file ) {
2938 if ( $result[$file] ) {
2939 $newBatch[] = $file;
2940 }
2941 }
2942
2943 return $newBatch;
2944 }
2945
2946 /**
2947 * Delete unused files in the deleted zone.
2948 * This should be called from outside the transaction in which execute() was called.
2949 * @return Status
2950 */
2951 public function cleanup() {
2952 if ( !$this->cleanupBatch ) {
2953 return $this->file->repo->newGood();
2954 }
2955
2956 $this->cleanupBatch = $this->removeNonexistentFromCleanup( $this->cleanupBatch );
2957
2958 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
2959
2960 return $status;
2961 }
2962
2963 /**
2964 * Cleanup a failed batch. The batch was only partially successful, so
2965 * rollback by removing all items that were succesfully copied.
2966 *
2967 * @param Status $storeStatus
2968 * @param array $storeBatch
2969 */
2970 protected function cleanupFailedBatch( $storeStatus, $storeBatch ) {
2971 $cleanupBatch = [];
2972
2973 foreach ( $storeStatus->success as $i => $success ) {
2974 // Check if this item of the batch was successfully copied
2975 if ( $success ) {
2976 // Item was successfully copied and needs to be removed again
2977 // Extract ($dstZone, $dstRel) from the batch
2978 $cleanupBatch[] = [ $storeBatch[$i][1], $storeBatch[$i][2] ];
2979 }
2980 }
2981 $this->file->repo->cleanupBatch( $cleanupBatch );
2982 }
2983 }
2984
2985 # ------------------------------------------------------------------------------
2986
2987 /**
2988 * Helper class for file movement
2989 * @ingroup FileAbstraction
2990 */
2991 class LocalFileMoveBatch {
2992 /** @var LocalFile */
2993 protected $file;
2994
2995 /** @var Title */
2996 protected $target;
2997
2998 protected $cur;
2999
3000 protected $olds;
3001
3002 protected $oldCount;
3003
3004 protected $archive;
3005
3006 /** @var IDatabase */
3007 protected $db;
3008
3009 /**
3010 * @param File $file
3011 * @param Title $target
3012 */
3013 function __construct( File $file, Title $target ) {
3014 $this->file = $file;
3015 $this->target = $target;
3016 $this->oldHash = $this->file->repo->getHashPath( $this->file->getName() );
3017 $this->newHash = $this->file->repo->getHashPath( $this->target->getDBkey() );
3018 $this->oldName = $this->file->getName();
3019 $this->newName = $this->file->repo->getNameFromTitle( $this->target );
3020 $this->oldRel = $this->oldHash . $this->oldName;
3021 $this->newRel = $this->newHash . $this->newName;
3022 $this->db = $file->getRepo()->getMasterDB();
3023 }
3024
3025 /**
3026 * Add the current image to the batch
3027 */
3028 public function addCurrent() {
3029 $this->cur = [ $this->oldRel, $this->newRel ];
3030 }
3031
3032 /**
3033 * Add the old versions of the image to the batch
3034 * @return array List of archive names from old versions
3035 */
3036 public function addOlds() {
3037 $archiveBase = 'archive';
3038 $this->olds = [];
3039 $this->oldCount = 0;
3040 $archiveNames = [];
3041
3042 $result = $this->db->select( 'oldimage',
3043 [ 'oi_archive_name', 'oi_deleted' ],
3044 [ 'oi_name' => $this->oldName ],
3045 __METHOD__,
3046 [ 'LOCK IN SHARE MODE' ] // ignore snapshot
3047 );
3048
3049 foreach ( $result as $row ) {
3050 $archiveNames[] = $row->oi_archive_name;
3051 $oldName = $row->oi_archive_name;
3052 $bits = explode( '!', $oldName, 2 );
3053
3054 if ( count( $bits ) != 2 ) {
3055 wfDebug( "Old file name missing !: '$oldName' \n" );
3056 continue;
3057 }
3058
3059 list( $timestamp, $filename ) = $bits;
3060
3061 if ( $this->oldName != $filename ) {
3062 wfDebug( "Old file name doesn't match: '$oldName' \n" );
3063 continue;
3064 }
3065
3066 $this->oldCount++;
3067
3068 // Do we want to add those to oldCount?
3069 if ( $row->oi_deleted & File::DELETED_FILE ) {
3070 continue;
3071 }
3072
3073 $this->olds[] = [
3074 "{$archiveBase}/{$this->oldHash}{$oldName}",
3075 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
3076 ];
3077 }
3078
3079 return $archiveNames;
3080 }
3081
3082 /**
3083 * Perform the move.
3084 * @return Status
3085 */
3086 public function execute() {
3087 $repo = $this->file->repo;
3088 $status = $repo->newGood();
3089 $destFile = wfLocalFile( $this->target );
3090
3091 $this->file->lock(); // begin
3092 $destFile->lock(); // quickly fail if destination is not available
3093
3094 $triplets = $this->getMoveTriplets();
3095 $checkStatus = $this->removeNonexistentFiles( $triplets );
3096 if ( !$checkStatus->isGood() ) {
3097 $destFile->unlock();
3098 $this->file->unlock();
3099 $status->merge( $checkStatus ); // couldn't talk to file backend
3100 return $status;
3101 }
3102 $triplets = $checkStatus->value;
3103
3104 // Verify the file versions metadata in the DB.
3105 $statusDb = $this->verifyDBUpdates();
3106 if ( !$statusDb->isGood() ) {
3107 $destFile->unlock();
3108 $this->file->unlock();
3109 $statusDb->setOK( false );
3110
3111 return $statusDb;
3112 }
3113
3114 if ( !$repo->hasSha1Storage() ) {
3115 // Copy the files into their new location.
3116 // If a prior process fataled copying or cleaning up files we tolerate any
3117 // of the existing files if they are identical to the ones being stored.
3118 $statusMove = $repo->storeBatch( $triplets, FileRepo::OVERWRITE_SAME );
3119 wfDebugLog( 'imagemove', "Moved files for {$this->file->getName()}: " .
3120 "{$statusMove->successCount} successes, {$statusMove->failCount} failures" );
3121 if ( !$statusMove->isGood() ) {
3122 // Delete any files copied over (while the destination is still locked)
3123 $this->cleanupTarget( $triplets );
3124 $destFile->unlock();
3125 $this->file->unlock();
3126 wfDebugLog( 'imagemove', "Error in moving files: "
3127 . $statusMove->getWikiText( false, false, 'en' ) );
3128 $statusMove->setOK( false );
3129
3130 return $statusMove;
3131 }
3132 $status->merge( $statusMove );
3133 }
3134
3135 // Rename the file versions metadata in the DB.
3136 $this->doDBUpdates();
3137
3138 wfDebugLog( 'imagemove', "Renamed {$this->file->getName()} in database: " .
3139 "{$statusDb->successCount} successes, {$statusDb->failCount} failures" );
3140
3141 $destFile->unlock();
3142 $this->file->unlock(); // done
3143
3144 // Everything went ok, remove the source files
3145 $this->cleanupSource( $triplets );
3146
3147 $status->merge( $statusDb );
3148
3149 return $status;
3150 }
3151
3152 /**
3153 * Verify the database updates and return a new Status indicating how
3154 * many rows would be updated.
3155 *
3156 * @return Status
3157 */
3158 protected function verifyDBUpdates() {
3159 $repo = $this->file->repo;
3160 $status = $repo->newGood();
3161 $dbw = $this->db;
3162
3163 $hasCurrent = $dbw->selectField(
3164 'image',
3165 '1',
3166 [ 'img_name' => $this->oldName ],
3167 __METHOD__,
3168 [ 'FOR UPDATE' ]
3169 );
3170 $oldRowCount = $dbw->selectField(
3171 'oldimage',
3172 'COUNT(*)',
3173 [ 'oi_name' => $this->oldName ],
3174 __METHOD__,
3175 [ 'FOR UPDATE' ]
3176 );
3177
3178 if ( $hasCurrent ) {
3179 $status->successCount++;
3180 } else {
3181 $status->failCount++;
3182 }
3183 $status->successCount += $oldRowCount;
3184 // T36934: oldCount is based on files that actually exist.
3185 // There may be more DB rows than such files, in which case $affected
3186 // can be greater than $total. We use max() to avoid negatives here.
3187 $status->failCount += max( 0, $this->oldCount - $oldRowCount );
3188 if ( $status->failCount ) {
3189 $status->error( 'imageinvalidfilename' );
3190 }
3191
3192 return $status;
3193 }
3194
3195 /**
3196 * Do the database updates and return a new Status indicating how
3197 * many rows where updated.
3198 */
3199 protected function doDBUpdates() {
3200 $dbw = $this->db;
3201
3202 // Update current image
3203 $dbw->update(
3204 'image',
3205 [ 'img_name' => $this->newName ],
3206 [ 'img_name' => $this->oldName ],
3207 __METHOD__
3208 );
3209 // Update old images
3210 $dbw->update(
3211 'oldimage',
3212 [
3213 'oi_name' => $this->newName,
3214 'oi_archive_name = ' . $dbw->strreplace( 'oi_archive_name',
3215 $dbw->addQuotes( $this->oldName ), $dbw->addQuotes( $this->newName ) ),
3216 ],
3217 [ 'oi_name' => $this->oldName ],
3218 __METHOD__
3219 );
3220 }
3221
3222 /**
3223 * Generate triplets for FileRepo::storeBatch().
3224 * @return array
3225 */
3226 protected function getMoveTriplets() {
3227 $moves = array_merge( [ $this->cur ], $this->olds );
3228 $triplets = []; // The format is: (srcUrl, destZone, destUrl)
3229
3230 foreach ( $moves as $move ) {
3231 // $move: (oldRelativePath, newRelativePath)
3232 $srcUrl = $this->file->repo->getVirtualUrl() . '/public/' . rawurlencode( $move[0] );
3233 $triplets[] = [ $srcUrl, 'public', $move[1] ];
3234 wfDebugLog(
3235 'imagemove',
3236 "Generated move triplet for {$this->file->getName()}: {$srcUrl} :: public :: {$move[1]}"
3237 );
3238 }
3239
3240 return $triplets;
3241 }
3242
3243 /**
3244 * Removes non-existent files from move batch.
3245 * @param array $triplets
3246 * @return Status
3247 */
3248 protected function removeNonexistentFiles( $triplets ) {
3249 $files = [];
3250
3251 foreach ( $triplets as $file ) {
3252 $files[$file[0]] = $file[0];
3253 }
3254
3255 $result = $this->file->repo->fileExistsBatch( $files );
3256 if ( in_array( null, $result, true ) ) {
3257 return Status::newFatal( 'backend-fail-internal',
3258 $this->file->repo->getBackend()->getName() );
3259 }
3260
3261 $filteredTriplets = [];
3262 foreach ( $triplets as $file ) {
3263 if ( $result[$file[0]] ) {
3264 $filteredTriplets[] = $file;
3265 } else {
3266 wfDebugLog( 'imagemove', "File {$file[0]} does not exist" );
3267 }
3268 }
3269
3270 return Status::newGood( $filteredTriplets );
3271 }
3272
3273 /**
3274 * Cleanup a partially moved array of triplets by deleting the target
3275 * files. Called if something went wrong half way.
3276 * @param array $triplets
3277 */
3278 protected function cleanupTarget( $triplets ) {
3279 // Create dest pairs from the triplets
3280 $pairs = [];
3281 foreach ( $triplets as $triplet ) {
3282 // $triplet: (old source virtual URL, dst zone, dest rel)
3283 $pairs[] = [ $triplet[1], $triplet[2] ];
3284 }
3285
3286 $this->file->repo->cleanupBatch( $pairs );
3287 }
3288
3289 /**
3290 * Cleanup a fully moved array of triplets by deleting the source files.
3291 * Called at the end of the move process if everything else went ok.
3292 * @param array $triplets
3293 */
3294 protected function cleanupSource( $triplets ) {
3295 // Create source file names from the triplets
3296 $files = [];
3297 foreach ( $triplets as $triplet ) {
3298 $files[] = $triplet[0];
3299 }
3300
3301 $this->file->repo->cleanupBatch( $files );
3302 }
3303 }
3304
3305 class LocalFileLockError extends ErrorPageError {
3306 public function __construct( Status $status ) {
3307 parent::__construct(
3308 'actionfailed',
3309 $status->getMessage()
3310 );
3311 }
3312
3313 public function report() {
3314 global $wgOut;
3315 $wgOut->setStatusCode( 429 );
3316 parent::report();
3317 }
3318 }