Revert r69907, r69908, r70264, r70296: introduces bug 27477.
[lhc/web/wiklou.git] / includes / filerepo / LocalFile.php
1 <?php
2 /**
3 * Local file in the wiki's own database
4 *
5 * @file
6 * @ingroup FileRepo
7 */
8
9 /**
10 * Bump this number when serialized cache records may be incompatible.
11 */
12 define( 'MW_FILE_VERSION', 8 );
13
14 /**
15 * Class to represent a local file in the wiki's own database
16 *
17 * Provides methods to retrieve paths (physical, logical, URL),
18 * to generate image thumbnails or for uploading.
19 *
20 * Note that only the repo object knows what its file class is called. You should
21 * never name a file class explictly outside of the repo class. Instead use the
22 * repo's factory functions to generate file objects, for example:
23 *
24 * RepoGroup::singleton()->getLocalRepo()->newFile($title);
25 *
26 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
27 * in most cases.
28 *
29 * @ingroup FileRepo
30 */
31 class LocalFile extends File {
32 /**#@+
33 * @private
34 */
35 var
36 $fileExists, # does the file file exist on disk? (loadFromXxx)
37 $historyLine, # Number of line to return by nextHistoryLine() (constructor)
38 $historyRes, # result of the query for the file's history (nextHistoryLine)
39 $width, # \
40 $height, # |
41 $bits, # --- returned by getimagesize (loadFromXxx)
42 $attr, # /
43 $media_type, # MEDIATYPE_xxx (bitmap, drawing, audio...)
44 $mime, # MIME type, determined by MimeMagic::guessMimeType
45 $major_mime, # Major mime type
46 $minor_mime, # Minor mime type
47 $size, # Size in bytes (loadFromXxx)
48 $metadata, # Handler-specific metadata
49 $timestamp, # Upload timestamp
50 $sha1, # SHA-1 base 36 content hash
51 $user, $user_text, # User, who uploaded the file
52 $description, # Description of current revision of the file
53 $dataLoaded, # Whether or not all this has been loaded from the database (loadFromXxx)
54 $upgraded, # Whether the row was upgraded on load
55 $locked, # True if the image row is locked
56 $missing, # True if file is not present in file system. Not to be cached in memcached
57 $deleted; # Bitfield akin to rev_deleted
58
59 /**#@-*/
60
61 /**
62 * Create a LocalFile from a title
63 * Do not call this except from inside a repo class.
64 *
65 * Note: $unused param is only here to avoid an E_STRICT
66 */
67 static function newFromTitle( $title, $repo, $unused = null ) {
68 return new self( $title, $repo );
69 }
70
71 /**
72 * Create a LocalFile from a title
73 * Do not call this except from inside a repo class.
74 */
75 static function newFromRow( $row, $repo ) {
76 $title = Title::makeTitle( NS_FILE, $row->img_name );
77 $file = new self( $title, $repo );
78 $file->loadFromRow( $row );
79
80 return $file;
81 }
82
83 /**
84 * Create a LocalFile from a SHA-1 key
85 * Do not call this except from inside a repo class.
86 * @param $sha1
87 * @param $repo LocalRepo
88 * @param $timestamp
89 */
90 static function newFromKey( $sha1, $repo, $timestamp = false ) {
91 $conds = array( 'img_sha1' => $sha1 );
92
93 if ( $timestamp ) {
94 $conds['img_timestamp'] = $timestamp;
95 }
96
97 $dbr = $repo->getSlaveDB();
98 $row = $dbr->selectRow( 'image', self::selectFields(), $conds, __METHOD__ );
99
100 if ( $row ) {
101 return self::newFromRow( $row, $repo );
102 } else {
103 return false;
104 }
105 }
106
107 /**
108 * Fields in the image table
109 */
110 static function selectFields() {
111 return array(
112 'img_name',
113 'img_size',
114 'img_width',
115 'img_height',
116 'img_metadata',
117 'img_bits',
118 'img_media_type',
119 'img_major_mime',
120 'img_minor_mime',
121 'img_description',
122 'img_user',
123 'img_user_text',
124 'img_timestamp',
125 'img_sha1',
126 );
127 }
128
129 /**
130 * Constructor.
131 * Do not call this except from inside a repo class.
132 */
133 function __construct( $title, $repo ) {
134 if ( !is_object( $title ) ) {
135 throw new MWException( __CLASS__ . ' constructor given bogus title.' );
136 }
137
138 parent::__construct( $title, $repo );
139
140 $this->metadata = '';
141 $this->historyLine = 0;
142 $this->historyRes = null;
143 $this->dataLoaded = false;
144 }
145
146 /**
147 * Get the memcached key for the main data for this file, or false if
148 * there is no access to the shared cache.
149 */
150 function getCacheKey() {
151 $hashedName = md5( $this->getName() );
152
153 return $this->repo->getSharedCacheKey( 'file', $hashedName );
154 }
155
156 /**
157 * Try to load file metadata from memcached. Returns true on success.
158 */
159 function loadFromCache() {
160 global $wgMemc;
161
162 wfProfileIn( __METHOD__ );
163 $this->dataLoaded = false;
164 $key = $this->getCacheKey();
165
166 if ( !$key ) {
167 wfProfileOut( __METHOD__ );
168 return false;
169 }
170
171 $cachedValues = $wgMemc->get( $key );
172
173 // Check if the key existed and belongs to this version of MediaWiki
174 if ( isset( $cachedValues['version'] ) && ( $cachedValues['version'] == MW_FILE_VERSION ) ) {
175 wfDebug( "Pulling file metadata from cache key $key\n" );
176 $this->fileExists = $cachedValues['fileExists'];
177 if ( $this->fileExists ) {
178 $this->setProps( $cachedValues );
179 }
180 $this->dataLoaded = true;
181 }
182
183 if ( $this->dataLoaded ) {
184 wfIncrStats( 'image_cache_hit' );
185 } else {
186 wfIncrStats( 'image_cache_miss' );
187 }
188
189 wfProfileOut( __METHOD__ );
190 return $this->dataLoaded;
191 }
192
193 /**
194 * Save the file metadata to memcached
195 */
196 function saveToCache() {
197 global $wgMemc;
198
199 $this->load();
200 $key = $this->getCacheKey();
201
202 if ( !$key ) {
203 return;
204 }
205
206 $fields = $this->getCacheFields( '' );
207 $cache = array( 'version' => MW_FILE_VERSION );
208 $cache['fileExists'] = $this->fileExists;
209
210 if ( $this->fileExists ) {
211 foreach ( $fields as $field ) {
212 $cache[$field] = $this->$field;
213 }
214 }
215
216 $wgMemc->set( $key, $cache, 60 * 60 * 24 * 7 ); // A week
217 }
218
219 /**
220 * Load metadata from the file itself
221 */
222 function loadFromFile() {
223 $this->setProps( self::getPropsFromPath( $this->getPath() ) );
224 }
225
226 function getCacheFields( $prefix = 'img_' ) {
227 static $fields = array( 'size', 'width', 'height', 'bits', 'media_type',
228 'major_mime', 'minor_mime', 'metadata', 'timestamp', 'sha1', 'user', 'user_text', 'description' );
229 static $results = array();
230
231 if ( $prefix == '' ) {
232 return $fields;
233 }
234
235 if ( !isset( $results[$prefix] ) ) {
236 $prefixedFields = array();
237 foreach ( $fields as $field ) {
238 $prefixedFields[] = $prefix . $field;
239 }
240 $results[$prefix] = $prefixedFields;
241 }
242
243 return $results[$prefix];
244 }
245
246 /**
247 * Load file metadata from the DB
248 */
249 function loadFromDB() {
250 # Polymorphic function name to distinguish foreign and local fetches
251 $fname = get_class( $this ) . '::' . __FUNCTION__;
252 wfProfileIn( $fname );
253
254 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
255 $this->dataLoaded = true;
256
257 $dbr = $this->repo->getMasterDB();
258
259 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
260 array( 'img_name' => $this->getName() ), $fname );
261
262 if ( $row ) {
263 $this->loadFromRow( $row );
264 } else {
265 $this->fileExists = false;
266 }
267
268 wfProfileOut( $fname );
269 }
270
271 /**
272 * Decode a row from the database (either object or array) to an array
273 * with timestamps and MIME types decoded, and the field prefix removed.
274 */
275 function decodeRow( $row, $prefix = 'img_' ) {
276 $array = (array)$row;
277 $prefixLength = strlen( $prefix );
278
279 // Sanity check prefix once
280 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
281 throw new MWException( __METHOD__ . ': incorrect $prefix parameter' );
282 }
283
284 $decoded = array();
285
286 foreach ( $array as $name => $value ) {
287 $decoded[substr( $name, $prefixLength )] = $value;
288 }
289
290 $decoded['timestamp'] = wfTimestamp( TS_MW, $decoded['timestamp'] );
291
292 if ( empty( $decoded['major_mime'] ) ) {
293 $decoded['mime'] = 'unknown/unknown';
294 } else {
295 if ( !$decoded['minor_mime'] ) {
296 $decoded['minor_mime'] = 'unknown';
297 }
298 $decoded['mime'] = $decoded['major_mime'] . '/' . $decoded['minor_mime'];
299 }
300
301 # Trim zero padding from char/binary field
302 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
303
304 return $decoded;
305 }
306
307 /**
308 * Load file metadata from a DB result row
309 */
310 function loadFromRow( $row, $prefix = 'img_' ) {
311 $this->dataLoaded = true;
312 $array = $this->decodeRow( $row, $prefix );
313
314 foreach ( $array as $name => $value ) {
315 $this->$name = $value;
316 }
317
318 $this->fileExists = true;
319 $this->maybeUpgradeRow();
320 }
321
322 /**
323 * Load file metadata from cache or DB, unless already loaded
324 */
325 function load() {
326 if ( !$this->dataLoaded ) {
327 if ( !$this->loadFromCache() ) {
328 $this->loadFromDB();
329 $this->saveToCache();
330 }
331 $this->dataLoaded = true;
332 }
333 }
334
335 /**
336 * Upgrade a row if it needs it
337 */
338 function maybeUpgradeRow() {
339 if ( wfReadOnly() ) {
340 return;
341 }
342
343 if ( is_null( $this->media_type ) ||
344 $this->mime == 'image/svg'
345 ) {
346 $this->upgradeRow();
347 $this->upgraded = true;
348 } else {
349 $handler = $this->getHandler();
350 if ( $handler && !$handler->isMetadataValid( $this, $this->metadata ) ) {
351 $this->upgradeRow();
352 $this->upgraded = true;
353 }
354 }
355 }
356
357 function getUpgraded() {
358 return $this->upgraded;
359 }
360
361 /**
362 * Fix assorted version-related problems with the image row by reloading it from the file
363 */
364 function upgradeRow() {
365 wfProfileIn( __METHOD__ );
366
367 $this->loadFromFile();
368
369 # Don't destroy file info of missing files
370 if ( !$this->fileExists ) {
371 wfDebug( __METHOD__ . ": file does not exist, aborting\n" );
372 wfProfileOut( __METHOD__ );
373 return;
374 }
375
376 $dbw = $this->repo->getMasterDB();
377 list( $major, $minor ) = self::splitMime( $this->mime );
378
379 if ( wfReadOnly() ) {
380 wfProfileOut( __METHOD__ );
381 return;
382 }
383 wfDebug( __METHOD__ . ': upgrading ' . $this->getName() . " to the current schema\n" );
384
385 $dbw->update( 'image',
386 array(
387 'img_width' => $this->width,
388 'img_height' => $this->height,
389 'img_bits' => $this->bits,
390 'img_media_type' => $this->media_type,
391 'img_major_mime' => $major,
392 'img_minor_mime' => $minor,
393 'img_metadata' => $this->metadata,
394 'img_sha1' => $this->sha1,
395 ), array( 'img_name' => $this->getName() ),
396 __METHOD__
397 );
398
399 $this->saveToCache();
400 wfProfileOut( __METHOD__ );
401 }
402
403 /**
404 * Set properties in this object to be equal to those given in the
405 * associative array $info. Only cacheable fields can be set.
406 *
407 * If 'mime' is given, it will be split into major_mime/minor_mime.
408 * If major_mime/minor_mime are given, $this->mime will also be set.
409 */
410 function setProps( $info ) {
411 $this->dataLoaded = true;
412 $fields = $this->getCacheFields( '' );
413 $fields[] = 'fileExists';
414
415 foreach ( $fields as $field ) {
416 if ( isset( $info[$field] ) ) {
417 $this->$field = $info[$field];
418 }
419 }
420
421 // Fix up mime fields
422 if ( isset( $info['major_mime'] ) ) {
423 $this->mime = "{$info['major_mime']}/{$info['minor_mime']}";
424 } elseif ( isset( $info['mime'] ) ) {
425 $this->mime = $info['mime'];
426 list( $this->major_mime, $this->minor_mime ) = self::splitMime( $this->mime );
427 }
428 }
429
430 /** splitMime inherited */
431 /** getName inherited */
432 /** getTitle inherited */
433 /** getURL inherited */
434 /** getViewURL inherited */
435 /** getPath inherited */
436 /** isVisible inhereted */
437
438 function isMissing() {
439 if ( $this->missing === null ) {
440 list( $fileExists ) = $this->repo->fileExistsBatch( array( $this->getVirtualUrl() ), FileRepo::FILES_ONLY );
441 $this->missing = !$fileExists;
442 }
443 return $this->missing;
444 }
445
446 /**
447 * Return the width of the image
448 *
449 * Returns false on error
450 */
451 public function getWidth( $page = 1 ) {
452 $this->load();
453
454 if ( $this->isMultipage() ) {
455 $dim = $this->getHandler()->getPageDimensions( $this, $page );
456 if ( $dim ) {
457 return $dim['width'];
458 } else {
459 return false;
460 }
461 } else {
462 return $this->width;
463 }
464 }
465
466 /**
467 * Return the height of the image
468 *
469 * Returns false on error
470 */
471 public function getHeight( $page = 1 ) {
472 $this->load();
473
474 if ( $this->isMultipage() ) {
475 $dim = $this->getHandler()->getPageDimensions( $this, $page );
476 if ( $dim ) {
477 return $dim['height'];
478 } else {
479 return false;
480 }
481 } else {
482 return $this->height;
483 }
484 }
485
486 /**
487 * Returns ID or name of user who uploaded the file
488 *
489 * @param $type string 'text' or 'id'
490 */
491 function getUser( $type = 'text' ) {
492 $this->load();
493
494 if ( $type == 'text' ) {
495 return $this->user_text;
496 } elseif ( $type == 'id' ) {
497 return $this->user;
498 }
499 }
500
501 /**
502 * Get handler-specific metadata
503 */
504 function getMetadata() {
505 $this->load();
506 return $this->metadata;
507 }
508
509 function getBitDepth() {
510 $this->load();
511 return $this->bits;
512 }
513
514 /**
515 * Return the size of the image file, in bytes
516 */
517 public function getSize() {
518 $this->load();
519 return $this->size;
520 }
521
522 /**
523 * Returns the mime type of the file.
524 */
525 function getMimeType() {
526 $this->load();
527 return $this->mime;
528 }
529
530 /**
531 * Return the type of the media in the file.
532 * Use the value returned by this function with the MEDIATYPE_xxx constants.
533 */
534 function getMediaType() {
535 $this->load();
536 return $this->media_type;
537 }
538
539 /** canRender inherited */
540 /** mustRender inherited */
541 /** allowInlineDisplay inherited */
542 /** isSafeFile inherited */
543 /** isTrustedFile inherited */
544
545 /**
546 * Returns true if the file file exists on disk.
547 * @return boolean Whether file file exist on disk.
548 */
549 public function exists() {
550 $this->load();
551 return $this->fileExists;
552 }
553
554 /** getTransformScript inherited */
555 /** getUnscaledThumb inherited */
556 /** thumbName inherited */
557 /** createThumb inherited */
558 /** getThumbnail inherited */
559 /** transform inherited */
560
561 /**
562 * Fix thumbnail files from 1.4 or before, with extreme prejudice
563 */
564 function migrateThumbFile( $thumbName ) {
565 $thumbDir = $this->getThumbPath();
566 $thumbPath = "$thumbDir/$thumbName";
567
568 if ( is_dir( $thumbPath ) ) {
569 // Directory where file should be
570 // This happened occasionally due to broken migration code in 1.5
571 // Rename to broken-*
572 for ( $i = 0; $i < 100 ; $i++ ) {
573 $broken = $this->repo->getZonePath( 'public' ) . "/broken-$i-$thumbName";
574 if ( !file_exists( $broken ) ) {
575 rename( $thumbPath, $broken );
576 break;
577 }
578 }
579 // Doesn't exist anymore
580 clearstatcache();
581 }
582
583 if ( is_file( $thumbDir ) ) {
584 // File where directory should be
585 unlink( $thumbDir );
586 // Doesn't exist anymore
587 clearstatcache();
588 }
589 }
590
591 /** getHandler inherited */
592 /** iconThumb inherited */
593 /** getLastError inherited */
594
595 /**
596 * Get all thumbnail names previously generated for this file
597 */
598 function getThumbnails() {
599 $this->load();
600
601 $files = array();
602 $dir = $this->getThumbPath();
603
604 if ( is_dir( $dir ) ) {
605 $handle = opendir( $dir );
606
607 if ( $handle ) {
608 while ( false !== ( $file = readdir( $handle ) ) ) {
609 if ( $file { 0 } != '.' ) {
610 $files[] = $file;
611 }
612 }
613
614 closedir( $handle );
615 }
616 }
617
618 return $files;
619 }
620
621 /**
622 * Refresh metadata in memcached, but don't touch thumbnails or squid
623 */
624 function purgeMetadataCache() {
625 $this->loadFromDB();
626 $this->saveToCache();
627 $this->purgeHistory();
628 }
629
630 /**
631 * Purge the shared history (OldLocalFile) cache
632 */
633 function purgeHistory() {
634 global $wgMemc;
635
636 $hashedName = md5( $this->getName() );
637 $oldKey = $this->repo->getSharedCacheKey( 'oldfile', $hashedName );
638
639 if ( $oldKey ) {
640 $wgMemc->delete( $oldKey );
641 }
642 }
643
644 /**
645 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the squid
646 */
647 function purgeCache() {
648 // Refresh metadata cache
649 $this->purgeMetadataCache();
650
651 // Delete thumbnails
652 $this->purgeThumbnails();
653
654 // Purge squid cache for this file
655 SquidUpdate::purge( array( $this->getURL() ) );
656 }
657
658 /**
659 * Delete cached transformed files
660 */
661 function purgeThumbnails() {
662 global $wgUseSquid;
663
664 // Delete thumbnails
665 $files = $this->getThumbnails();
666 $dir = $this->getThumbPath();
667 $urls = array();
668
669 foreach ( $files as $file ) {
670 # Check that the base file name is part of the thumb name
671 # This is a basic sanity check to avoid erasing unrelated directories
672 if ( strpos( $file, $this->getName() ) !== false ) {
673 $url = $this->getThumbUrl( $file );
674 $urls[] = $url;
675 @unlink( "$dir/$file" );
676 }
677 }
678
679 // Purge the squid
680 if ( $wgUseSquid ) {
681 SquidUpdate::purge( $urls );
682 }
683 }
684
685 /** purgeDescription inherited */
686 /** purgeEverything inherited */
687
688 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
689 $dbr = $this->repo->getSlaveDB();
690 $tables = array( 'oldimage' );
691 $fields = OldLocalFile::selectFields();
692 $conds = $opts = $join_conds = array();
693 $eq = $inc ? '=' : '';
694 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title->getDBkey() );
695
696 if ( $start ) {
697 $conds[] = "oi_timestamp <$eq " . $dbr->addQuotes( $dbr->timestamp( $start ) );
698 }
699
700 if ( $end ) {
701 $conds[] = "oi_timestamp >$eq " . $dbr->addQuotes( $dbr->timestamp( $end ) );
702 }
703
704 if ( $limit ) {
705 $opts['LIMIT'] = $limit;
706 }
707
708 // Search backwards for time > x queries
709 $order = ( !$start && $end !== null ) ? 'ASC' : 'DESC';
710 $opts['ORDER BY'] = "oi_timestamp $order";
711 $opts['USE INDEX'] = array( 'oldimage' => 'oi_name_timestamp' );
712
713 wfRunHooks( 'LocalFile::getHistory', array( &$this, &$tables, &$fields,
714 &$conds, &$opts, &$join_conds ) );
715
716 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $opts, $join_conds );
717 $r = array();
718
719 foreach ( $res as $row ) {
720 if ( $this->repo->oldFileFromRowFactory ) {
721 $r[] = call_user_func( $this->repo->oldFileFromRowFactory, $row, $this->repo );
722 } else {
723 $r[] = OldLocalFile::newFromRow( $row, $this->repo );
724 }
725 }
726
727 if ( $order == 'ASC' ) {
728 $r = array_reverse( $r ); // make sure it ends up descending
729 }
730
731 return $r;
732 }
733
734 /**
735 * Return the history of this file, line by line.
736 * starts with current version, then old versions.
737 * uses $this->historyLine to check which line to return:
738 * 0 return line for current version
739 * 1 query for old versions, return first one
740 * 2, ... return next old version from above query
741 */
742 public function nextHistoryLine() {
743 # Polymorphic function name to distinguish foreign and local fetches
744 $fname = get_class( $this ) . '::' . __FUNCTION__;
745
746 $dbr = $this->repo->getSlaveDB();
747
748 if ( $this->historyLine == 0 ) {// called for the first time, return line from cur
749 $this->historyRes = $dbr->select( 'image',
750 array(
751 '*',
752 "'' AS oi_archive_name",
753 '0 as oi_deleted',
754 'img_sha1'
755 ),
756 array( 'img_name' => $this->title->getDBkey() ),
757 $fname
758 );
759
760 if ( 0 == $dbr->numRows( $this->historyRes ) ) {
761 $this->historyRes = null;
762 return false;
763 }
764 } elseif ( $this->historyLine == 1 ) {
765 $this->historyRes = $dbr->select( 'oldimage', '*',
766 array( 'oi_name' => $this->title->getDBkey() ),
767 $fname,
768 array( 'ORDER BY' => 'oi_timestamp DESC' )
769 );
770 }
771 $this->historyLine ++;
772
773 return $dbr->fetchObject( $this->historyRes );
774 }
775
776 /**
777 * Reset the history pointer to the first element of the history
778 */
779 public function resetHistory() {
780 $this->historyLine = 0;
781
782 if ( !is_null( $this->historyRes ) ) {
783 $this->historyRes = null;
784 }
785 }
786
787 /** getFullPath inherited */
788 /** getHashPath inherited */
789 /** getRel inherited */
790 /** getUrlRel inherited */
791 /** getArchiveRel inherited */
792 /** getThumbRel inherited */
793 /** getArchivePath inherited */
794 /** getThumbPath inherited */
795 /** getArchiveUrl inherited */
796 /** getThumbUrl inherited */
797 /** getArchiveVirtualUrl inherited */
798 /** getThumbVirtualUrl inherited */
799 /** isHashed inherited */
800
801 /**
802 * Upload a file and record it in the DB
803 * @param $srcPath String: source path or virtual URL
804 * @param $comment String: upload description
805 * @param $pageText String: text to use for the new description page,
806 * if a new description page is created
807 * @param $flags Integer: flags for publish()
808 * @param $props Array: File properties, if known. This can be used to reduce the
809 * upload time when uploading virtual URLs for which the file info
810 * is already known
811 * @param $timestamp String: timestamp for img_timestamp, or false to use the current time
812 * @param $user Mixed: User object or null to use $wgUser
813 *
814 * @return FileRepoStatus object. On success, the value member contains the
815 * archive name, or an empty string if it was a new file.
816 */
817 function upload( $srcPath, $comment, $pageText, $flags = 0, $props = false, $timestamp = false, $user = null ) {
818 $this->lock();
819 $status = $this->publish( $srcPath, $flags );
820
821 if ( $status->ok ) {
822 if ( !$this->recordUpload2( $status->value, $comment, $pageText, $props, $timestamp, $user ) ) {
823 $status->fatal( 'filenotfound', $srcPath );
824 }
825 }
826
827 $this->unlock();
828
829 return $status;
830 }
831
832 /**
833 * Record a file upload in the upload log and the image table
834 * @deprecated use upload()
835 */
836 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
837 $watch = false, $timestamp = false )
838 {
839 $pageText = SpecialUpload::getInitialPageText( $desc, $license, $copyStatus, $source );
840
841 if ( !$this->recordUpload2( $oldver, $desc, $pageText ) ) {
842 return false;
843 }
844
845 if ( $watch ) {
846 global $wgUser;
847 $wgUser->addWatch( $this->getTitle() );
848 }
849 return true;
850
851 }
852
853 /**
854 * Record a file upload in the upload log and the image table
855 */
856 function recordUpload2( $oldver, $comment, $pageText, $props = false, $timestamp = false, $user = null )
857 {
858 if ( is_null( $user ) ) {
859 global $wgUser;
860 $user = $wgUser;
861 }
862
863 $dbw = $this->repo->getMasterDB();
864 $dbw->begin();
865
866 if ( !$props ) {
867 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
868 }
869
870 $props['description'] = $comment;
871 $props['user'] = $user->getId();
872 $props['user_text'] = $user->getName();
873 $props['timestamp'] = wfTimestamp( TS_MW );
874 $this->setProps( $props );
875
876 # Delete thumbnails
877 $this->purgeThumbnails();
878
879 # The file is already on its final location, remove it from the squid cache
880 SquidUpdate::purge( array( $this->getURL() ) );
881
882 # Fail now if the file isn't there
883 if ( !$this->fileExists ) {
884 wfDebug( __METHOD__ . ": File " . $this->getPath() . " went missing!\n" );
885 return false;
886 }
887
888 $reupload = false;
889
890 if ( $timestamp === false ) {
891 $timestamp = $dbw->timestamp();
892 }
893
894 # Test to see if the row exists using INSERT IGNORE
895 # This avoids race conditions by locking the row until the commit, and also
896 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
897 $dbw->insert( 'image',
898 array(
899 'img_name' => $this->getName(),
900 'img_size' => $this->size,
901 'img_width' => intval( $this->width ),
902 'img_height' => intval( $this->height ),
903 'img_bits' => $this->bits,
904 'img_media_type' => $this->media_type,
905 'img_major_mime' => $this->major_mime,
906 'img_minor_mime' => $this->minor_mime,
907 'img_timestamp' => $timestamp,
908 'img_description' => $comment,
909 'img_user' => $user->getId(),
910 'img_user_text' => $user->getName(),
911 'img_metadata' => $this->metadata,
912 'img_sha1' => $this->sha1
913 ),
914 __METHOD__,
915 'IGNORE'
916 );
917
918 if ( $dbw->affectedRows() == 0 ) {
919 $reupload = true;
920
921 # Collision, this is an update of a file
922 # Insert previous contents into oldimage
923 $dbw->insertSelect( 'oldimage', 'image',
924 array(
925 'oi_name' => 'img_name',
926 'oi_archive_name' => $dbw->addQuotes( $oldver ),
927 'oi_size' => 'img_size',
928 'oi_width' => 'img_width',
929 'oi_height' => 'img_height',
930 'oi_bits' => 'img_bits',
931 'oi_timestamp' => 'img_timestamp',
932 'oi_description' => 'img_description',
933 'oi_user' => 'img_user',
934 'oi_user_text' => 'img_user_text',
935 'oi_metadata' => 'img_metadata',
936 'oi_media_type' => 'img_media_type',
937 'oi_major_mime' => 'img_major_mime',
938 'oi_minor_mime' => 'img_minor_mime',
939 'oi_sha1' => 'img_sha1'
940 ), array( 'img_name' => $this->getName() ), __METHOD__
941 );
942
943 # Update the current image row
944 $dbw->update( 'image',
945 array( /* SET */
946 'img_size' => $this->size,
947 'img_width' => intval( $this->width ),
948 'img_height' => intval( $this->height ),
949 'img_bits' => $this->bits,
950 'img_media_type' => $this->media_type,
951 'img_major_mime' => $this->major_mime,
952 'img_minor_mime' => $this->minor_mime,
953 'img_timestamp' => $timestamp,
954 'img_description' => $comment,
955 'img_user' => $user->getId(),
956 'img_user_text' => $user->getName(),
957 'img_metadata' => $this->metadata,
958 'img_sha1' => $this->sha1
959 ), array( /* WHERE */
960 'img_name' => $this->getName()
961 ), __METHOD__
962 );
963 } else {
964 # This is a new file
965 # Update the image count
966 $site_stats = $dbw->tableName( 'site_stats' );
967 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images+1", __METHOD__ );
968 }
969
970 $descTitle = $this->getTitle();
971 $article = new ImagePage( $descTitle );
972 $article->setFile( $this );
973
974 # Add the log entry
975 $log = new LogPage( 'upload' );
976 $action = $reupload ? 'overwrite' : 'upload';
977 $log->addEntry( $action, $descTitle, $comment, array(), $user );
978
979 if ( $descTitle->exists() ) {
980 # Create a null revision
981 $latest = $descTitle->getLatestRevID();
982 $nullRevision = Revision::newNullRevision(
983 $dbw,
984 $descTitle->getArticleId(),
985 $log->getRcComment(),
986 false
987 );
988 $nullRevision->insertOn( $dbw );
989
990 wfRunHooks( 'NewRevisionFromEditComplete', array( $article, $nullRevision, $latest, $user ) );
991 $article->updateRevisionOn( $dbw, $nullRevision );
992
993 # Invalidate the cache for the description page
994 $descTitle->invalidateCache();
995 $descTitle->purgeSquid();
996 } else {
997 # New file; create the description page.
998 # There's already a log entry, so don't make a second RC entry
999 # Squid and file cache for the description page are purged by doEdit.
1000 $article->doEdit( $pageText, $comment, EDIT_NEW | EDIT_SUPPRESS_RC );
1001 }
1002
1003 # Commit the transaction now, in case something goes wrong later
1004 # The most important thing is that files don't get lost, especially archives
1005 $dbw->commit();
1006
1007 # Save to cache and purge the squid
1008 # We shall not saveToCache before the commit since otherwise
1009 # in case of a rollback there is an usable file from memcached
1010 # which in fact doesn't really exist (bug 24978)
1011 $this->saveToCache();
1012
1013 # Hooks, hooks, the magic of hooks...
1014 wfRunHooks( 'FileUpload', array( $this, $reupload, $descTitle->exists() ) );
1015
1016 # Invalidate cache for all pages using this file
1017 $update = new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' );
1018 $update->doUpdate();
1019
1020 # Invalidate cache for all pages that redirects on this page
1021 $redirs = $this->getTitle()->getRedirectsHere();
1022
1023 foreach ( $redirs as $redir ) {
1024 $update = new HTMLCacheUpdate( $redir, 'imagelinks' );
1025 $update->doUpdate();
1026 }
1027
1028 return true;
1029 }
1030
1031 /**
1032 * Move or copy a file to its public location. If a file exists at the
1033 * destination, move it to an archive. Returns a FileRepoStatus object with
1034 * the archive name in the "value" member on success.
1035 *
1036 * The archive name should be passed through to recordUpload for database
1037 * registration.
1038 *
1039 * @param $srcPath String: local filesystem path to the source image
1040 * @param $flags Integer: a bitwise combination of:
1041 * File::DELETE_SOURCE Delete the source file, i.e. move
1042 * rather than copy
1043 * @return FileRepoStatus object. On success, the value member contains the
1044 * archive name, or an empty string if it was a new file.
1045 */
1046 function publish( $srcPath, $flags = 0 ) {
1047 $this->lock();
1048
1049 $dstRel = $this->getRel();
1050 $archiveName = gmdate( 'YmdHis' ) . '!' . $this->getName();
1051 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
1052 $flags = $flags & File::DELETE_SOURCE ? LocalRepo::DELETE_SOURCE : 0;
1053 $status = $this->repo->publish( $srcPath, $dstRel, $archiveRel, $flags );
1054
1055 if ( $status->value == 'new' ) {
1056 $status->value = '';
1057 } else {
1058 $status->value = $archiveName;
1059 }
1060
1061 $this->unlock();
1062
1063 return $status;
1064 }
1065
1066 /** getLinksTo inherited */
1067 /** getExifData inherited */
1068 /** isLocal inherited */
1069 /** wasDeleted inherited */
1070
1071 /**
1072 * Move file to the new title
1073 *
1074 * Move current, old version and all thumbnails
1075 * to the new filename. Old file is deleted.
1076 *
1077 * Cache purging is done; checks for validity
1078 * and logging are caller's responsibility
1079 *
1080 * @param $target Title New file name
1081 * @return FileRepoStatus object.
1082 */
1083 function move( $target ) {
1084 wfDebugLog( 'imagemove', "Got request to move {$this->name} to " . $target->getText() );
1085 $this->lock();
1086
1087 $batch = new LocalFileMoveBatch( $this, $target );
1088 $batch->addCurrent();
1089 $batch->addOlds();
1090
1091 $status = $batch->execute();
1092 wfDebugLog( 'imagemove', "Finished moving {$this->name}" );
1093
1094 $this->purgeEverything();
1095 $this->unlock();
1096
1097 if ( $status->isOk() ) {
1098 // Now switch the object
1099 $this->title = $target;
1100 // Force regeneration of the name and hashpath
1101 unset( $this->name );
1102 unset( $this->hashPath );
1103 // Purge the new image
1104 $this->purgeEverything();
1105 }
1106
1107 return $status;
1108 }
1109
1110 /**
1111 * Delete all versions of the file.
1112 *
1113 * Moves the files into an archive directory (or deletes them)
1114 * and removes the database rows.
1115 *
1116 * Cache purging is done; logging is caller's responsibility.
1117 *
1118 * @param $reason
1119 * @param $suppress
1120 * @return FileRepoStatus object.
1121 */
1122 function delete( $reason, $suppress = false ) {
1123 $this->lock();
1124
1125 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1126 $batch->addCurrent();
1127
1128 # Get old version relative paths
1129 $dbw = $this->repo->getMasterDB();
1130 $result = $dbw->select( 'oldimage',
1131 array( 'oi_archive_name' ),
1132 array( 'oi_name' => $this->getName() ) );
1133 foreach ( $result as $row ) {
1134 $batch->addOld( $row->oi_archive_name );
1135 }
1136 $status = $batch->execute();
1137
1138 if ( $status->ok ) {
1139 // Update site_stats
1140 $site_stats = $dbw->tableName( 'site_stats' );
1141 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images-1", __METHOD__ );
1142 $this->purgeEverything();
1143 }
1144
1145 $this->unlock();
1146
1147 return $status;
1148 }
1149
1150 /**
1151 * Delete an old version of the file.
1152 *
1153 * Moves the file into an archive directory (or deletes it)
1154 * and removes the database row.
1155 *
1156 * Cache purging is done; logging is caller's responsibility.
1157 *
1158 * @param $archiveName String
1159 * @param $reason String
1160 * @param $suppress Boolean
1161 * @throws MWException or FSException on database or file store failure
1162 * @return FileRepoStatus object.
1163 */
1164 function deleteOld( $archiveName, $reason, $suppress = false ) {
1165 $this->lock();
1166
1167 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
1168 $batch->addOld( $archiveName );
1169 $status = $batch->execute();
1170
1171 $this->unlock();
1172
1173 if ( $status->ok ) {
1174 $this->purgeDescription();
1175 $this->purgeHistory();
1176 }
1177
1178 return $status;
1179 }
1180
1181 /**
1182 * Restore all or specified deleted revisions to the given file.
1183 * Permissions and logging are left to the caller.
1184 *
1185 * May throw database exceptions on error.
1186 *
1187 * @param $versions set of record ids of deleted items to restore,
1188 * or empty to restore all revisions.
1189 * @param $unsuppress Boolean
1190 * @return FileRepoStatus
1191 */
1192 function restore( $versions = array(), $unsuppress = false ) {
1193 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
1194
1195 if ( !$versions ) {
1196 $batch->addAll();
1197 } else {
1198 $batch->addIds( $versions );
1199 }
1200
1201 $status = $batch->execute();
1202
1203 if ( !$status->isGood() ) {
1204 return $status;
1205 }
1206
1207 $cleanupStatus = $batch->cleanup();
1208 $cleanupStatus->successCount = 0;
1209 $cleanupStatus->failCount = 0;
1210 $status->merge( $cleanupStatus );
1211
1212 return $status;
1213 }
1214
1215 /** isMultipage inherited */
1216 /** pageCount inherited */
1217 /** scaleHeight inherited */
1218 /** getImageSize inherited */
1219
1220 /**
1221 * Get the URL of the file description page.
1222 */
1223 function getDescriptionUrl() {
1224 return $this->title->getLocalUrl();
1225 }
1226
1227 /**
1228 * Get the HTML text of the description page
1229 * This is not used by ImagePage for local files, since (among other things)
1230 * it skips the parser cache.
1231 */
1232 function getDescriptionText() {
1233 global $wgParser;
1234 $revision = Revision::newFromTitle( $this->title );
1235 if ( !$revision ) return false;
1236 $text = $revision->getText();
1237 if ( !$text ) return false;
1238 $pout = $wgParser->parse( $text, $this->title, new ParserOptions() );
1239 return $pout->getText();
1240 }
1241
1242 function getDescription() {
1243 $this->load();
1244 return $this->description;
1245 }
1246
1247 function getTimestamp() {
1248 $this->load();
1249 return $this->timestamp;
1250 }
1251
1252 function getSha1() {
1253 $this->load();
1254 // Initialise now if necessary
1255 if ( $this->sha1 == '' && $this->fileExists ) {
1256 $this->sha1 = File::sha1Base36( $this->getPath() );
1257 if ( !wfReadOnly() && strval( $this->sha1 ) != '' ) {
1258 $dbw = $this->repo->getMasterDB();
1259 $dbw->update( 'image',
1260 array( 'img_sha1' => $this->sha1 ),
1261 array( 'img_name' => $this->getName() ),
1262 __METHOD__ );
1263 $this->saveToCache();
1264 }
1265 }
1266
1267 return $this->sha1;
1268 }
1269
1270 /**
1271 * Start a transaction and lock the image for update
1272 * Increments a reference counter if the lock is already held
1273 * @return boolean True if the image exists, false otherwise
1274 */
1275 function lock() {
1276 $dbw = $this->repo->getMasterDB();
1277
1278 if ( !$this->locked ) {
1279 $dbw->begin();
1280 $this->locked++;
1281 }
1282
1283 return $dbw->selectField( 'image', '1', array( 'img_name' => $this->getName() ), __METHOD__ );
1284 }
1285
1286 /**
1287 * Decrement the lock reference count. If the reference count is reduced to zero, commits
1288 * the transaction and thereby releases the image lock.
1289 */
1290 function unlock() {
1291 if ( $this->locked ) {
1292 --$this->locked;
1293 if ( !$this->locked ) {
1294 $dbw = $this->repo->getMasterDB();
1295 $dbw->commit();
1296 }
1297 }
1298 }
1299
1300 /**
1301 * Roll back the DB transaction and mark the image unlocked
1302 */
1303 function unlockAndRollback() {
1304 $this->locked = false;
1305 $dbw = $this->repo->getMasterDB();
1306 $dbw->rollback();
1307 }
1308 } // LocalFile class
1309
1310 # ------------------------------------------------------------------------------
1311
1312 /**
1313 * Helper class for file deletion
1314 * @ingroup FileRepo
1315 */
1316 class LocalFileDeleteBatch {
1317
1318 /**
1319 * @var LocalFile
1320 */
1321 var $file;
1322
1323 var $reason, $srcRels = array(), $archiveUrls = array(), $deletionBatch, $suppress;
1324 var $status;
1325
1326 function __construct( File $file, $reason = '', $suppress = false ) {
1327 $this->file = $file;
1328 $this->reason = $reason;
1329 $this->suppress = $suppress;
1330 $this->status = $file->repo->newGood();
1331 }
1332
1333 function addCurrent() {
1334 $this->srcRels['.'] = $this->file->getRel();
1335 }
1336
1337 function addOld( $oldName ) {
1338 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
1339 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
1340 }
1341
1342 function getOldRels() {
1343 if ( !isset( $this->srcRels['.'] ) ) {
1344 $oldRels =& $this->srcRels;
1345 $deleteCurrent = false;
1346 } else {
1347 $oldRels = $this->srcRels;
1348 unset( $oldRels['.'] );
1349 $deleteCurrent = true;
1350 }
1351
1352 return array( $oldRels, $deleteCurrent );
1353 }
1354
1355 /*protected*/ function getHashes() {
1356 $hashes = array();
1357 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1358
1359 if ( $deleteCurrent ) {
1360 $hashes['.'] = $this->file->getSha1();
1361 }
1362
1363 if ( count( $oldRels ) ) {
1364 $dbw = $this->file->repo->getMasterDB();
1365 $res = $dbw->select(
1366 'oldimage',
1367 array( 'oi_archive_name', 'oi_sha1' ),
1368 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1369 __METHOD__
1370 );
1371
1372 foreach ( $res as $row ) {
1373 if ( rtrim( $row->oi_sha1, "\0" ) === '' ) {
1374 // Get the hash from the file
1375 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
1376 $props = $this->file->repo->getFileProps( $oldUrl );
1377
1378 if ( $props['fileExists'] ) {
1379 // Upgrade the oldimage row
1380 $dbw->update( 'oldimage',
1381 array( 'oi_sha1' => $props['sha1'] ),
1382 array( 'oi_name' => $this->file->getName(), 'oi_archive_name' => $row->oi_archive_name ),
1383 __METHOD__ );
1384 $hashes[$row->oi_archive_name] = $props['sha1'];
1385 } else {
1386 $hashes[$row->oi_archive_name] = false;
1387 }
1388 } else {
1389 $hashes[$row->oi_archive_name] = $row->oi_sha1;
1390 }
1391 }
1392 }
1393
1394 $missing = array_diff_key( $this->srcRels, $hashes );
1395
1396 foreach ( $missing as $name => $rel ) {
1397 $this->status->error( 'filedelete-old-unregistered', $name );
1398 }
1399
1400 foreach ( $hashes as $name => $hash ) {
1401 if ( !$hash ) {
1402 $this->status->error( 'filedelete-missing', $this->srcRels[$name] );
1403 unset( $hashes[$name] );
1404 }
1405 }
1406
1407 return $hashes;
1408 }
1409
1410 function doDBInserts() {
1411 global $wgUser;
1412
1413 $dbw = $this->file->repo->getMasterDB();
1414 $encTimestamp = $dbw->addQuotes( $dbw->timestamp() );
1415 $encUserId = $dbw->addQuotes( $wgUser->getId() );
1416 $encReason = $dbw->addQuotes( $this->reason );
1417 $encGroup = $dbw->addQuotes( 'deleted' );
1418 $ext = $this->file->getExtension();
1419 $dotExt = $ext === '' ? '' : ".$ext";
1420 $encExt = $dbw->addQuotes( $dotExt );
1421 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1422
1423 // Bitfields to further suppress the content
1424 if ( $this->suppress ) {
1425 $bitfield = 0;
1426 // This should be 15...
1427 $bitfield |= Revision::DELETED_TEXT;
1428 $bitfield |= Revision::DELETED_COMMENT;
1429 $bitfield |= Revision::DELETED_USER;
1430 $bitfield |= Revision::DELETED_RESTRICTED;
1431 } else {
1432 $bitfield = 'oi_deleted';
1433 }
1434
1435 if ( $deleteCurrent ) {
1436 $concat = $dbw->buildConcat( array( "img_sha1", $encExt ) );
1437 $where = array( 'img_name' => $this->file->getName() );
1438 $dbw->insertSelect( 'filearchive', 'image',
1439 array(
1440 'fa_storage_group' => $encGroup,
1441 'fa_storage_key' => "CASE WHEN img_sha1='' THEN '' ELSE $concat END",
1442 'fa_deleted_user' => $encUserId,
1443 'fa_deleted_timestamp' => $encTimestamp,
1444 'fa_deleted_reason' => $encReason,
1445 'fa_deleted' => $this->suppress ? $bitfield : 0,
1446
1447 'fa_name' => 'img_name',
1448 'fa_archive_name' => 'NULL',
1449 'fa_size' => 'img_size',
1450 'fa_width' => 'img_width',
1451 'fa_height' => 'img_height',
1452 'fa_metadata' => 'img_metadata',
1453 'fa_bits' => 'img_bits',
1454 'fa_media_type' => 'img_media_type',
1455 'fa_major_mime' => 'img_major_mime',
1456 'fa_minor_mime' => 'img_minor_mime',
1457 'fa_description' => 'img_description',
1458 'fa_user' => 'img_user',
1459 'fa_user_text' => 'img_user_text',
1460 'fa_timestamp' => 'img_timestamp'
1461 ), $where, __METHOD__ );
1462 }
1463
1464 if ( count( $oldRels ) ) {
1465 $concat = $dbw->buildConcat( array( "oi_sha1", $encExt ) );
1466 $where = array(
1467 'oi_name' => $this->file->getName(),
1468 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')' );
1469 $dbw->insertSelect( 'filearchive', 'oldimage',
1470 array(
1471 'fa_storage_group' => $encGroup,
1472 'fa_storage_key' => "CASE WHEN oi_sha1='' THEN '' ELSE $concat END",
1473 'fa_deleted_user' => $encUserId,
1474 'fa_deleted_timestamp' => $encTimestamp,
1475 'fa_deleted_reason' => $encReason,
1476 'fa_deleted' => $this->suppress ? $bitfield : 'oi_deleted',
1477
1478 'fa_name' => 'oi_name',
1479 'fa_archive_name' => 'oi_archive_name',
1480 'fa_size' => 'oi_size',
1481 'fa_width' => 'oi_width',
1482 'fa_height' => 'oi_height',
1483 'fa_metadata' => 'oi_metadata',
1484 'fa_bits' => 'oi_bits',
1485 'fa_media_type' => 'oi_media_type',
1486 'fa_major_mime' => 'oi_major_mime',
1487 'fa_minor_mime' => 'oi_minor_mime',
1488 'fa_description' => 'oi_description',
1489 'fa_user' => 'oi_user',
1490 'fa_user_text' => 'oi_user_text',
1491 'fa_timestamp' => 'oi_timestamp',
1492 'fa_deleted' => $bitfield
1493 ), $where, __METHOD__ );
1494 }
1495 }
1496
1497 function doDBDeletes() {
1498 $dbw = $this->file->repo->getMasterDB();
1499 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1500
1501 if ( count( $oldRels ) ) {
1502 $dbw->delete( 'oldimage',
1503 array(
1504 'oi_name' => $this->file->getName(),
1505 'oi_archive_name' => array_keys( $oldRels )
1506 ), __METHOD__ );
1507 }
1508
1509 if ( $deleteCurrent ) {
1510 $dbw->delete( 'image', array( 'img_name' => $this->file->getName() ), __METHOD__ );
1511 }
1512 }
1513
1514 /**
1515 * Run the transaction
1516 */
1517 function execute() {
1518 global $wgUseSquid;
1519 wfProfileIn( __METHOD__ );
1520
1521 $this->file->lock();
1522 // Leave private files alone
1523 $privateFiles = array();
1524 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1525 $dbw = $this->file->repo->getMasterDB();
1526
1527 if ( !empty( $oldRels ) ) {
1528 $res = $dbw->select( 'oldimage',
1529 array( 'oi_archive_name' ),
1530 array( 'oi_name' => $this->file->getName(),
1531 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1532 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ),
1533 __METHOD__ );
1534
1535 foreach ( $res as $row ) {
1536 $privateFiles[$row->oi_archive_name] = 1;
1537 }
1538 }
1539 // Prepare deletion batch
1540 $hashes = $this->getHashes();
1541 $this->deletionBatch = array();
1542 $ext = $this->file->getExtension();
1543 $dotExt = $ext === '' ? '' : ".$ext";
1544
1545 foreach ( $this->srcRels as $name => $srcRel ) {
1546 // Skip files that have no hash (missing source).
1547 // Keep private files where they are.
1548 if ( isset( $hashes[$name] ) && !array_key_exists( $name, $privateFiles ) ) {
1549 $hash = $hashes[$name];
1550 $key = $hash . $dotExt;
1551 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
1552 $this->deletionBatch[$name] = array( $srcRel, $dstRel );
1553 }
1554 }
1555
1556 // Lock the filearchive rows so that the files don't get deleted by a cleanup operation
1557 // We acquire this lock by running the inserts now, before the file operations.
1558 //
1559 // This potentially has poor lock contention characteristics -- an alternative
1560 // scheme would be to insert stub filearchive entries with no fa_name and commit
1561 // them in a separate transaction, then run the file ops, then update the fa_name fields.
1562 $this->doDBInserts();
1563
1564 // Removes non-existent file from the batch, so we don't get errors.
1565 $this->deletionBatch = $this->removeNonexistentFiles( $this->deletionBatch );
1566
1567 // Execute the file deletion batch
1568 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
1569
1570 if ( !$status->isGood() ) {
1571 $this->status->merge( $status );
1572 }
1573
1574 if ( !$this->status->ok ) {
1575 // Critical file deletion error
1576 // Roll back inserts, release lock and abort
1577 // TODO: delete the defunct filearchive rows if we are using a non-transactional DB
1578 $this->file->unlockAndRollback();
1579 wfProfileOut( __METHOD__ );
1580 return $this->status;
1581 }
1582
1583 // Purge squid
1584 if ( $wgUseSquid ) {
1585 $urls = array();
1586
1587 foreach ( $this->srcRels as $srcRel ) {
1588 $urlRel = str_replace( '%2F', '/', rawurlencode( $srcRel ) );
1589 $urls[] = $this->file->repo->getZoneUrl( 'public' ) . '/' . $urlRel;
1590 }
1591 SquidUpdate::purge( $urls );
1592 }
1593
1594 // Delete image/oldimage rows
1595 $this->doDBDeletes();
1596
1597 // Commit and return
1598 $this->file->unlock();
1599 wfProfileOut( __METHOD__ );
1600
1601 return $this->status;
1602 }
1603
1604 /**
1605 * Removes non-existent files from a deletion batch.
1606 */
1607 function removeNonexistentFiles( $batch ) {
1608 $files = $newBatch = array();
1609
1610 foreach ( $batch as $batchItem ) {
1611 list( $src, $dest ) = $batchItem;
1612 $files[$src] = $this->file->repo->getVirtualUrl( 'public' ) . '/' . rawurlencode( $src );
1613 }
1614
1615 $result = $this->file->repo->fileExistsBatch( $files, FSRepo::FILES_ONLY );
1616
1617 foreach ( $batch as $batchItem ) {
1618 if ( $result[$batchItem[0]] ) {
1619 $newBatch[] = $batchItem;
1620 }
1621 }
1622
1623 return $newBatch;
1624 }
1625 }
1626
1627 # ------------------------------------------------------------------------------
1628
1629 /**
1630 * Helper class for file undeletion
1631 * @ingroup FileRepo
1632 */
1633 class LocalFileRestoreBatch {
1634 /**
1635 * @var LocalFile
1636 */
1637 var $file;
1638
1639 var $cleanupBatch, $ids, $all, $unsuppress = false;
1640
1641 function __construct( File $file, $unsuppress = false ) {
1642 $this->file = $file;
1643 $this->cleanupBatch = $this->ids = array();
1644 $this->ids = array();
1645 $this->unsuppress = $unsuppress;
1646 }
1647
1648 /**
1649 * Add a file by ID
1650 */
1651 function addId( $fa_id ) {
1652 $this->ids[] = $fa_id;
1653 }
1654
1655 /**
1656 * Add a whole lot of files by ID
1657 */
1658 function addIds( $ids ) {
1659 $this->ids = array_merge( $this->ids, $ids );
1660 }
1661
1662 /**
1663 * Add all revisions of the file
1664 */
1665 function addAll() {
1666 $this->all = true;
1667 }
1668
1669 /**
1670 * Run the transaction, except the cleanup batch.
1671 * The cleanup batch should be run in a separate transaction, because it locks different
1672 * rows and there's no need to keep the image row locked while it's acquiring those locks
1673 * The caller may have its own transaction open.
1674 * So we save the batch and let the caller call cleanup()
1675 */
1676 function execute() {
1677 global $wgLang;
1678
1679 if ( !$this->all && !$this->ids ) {
1680 // Do nothing
1681 return $this->file->repo->newGood();
1682 }
1683
1684 $exists = $this->file->lock();
1685 $dbw = $this->file->repo->getMasterDB();
1686 $status = $this->file->repo->newGood();
1687
1688 // Fetch all or selected archived revisions for the file,
1689 // sorted from the most recent to the oldest.
1690 $conditions = array( 'fa_name' => $this->file->getName() );
1691
1692 if ( !$this->all ) {
1693 $conditions[] = 'fa_id IN (' . $dbw->makeList( $this->ids ) . ')';
1694 }
1695
1696 $result = $dbw->select( 'filearchive', '*',
1697 $conditions,
1698 __METHOD__,
1699 array( 'ORDER BY' => 'fa_timestamp DESC' )
1700 );
1701
1702 $idsPresent = array();
1703 $storeBatch = array();
1704 $insertBatch = array();
1705 $insertCurrent = false;
1706 $deleteIds = array();
1707 $first = true;
1708 $archiveNames = array();
1709
1710 foreach ( $result as $row ) {
1711 $idsPresent[] = $row->fa_id;
1712
1713 if ( $row->fa_name != $this->file->getName() ) {
1714 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp ) );
1715 $status->failCount++;
1716 continue;
1717 }
1718
1719 if ( $row->fa_storage_key == '' ) {
1720 // Revision was missing pre-deletion
1721 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp ) );
1722 $status->failCount++;
1723 continue;
1724 }
1725
1726 $deletedRel = $this->file->repo->getDeletedHashPath( $row->fa_storage_key ) . $row->fa_storage_key;
1727 $deletedUrl = $this->file->repo->getVirtualUrl() . '/deleted/' . $deletedRel;
1728
1729 $sha1 = substr( $row->fa_storage_key, 0, strcspn( $row->fa_storage_key, '.' ) );
1730
1731 # Fix leading zero
1732 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
1733 $sha1 = substr( $sha1, 1 );
1734 }
1735
1736 if ( is_null( $row->fa_major_mime ) || $row->fa_major_mime == 'unknown'
1737 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime == 'unknown'
1738 || is_null( $row->fa_media_type ) || $row->fa_media_type == 'UNKNOWN'
1739 || is_null( $row->fa_metadata ) ) {
1740 // Refresh our metadata
1741 // Required for a new current revision; nice for older ones too. :)
1742 $props = RepoGroup::singleton()->getFileProps( $deletedUrl );
1743 } else {
1744 $props = array(
1745 'minor_mime' => $row->fa_minor_mime,
1746 'major_mime' => $row->fa_major_mime,
1747 'media_type' => $row->fa_media_type,
1748 'metadata' => $row->fa_metadata
1749 );
1750 }
1751
1752 if ( $first && !$exists ) {
1753 // This revision will be published as the new current version
1754 $destRel = $this->file->getRel();
1755 $insertCurrent = array(
1756 'img_name' => $row->fa_name,
1757 'img_size' => $row->fa_size,
1758 'img_width' => $row->fa_width,
1759 'img_height' => $row->fa_height,
1760 'img_metadata' => $props['metadata'],
1761 'img_bits' => $row->fa_bits,
1762 'img_media_type' => $props['media_type'],
1763 'img_major_mime' => $props['major_mime'],
1764 'img_minor_mime' => $props['minor_mime'],
1765 'img_description' => $row->fa_description,
1766 'img_user' => $row->fa_user,
1767 'img_user_text' => $row->fa_user_text,
1768 'img_timestamp' => $row->fa_timestamp,
1769 'img_sha1' => $sha1
1770 );
1771
1772 // The live (current) version cannot be hidden!
1773 if ( !$this->unsuppress && $row->fa_deleted ) {
1774 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
1775 $this->cleanupBatch[] = $row->fa_storage_key;
1776 }
1777 } else {
1778 $archiveName = $row->fa_archive_name;
1779
1780 if ( $archiveName == '' ) {
1781 // This was originally a current version; we
1782 // have to devise a new archive name for it.
1783 // Format is <timestamp of archiving>!<name>
1784 $timestamp = wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
1785
1786 do {
1787 $archiveName = wfTimestamp( TS_MW, $timestamp ) . '!' . $row->fa_name;
1788 $timestamp++;
1789 } while ( isset( $archiveNames[$archiveName] ) );
1790 }
1791
1792 $archiveNames[$archiveName] = true;
1793 $destRel = $this->file->getArchiveRel( $archiveName );
1794 $insertBatch[] = array(
1795 'oi_name' => $row->fa_name,
1796 'oi_archive_name' => $archiveName,
1797 'oi_size' => $row->fa_size,
1798 'oi_width' => $row->fa_width,
1799 'oi_height' => $row->fa_height,
1800 'oi_bits' => $row->fa_bits,
1801 'oi_description' => $row->fa_description,
1802 'oi_user' => $row->fa_user,
1803 'oi_user_text' => $row->fa_user_text,
1804 'oi_timestamp' => $row->fa_timestamp,
1805 'oi_metadata' => $props['metadata'],
1806 'oi_media_type' => $props['media_type'],
1807 'oi_major_mime' => $props['major_mime'],
1808 'oi_minor_mime' => $props['minor_mime'],
1809 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
1810 'oi_sha1' => $sha1 );
1811 }
1812
1813 $deleteIds[] = $row->fa_id;
1814
1815 if ( !$this->unsuppress && $row->fa_deleted & File::DELETED_FILE ) {
1816 // private files can stay where they are
1817 $status->successCount++;
1818 } else {
1819 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
1820 $this->cleanupBatch[] = $row->fa_storage_key;
1821 }
1822
1823 $first = false;
1824 }
1825
1826 unset( $result );
1827
1828 // Add a warning to the status object for missing IDs
1829 $missingIds = array_diff( $this->ids, $idsPresent );
1830
1831 foreach ( $missingIds as $id ) {
1832 $status->error( 'undelete-missing-filearchive', $id );
1833 }
1834
1835 // Remove missing files from batch, so we don't get errors when undeleting them
1836 $storeBatch = $this->removeNonexistentFiles( $storeBatch );
1837
1838 // Run the store batch
1839 // Use the OVERWRITE_SAME flag to smooth over a common error
1840 $storeStatus = $this->file->repo->storeBatch( $storeBatch, FileRepo::OVERWRITE_SAME );
1841 $status->merge( $storeStatus );
1842
1843 if ( !$status->isGood() ) {
1844 // Even if some files could be copied, fail entirely as that is the
1845 // easiest thing to do without data loss
1846 $this->cleanupFailedBatch( $storeStatus, $storeBatch );
1847 $status->ok = false;
1848 $this->file->unlock();
1849
1850 return $status;
1851 }
1852
1853 // Run the DB updates
1854 // Because we have locked the image row, key conflicts should be rare.
1855 // If they do occur, we can roll back the transaction at this time with
1856 // no data loss, but leaving unregistered files scattered throughout the
1857 // public zone.
1858 // This is not ideal, which is why it's important to lock the image row.
1859 if ( $insertCurrent ) {
1860 $dbw->insert( 'image', $insertCurrent, __METHOD__ );
1861 }
1862
1863 if ( $insertBatch ) {
1864 $dbw->insert( 'oldimage', $insertBatch, __METHOD__ );
1865 }
1866
1867 if ( $deleteIds ) {
1868 $dbw->delete( 'filearchive',
1869 array( 'fa_id IN (' . $dbw->makeList( $deleteIds ) . ')' ),
1870 __METHOD__ );
1871 }
1872
1873 // If store batch is empty (all files are missing), deletion is to be considered successful
1874 if ( $status->successCount > 0 || !$storeBatch ) {
1875 if ( !$exists ) {
1876 wfDebug( __METHOD__ . " restored {$status->successCount} items, creating a new current\n" );
1877
1878 // Update site_stats
1879 $site_stats = $dbw->tableName( 'site_stats' );
1880 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images+1", __METHOD__ );
1881
1882 $this->file->purgeEverything();
1883 } else {
1884 wfDebug( __METHOD__ . " restored {$status->successCount} as archived versions\n" );
1885 $this->file->purgeDescription();
1886 $this->file->purgeHistory();
1887 }
1888 }
1889
1890 $this->file->unlock();
1891
1892 return $status;
1893 }
1894
1895 /**
1896 * Removes non-existent files from a store batch.
1897 */
1898 function removeNonexistentFiles( $triplets ) {
1899 $files = $filteredTriplets = array();
1900 foreach ( $triplets as $file )
1901 $files[$file[0]] = $file[0];
1902
1903 $result = $this->file->repo->fileExistsBatch( $files, FSRepo::FILES_ONLY );
1904
1905 foreach ( $triplets as $file ) {
1906 if ( $result[$file[0]] ) {
1907 $filteredTriplets[] = $file;
1908 }
1909 }
1910
1911 return $filteredTriplets;
1912 }
1913
1914 /**
1915 * Removes non-existent files from a cleanup batch.
1916 */
1917 function removeNonexistentFromCleanup( $batch ) {
1918 $files = $newBatch = array();
1919 $repo = $this->file->repo;
1920
1921 foreach ( $batch as $file ) {
1922 $files[$file] = $repo->getVirtualUrl( 'deleted' ) . '/' .
1923 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
1924 }
1925
1926 $result = $repo->fileExistsBatch( $files, FSRepo::FILES_ONLY );
1927
1928 foreach ( $batch as $file ) {
1929 if ( $result[$file] ) {
1930 $newBatch[] = $file;
1931 }
1932 }
1933
1934 return $newBatch;
1935 }
1936
1937 /**
1938 * Delete unused files in the deleted zone.
1939 * This should be called from outside the transaction in which execute() was called.
1940 */
1941 function cleanup() {
1942 if ( !$this->cleanupBatch ) {
1943 return $this->file->repo->newGood();
1944 }
1945
1946 $this->cleanupBatch = $this->removeNonexistentFromCleanup( $this->cleanupBatch );
1947
1948 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
1949
1950 return $status;
1951 }
1952
1953 function cleanupFailedBatch( $storeStatus, $storeBatch ) {
1954 $cleanupBatch = array();
1955
1956 foreach ( $storeStatus->success as $i => $success ) {
1957 if ( $success ) {
1958 $cleanupBatch[] = array( $storeBatch[$i][1], $storeBatch[$i][1] );
1959 }
1960 }
1961 $this->file->repo->cleanupBatch( $cleanupBatch );
1962 }
1963 }
1964
1965 # ------------------------------------------------------------------------------
1966
1967 /**
1968 * Helper class for file movement
1969 * @ingroup FileRepo
1970 */
1971 class LocalFileMoveBatch {
1972 var $file, $cur, $olds, $oldCount, $archive, $target, $db;
1973
1974 function __construct( File $file, Title $target ) {
1975 $this->file = $file;
1976 $this->target = $target;
1977 $this->oldHash = $this->file->repo->getHashPath( $this->file->getName() );
1978 $this->newHash = $this->file->repo->getHashPath( $this->target->getDBkey() );
1979 $this->oldName = $this->file->getName();
1980 $this->newName = $this->file->repo->getNameFromTitle( $this->target );
1981 $this->oldRel = $this->oldHash . $this->oldName;
1982 $this->newRel = $this->newHash . $this->newName;
1983 $this->db = $file->repo->getMasterDb();
1984 }
1985
1986 /**
1987 * Add the current image to the batch
1988 */
1989 function addCurrent() {
1990 $this->cur = array( $this->oldRel, $this->newRel );
1991 }
1992
1993 /**
1994 * Add the old versions of the image to the batch
1995 */
1996 function addOlds() {
1997 $archiveBase = 'archive';
1998 $this->olds = array();
1999 $this->oldCount = 0;
2000
2001 $result = $this->db->select( 'oldimage',
2002 array( 'oi_archive_name', 'oi_deleted' ),
2003 array( 'oi_name' => $this->oldName ),
2004 __METHOD__
2005 );
2006
2007 foreach ( $result as $row ) {
2008 $oldName = $row->oi_archive_name;
2009 $bits = explode( '!', $oldName, 2 );
2010
2011 if ( count( $bits ) != 2 ) {
2012 wfDebug( "Invalid old file name: $oldName \n" );
2013 continue;
2014 }
2015
2016 list( $timestamp, $filename ) = $bits;
2017
2018 if ( $this->oldName != $filename ) {
2019 wfDebug( "Invalid old file name: $oldName \n" );
2020 continue;
2021 }
2022
2023 $this->oldCount++;
2024
2025 // Do we want to add those to oldCount?
2026 if ( $row->oi_deleted & File::DELETED_FILE ) {
2027 continue;
2028 }
2029
2030 $this->olds[] = array(
2031 "{$archiveBase}/{$this->oldHash}{$oldName}",
2032 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
2033 );
2034 }
2035 }
2036
2037 /**
2038 * Perform the move.
2039 */
2040 function execute() {
2041 $repo = $this->file->repo;
2042 $status = $repo->newGood();
2043 $triplets = $this->getMoveTriplets();
2044
2045 $triplets = $this->removeNonexistentFiles( $triplets );
2046 $statusDb = $this->doDBUpdates();
2047 wfDebugLog( 'imagemove', "Renamed {$this->file->name} in database: {$statusDb->successCount} successes, {$statusDb->failCount} failures" );
2048 $statusMove = $repo->storeBatch( $triplets, FSRepo::DELETE_SOURCE );
2049 wfDebugLog( 'imagemove', "Moved files for {$this->file->name}: {$statusMove->successCount} successes, {$statusMove->failCount} failures" );
2050
2051 if ( !$statusMove->isOk() ) {
2052 wfDebugLog( 'imagemove', "Error in moving files: " . $statusMove->getWikiText() );
2053 $this->db->rollback();
2054 }
2055
2056 $status->merge( $statusDb );
2057 $status->merge( $statusMove );
2058
2059 return $status;
2060 }
2061
2062 /**
2063 * Do the database updates and return a new FileRepoStatus indicating how
2064 * many rows where updated.
2065 *
2066 * @return FileRepoStatus
2067 */
2068 function doDBUpdates() {
2069 $repo = $this->file->repo;
2070 $status = $repo->newGood();
2071 $dbw = $this->db;
2072
2073 // Update current image
2074 $dbw->update(
2075 'image',
2076 array( 'img_name' => $this->newName ),
2077 array( 'img_name' => $this->oldName ),
2078 __METHOD__
2079 );
2080
2081 if ( $dbw->affectedRows() ) {
2082 $status->successCount++;
2083 } else {
2084 $status->failCount++;
2085 }
2086
2087 // Update old images
2088 $dbw->update(
2089 'oldimage',
2090 array(
2091 'oi_name' => $this->newName,
2092 'oi_archive_name = ' . $dbw->strreplace( 'oi_archive_name', $dbw->addQuotes( $this->oldName ), $dbw->addQuotes( $this->newName ) ),
2093 ),
2094 array( 'oi_name' => $this->oldName ),
2095 __METHOD__
2096 );
2097
2098 $affected = $dbw->affectedRows();
2099 $total = $this->oldCount;
2100 $status->successCount += $affected;
2101 $status->failCount += $total - $affected;
2102
2103 return $status;
2104 }
2105
2106 /**
2107 * Generate triplets for FSRepo::storeBatch().
2108 */
2109 function getMoveTriplets() {
2110 $moves = array_merge( array( $this->cur ), $this->olds );
2111 $triplets = array(); // The format is: (srcUrl, destZone, destUrl)
2112
2113 foreach ( $moves as $move ) {
2114 // $move: (oldRelativePath, newRelativePath)
2115 $srcUrl = $this->file->repo->getVirtualUrl() . '/public/' . rawurlencode( $move[0] );
2116 $triplets[] = array( $srcUrl, 'public', $move[1] );
2117 wfDebugLog( 'imagemove', "Generated move triplet for {$this->file->name}: {$srcUrl} :: public :: {$move[1]}" );
2118 }
2119
2120 return $triplets;
2121 }
2122
2123 /**
2124 * Removes non-existent files from move batch.
2125 */
2126 function removeNonexistentFiles( $triplets ) {
2127 $files = array();
2128
2129 foreach ( $triplets as $file ) {
2130 $files[$file[0]] = $file[0];
2131 }
2132
2133 $result = $this->file->repo->fileExistsBatch( $files, FSRepo::FILES_ONLY );
2134 $filteredTriplets = array();
2135
2136 foreach ( $triplets as $file ) {
2137 if ( $result[$file[0]] ) {
2138 $filteredTriplets[] = $file;
2139 } else {
2140 wfDebugLog( 'imagemove', "File {$file[0]} does not exist" );
2141 }
2142 }
2143
2144 return $filteredTriplets;
2145 }
2146 }