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