f3afc74205960f79c9873cea19482c40a2fb6806
[lhc/web/wiklou.git] / includes / filerepo / LocalFile.php
1 <?php
2 /**
3 */
4
5 /**
6 * Bump this number when serialized cache records may be incompatible.
7 */
8 define( 'MW_FILE_VERSION', 7 );
9
10 /**
11 * Class to represent a local file in the wiki's own database
12 *
13 * Provides methods to retrieve paths (physical, logical, URL),
14 * to generate image thumbnails or for uploading.
15 *
16 * Note that only the repo object knows what its file class is called. You should
17 * never name a file class explictly outside of the repo class. Instead use the
18 * repo's factory functions to generate file objects, for example:
19 *
20 * RepoGroup::singleton()->getLocalRepo()->newFile($title);
21 *
22 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
23 * in most cases.
24 *
25 * @addtogroup FileRepo
26 */
27 class LocalFile extends File
28 {
29 /**#@+
30 * @private
31 */
32 var $fileExists, # does the file file exist on disk? (loadFromXxx)
33 $historyLine, # Number of line to return by nextHistoryLine() (constructor)
34 $historyRes, # result of the query for the file's history (nextHistoryLine)
35 $width, # \
36 $height, # |
37 $bits, # --- returned by getimagesize (loadFromXxx)
38 $attr, # /
39 $media_type, # MEDIATYPE_xxx (bitmap, drawing, audio...)
40 $mime, # MIME type, determined by MimeMagic::guessMimeType
41 $major_mime, # Major mime type
42 $minor_mime, # Minor mime type
43 $size, # Size in bytes (loadFromXxx)
44 $metadata, # Handler-specific metadata
45 $timestamp, # Upload timestamp
46 $sha1, # SHA-1 base 36 content hash
47 $user, $user_text, # User, who uploaded the file
48 $description, # Description of current revision of the file
49 $dataLoaded, # Whether or not all this has been loaded from the database (loadFromXxx)
50 $upgraded, # Whether the row was upgraded on load
51 $locked, # True if the image row is locked
52 $deleted; # Bitfield akin to rev_deleted
53
54 /**#@-*/
55
56 /**
57 * Create a LocalFile from a title
58 * Do not call this except from inside a repo class.
59 *
60 * Note: $unused param is only here to avoid an E_STRICT
61 */
62 static function newFromTitle( $title, $repo, $unused = null ) {
63 return new self( $title, $repo );
64 }
65
66 /**
67 * Create a LocalFile from a title
68 * Do not call this except from inside a repo class.
69 */
70 static function newFromRow( $row, $repo ) {
71 $title = Title::makeTitle( NS_IMAGE, $row->img_name );
72 $file = new self( $title, $repo );
73 $file->loadFromRow( $row );
74 return $file;
75 }
76
77 /**
78 * Constructor.
79 * Do not call this except from inside a repo class.
80 */
81 function __construct( $title, $repo ) {
82 if( !is_object( $title ) ) {
83 throw new MWException( __CLASS__.' constructor given bogus title.' );
84 }
85 parent::__construct( $title, $repo );
86 $this->metadata = '';
87 $this->historyLine = 0;
88 $this->historyRes = null;
89 $this->dataLoaded = false;
90 }
91
92 /**
93 * Get the memcached key
94 */
95 function getCacheKey() {
96 $hashedName = md5($this->getName());
97 return wfMemcKey( 'file', $hashedName );
98 }
99
100 /**
101 * Try to load file metadata from memcached. Returns true on success.
102 */
103 function loadFromCache() {
104 global $wgMemc;
105 wfProfileIn( __METHOD__ );
106 $this->dataLoaded = false;
107 $key = $this->getCacheKey();
108 if ( !$key ) {
109 return false;
110 }
111 $cachedValues = $wgMemc->get( $key );
112
113 // Check if the key existed and belongs to this version of MediaWiki
114 if ( isset($cachedValues['version']) && ( $cachedValues['version'] == MW_FILE_VERSION ) ) {
115 wfDebug( "Pulling file metadata from cache key $key\n" );
116 $this->fileExists = $cachedValues['fileExists'];
117 if ( $this->fileExists ) {
118 $this->setProps( $cachedValues );
119 }
120 $this->dataLoaded = true;
121 }
122 if ( $this->dataLoaded ) {
123 wfIncrStats( 'image_cache_hit' );
124 } else {
125 wfIncrStats( 'image_cache_miss' );
126 }
127
128 wfProfileOut( __METHOD__ );
129 return $this->dataLoaded;
130 }
131
132 /**
133 * Save the file metadata to memcached
134 */
135 function saveToCache() {
136 global $wgMemc;
137 $this->load();
138 $key = $this->getCacheKey();
139 if ( !$key ) {
140 return;
141 }
142 $fields = $this->getCacheFields( '' );
143 $cache = array( 'version' => MW_FILE_VERSION );
144 $cache['fileExists'] = $this->fileExists;
145 if ( $this->fileExists ) {
146 foreach ( $fields as $field ) {
147 $cache[$field] = $this->$field;
148 }
149 }
150
151 $wgMemc->set( $key, $cache, 60 * 60 * 24 * 7 ); // A week
152 }
153
154 /**
155 * Load metadata from the file itself
156 */
157 function loadFromFile() {
158 $this->setProps( self::getPropsFromPath( $this->getPath() ) );
159 }
160
161 function getCacheFields( $prefix = 'img_' ) {
162 static $fields = array( 'size', 'width', 'height', 'bits', 'media_type',
163 'major_mime', 'minor_mime', 'metadata', 'timestamp', 'sha1', 'user', 'user_text', 'description' );
164 static $results = array();
165 if ( $prefix == '' ) {
166 return $fields;
167 }
168 if ( !isset( $results[$prefix] ) ) {
169 $prefixedFields = array();
170 foreach ( $fields as $field ) {
171 $prefixedFields[] = $prefix . $field;
172 }
173 $results[$prefix] = $prefixedFields;
174 }
175 return $results[$prefix];
176 }
177
178 /**
179 * Load file metadata from the DB
180 */
181 function loadFromDB() {
182 # Polymorphic function name to distinguish foreign and local fetches
183 $fname = get_class( $this ) . '::' . __FUNCTION__;
184 wfProfileIn( $fname );
185
186 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
187 $this->dataLoaded = true;
188
189 $dbr = $this->repo->getMasterDB();
190
191 $row = $dbr->selectRow( 'image', $this->getCacheFields( 'img_' ),
192 array( 'img_name' => $this->getName() ), $fname );
193 if ( $row ) {
194 $this->loadFromRow( $row );
195 } else {
196 $this->fileExists = false;
197 }
198
199 wfProfileOut( $fname );
200 }
201
202 /**
203 * Decode a row from the database (either object or array) to an array
204 * with timestamps and MIME types decoded, and the field prefix removed.
205 */
206 function decodeRow( $row, $prefix = 'img_' ) {
207 $array = (array)$row;
208 $prefixLength = strlen( $prefix );
209 // Sanity check prefix once
210 if ( substr( key( $array ), 0, $prefixLength ) !== $prefix ) {
211 throw new MWException( __METHOD__. ': incorrect $prefix parameter' );
212 }
213 $decoded = array();
214 foreach ( $array as $name => $value ) {
215 $decoded[substr( $name, $prefixLength )] = $value;
216 }
217 $decoded['timestamp'] = wfTimestamp( TS_MW, $decoded['timestamp'] );
218 if ( empty( $decoded['major_mime'] ) ) {
219 $decoded['mime'] = "unknown/unknown";
220 } else {
221 if (!$decoded['minor_mime']) {
222 $decoded['minor_mime'] = "unknown";
223 }
224 $decoded['mime'] = $decoded['major_mime'].'/'.$decoded['minor_mime'];
225 }
226 # Trim zero padding from char/binary field
227 $decoded['sha1'] = rtrim( $decoded['sha1'], "\0" );
228 return $decoded;
229 }
230
231 /*
232 * Load file metadata from a DB result row
233 */
234 function loadFromRow( $row, $prefix = 'img_' ) {
235 $this->dataLoaded = true;
236 $array = $this->decodeRow( $row, $prefix );
237 foreach ( $array as $name => $value ) {
238 $this->$name = $value;
239 }
240 $this->fileExists = true;
241 $this->maybeUpgradeRow();
242 }
243
244 /**
245 * Load file metadata from cache or DB, unless already loaded
246 */
247 function load() {
248 if ( !$this->dataLoaded ) {
249 if ( !$this->loadFromCache() ) {
250 $this->loadFromDB();
251 $this->saveToCache();
252 }
253 $this->dataLoaded = true;
254 }
255 }
256
257 /**
258 * Upgrade a row if it needs it
259 */
260 function maybeUpgradeRow() {
261 if ( wfReadOnly() ) {
262 return;
263 }
264 if ( is_null($this->media_type) ||
265 $this->mime == 'image/svg'
266 ) {
267 $this->upgradeRow();
268 $this->upgraded = true;
269 } else {
270 $handler = $this->getHandler();
271 if ( $handler && !$handler->isMetadataValid( $this, $this->metadata ) ) {
272 $this->upgradeRow();
273 $this->upgraded = true;
274 }
275 }
276 }
277
278 function getUpgraded() {
279 return $this->upgraded;
280 }
281
282 /**
283 * Fix assorted version-related problems with the image row by reloading it from the file
284 */
285 function upgradeRow() {
286 wfProfileIn( __METHOD__ );
287
288 $this->loadFromFile();
289
290 # Don't destroy file info of missing files
291 if ( !$this->fileExists ) {
292 wfDebug( __METHOD__.": file does not exist, aborting\n" );
293 return;
294 }
295 $dbw = $this->repo->getMasterDB();
296 list( $major, $minor ) = self::splitMime( $this->mime );
297
298 if ( wfReadOnly() ) {
299 return;
300 }
301 wfDebug(__METHOD__.': upgrading '.$this->getName()." to the current schema\n");
302
303 $dbw->update( 'image',
304 array(
305 'img_width' => $this->width,
306 'img_height' => $this->height,
307 'img_bits' => $this->bits,
308 'img_media_type' => $this->media_type,
309 'img_major_mime' => $major,
310 'img_minor_mime' => $minor,
311 'img_metadata' => $this->metadata,
312 'img_sha1' => $this->sha1,
313 ), array( 'img_name' => $this->getName() ),
314 __METHOD__
315 );
316 $this->saveToCache();
317 wfProfileOut( __METHOD__ );
318 }
319
320 /**
321 * Set properties in this object to be equal to those given in the
322 * associative array $info. Only cacheable fields can be set.
323 *
324 * If 'mime' is given, it will be split into major_mime/minor_mime.
325 * If major_mime/minor_mime are given, $this->mime will also be set.
326 */
327 function setProps( $info ) {
328 $this->dataLoaded = true;
329 $fields = $this->getCacheFields( '' );
330 $fields[] = 'fileExists';
331 foreach ( $fields as $field ) {
332 if ( isset( $info[$field] ) ) {
333 $this->$field = $info[$field];
334 }
335 }
336 // Fix up mime fields
337 if ( isset( $info['major_mime'] ) ) {
338 $this->mime = "{$info['major_mime']}/{$info['minor_mime']}";
339 } elseif ( isset( $info['mime'] ) ) {
340 list( $this->major_mime, $this->minor_mime ) = self::splitMime( $this->mime );
341 }
342 }
343
344 /** splitMime inherited */
345 /** getName inherited */
346 /** getTitle inherited */
347 /** getURL inherited */
348 /** getViewURL inherited */
349 /** getPath inherited */
350 /** isVisible inhereted */
351
352 /**
353 * Return the width of the image
354 *
355 * Returns false on error
356 * @public
357 */
358 function getWidth( $page = 1 ) {
359 $this->load();
360 if ( $this->isMultipage() ) {
361 $dim = $this->getHandler()->getPageDimensions( $this, $page );
362 if ( $dim ) {
363 return $dim['width'];
364 } else {
365 return false;
366 }
367 } else {
368 return $this->width;
369 }
370 }
371
372 /**
373 * Return the height of the image
374 *
375 * Returns false on error
376 * @public
377 */
378 function getHeight( $page = 1 ) {
379 $this->load();
380 if ( $this->isMultipage() ) {
381 $dim = $this->getHandler()->getPageDimensions( $this, $page );
382 if ( $dim ) {
383 return $dim['height'];
384 } else {
385 return false;
386 }
387 } else {
388 return $this->height;
389 }
390 }
391
392 /**
393 * Returns ID or name of user who uploaded the file
394 *
395 * @param $type string 'text' or 'id'
396 */
397 function getUser($type='text') {
398 $this->load();
399 if( $type == 'text' ) {
400 return $this->user_text;
401 } elseif( $type == 'id' ) {
402 return $this->user;
403 }
404 }
405
406 /**
407 * Get handler-specific metadata
408 */
409 function getMetadata() {
410 $this->load();
411 return $this->metadata;
412 }
413
414 /**
415 * Return the size of the image file, in bytes
416 * @public
417 */
418 function getSize() {
419 $this->load();
420 return $this->size;
421 }
422
423 /**
424 * Returns the mime type of the file.
425 */
426 function getMimeType() {
427 $this->load();
428 return $this->mime;
429 }
430
431 /**
432 * Return the type of the media in the file.
433 * Use the value returned by this function with the MEDIATYPE_xxx constants.
434 */
435 function getMediaType() {
436 $this->load();
437 return $this->media_type;
438 }
439
440 /** canRender inherited */
441 /** mustRender inherited */
442 /** allowInlineDisplay inherited */
443 /** isSafeFile inherited */
444 /** isTrustedFile inherited */
445
446 /**
447 * Returns true if the file file exists on disk.
448 * @return boolean Whether file file exist on disk.
449 * @public
450 */
451 function exists() {
452 $this->load();
453 return $this->fileExists;
454 }
455
456 /** getTransformScript inherited */
457 /** getUnscaledThumb inherited */
458 /** thumbName inherited */
459 /** createThumb inherited */
460 /** getThumbnail inherited */
461 /** transform inherited */
462
463 /**
464 * Fix thumbnail files from 1.4 or before, with extreme prejudice
465 */
466 function migrateThumbFile( $thumbName ) {
467 $thumbDir = $this->getThumbPath();
468 $thumbPath = "$thumbDir/$thumbName";
469 if ( is_dir( $thumbPath ) ) {
470 // Directory where file should be
471 // This happened occasionally due to broken migration code in 1.5
472 // Rename to broken-*
473 for ( $i = 0; $i < 100 ; $i++ ) {
474 $broken = $this->repo->getZonePath('public') . "/broken-$i-$thumbName";
475 if ( !file_exists( $broken ) ) {
476 rename( $thumbPath, $broken );
477 break;
478 }
479 }
480 // Doesn't exist anymore
481 clearstatcache();
482 }
483 if ( is_file( $thumbDir ) ) {
484 // File where directory should be
485 unlink( $thumbDir );
486 // Doesn't exist anymore
487 clearstatcache();
488 }
489 }
490
491 /** getHandler inherited */
492 /** iconThumb inherited */
493 /** getLastError inherited */
494
495 /**
496 * Get all thumbnail names previously generated for this file
497 */
498 function getThumbnails() {
499 if ( $this->isHashed() ) {
500 $this->load();
501 $files = array();
502 $dir = $this->getThumbPath();
503
504 if ( is_dir( $dir ) ) {
505 $handle = opendir( $dir );
506
507 if ( $handle ) {
508 while ( false !== ( $file = readdir($handle) ) ) {
509 if ( $file{0} != '.' ) {
510 $files[] = $file;
511 }
512 }
513 closedir( $handle );
514 }
515 }
516 } else {
517 $files = array();
518 }
519
520 return $files;
521 }
522
523 /**
524 * Refresh metadata in memcached, but don't touch thumbnails or squid
525 */
526 function purgeMetadataCache() {
527 $this->loadFromDB();
528 $this->saveToCache();
529 $this->purgeHistory();
530 }
531
532 /**
533 * Purge the shared history (OldLocalFile) cache
534 */
535 function purgeHistory() {
536 global $wgMemc;
537 $hashedName = md5($this->getName());
538 $oldKey = wfMemcKey( 'oldfile', $hashedName );
539 $wgMemc->delete( $oldKey );
540 }
541
542 /**
543 * Delete all previously generated thumbnails, refresh metadata in memcached and purge the squid
544 */
545 function purgeCache() {
546 // Refresh metadata cache
547 $this->purgeMetadataCache();
548
549 // Delete thumbnails
550 $this->purgeThumbnails();
551
552 // Purge squid cache for this file
553 SquidUpdate::purge( array( $this->getURL() ) );
554 }
555
556 /**
557 * Delete cached transformed files
558 */
559 function purgeThumbnails() {
560 global $wgUseSquid;
561 // Delete thumbnails
562 $files = $this->getThumbnails();
563 $dir = $this->getThumbPath();
564 $urls = array();
565 foreach ( $files as $file ) {
566 # Check that the base file name is part of the thumb name
567 # This is a basic sanity check to avoid erasing unrelated directories
568 if ( strpos( $file, $this->getName() ) !== false ) {
569 $url = $this->getThumbUrl( $file );
570 $urls[] = $url;
571 @unlink( "$dir/$file" );
572 }
573 }
574
575 // Purge the squid
576 if ( $wgUseSquid ) {
577 SquidUpdate::purge( $urls );
578 }
579 }
580
581 /** purgeDescription inherited */
582 /** purgeEverything inherited */
583
584 function getHistory($limit = null, $start = null, $end = null) {
585 $dbr = $this->repo->getSlaveDB();
586 $conds = $opts = array();
587 $conds[] = "oi_name = " . $dbr->addQuotes( $this->title->getDBKey() );
588 if( $start !== null ) {
589 $conds[] = "oi_timestamp <= " . $dbr->addQuotes( $dbr->timestamp( $start ) );
590 }
591 if( $end !== null ) {
592 $conds[] = "oi_timestamp >= " . $dbr->addQuotes( $dbr->timestamp( $end ) );
593 }
594 if( $limit ) {
595 $opts['LIMIT'] = $limit;
596 }
597 $opts['ORDER BY'] = 'oi_timestamp DESC';
598 $res = $dbr->select('oldimage', '*', $conds, __METHOD__, $opts);
599 $r = array();
600 while( $row = $dbr->fetchObject($res) ) {
601 $r[] = OldLocalFile::newFromRow($row, $this->repo);
602 }
603 return $r;
604 }
605
606 /**
607 * Return the history of this file, line by line.
608 * starts with current version, then old versions.
609 * uses $this->historyLine to check which line to return:
610 * 0 return line for current version
611 * 1 query for old versions, return first one
612 * 2, ... return next old version from above query
613 *
614 * @public
615 */
616 function nextHistoryLine() {
617 # Polymorphic function name to distinguish foreign and local fetches
618 $fname = get_class( $this ) . '::' . __FUNCTION__;
619
620 $dbr = $this->repo->getSlaveDB();
621
622 if ( $this->historyLine == 0 ) {// called for the first time, return line from cur
623 $this->historyRes = $dbr->select( 'image',
624 array(
625 '*',
626 "'' AS oi_archive_name",
627 '0 as oi_deleted',
628 'img_sha1'
629 ),
630 array( 'img_name' => $this->title->getDBkey() ),
631 $fname
632 );
633 if ( 0 == $dbr->numRows( $this->historyRes ) ) {
634 $dbr->freeResult($this->historyRes);
635 $this->historyRes = null;
636 return FALSE;
637 }
638 } else if ( $this->historyLine == 1 ) {
639 $dbr->freeResult($this->historyRes);
640 $this->historyRes = $dbr->select( 'oldimage', '*',
641 array( 'oi_name' => $this->title->getDBkey() ),
642 $fname,
643 array( 'ORDER BY' => 'oi_timestamp DESC' )
644 );
645 }
646 $this->historyLine ++;
647
648 return $dbr->fetchObject( $this->historyRes );
649 }
650
651 /**
652 * Reset the history pointer to the first element of the history
653 * @public
654 */
655 function resetHistory() {
656 $this->historyLine = 0;
657 if (!is_null($this->historyRes)) {
658 $this->repo->getSlaveDB()->freeResult($this->historyRes);
659 $this->historyRes = null;
660 }
661 }
662
663 /** getFullPath inherited */
664 /** getHashPath inherited */
665 /** getRel inherited */
666 /** getUrlRel inherited */
667 /** getArchiveRel inherited */
668 /** getThumbRel inherited */
669 /** getArchivePath inherited */
670 /** getThumbPath inherited */
671 /** getArchiveUrl inherited */
672 /** getThumbUrl inherited */
673 /** getArchiveVirtualUrl inherited */
674 /** getThumbVirtualUrl inherited */
675 /** isHashed inherited */
676
677 /**
678 * Upload a file and record it in the DB
679 * @param string $srcPath Source path or virtual URL
680 * @param string $comment Upload description
681 * @param string $pageText Text to use for the new description page, if a new description page is created
682 * @param integer $flags Flags for publish()
683 * @param array $props File properties, if known. This can be used to reduce the
684 * upload time when uploading virtual URLs for which the file info
685 * is already known
686 * @param string $timestamp Timestamp for img_timestamp, or false to use the current time
687 *
688 * @return FileRepoStatus object. On success, the value member contains the
689 * archive name, or an empty string if it was a new file.
690 */
691 function upload( $srcPath, $comment, $pageText, $flags = 0, $props = false, $timestamp = false ) {
692 $this->lock();
693 $status = $this->publish( $srcPath, $flags );
694 if ( $status->ok ) {
695 if ( !$this->recordUpload2( $status->value, $comment, $pageText, $props, $timestamp ) ) {
696 $status->fatal( 'filenotfound', $srcPath );
697 }
698 }
699 $this->unlock();
700 return $status;
701 }
702
703 /**
704 * Record a file upload in the upload log and the image table
705 * @deprecated use upload()
706 */
707 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
708 $watch = false, $timestamp = false )
709 {
710 $pageText = UploadForm::getInitialPageText( $desc, $license, $copyStatus, $source );
711 if ( !$this->recordUpload2( $oldver, $desc, $pageText ) ) {
712 return false;
713 }
714 if ( $watch ) {
715 global $wgUser;
716 $wgUser->addWatch( $this->getTitle() );
717 }
718 return true;
719
720 }
721
722 /**
723 * Record a file upload in the upload log and the image table
724 */
725 function recordUpload2( $oldver, $comment, $pageText, $props = false, $timestamp = false )
726 {
727 global $wgUser;
728
729 $dbw = $this->repo->getMasterDB();
730
731 if ( !$props ) {
732 $props = $this->repo->getFileProps( $this->getVirtualUrl() );
733 }
734 $props['description'] = $comment;
735 $props['user'] = $wgUser->getID();
736 $props['user_text'] = $wgUser->getName();
737 $props['timestamp'] = wfTimestamp( TS_MW );
738 $this->setProps( $props );
739
740 // Delete thumbnails and refresh the metadata cache
741 $this->purgeThumbnails();
742 $this->saveToCache();
743 SquidUpdate::purge( array( $this->getURL() ) );
744
745 // Fail now if the file isn't there
746 if ( !$this->fileExists ) {
747 wfDebug( __METHOD__.": File ".$this->getPath()." went missing!\n" );
748 return false;
749 }
750
751 $reupload = false;
752 if ( $timestamp === false ) {
753 $timestamp = $dbw->timestamp();
754 }
755
756 # Test to see if the row exists using INSERT IGNORE
757 # This avoids race conditions by locking the row until the commit, and also
758 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
759 $dbw->insert( 'image',
760 array(
761 'img_name' => $this->getName(),
762 'img_size'=> $this->size,
763 'img_width' => intval( $this->width ),
764 'img_height' => intval( $this->height ),
765 'img_bits' => $this->bits,
766 'img_media_type' => $this->media_type,
767 'img_major_mime' => $this->major_mime,
768 'img_minor_mime' => $this->minor_mime,
769 'img_timestamp' => $timestamp,
770 'img_description' => $comment,
771 'img_user' => $wgUser->getID(),
772 'img_user_text' => $wgUser->getName(),
773 'img_metadata' => $this->metadata,
774 'img_sha1' => $this->sha1
775 ),
776 __METHOD__,
777 'IGNORE'
778 );
779
780 if( $dbw->affectedRows() == 0 ) {
781 $reupload = true;
782
783 # Collision, this is an update of a file
784 # Insert previous contents into oldimage
785 $dbw->insertSelect( 'oldimage', 'image',
786 array(
787 'oi_name' => 'img_name',
788 'oi_archive_name' => $dbw->addQuotes( $oldver ),
789 'oi_size' => 'img_size',
790 'oi_width' => 'img_width',
791 'oi_height' => 'img_height',
792 'oi_bits' => 'img_bits',
793 'oi_timestamp' => 'img_timestamp',
794 'oi_description' => 'img_description',
795 'oi_user' => 'img_user',
796 'oi_user_text' => 'img_user_text',
797 'oi_metadata' => 'img_metadata',
798 'oi_media_type' => 'img_media_type',
799 'oi_major_mime' => 'img_major_mime',
800 'oi_minor_mime' => 'img_minor_mime',
801 'oi_sha1' => 'img_sha1'
802 ), array( 'img_name' => $this->getName() ), __METHOD__
803 );
804
805 # Update the current image row
806 $dbw->update( 'image',
807 array( /* SET */
808 'img_size' => $this->size,
809 'img_width' => intval( $this->width ),
810 'img_height' => intval( $this->height ),
811 'img_bits' => $this->bits,
812 'img_media_type' => $this->media_type,
813 'img_major_mime' => $this->major_mime,
814 'img_minor_mime' => $this->minor_mime,
815 'img_timestamp' => $timestamp,
816 'img_description' => $comment,
817 'img_user' => $wgUser->getID(),
818 'img_user_text' => $wgUser->getName(),
819 'img_metadata' => $this->metadata,
820 'img_sha1' => $this->sha1
821 ), array( /* WHERE */
822 'img_name' => $this->getName()
823 ), __METHOD__
824 );
825 } else {
826 # This is a new file
827 # Update the image count
828 $site_stats = $dbw->tableName( 'site_stats' );
829 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images+1", __METHOD__ );
830 }
831
832 $descTitle = $this->getTitle();
833 $article = new Article( $descTitle );
834
835 # Add the log entry
836 $log = new LogPage( 'upload' );
837 $action = $reupload ? 'overwrite' : 'upload';
838 $log->addEntry( $action, $descTitle, $comment );
839
840 if( $descTitle->exists() ) {
841 # Create a null revision
842 $nullRevision = Revision::newNullRevision( $dbw, $descTitle->getArticleId(), $log->getRcComment(), false );
843 $nullRevision->insertOn( $dbw );
844 $article->updateRevisionOn( $dbw, $nullRevision );
845
846 # Invalidate the cache for the description page
847 $descTitle->invalidateCache();
848 $descTitle->purgeSquid();
849 } else {
850 // New file; create the description page.
851 // There's already a log entry, so don't make a second RC entry
852 $article->doEdit( $pageText, $comment, EDIT_NEW | EDIT_SUPPRESS_RC );
853 }
854
855 # Hooks, hooks, the magic of hooks...
856 wfRunHooks( 'FileUpload', array( $this ) );
857
858 # Commit the transaction now, in case something goes wrong later
859 # The most important thing is that files don't get lost, especially archives
860 $dbw->immediateCommit();
861
862 # Invalidate cache for all pages using this file
863 $update = new HTMLCacheUpdate( $this->getTitle(), 'imagelinks' );
864 $update->doUpdate();
865
866 return true;
867 }
868
869 /**
870 * Move or copy a file to its public location. If a file exists at the
871 * destination, move it to an archive. Returns the archive name on success
872 * or an empty string if it was a new file, and a wikitext-formatted
873 * WikiError object on failure.
874 *
875 * The archive name should be passed through to recordUpload for database
876 * registration.
877 *
878 * @param string $sourcePath Local filesystem path to the source image
879 * @param integer $flags A bitwise combination of:
880 * File::DELETE_SOURCE Delete the source file, i.e. move
881 * rather than copy
882 * @return FileRepoStatus object. On success, the value member contains the
883 * archive name, or an empty string if it was a new file.
884 */
885 function publish( $srcPath, $flags = 0 ) {
886 $this->lock();
887 $dstRel = $this->getRel();
888 $archiveName = gmdate( 'YmdHis' ) . '!'. $this->getName();
889 $archiveRel = 'archive/' . $this->getHashPath() . $archiveName;
890 $flags = $flags & File::DELETE_SOURCE ? LocalRepo::DELETE_SOURCE : 0;
891 $status = $this->repo->publish( $srcPath, $dstRel, $archiveRel, $flags );
892 if ( $status->value == 'new' ) {
893 $status->value = '';
894 } else {
895 $status->value = $archiveName;
896 }
897 $this->unlock();
898 return $status;
899 }
900
901 /** getLinksTo inherited */
902 /** getExifData inherited */
903 /** isLocal inherited */
904 /** wasDeleted inherited */
905
906 /**
907 * Delete all versions of the file.
908 *
909 * Moves the files into an archive directory (or deletes them)
910 * and removes the database rows.
911 *
912 * Cache purging is done; logging is caller's responsibility.
913 *
914 * @param $reason
915 * @param $suppress
916 * @return FileRepoStatus object.
917 */
918 function delete( $reason, $suppress = false ) {
919 $this->lock();
920 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
921 $batch->addCurrent();
922
923 # Get old version relative paths
924 $dbw = $this->repo->getMasterDB();
925 $result = $dbw->select( 'oldimage',
926 array( 'oi_archive_name' ),
927 array( 'oi_name' => $this->getName() ) );
928 while ( $row = $dbw->fetchObject( $result ) ) {
929 $batch->addOld( $row->oi_archive_name );
930 }
931 $status = $batch->execute();
932
933 if ( $status->ok ) {
934 // Update site_stats
935 $site_stats = $dbw->tableName( 'site_stats' );
936 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images-1", __METHOD__ );
937 $this->purgeEverything();
938 }
939
940 $this->unlock();
941 return $status;
942 }
943
944 /**
945 * Delete an old version of the file.
946 *
947 * Moves the file into an archive directory (or deletes it)
948 * and removes the database row.
949 *
950 * Cache purging is done; logging is caller's responsibility.
951 *
952 * @param $reason
953 * @param $suppress
954 * @throws MWException or FSException on database or filestore failure
955 * @return FileRepoStatus object.
956 */
957 function deleteOld( $archiveName, $reason, $suppress=false ) {
958 $this->lock();
959 $batch = new LocalFileDeleteBatch( $this, $reason, $suppress );
960 $batch->addOld( $archiveName );
961 $status = $batch->execute();
962 $this->unlock();
963 if ( $status->ok ) {
964 $this->purgeDescription();
965 $this->purgeHistory();
966 }
967 return $status;
968 }
969
970 /**
971 * Restore all or specified deleted revisions to the given file.
972 * Permissions and logging are left to the caller.
973 *
974 * May throw database exceptions on error.
975 *
976 * @param $versions set of record ids of deleted items to restore,
977 * or empty to restore all revisions.
978 * @param $unuppress
979 * @return FileRepoStatus
980 */
981 function restore( $versions = array(), $unsuppress = false ) {
982 $batch = new LocalFileRestoreBatch( $this, $unsuppress );
983 if ( !$versions ) {
984 $batch->addAll();
985 } else {
986 $batch->addIds( $versions );
987 }
988 $status = $batch->execute();
989 if ( !$status->ok ) {
990 return $status;
991 }
992
993 $cleanupStatus = $batch->cleanup();
994 $cleanupStatus->successCount = 0;
995 $cleanupStatus->failCount = 0;
996 $status->merge( $cleanupStatus );
997 return $status;
998 }
999
1000 /** isMultipage inherited */
1001 /** pageCount inherited */
1002 /** scaleHeight inherited */
1003 /** getImageSize inherited */
1004
1005 /**
1006 * Get the URL of the file description page.
1007 */
1008 function getDescriptionUrl() {
1009 return $this->title->getLocalUrl();
1010 }
1011
1012 /**
1013 * Get the HTML text of the description page
1014 * This is not used by ImagePage for local files, since (among other things)
1015 * it skips the parser cache.
1016 */
1017 function getDescriptionText() {
1018 global $wgParser;
1019 $revision = Revision::newFromTitle( $this->title );
1020 if ( !$revision ) return false;
1021 $text = $revision->getText();
1022 if ( !$text ) return false;
1023 $html = $wgParser->parse( $text, new ParserOptions );
1024 return $html;
1025 }
1026
1027 function getDescription() {
1028 $this->load();
1029 return $this->description;
1030 }
1031
1032 function getTimestamp() {
1033 $this->load();
1034 return $this->timestamp;
1035 }
1036
1037 function getSha1() {
1038 $this->load();
1039 // Initialise now if necessary
1040 if ( $this->sha1 == '' && $this->fileExists ) {
1041 $this->sha1 = File::sha1Base36( $this->getPath() );
1042 if ( strval( $this->sha1 ) != '' ) {
1043 $dbw = $this->repo->getMasterDB();
1044 $dbw->update( 'image',
1045 array( 'img_sha1' => $this->sha1 ),
1046 array( 'img_name' => $this->getName() ),
1047 __METHOD__ );
1048 $this->saveToCache();
1049 }
1050 }
1051
1052 return $this->sha1;
1053 }
1054
1055 /**
1056 * Start a transaction and lock the image for update
1057 * Increments a reference counter if the lock is already held
1058 * @return boolean True if the image exists, false otherwise
1059 */
1060 function lock() {
1061 $dbw = $this->repo->getMasterDB();
1062 if ( !$this->locked ) {
1063 $dbw->begin();
1064 $this->locked++;
1065 }
1066 return $dbw->selectField( 'image', '1', array( 'img_name' => $this->getName() ), __METHOD__ );
1067 }
1068
1069 /**
1070 * Decrement the lock reference count. If the reference count is reduced to zero, commits
1071 * the transaction and thereby releases the image lock.
1072 */
1073 function unlock() {
1074 if ( $this->locked ) {
1075 --$this->locked;
1076 if ( !$this->locked ) {
1077 $dbw = $this->repo->getMasterDB();
1078 $dbw->commit();
1079 }
1080 }
1081 }
1082
1083 /**
1084 * Roll back the DB transaction and mark the image unlocked
1085 */
1086 function unlockAndRollback() {
1087 $this->locked = false;
1088 $dbw = $this->repo->getMasterDB();
1089 $dbw->rollback();
1090 }
1091 } // LocalFile class
1092
1093 #------------------------------------------------------------------------------
1094
1095 /**
1096 * Helper class for file deletion
1097 */
1098 class LocalFileDeleteBatch {
1099 var $file, $reason, $srcRels = array(), $archiveUrls = array(), $deletionBatch, $suppress;
1100 var $status;
1101
1102 function __construct( File $file, $reason = '', $suppress = false ) {
1103 $this->file = $file;
1104 $this->reason = $reason;
1105 $this->suppress = $suppress;
1106 $this->status = $file->repo->newGood();
1107 }
1108
1109 function addCurrent() {
1110 $this->srcRels['.'] = $this->file->getRel();
1111 }
1112
1113 function addOld( $oldName ) {
1114 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
1115 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
1116 }
1117
1118 function getOldRels() {
1119 if ( !isset( $this->srcRels['.'] ) ) {
1120 $oldRels =& $this->srcRels;
1121 $deleteCurrent = false;
1122 } else {
1123 $oldRels = $this->srcRels;
1124 unset( $oldRels['.'] );
1125 $deleteCurrent = true;
1126 }
1127 return array( $oldRels, $deleteCurrent );
1128 }
1129
1130 /*protected*/ function getHashes() {
1131 $hashes = array();
1132 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1133 if ( $deleteCurrent ) {
1134 $hashes['.'] = $this->file->getSha1();
1135 }
1136 if ( count( $oldRels ) ) {
1137 $dbw = $this->file->repo->getMasterDB();
1138 $res = $dbw->select( 'oldimage', array( 'oi_archive_name', 'oi_sha1' ),
1139 'oi_archive_name IN(' . $dbw->makeList( array_keys( $oldRels ) ) . ')',
1140 __METHOD__ );
1141 while ( $row = $dbw->fetchObject( $res ) ) {
1142 if ( rtrim( $row->oi_sha1, "\0" ) === '' ) {
1143 // Get the hash from the file
1144 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
1145 $props = $this->file->repo->getFileProps( $oldUrl );
1146 if ( $props['fileExists'] ) {
1147 // Upgrade the oldimage row
1148 $dbw->update( 'oldimage',
1149 array( 'oi_sha1' => $props['sha1'] ),
1150 array( 'oi_name' => $this->file->getName(), 'oi_archive_name' => $row->oi_archive_name ),
1151 __METHOD__ );
1152 $hashes[$row->oi_archive_name] = $props['sha1'];
1153 } else {
1154 $hashes[$row->oi_archive_name] = false;
1155 }
1156 } else {
1157 $hashes[$row->oi_archive_name] = $row->oi_sha1;
1158 }
1159 }
1160 }
1161 $missing = array_diff_key( $this->srcRels, $hashes );
1162 foreach ( $missing as $name => $rel ) {
1163 $this->status->error( 'filedelete-old-unregistered', $name );
1164 }
1165 foreach ( $hashes as $name => $hash ) {
1166 if ( !$hash ) {
1167 $this->status->error( 'filedelete-missing', $this->srcRels[$name] );
1168 unset( $hashes[$name] );
1169 }
1170 }
1171
1172 return $hashes;
1173 }
1174
1175 function doDBInserts() {
1176 global $wgUser;
1177 $dbw = $this->file->repo->getMasterDB();
1178 $encTimestamp = $dbw->addQuotes( $dbw->timestamp() );
1179 $encUserId = $dbw->addQuotes( $wgUser->getId() );
1180 $encReason = $dbw->addQuotes( $this->reason );
1181 $encGroup = $dbw->addQuotes( 'deleted' );
1182 $ext = $this->file->getExtension();
1183 $dotExt = $ext === '' ? '' : ".$ext";
1184 $encExt = $dbw->addQuotes( $dotExt );
1185 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1186
1187 // Bitfields to further suppress the content
1188 if ( $this->suppress ) {
1189 $bitfield = 0;
1190 // This should be 15...
1191 $bitfield |= Revision::DELETED_TEXT;
1192 $bitfield |= Revision::DELETED_COMMENT;
1193 $bitfield |= Revision::DELETED_USER;
1194 $bitfield |= Revision::DELETED_RESTRICTED;
1195 } else {
1196 $bitfield = 'oi_deleted';
1197 }
1198
1199 if ( $deleteCurrent ) {
1200 $concat = $dbw->buildConcat( array( "img_sha1", $encExt ) );
1201 $where = array( 'img_name' => $this->file->getName() );
1202 $dbw->insertSelect( 'filearchive', 'image',
1203 array(
1204 'fa_storage_group' => $encGroup,
1205 'fa_storage_key' => "CASE WHEN img_sha1='' THEN '' ELSE $concat END",
1206 'fa_deleted_user' => $encUserId,
1207 'fa_deleted_timestamp' => $encTimestamp,
1208 'fa_deleted_reason' => $encReason,
1209 'fa_deleted' => $this->suppress ? $bitfield : 0,
1210
1211 'fa_name' => 'img_name',
1212 'fa_archive_name' => 'NULL',
1213 'fa_size' => 'img_size',
1214 'fa_width' => 'img_width',
1215 'fa_height' => 'img_height',
1216 'fa_metadata' => 'img_metadata',
1217 'fa_bits' => 'img_bits',
1218 'fa_media_type' => 'img_media_type',
1219 'fa_major_mime' => 'img_major_mime',
1220 'fa_minor_mime' => 'img_minor_mime',
1221 'fa_description' => 'img_description',
1222 'fa_user' => 'img_user',
1223 'fa_user_text' => 'img_user_text',
1224 'fa_timestamp' => 'img_timestamp'
1225 ), $where, __METHOD__ );
1226 }
1227
1228 if ( count( $oldRels ) ) {
1229 $concat = $dbw->buildConcat( array( "oi_sha1", $encExt ) );
1230 $where = array(
1231 'oi_name' => $this->file->getName(),
1232 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')' );
1233 $dbw->insertSelect( 'filearchive', 'oldimage',
1234 array(
1235 'fa_storage_group' => $encGroup,
1236 'fa_storage_key' => "CASE WHEN oi_sha1='' THEN '' ELSE $concat END",
1237 'fa_deleted_user' => $encUserId,
1238 'fa_deleted_timestamp' => $encTimestamp,
1239 'fa_deleted_reason' => $encReason,
1240 'fa_deleted' => $this->suppress ? $bitfield : 'oi_deleted',
1241
1242 'fa_name' => 'oi_name',
1243 'fa_archive_name' => 'oi_archive_name',
1244 'fa_size' => 'oi_size',
1245 'fa_width' => 'oi_width',
1246 'fa_height' => 'oi_height',
1247 'fa_metadata' => 'oi_metadata',
1248 'fa_bits' => 'oi_bits',
1249 'fa_media_type' => 'oi_media_type',
1250 'fa_major_mime' => 'oi_major_mime',
1251 'fa_minor_mime' => 'oi_minor_mime',
1252 'fa_description' => 'oi_description',
1253 'fa_user' => 'oi_user',
1254 'fa_user_text' => 'oi_user_text',
1255 'fa_timestamp' => 'oi_timestamp',
1256 'fa_deleted' => $bitfield
1257 ), $where, __METHOD__ );
1258 }
1259 }
1260
1261 function doDBDeletes() {
1262 $dbw = $this->file->repo->getMasterDB();
1263 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1264 if ( count( $oldRels ) ) {
1265 $dbw->delete( 'oldimage',
1266 array(
1267 'oi_name' => $this->file->getName(),
1268 'oi_archive_name IN (' . $dbw->makeList( array_keys( $oldRels ) ) . ')'
1269 ), __METHOD__ );
1270 }
1271 if ( $deleteCurrent ) {
1272 $dbw->delete( 'image', array( 'img_name' => $this->file->getName() ), __METHOD__ );
1273 }
1274 }
1275
1276 /**
1277 * Run the transaction
1278 */
1279 function execute() {
1280 global $wgUser, $wgUseSquid;
1281 wfProfileIn( __METHOD__ );
1282
1283 $this->file->lock();
1284 // Leave private files alone
1285 $privateFiles = array();
1286 list( $oldRels, $deleteCurrent ) = $this->getOldRels();
1287 $dbw = $this->file->repo->getMasterDB();
1288 if( !empty( $oldRels ) ) {
1289 $res = $dbw->select( 'oldimage',
1290 array( 'oi_archive_name' ),
1291 array( 'oi_name' => $this->file->getName(),
1292 'oi_archive_name IN (' . $dbw->makeList( array_keys($oldRels) ) . ')',
1293 'oi_deleted & ' . File::DELETED_FILE => File::DELETED_FILE ),
1294 __METHOD__ );
1295 while( $row = $dbw->fetchObject( $res ) ) {
1296 $privateFiles[$row->oi_archive_name] = 1;
1297 }
1298 }
1299 // Prepare deletion batch
1300 $hashes = $this->getHashes();
1301 $this->deletionBatch = array();
1302 $ext = $this->file->getExtension();
1303 $dotExt = $ext === '' ? '' : ".$ext";
1304 foreach ( $this->srcRels as $name => $srcRel ) {
1305 // Skip files that have no hash (missing source).
1306 // Keep private files where they are.
1307 if ( isset($hashes[$name]) && !array_key_exists($name,$privateFiles) ) {
1308 $hash = $hashes[$name];
1309 $key = $hash . $dotExt;
1310 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
1311 $this->deletionBatch[$name] = array( $srcRel, $dstRel );
1312 }
1313 }
1314
1315 // Lock the filearchive rows so that the files don't get deleted by a cleanup operation
1316 // We acquire this lock by running the inserts now, before the file operations.
1317 //
1318 // This potentially has poor lock contention characteristics -- an alternative
1319 // scheme would be to insert stub filearchive entries with no fa_name and commit
1320 // them in a separate transaction, then run the file ops, then update the fa_name fields.
1321 $this->doDBInserts();
1322
1323 // Execute the file deletion batch
1324 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
1325 if ( !$status->isGood() ) {
1326 $this->status->merge( $status );
1327 }
1328
1329 if ( !$this->status->ok ) {
1330 // Critical file deletion error
1331 // Roll back inserts, release lock and abort
1332 // TODO: delete the defunct filearchive rows if we are using a non-transactional DB
1333 $this->file->unlockAndRollback();
1334 return $this->status;
1335 }
1336
1337 // Purge squid
1338 if ( $wgUseSquid ) {
1339 $urls = array();
1340 foreach ( $this->srcRels as $srcRel ) {
1341 $urlRel = str_replace( '%2F', '/', rawurlencode( $srcRel ) );
1342 $urls[] = $this->file->repo->getZoneUrl( 'public' ) . '/' . $urlRel;
1343 }
1344 SquidUpdate::purge( $urls );
1345 }
1346
1347 // Delete image/oldimage rows
1348 $this->doDBDeletes();
1349
1350 // Commit and return
1351 $this->file->unlock();
1352 wfProfileOut( __METHOD__ );
1353 return $this->status;
1354 }
1355 }
1356
1357 #------------------------------------------------------------------------------
1358
1359 /**
1360 * Helper class for file undeletion
1361 */
1362 class LocalFileRestoreBatch {
1363 var $file, $cleanupBatch, $ids, $all, $unsuppress = false;
1364
1365 function __construct( File $file, $unsuppress = false ) {
1366 $this->file = $file;
1367 $this->cleanupBatch = $this->ids = array();
1368 $this->ids = array();
1369 $this->unsuppress = $unsuppress;
1370 }
1371
1372 /**
1373 * Add a file by ID
1374 */
1375 function addId( $fa_id ) {
1376 $this->ids[] = $fa_id;
1377 }
1378
1379 /**
1380 * Add a whole lot of files by ID
1381 */
1382 function addIds( $ids ) {
1383 $this->ids = array_merge( $this->ids, $ids );
1384 }
1385
1386 /**
1387 * Add all revisions of the file
1388 */
1389 function addAll() {
1390 $this->all = true;
1391 }
1392
1393 /**
1394 * Run the transaction, except the cleanup batch.
1395 * The cleanup batch should be run in a separate transaction, because it locks different
1396 * rows and there's no need to keep the image row locked while it's acquiring those locks
1397 * The caller may have its own transaction open.
1398 * So we save the batch and let the caller call cleanup()
1399 */
1400 function execute() {
1401 global $wgUser, $wgLang;
1402 if ( !$this->all && !$this->ids ) {
1403 // Do nothing
1404 return $this->file->repo->newGood();
1405 }
1406
1407 $exists = $this->file->lock();
1408 $dbw = $this->file->repo->getMasterDB();
1409 $status = $this->file->repo->newGood();
1410
1411 // Fetch all or selected archived revisions for the file,
1412 // sorted from the most recent to the oldest.
1413 $conditions = array( 'fa_name' => $this->file->getName() );
1414 if( !$this->all ) {
1415 $conditions[] = 'fa_id IN (' . $dbw->makeList( $this->ids ) . ')';
1416 }
1417
1418 $result = $dbw->select( 'filearchive', '*',
1419 $conditions,
1420 __METHOD__,
1421 array( 'ORDER BY' => 'fa_timestamp DESC' ) );
1422
1423 $idsPresent = array();
1424 $storeBatch = array();
1425 $insertBatch = array();
1426 $insertCurrent = false;
1427 $deleteIds = array();
1428 $first = true;
1429 $archiveNames = array();
1430 while( $row = $dbw->fetchObject( $result ) ) {
1431 $idsPresent[] = $row->fa_id;
1432
1433 if ( $row->fa_name != $this->file->getName() ) {
1434 $status->error( 'undelete-filename-mismatch', $wgLang->timeanddate( $row->fa_timestamp ) );
1435 $status->failCount++;
1436 continue;
1437 }
1438 if ( $row->fa_storage_key == '' ) {
1439 // Revision was missing pre-deletion
1440 $status->error( 'undelete-bad-store-key', $wgLang->timeanddate( $row->fa_timestamp ) );
1441 $status->failCount++;
1442 continue;
1443 }
1444
1445 $deletedRel = $this->file->repo->getDeletedHashPath( $row->fa_storage_key ) . $row->fa_storage_key;
1446 $deletedUrl = $this->file->repo->getVirtualUrl() . '/deleted/' . $deletedRel;
1447
1448 $sha1 = substr( $row->fa_storage_key, 0, strcspn( $row->fa_storage_key, '.' ) );
1449 # Fix leading zero
1450 if ( strlen( $sha1 ) == 32 && $sha1[0] == '0' ) {
1451 $sha1 = substr( $sha1, 1 );
1452 }
1453
1454 if( is_null( $row->fa_major_mime ) || $row->fa_major_mime == 'unknown'
1455 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime == 'unknown'
1456 || is_null( $row->fa_media_type ) || $row->fa_media_type == 'UNKNOWN'
1457 || is_null( $row->fa_metadata ) ) {
1458 // Refresh our metadata
1459 // Required for a new current revision; nice for older ones too. :)
1460 $props = RepoGroup::singleton()->getFileProps( $deletedUrl );
1461 } else {
1462 $props = array(
1463 'minor_mime' => $row->fa_minor_mime,
1464 'major_mime' => $row->fa_major_mime,
1465 'media_type' => $row->fa_media_type,
1466 'metadata' => $row->fa_metadata );
1467 }
1468
1469 if ( $first && !$exists ) {
1470 // The live (current) version cannot be hidden!
1471 if( !$this->unsuppress && $row->fa_deleted ) {
1472 $this->file->unlock();
1473 return $status;
1474 }
1475 // This revision will be published as the new current version
1476 $destRel = $this->file->getRel();
1477 $insertCurrent = array(
1478 'img_name' => $row->fa_name,
1479 'img_size' => $row->fa_size,
1480 'img_width' => $row->fa_width,
1481 'img_height' => $row->fa_height,
1482 'img_metadata' => $props['metadata'],
1483 'img_bits' => $row->fa_bits,
1484 'img_media_type' => $props['media_type'],
1485 'img_major_mime' => $props['major_mime'],
1486 'img_minor_mime' => $props['minor_mime'],
1487 'img_description' => $row->fa_description,
1488 'img_user' => $row->fa_user,
1489 'img_user_text' => $row->fa_user_text,
1490 'img_timestamp' => $row->fa_timestamp,
1491 'img_sha1' => $sha1);
1492 } else {
1493 $archiveName = $row->fa_archive_name;
1494 if( $archiveName == '' ) {
1495 // This was originally a current version; we
1496 // have to devise a new archive name for it.
1497 // Format is <timestamp of archiving>!<name>
1498 $timestamp = wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
1499 do {
1500 $archiveName = wfTimestamp( TS_MW, $timestamp ) . '!' . $row->fa_name;
1501 $timestamp++;
1502 } while ( isset( $archiveNames[$archiveName] ) );
1503 }
1504 $archiveNames[$archiveName] = true;
1505 $destRel = $this->file->getArchiveRel( $archiveName );
1506 $insertBatch[] = array(
1507 'oi_name' => $row->fa_name,
1508 'oi_archive_name' => $archiveName,
1509 'oi_size' => $row->fa_size,
1510 'oi_width' => $row->fa_width,
1511 'oi_height' => $row->fa_height,
1512 'oi_bits' => $row->fa_bits,
1513 'oi_description' => $row->fa_description,
1514 'oi_user' => $row->fa_user,
1515 'oi_user_text' => $row->fa_user_text,
1516 'oi_timestamp' => $row->fa_timestamp,
1517 'oi_metadata' => $props['metadata'],
1518 'oi_media_type' => $props['media_type'],
1519 'oi_major_mime' => $props['major_mime'],
1520 'oi_minor_mime' => $props['minor_mime'],
1521 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
1522 'oi_sha1' => $sha1 );
1523 }
1524
1525 $deleteIds[] = $row->fa_id;
1526 if( !$this->unsuppress && $row->fa_deleted & File::DELETED_FILE ) {
1527 // private files can stay where they are
1528 } else {
1529 $storeBatch[] = array( $deletedUrl, 'public', $destRel );
1530 $this->cleanupBatch[] = $row->fa_storage_key;
1531 }
1532 $first = false;
1533 }
1534 unset( $result );
1535
1536 // Add a warning to the status object for missing IDs
1537 $missingIds = array_diff( $this->ids, $idsPresent );
1538 foreach ( $missingIds as $id ) {
1539 $status->error( 'undelete-missing-filearchive', $id );
1540 }
1541
1542 // Run the store batch
1543 // Use the OVERWRITE_SAME flag to smooth over a common error
1544 $storeStatus = $this->file->repo->storeBatch( $storeBatch, FileRepo::OVERWRITE_SAME );
1545 $status->merge( $storeStatus );
1546
1547 if ( !$status->ok ) {
1548 // Store batch returned a critical error -- this usually means nothing was stored
1549 // Stop now and return an error
1550 $this->file->unlock();
1551 return $status;
1552 }
1553
1554 // Run the DB updates
1555 // Because we have locked the image row, key conflicts should be rare.
1556 // If they do occur, we can roll back the transaction at this time with
1557 // no data loss, but leaving unregistered files scattered throughout the
1558 // public zone.
1559 // This is not ideal, which is why it's important to lock the image row.
1560 if ( $insertCurrent ) {
1561 $dbw->insert( 'image', $insertCurrent, __METHOD__ );
1562 }
1563 if ( $insertBatch ) {
1564 $dbw->insert( 'oldimage', $insertBatch, __METHOD__ );
1565 }
1566 if ( $deleteIds ) {
1567 $dbw->delete( 'filearchive',
1568 array( 'fa_id IN (' . $dbw->makeList( $deleteIds ) . ')' ),
1569 __METHOD__ );
1570 }
1571
1572 if( $status->successCount > 0 ) {
1573 if( !$exists ) {
1574 wfDebug( __METHOD__." restored {$status->successCount} items, creating a new current\n" );
1575
1576 // Update site_stats
1577 $site_stats = $dbw->tableName( 'site_stats' );
1578 $dbw->query( "UPDATE $site_stats SET ss_images=ss_images+1", __METHOD__ );
1579
1580 $this->file->purgeEverything();
1581 } else {
1582 wfDebug( __METHOD__." restored {$status->successCount} as archived versions\n" );
1583 $this->file->purgeDescription();
1584 $this->file->purgeHistory();
1585 }
1586 }
1587 $this->file->unlock();
1588 return $status;
1589 }
1590
1591 /**
1592 * Delete unused files in the deleted zone.
1593 * This should be called from outside the transaction in which execute() was called.
1594 */
1595 function cleanup() {
1596 if ( !$this->cleanupBatch ) {
1597 return $this->file->repo->newGood();
1598 }
1599 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
1600 return $status;
1601 }
1602 }