04fa2f463a56803fb2276e1065f6408d535b06ff
[lhc/web/wiklou.git] / includes / filerepo / file / File.php
1 <?php
2 /**
3 * Base code for files.
4 *
5 * @file
6 * @ingroup FileRepo
7 */
8
9 /**
10 * Implements some public methods and some protected utility functions which
11 * are required by multiple child classes. Contains stub functionality for
12 * unimplemented public methods.
13 *
14 * Stub functions which should be overridden are marked with STUB. Some more
15 * concrete functions are also typically overridden by child classes.
16 *
17 * Note that only the repo object knows what its file class is called. You should
18 * never name a file class explictly outside of the repo class. Instead use the
19 * repo's factory functions to generate file objects, for example:
20 *
21 * RepoGroup::singleton()->getLocalRepo()->newFile($title);
22 *
23 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
24 * in most cases.
25 *
26 * @ingroup FileRepo
27 */
28 abstract class File {
29 const DELETED_FILE = 1;
30 const DELETED_COMMENT = 2;
31 const DELETED_USER = 4;
32 const DELETED_RESTRICTED = 8;
33
34 /** Force rendering in the current process */
35 const RENDER_NOW = 1;
36 /**
37 * Force rendering even if thumbnail already exist and using RENDER_NOW
38 * I.e. you have to pass both flags: File::RENDER_NOW | File::RENDER_FORCE
39 */
40 const RENDER_FORCE = 2;
41
42 const DELETE_SOURCE = 1;
43
44 /**
45 * Some member variables can be lazy-initialised using __get(). The
46 * initialisation function for these variables is always a function named
47 * like getVar(), where Var is the variable name with upper-case first
48 * letter.
49 *
50 * The following variables are initialised in this way in this base class:
51 * name, extension, handler, path, canRender, isSafeFile,
52 * transformScript, hashPath, pageCount, url
53 *
54 * Code within this class should generally use the accessor function
55 * directly, since __get() isn't re-entrant and therefore causes bugs that
56 * depend on initialisation order.
57 */
58
59 /**
60 * The following member variables are not lazy-initialised
61 */
62
63 /**
64 * @var FileRepo|false
65 */
66 var $repo;
67
68 /**
69 * @var Title|false
70 */
71 var $title;
72
73 var $lastError, $redirected, $redirectedTitle;
74
75 /**
76 * @var FSFile|false
77 */
78 protected $fsFile;
79
80 /**
81 * @var MediaHandler
82 */
83 protected $handler;
84
85 /**
86 * @var string
87 */
88 protected $url, $extension, $name, $path, $hashPath, $pageCount, $transformScript;
89
90 /**
91 * @var bool
92 */
93 protected $canRender, $isSafeFile;
94
95 /**
96 * @var string Required Repository class type
97 */
98 protected $repoClass = 'FileRepo';
99
100 /**
101 * Call this constructor from child classes.
102 *
103 * Both $title and $repo are optional, though some functions
104 * may return false or throw exceptions if they are not set.
105 * Most subclasses will want to call assertRepoDefined() here.
106 *
107 * @param $title Title|string|false
108 * @param $repo FileRepo|false
109 */
110 function __construct( $title, $repo ) {
111 if ( $title !== false ) { // subclasses may not use MW titles
112 $title = self::normalizeTitle( $title, 'exception' );
113 }
114 $this->title = $title;
115 $this->repo = $repo;
116 }
117
118 /**
119 * Given a string or Title object return either a
120 * valid Title object with namespace NS_FILE or null
121 *
122 * @param $title Title|string
123 * @param $exception string|false Use 'exception' to throw an error on bad titles
124 * @return Title|null
125 */
126 static function normalizeTitle( $title, $exception = false ) {
127 $ret = $title;
128 if ( $ret instanceof Title ) {
129 # Normalize NS_MEDIA -> NS_FILE
130 if ( $ret->getNamespace() == NS_MEDIA ) {
131 $ret = Title::makeTitleSafe( NS_FILE, $ret->getDBkey() );
132 # Sanity check the title namespace
133 } elseif ( $ret->getNamespace() !== NS_FILE ) {
134 $ret = null;
135 }
136 } else {
137 # Convert strings to Title objects
138 $ret = Title::makeTitleSafe( NS_FILE, (string)$ret );
139 }
140 if ( !$ret && $exception !== false ) {
141 throw new MWException( "`$title` is not a valid file title." );
142 }
143 return $ret;
144 }
145
146 function __get( $name ) {
147 $function = array( $this, 'get' . ucfirst( $name ) );
148 if ( !is_callable( $function ) ) {
149 return null;
150 } else {
151 $this->$name = call_user_func( $function );
152 return $this->$name;
153 }
154 }
155
156 /**
157 * Normalize a file extension to the common form, and ensure it's clean.
158 * Extensions with non-alphanumeric characters will be discarded.
159 *
160 * @param $ext string (without the .)
161 * @return string
162 */
163 static function normalizeExtension( $ext ) {
164 $lower = strtolower( $ext );
165 $squish = array(
166 'htm' => 'html',
167 'jpeg' => 'jpg',
168 'mpeg' => 'mpg',
169 'tiff' => 'tif',
170 'ogv' => 'ogg' );
171 if( isset( $squish[$lower] ) ) {
172 return $squish[$lower];
173 } elseif( preg_match( '/^[0-9a-z]+$/', $lower ) ) {
174 return $lower;
175 } else {
176 return '';
177 }
178 }
179
180 /**
181 * Checks if file extensions are compatible
182 *
183 * @param $old File Old file
184 * @param $new string New name
185 *
186 * @return bool|null
187 */
188 static function checkExtensionCompatibility( File $old, $new ) {
189 $oldMime = $old->getMimeType();
190 $n = strrpos( $new, '.' );
191 $newExt = self::normalizeExtension( $n ? substr( $new, $n + 1 ) : '' );
192 $mimeMagic = MimeMagic::singleton();
193 return $mimeMagic->isMatchingExtension( $newExt, $oldMime );
194 }
195
196 /**
197 * Upgrade the database row if there is one
198 * Called by ImagePage
199 * STUB
200 */
201 function upgradeRow() {}
202
203 /**
204 * Split an internet media type into its two components; if not
205 * a two-part name, set the minor type to 'unknown'.
206 *
207 * @param string $mime "text/html" etc
208 * @return array ("text", "html") etc
209 */
210 public static function splitMime( $mime ) {
211 if( strpos( $mime, '/' ) !== false ) {
212 return explode( '/', $mime, 2 );
213 } else {
214 return array( $mime, 'unknown' );
215 }
216 }
217
218 /**
219 * Return the name of this file
220 *
221 * @return string
222 */
223 public function getName() {
224 if ( !isset( $this->name ) ) {
225 $this->assertRepoDefined();
226 $this->name = $this->repo->getNameFromTitle( $this->title );
227 }
228 return $this->name;
229 }
230
231 /**
232 * Get the file extension, e.g. "svg"
233 *
234 * @return string
235 */
236 function getExtension() {
237 if ( !isset( $this->extension ) ) {
238 $n = strrpos( $this->getName(), '.' );
239 $this->extension = self::normalizeExtension(
240 $n ? substr( $this->getName(), $n + 1 ) : '' );
241 }
242 return $this->extension;
243 }
244
245 /**
246 * Return the associated title object
247 *
248 * @return Title|false
249 */
250 public function getTitle() {
251 return $this->title;
252 }
253
254 /**
255 * Return the title used to find this file
256 *
257 * @return Title
258 */
259 public function getOriginalTitle() {
260 if ( $this->redirected ) {
261 return $this->getRedirectedTitle();
262 }
263 return $this->title;
264 }
265
266 /**
267 * Return the URL of the file
268 *
269 * @return string
270 */
271 public function getUrl() {
272 if ( !isset( $this->url ) ) {
273 $this->assertRepoDefined();
274 $this->url = $this->repo->getZoneUrl( 'public' ) . '/' . $this->getUrlRel();
275 }
276 return $this->url;
277 }
278
279 /**
280 * Return a fully-qualified URL to the file.
281 * Upload URL paths _may or may not_ be fully qualified, so
282 * we check. Local paths are assumed to belong on $wgServer.
283 *
284 * @return String
285 */
286 public function getFullUrl() {
287 return wfExpandUrl( $this->getUrl(), PROTO_RELATIVE );
288 }
289
290 /**
291 * @return string
292 */
293 public function getCanonicalUrl() {
294 return wfExpandUrl( $this->getUrl(), PROTO_CANONICAL );
295 }
296
297 /**
298 * @return string
299 */
300 function getViewURL() {
301 if( $this->mustRender()) {
302 if( $this->canRender() ) {
303 return $this->createThumb( $this->getWidth() );
304 } else {
305 wfDebug(__METHOD__.': supposed to render '.$this->getName().' ('.$this->getMimeType()."), but can't!\n");
306 return $this->getURL(); #hm... return NULL?
307 }
308 } else {
309 return $this->getURL();
310 }
311 }
312
313 /**
314 * Return the storage path to the file. Note that this does
315 * not mean that a file actually exists under that location.
316 *
317 * This path depends on whether directory hashing is active or not,
318 * i.e. whether the files are all found in the same directory,
319 * or in hashed paths like /images/3/3c.
320 *
321 * Most callers don't check the return value, but ForeignAPIFile::getPath
322 * returns false.
323 *
324 * @return string|false
325 */
326 public function getPath() {
327 if ( !isset( $this->path ) ) {
328 $this->assertRepoDefined();
329 $this->path = $this->repo->getZonePath( 'public' ) . '/' . $this->getRel();
330 }
331 return $this->path;
332 }
333
334 /**
335 * Get an FS copy or original of this file and return the path.
336 * Returns false on failure. Callers must not alter the file.
337 * Temporary files are cleared automatically.
338 *
339 * @return string|false
340 */
341 public function getLocalRefPath() {
342 $this->assertRepoDefined();
343 if ( !isset( $this->fsFile ) ) {
344 $this->fsFile = $this->repo->getLocalReference( $this->getPath() );
345 if ( !$this->fsFile ) {
346 $this->fsFile = false; // null => false; cache negative hits
347 }
348 }
349 return ( $this->fsFile )
350 ? $this->fsFile->getPath()
351 : false;
352 }
353
354 /**
355 * Return the width of the image. Returns false if the width is unknown
356 * or undefined.
357 *
358 * STUB
359 * Overridden by LocalFile, UnregisteredLocalFile
360 *
361 * @param $page int
362 *
363 * @return number
364 */
365 public function getWidth( $page = 1 ) {
366 return false;
367 }
368
369 /**
370 * Return the height of the image. Returns false if the height is unknown
371 * or undefined
372 *
373 * STUB
374 * Overridden by LocalFile, UnregisteredLocalFile
375 *
376 * @param $page int
377 *
378 * @return false|number
379 */
380 public function getHeight( $page = 1 ) {
381 return false;
382 }
383
384 /**
385 * Returns ID or name of user who uploaded the file
386 * STUB
387 *
388 * @param $type string 'text' or 'id'
389 *
390 * @return string|int
391 */
392 public function getUser( $type = 'text' ) {
393 return null;
394 }
395
396 /**
397 * Get the duration of a media file in seconds
398 *
399 * @return number
400 */
401 public function getLength() {
402 $handler = $this->getHandler();
403 if ( $handler ) {
404 return $handler->getLength( $this );
405 } else {
406 return 0;
407 }
408 }
409
410 /**
411 * Return true if the file is vectorized
412 *
413 * @return bool
414 */
415 public function isVectorized() {
416 $handler = $this->getHandler();
417 if ( $handler ) {
418 return $handler->isVectorized( $this );
419 } else {
420 return false;
421 }
422 }
423
424 /**
425 * Get handler-specific metadata
426 * Overridden by LocalFile, UnregisteredLocalFile
427 * STUB
428 */
429 public function getMetadata() {
430 return false;
431 }
432
433 /**
434 * get versioned metadata
435 *
436 * @param $metadata Mixed Array or String of (serialized) metadata
437 * @param $version integer version number.
438 * @return Array containing metadata, or what was passed to it on fail (unserializing if not array)
439 */
440 public function convertMetadataVersion($metadata, $version) {
441 $handler = $this->getHandler();
442 if ( !is_array( $metadata ) ) {
443 // Just to make the return type consistent
444 $metadata = unserialize( $metadata );
445 }
446 if ( $handler ) {
447 return $handler->convertMetadataVersion( $metadata, $version );
448 } else {
449 return $metadata;
450 }
451 }
452
453 /**
454 * Return the bit depth of the file
455 * Overridden by LocalFile
456 * STUB
457 */
458 public function getBitDepth() {
459 return 0;
460 }
461
462 /**
463 * Return the size of the image file, in bytes
464 * Overridden by LocalFile, UnregisteredLocalFile
465 * STUB
466 */
467 public function getSize() {
468 return false;
469 }
470
471 /**
472 * Returns the mime type of the file.
473 * Overridden by LocalFile, UnregisteredLocalFile
474 * STUB
475 *
476 * @return string
477 */
478 function getMimeType() {
479 return 'unknown/unknown';
480 }
481
482 /**
483 * Return the type of the media in the file.
484 * Use the value returned by this function with the MEDIATYPE_xxx constants.
485 * Overridden by LocalFile,
486 * STUB
487 */
488 function getMediaType() {
489 return MEDIATYPE_UNKNOWN;
490 }
491
492 /**
493 * Checks if the output of transform() for this file is likely
494 * to be valid. If this is false, various user elements will
495 * display a placeholder instead.
496 *
497 * Currently, this checks if the file is an image format
498 * that can be converted to a format
499 * supported by all browsers (namely GIF, PNG and JPEG),
500 * or if it is an SVG image and SVG conversion is enabled.
501 *
502 * @return bool
503 */
504 function canRender() {
505 if ( !isset( $this->canRender ) ) {
506 $this->canRender = $this->getHandler() && $this->handler->canRender( $this );
507 }
508 return $this->canRender;
509 }
510
511 /**
512 * Accessor for __get()
513 */
514 protected function getCanRender() {
515 return $this->canRender();
516 }
517
518 /**
519 * Return true if the file is of a type that can't be directly
520 * rendered by typical browsers and needs to be re-rasterized.
521 *
522 * This returns true for everything but the bitmap types
523 * supported by all browsers, i.e. JPEG; GIF and PNG. It will
524 * also return true for any non-image formats.
525 *
526 * @return bool
527 */
528 function mustRender() {
529 return $this->getHandler() && $this->handler->mustRender( $this );
530 }
531
532 /**
533 * Alias for canRender()
534 *
535 * @return bool
536 */
537 function allowInlineDisplay() {
538 return $this->canRender();
539 }
540
541 /**
542 * Determines if this media file is in a format that is unlikely to
543 * contain viruses or malicious content. It uses the global
544 * $wgTrustedMediaFormats list to determine if the file is safe.
545 *
546 * This is used to show a warning on the description page of non-safe files.
547 * It may also be used to disallow direct [[media:...]] links to such files.
548 *
549 * Note that this function will always return true if allowInlineDisplay()
550 * or isTrustedFile() is true for this file.
551 *
552 * @return bool
553 */
554 function isSafeFile() {
555 if ( !isset( $this->isSafeFile ) ) {
556 $this->isSafeFile = $this->_getIsSafeFile();
557 }
558 return $this->isSafeFile;
559 }
560
561 /**
562 * Accessor for __get()
563 *
564 * @return bool
565 */
566 protected function getIsSafeFile() {
567 return $this->isSafeFile();
568 }
569
570 /**
571 * Uncached accessor
572 *
573 * @return bool
574 */
575 protected function _getIsSafeFile() {
576 global $wgTrustedMediaFormats;
577
578 if ( $this->allowInlineDisplay() ) {
579 return true;
580 }
581 if ($this->isTrustedFile()) {
582 return true;
583 }
584
585 $type = $this->getMediaType();
586 $mime = $this->getMimeType();
587 #wfDebug("LocalFile::isSafeFile: type= $type, mime= $mime\n");
588
589 if ( !$type || $type === MEDIATYPE_UNKNOWN ) {
590 return false; #unknown type, not trusted
591 }
592 if ( in_array( $type, $wgTrustedMediaFormats ) ) {
593 return true;
594 }
595
596 if ( $mime === "unknown/unknown" ) {
597 return false; #unknown type, not trusted
598 }
599 if ( in_array( $mime, $wgTrustedMediaFormats) ) {
600 return true;
601 }
602
603 return false;
604 }
605
606 /**
607 * Returns true if the file is flagged as trusted. Files flagged that way
608 * can be linked to directly, even if that is not allowed for this type of
609 * file normally.
610 *
611 * This is a dummy function right now and always returns false. It could be
612 * implemented to extract a flag from the database. The trusted flag could be
613 * set on upload, if the user has sufficient privileges, to bypass script-
614 * and html-filters. It may even be coupled with cryptographics signatures
615 * or such.
616 *
617 * @return bool
618 */
619 function isTrustedFile() {
620 #this could be implemented to check a flag in the database,
621 #look for signatures, etc
622 return false;
623 }
624
625 /**
626 * Returns true if file exists in the repository.
627 *
628 * Overridden by LocalFile to avoid unnecessary stat calls.
629 *
630 * @return boolean Whether file exists in the repository.
631 */
632 public function exists() {
633 return $this->getPath() && $this->repo->fileExists( $this->path );
634 }
635
636 /**
637 * Returns true if file exists in the repository and can be included in a page.
638 * It would be unsafe to include private images, making public thumbnails inadvertently
639 *
640 * @return boolean Whether file exists in the repository and is includable.
641 */
642 public function isVisible() {
643 return $this->exists();
644 }
645
646 /**
647 * @return string
648 */
649 function getTransformScript() {
650 if ( !isset( $this->transformScript ) ) {
651 $this->transformScript = false;
652 if ( $this->repo ) {
653 $script = $this->repo->getThumbScriptUrl();
654 if ( $script ) {
655 $this->transformScript = "$script?f=" . urlencode( $this->getName() );
656 }
657 }
658 }
659 return $this->transformScript;
660 }
661
662 /**
663 * Get a ThumbnailImage which is the same size as the source
664 *
665 * @param $handlerParams array
666 *
667 * @return string
668 */
669 function getUnscaledThumb( $handlerParams = array() ) {
670 $hp =& $handlerParams;
671 $page = isset( $hp['page'] ) ? $hp['page'] : false;
672 $width = $this->getWidth( $page );
673 if ( !$width ) {
674 return $this->iconThumb();
675 }
676 $hp['width'] = $width;
677 return $this->transform( $hp );
678 }
679
680 /**
681 * Return the file name of a thumbnail with the specified parameters
682 *
683 * @param $params Array: handler-specific parameters
684 * @private -ish
685 *
686 * @return string
687 */
688 function thumbName( $params ) {
689 return $this->generateThumbName( $this->getName(), $params );
690 }
691
692 /**
693 * Generate a thumbnail file name from a name and specified parameters
694 *
695 * @param string $name
696 * @param array $params Parameters which will be passed to MediaHandler::makeParamString
697 *
698 * @return string
699 */
700 function generateThumbName( $name, $params ) {
701 if ( !$this->getHandler() ) {
702 return null;
703 }
704 $extension = $this->getExtension();
705 list( $thumbExt, $thumbMime ) = $this->handler->getThumbType(
706 $extension, $this->getMimeType(), $params );
707 $thumbName = $this->handler->makeParamString( $params ) . '-' . $name;
708 if ( $thumbExt != $extension ) {
709 $thumbName .= ".$thumbExt";
710 }
711 return $thumbName;
712 }
713
714 /**
715 * Create a thumbnail of the image having the specified width/height.
716 * The thumbnail will not be created if the width is larger than the
717 * image's width. Let the browser do the scaling in this case.
718 * The thumbnail is stored on disk and is only computed if the thumbnail
719 * file does not exist OR if it is older than the image.
720 * Returns the URL.
721 *
722 * Keeps aspect ratio of original image. If both width and height are
723 * specified, the generated image will be no bigger than width x height,
724 * and will also have correct aspect ratio.
725 *
726 * @param $width Integer: maximum width of the generated thumbnail
727 * @param $height Integer: maximum height of the image (optional)
728 *
729 * @return string
730 */
731 public function createThumb( $width, $height = -1 ) {
732 $params = array( 'width' => $width );
733 if ( $height != -1 ) {
734 $params['height'] = $height;
735 }
736 $thumb = $this->transform( $params );
737 if ( is_null( $thumb ) || $thumb->isError() ) {
738 return '';
739 }
740 return $thumb->getUrl();
741 }
742
743 /**
744 * Do the work of a transform (from an original into a thumb).
745 * Contains filesystem-specific functions.
746 *
747 * @param $thumbName string: the name of the thumbnail file.
748 * @param $thumbUrl string: the URL of the thumbnail file.
749 * @param $params Array: an associative array of handler-specific parameters.
750 * Typical keys are width, height and page.
751 * @param $flags Integer: a bitfield, may contain self::RENDER_NOW to force rendering
752 *
753 * @return MediaTransformOutput|null
754 */
755 protected function maybeDoTransform( $thumbName, $thumbUrl, $params, $flags = 0 ) {
756 global $wgIgnoreImageErrors, $wgThumbnailEpoch;
757
758 $thumbPath = $this->getThumbPath( $thumbName ); // final thumb path
759 if ( $this->repo && $this->repo->canTransformVia404() && !( $flags & self::RENDER_NOW ) ) {
760 wfDebug( __METHOD__ . " transformation deferred." );
761 // XXX: Pass in the storage path even though we are not rendering anything
762 // and the path is supposed to be an FS path. This is due to getScalerType()
763 // getting called on the path and clobbering $thumb->getUrl() if it's false.
764 return $this->handler->getTransform( $this, $thumbPath, $thumbUrl, $params );
765 }
766
767 wfDebug( __METHOD__.": Doing stat for $thumbPath\n" );
768 $this->migrateThumbFile( $thumbName );
769 if ( $this->repo->fileExists( $thumbPath ) && !( $flags & self::RENDER_FORCE ) ) {
770 $timestamp = $this->repo->getFileTimestamp( $thumbPath );
771 if ( $timestamp !== false && $timestamp >= $wgThumbnailEpoch ) {
772 // XXX: Pass in the storage path even though we are not rendering anything
773 // and the path is supposed to be an FS path. This is due to getScalerType()
774 // getting called on the path and clobbering $thumb->getUrl() if it's false.
775 return $this->handler->getTransform( $this, $thumbPath, $thumbUrl, $params );
776 }
777 } elseif ( $flags & self::RENDER_FORCE ) {
778 wfDebug( __METHOD__ . " forcing rendering per flag File::RENDER_FORCE\n" );
779 }
780
781 // Create a temp FS file with the same extension
782 $tmpFile = TempFSFile::factory( 'transform_', $this->getExtension() );
783 if ( !$tmpFile ) {
784 return new MediaTransformError( 'thumbnail_error',
785 $params['width'], 0, wfMsg( 'thumbnail-temp-create' ) );
786 }
787 $tmpThumbPath = $tmpFile->getPath(); // path of 0-byte temp file
788
789 // Actually render the thumbnail
790 $thumb = $this->handler->doTransform( $this, $tmpThumbPath, $thumbUrl, $params );
791 $tmpFile->bind( $thumb ); // keep alive with $thumb
792
793 // Ignore errors if requested
794 if ( !$thumb ) {
795 $thumb = null;
796 } elseif ( $thumb->isError() ) {
797 $this->lastError = $thumb->toText();
798 if ( $wgIgnoreImageErrors && !( $flags & self::RENDER_NOW ) ) {
799 $thumb = $this->handler->getTransform( $this, $tmpThumbPath, $thumbUrl, $params );
800 }
801 } elseif ( $thumb->hasFile() && !$thumb->fileIsSource() ) {
802 // Copy any thumbnail from the FS into storage at $dstpath
803 $status = $this->repo->store(
804 $tmpThumbPath, 'thumb', $this->getThumbRel( $thumbName ),
805 FileRepo::OVERWRITE | FileRepo::SKIP_LOCKING | FileRepo::ALLOW_STALE );
806 if ( !$status->isOK() ) {
807 return new MediaTransformError( 'thumbnail_error',
808 $params['width'], 0, wfMsg( 'thumbnail-dest-create' ) );
809 }
810 }
811
812 return $thumb;
813 }
814
815 /**
816 * Transform a media file
817 *
818 * @param $params Array: an associative array of handler-specific parameters.
819 * Typical keys are width, height and page.
820 * @param $flags Integer: a bitfield, may contain self::RENDER_NOW to force rendering
821 * @return MediaTransformOutput | false
822 */
823 function transform( $params, $flags = 0 ) {
824 global $wgUseSquid;
825
826 wfProfileIn( __METHOD__ );
827 do {
828 if ( !$this->canRender() ) {
829 // not a bitmap or renderable image, don't try.
830 $thumb = $this->iconThumb();
831 break;
832 }
833
834 // Get the descriptionUrl to embed it as comment into the thumbnail. Bug 19791.
835 $descriptionUrl = $this->getDescriptionUrl();
836 if ( $descriptionUrl ) {
837 $params['descriptionUrl'] = wfExpandUrl( $descriptionUrl, PROTO_CANONICAL );
838 }
839
840 $script = $this->getTransformScript();
841 if ( $script && !($flags & self::RENDER_NOW) ) {
842 // Use a script to transform on client request, if possible
843 $thumb = $this->handler->getScriptedTransform( $this, $script, $params );
844 if( $thumb ) {
845 break;
846 }
847 }
848
849 $normalisedParams = $params;
850 $this->handler->normaliseParams( $this, $normalisedParams );
851 $thumbName = $this->thumbName( $normalisedParams );
852 $thumbUrl = $this->getThumbUrl( $thumbName );
853
854 $thumb = $this->maybeDoTransform( $thumbName, $thumbUrl, $params, $flags );
855
856 // Purge. Useful in the event of Core -> Squid connection failure or squid
857 // purge collisions from elsewhere during failure. Don't keep triggering for
858 // "thumbs" which have the main image URL though (bug 13776)
859 if ( $wgUseSquid ) {
860 if ( !$thumb || $thumb->isError() || $thumb->getUrl() != $this->getURL() ) {
861 SquidUpdate::purge( array( $thumbUrl ) );
862 }
863 }
864 } while (false);
865
866 wfProfileOut( __METHOD__ );
867 return is_object( $thumb ) ? $thumb : false;
868 }
869
870 /**
871 * Hook into transform() to allow migration of thumbnail files
872 * STUB
873 * Overridden by LocalFile
874 */
875 function migrateThumbFile( $thumbName ) {}
876
877 /**
878 * Get a MediaHandler instance for this file
879 *
880 * @return MediaHandler
881 */
882 function getHandler() {
883 if ( !isset( $this->handler ) ) {
884 $this->handler = MediaHandler::getHandler( $this->getMimeType() );
885 }
886 return $this->handler;
887 }
888
889 /**
890 * Get a ThumbnailImage representing a file type icon
891 *
892 * @return ThumbnailImage
893 */
894 function iconThumb() {
895 global $wgStylePath, $wgStyleDirectory;
896
897 $try = array( 'fileicon-' . $this->getExtension() . '.png', 'fileicon.png' );
898 foreach ( $try as $icon ) {
899 $path = '/common/images/icons/' . $icon;
900 $filepath = $wgStyleDirectory . $path;
901 if ( file_exists( $filepath ) ) { // always FS
902 return new ThumbnailImage( $this, $wgStylePath . $path, 120, 120 );
903 }
904 }
905 return null;
906 }
907
908 /**
909 * Get last thumbnailing error.
910 * Largely obsolete.
911 */
912 function getLastError() {
913 return $this->lastError;
914 }
915
916 /**
917 * Get all thumbnail names previously generated for this file
918 * STUB
919 * Overridden by LocalFile
920 */
921 function getThumbnails() {
922 return array();
923 }
924
925 /**
926 * Purge shared caches such as thumbnails and DB data caching
927 * STUB
928 * Overridden by LocalFile
929 * @param $options Array Options, which include:
930 * 'forThumbRefresh' : The purging is only to refresh thumbnails
931 */
932 function purgeCache( $options = array() ) {}
933
934 /**
935 * Purge the file description page, but don't go after
936 * pages using the file. Use when modifying file history
937 * but not the current data.
938 */
939 function purgeDescription() {
940 $title = $this->getTitle();
941 if ( $title ) {
942 $title->invalidateCache();
943 $title->purgeSquid();
944 }
945 }
946
947 /**
948 * Purge metadata and all affected pages when the file is created,
949 * deleted, or majorly updated.
950 */
951 function purgeEverything() {
952 // Delete thumbnails and refresh file metadata cache
953 $this->purgeCache();
954 $this->purgeDescription();
955
956 // Purge cache of all pages using this file
957 $title = $this->getTitle();
958 if ( $title ) {
959 $update = new HTMLCacheUpdate( $title, 'imagelinks' );
960 $update->doUpdate();
961 }
962 }
963
964 /**
965 * Return a fragment of the history of file.
966 *
967 * STUB
968 * @param $limit integer Limit of rows to return
969 * @param $start timestamp Only revisions older than $start will be returned
970 * @param $end timestamp Only revisions newer than $end will be returned
971 * @param $inc bool Include the endpoints of the time range
972 *
973 * @return array
974 */
975 function getHistory($limit = null, $start = null, $end = null, $inc=true) {
976 return array();
977 }
978
979 /**
980 * Return the history of this file, line by line. Starts with current version,
981 * then old versions. Should return an object similar to an image/oldimage
982 * database row.
983 *
984 * STUB
985 * Overridden in LocalFile
986 */
987 public function nextHistoryLine() {
988 return false;
989 }
990
991 /**
992 * Reset the history pointer to the first element of the history.
993 * Always call this function after using nextHistoryLine() to free db resources
994 * STUB
995 * Overridden in LocalFile.
996 */
997 public function resetHistory() {}
998
999 /**
1000 * Get the filename hash component of the directory including trailing slash,
1001 * e.g. f/fa/
1002 * If the repository is not hashed, returns an empty string.
1003 *
1004 * @return string
1005 */
1006 function getHashPath() {
1007 if ( !isset( $this->hashPath ) ) {
1008 $this->assertRepoDefined();
1009 $this->hashPath = $this->repo->getHashPath( $this->getName() );
1010 }
1011 return $this->hashPath;
1012 }
1013
1014 /**
1015 * Get the path of the file relative to the public zone root.
1016 * This function is overriden in OldLocalFile to be like getArchiveRel().
1017 *
1018 * @return string
1019 */
1020 function getRel() {
1021 return $this->getHashPath() . $this->getName();
1022 }
1023
1024 /**
1025 * Get the path of an archived file relative to the public zone root
1026 *
1027 * @param $suffix bool|string if not false, the name of an archived thumbnail file
1028 *
1029 * @return string
1030 */
1031 function getArchiveRel( $suffix = false ) {
1032 $path = 'archive/' . $this->getHashPath();
1033 if ( $suffix === false ) {
1034 $path = substr( $path, 0, -1 );
1035 } else {
1036 $path .= $suffix;
1037 }
1038 return $path;
1039 }
1040
1041 /**
1042 * Get the path, relative to the thumbnail zone root, of the
1043 * thumbnail directory or a particular file if $suffix is specified
1044 *
1045 * @param $suffix bool|string if not false, the name of a thumbnail file
1046 *
1047 * @return string
1048 */
1049 function getThumbRel( $suffix = false ) {
1050 $path = $this->getRel();
1051 if ( $suffix !== false ) {
1052 $path .= '/' . $suffix;
1053 }
1054 return $path;
1055 }
1056
1057 /**
1058 * Get urlencoded path of the file relative to the public zone root.
1059 * This function is overriden in OldLocalFile to be like getArchiveUrl().
1060 *
1061 * @return string
1062 */
1063 function getUrlRel() {
1064 return $this->getHashPath() . rawurlencode( $this->getName() );
1065 }
1066
1067 /**
1068 * Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory
1069 * or a specific thumb if the $suffix is given.
1070 *
1071 * @param $archiveName string the timestamped name of an archived image
1072 * @param $suffix bool|string if not false, the name of a thumbnail file
1073 *
1074 * @return string
1075 */
1076 function getArchiveThumbRel( $archiveName, $suffix = false ) {
1077 $path = 'archive/' . $this->getHashPath() . $archiveName . "/";
1078 if ( $suffix === false ) {
1079 $path = substr( $path, 0, -1 );
1080 } else {
1081 $path .= $suffix;
1082 }
1083 return $path;
1084 }
1085
1086 /**
1087 * Get the path of the archived file.
1088 *
1089 * @param $suffix bool|string if not false, the name of an archived file.
1090 *
1091 * @return string
1092 */
1093 function getArchivePath( $suffix = false ) {
1094 $this->assertRepoDefined();
1095 return $this->repo->getZonePath( 'public' ) . '/' . $this->getArchiveRel( $suffix );
1096 }
1097
1098 /**
1099 * Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified
1100 *
1101 * @param $archiveName string the timestamped name of an archived image
1102 * @param $suffix bool|string if not false, the name of a thumbnail file
1103 *
1104 * @return string
1105 */
1106 function getArchiveThumbPath( $archiveName, $suffix = false ) {
1107 $this->assertRepoDefined();
1108 return $this->repo->getZonePath( 'thumb' ) . '/' .
1109 $this->getArchiveThumbRel( $archiveName, $suffix );
1110 }
1111
1112 /**
1113 * Get the path of the thumbnail directory, or a particular file if $suffix is specified
1114 *
1115 * @param $suffix bool|string if not false, the name of a thumbnail file
1116 *
1117 * @return string
1118 */
1119 function getThumbPath( $suffix = false ) {
1120 $this->assertRepoDefined();
1121 return $this->repo->getZonePath( 'thumb' ) . '/' . $this->getThumbRel( $suffix );
1122 }
1123
1124 /**
1125 * Get the URL of the archive directory, or a particular file if $suffix is specified
1126 *
1127 * @param $suffix bool|string if not false, the name of an archived file
1128 *
1129 * @return string
1130 */
1131 function getArchiveUrl( $suffix = false ) {
1132 $this->assertRepoDefined();
1133 $path = $this->repo->getZoneUrl( 'public' ) . '/archive/' . $this->getHashPath();
1134 if ( $suffix === false ) {
1135 $path = substr( $path, 0, -1 );
1136 } else {
1137 $path .= rawurlencode( $suffix );
1138 }
1139 return $path;
1140 }
1141
1142 /**
1143 * Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified
1144 *
1145 * @param $archiveName string the timestamped name of an archived image
1146 * @param $suffix bool|string if not false, the name of a thumbnail file
1147 *
1148 * @return string
1149 */
1150 function getArchiveThumbUrl( $archiveName, $suffix = false ) {
1151 $this->assertRepoDefined();
1152 $path = $this->repo->getZoneUrl( 'thumb' ) . '/archive/' .
1153 $this->getHashPath() . rawurlencode( $archiveName ) . "/";
1154 if ( $suffix === false ) {
1155 $path = substr( $path, 0, -1 );
1156 } else {
1157 $path .= rawurlencode( $suffix );
1158 }
1159 return $path;
1160 }
1161
1162 /**
1163 * Get the URL of the thumbnail directory, or a particular file if $suffix is specified
1164 *
1165 * @param $suffix bool|string if not false, the name of a thumbnail file
1166 *
1167 * @return path
1168 */
1169 function getThumbUrl( $suffix = false ) {
1170 $this->assertRepoDefined();
1171 $path = $this->repo->getZoneUrl( 'thumb' ) . '/' . $this->getUrlRel();
1172 if ( $suffix !== false ) {
1173 $path .= '/' . rawurlencode( $suffix );
1174 }
1175 return $path;
1176 }
1177
1178 /**
1179 * Get the public zone virtual URL for a current version source file
1180 *
1181 * @param $suffix bool|string if not false, the name of a thumbnail file
1182 *
1183 * @return string
1184 */
1185 function getVirtualUrl( $suffix = false ) {
1186 $this->assertRepoDefined();
1187 $path = $this->repo->getVirtualUrl() . '/public/' . $this->getUrlRel();
1188 if ( $suffix !== false ) {
1189 $path .= '/' . rawurlencode( $suffix );
1190 }
1191 return $path;
1192 }
1193
1194 /**
1195 * Get the public zone virtual URL for an archived version source file
1196 *
1197 * @param $suffix bool|string if not false, the name of a thumbnail file
1198 *
1199 * @return string
1200 */
1201 function getArchiveVirtualUrl( $suffix = false ) {
1202 $this->assertRepoDefined();
1203 $path = $this->repo->getVirtualUrl() . '/public/archive/' . $this->getHashPath();
1204 if ( $suffix === false ) {
1205 $path = substr( $path, 0, -1 );
1206 } else {
1207 $path .= rawurlencode( $suffix );
1208 }
1209 return $path;
1210 }
1211
1212 /**
1213 * Get the virtual URL for a thumbnail file or directory
1214 *
1215 * @param $suffix bool|string if not false, the name of a thumbnail file
1216 *
1217 * @return string
1218 */
1219 function getThumbVirtualUrl( $suffix = false ) {
1220 $this->assertRepoDefined();
1221 $path = $this->repo->getVirtualUrl() . '/thumb/' . $this->getUrlRel();
1222 if ( $suffix !== false ) {
1223 $path .= '/' . rawurlencode( $suffix );
1224 }
1225 return $path;
1226 }
1227
1228 /**
1229 * @return bool
1230 */
1231 function isHashed() {
1232 $this->assertRepoDefined();
1233 return $this->repo->isHashed();
1234 }
1235
1236 /**
1237 * @throws MWException
1238 */
1239 function readOnlyError() {
1240 throw new MWException( get_class($this) . ': write operations are not supported' );
1241 }
1242
1243 /**
1244 * Record a file upload in the upload log and the image table
1245 * STUB
1246 * Overridden by LocalFile
1247 * @param $oldver
1248 * @param $desc
1249 * @param $license string
1250 * @param $copyStatus string
1251 * @param $source string
1252 * @param $watch bool
1253 */
1254 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', $watch = false ) {
1255 $this->readOnlyError();
1256 }
1257
1258 /**
1259 * Move or copy a file to its public location. If a file exists at the
1260 * destination, move it to an archive. Returns a FileRepoStatus object with
1261 * the archive name in the "value" member on success.
1262 *
1263 * The archive name should be passed through to recordUpload for database
1264 * registration.
1265 *
1266 * @param $srcPath String: local filesystem path to the source image
1267 * @param $flags Integer: a bitwise combination of:
1268 * File::DELETE_SOURCE Delete the source file, i.e. move
1269 * rather than copy
1270 * @return FileRepoStatus object. On success, the value member contains the
1271 * archive name, or an empty string if it was a new file.
1272 *
1273 * STUB
1274 * Overridden by LocalFile
1275 */
1276 function publish( $srcPath, $flags = 0 ) {
1277 $this->readOnlyError();
1278 }
1279
1280 /**
1281 * @return bool
1282 */
1283 function formatMetadata() {
1284 if ( !$this->getHandler() ) {
1285 return false;
1286 }
1287 return $this->getHandler()->formatMetadata( $this, $this->getMetadata() );
1288 }
1289
1290 /**
1291 * Returns true if the file comes from the local file repository.
1292 *
1293 * @return bool
1294 */
1295 function isLocal() {
1296 return $this->repo && $this->repo->isLocal();
1297 }
1298
1299 /**
1300 * Returns the name of the repository.
1301 *
1302 * @return string
1303 */
1304 function getRepoName() {
1305 return $this->repo ? $this->repo->getName() : 'unknown';
1306 }
1307
1308 /**
1309 * Returns the repository
1310 *
1311 * @return FileRepo|false
1312 */
1313 function getRepo() {
1314 return $this->repo;
1315 }
1316
1317 /**
1318 * Returns true if the image is an old version
1319 * STUB
1320 *
1321 * @return bool
1322 */
1323 function isOld() {
1324 return false;
1325 }
1326
1327 /**
1328 * Is this file a "deleted" file in a private archive?
1329 * STUB
1330 *
1331 * @param $field
1332 *
1333 * @return bool
1334 */
1335 function isDeleted( $field ) {
1336 return false;
1337 }
1338
1339 /**
1340 * Return the deletion bitfield
1341 * STUB
1342 */
1343 function getVisibility() {
1344 return 0;
1345 }
1346
1347 /**
1348 * Was this file ever deleted from the wiki?
1349 *
1350 * @return bool
1351 */
1352 function wasDeleted() {
1353 $title = $this->getTitle();
1354 return $title && $title->isDeletedQuick();
1355 }
1356
1357 /**
1358 * Move file to the new title
1359 *
1360 * Move current, old version and all thumbnails
1361 * to the new filename. Old file is deleted.
1362 *
1363 * Cache purging is done; checks for validity
1364 * and logging are caller's responsibility
1365 *
1366 * @param $target Title New file name
1367 * @return FileRepoStatus object.
1368 */
1369 function move( $target ) {
1370 $this->readOnlyError();
1371 }
1372
1373 /**
1374 * Delete all versions of the file.
1375 *
1376 * Moves the files into an archive directory (or deletes them)
1377 * and removes the database rows.
1378 *
1379 * Cache purging is done; logging is caller's responsibility.
1380 *
1381 * @param $reason String
1382 * @param $suppress Boolean: hide content from sysops?
1383 * @return true on success, false on some kind of failure
1384 * STUB
1385 * Overridden by LocalFile
1386 */
1387 function delete( $reason, $suppress = false ) {
1388 $this->readOnlyError();
1389 }
1390
1391 /**
1392 * Restore all or specified deleted revisions to the given file.
1393 * Permissions and logging are left to the caller.
1394 *
1395 * May throw database exceptions on error.
1396 *
1397 * @param $versions array set of record ids of deleted items to restore,
1398 * or empty to restore all revisions.
1399 * @param $unsuppress bool remove restrictions on content upon restoration?
1400 * @return int|false the number of file revisions restored if successful,
1401 * or false on failure
1402 * STUB
1403 * Overridden by LocalFile
1404 */
1405 function restore( $versions = array(), $unsuppress = false ) {
1406 $this->readOnlyError();
1407 }
1408
1409 /**
1410 * Returns 'true' if this file is a type which supports multiple pages,
1411 * e.g. DJVU or PDF. Note that this may be true even if the file in
1412 * question only has a single page.
1413 *
1414 * @return Bool
1415 */
1416 function isMultipage() {
1417 return $this->getHandler() && $this->handler->isMultiPage( $this );
1418 }
1419
1420 /**
1421 * Returns the number of pages of a multipage document, or false for
1422 * documents which aren't multipage documents
1423 *
1424 * @return false|int
1425 */
1426 function pageCount() {
1427 if ( !isset( $this->pageCount ) ) {
1428 if ( $this->getHandler() && $this->handler->isMultiPage( $this ) ) {
1429 $this->pageCount = $this->handler->pageCount( $this );
1430 } else {
1431 $this->pageCount = false;
1432 }
1433 }
1434 return $this->pageCount;
1435 }
1436
1437 /**
1438 * Calculate the height of a thumbnail using the source and destination width
1439 *
1440 * @param $srcWidth
1441 * @param $srcHeight
1442 * @param $dstWidth
1443 *
1444 * @return int
1445 */
1446 static function scaleHeight( $srcWidth, $srcHeight, $dstWidth ) {
1447 // Exact integer multiply followed by division
1448 if ( $srcWidth == 0 ) {
1449 return 0;
1450 } else {
1451 return round( $srcHeight * $dstWidth / $srcWidth );
1452 }
1453 }
1454
1455 /**
1456 * Get an image size array like that returned by getImageSize(), or false if it
1457 * can't be determined.
1458 *
1459 * @param $fileName String: The filename
1460 * @return Array
1461 */
1462 function getImageSize( $fileName ) {
1463 if ( !$this->getHandler() ) {
1464 return false;
1465 }
1466 return $this->handler->getImageSize( $this, $fileName );
1467 }
1468
1469 /**
1470 * Get the URL of the image description page. May return false if it is
1471 * unknown or not applicable.
1472 *
1473 * @return string
1474 */
1475 function getDescriptionUrl() {
1476 if ( $this->repo ) {
1477 return $this->repo->getDescriptionUrl( $this->getName() );
1478 } else {
1479 return false;
1480 }
1481 }
1482
1483 /**
1484 * Get the HTML text of the description page, if available
1485 *
1486 * @return string
1487 */
1488 function getDescriptionText() {
1489 global $wgMemc, $wgLang;
1490 if ( !$this->repo || !$this->repo->fetchDescription ) {
1491 return false;
1492 }
1493 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->getName(), $wgLang->getCode() );
1494 if ( $renderUrl ) {
1495 if ( $this->repo->descriptionCacheExpiry > 0 ) {
1496 wfDebug("Attempting to get the description from cache...");
1497 $key = $this->repo->getLocalCacheKey( 'RemoteFileDescription', 'url', $wgLang->getCode(),
1498 $this->getName() );
1499 $obj = $wgMemc->get($key);
1500 if ($obj) {
1501 wfDebug("success!\n");
1502 return $obj;
1503 }
1504 wfDebug("miss\n");
1505 }
1506 wfDebug( "Fetching shared description from $renderUrl\n" );
1507 $res = Http::get( $renderUrl );
1508 if ( $res && $this->repo->descriptionCacheExpiry > 0 ) {
1509 $wgMemc->set( $key, $res, $this->repo->descriptionCacheExpiry );
1510 }
1511 return $res;
1512 } else {
1513 return false;
1514 }
1515 }
1516
1517 /**
1518 * Get discription of file revision
1519 * STUB
1520 *
1521 * @return string
1522 */
1523 function getDescription() {
1524 return null;
1525 }
1526
1527 /**
1528 * Get the 14-character timestamp of the file upload
1529 *
1530 * @return string|false TS_MW timestamp or false on failure
1531 */
1532 function getTimestamp() {
1533 $this->assertRepoDefined();
1534 return $this->repo->getFileTimestamp( $this->getPath() );
1535 }
1536
1537 /**
1538 * Get the SHA-1 base 36 hash of the file
1539 *
1540 * @return string
1541 */
1542 function getSha1() {
1543 $this->assertRepoDefined();
1544 return $this->repo->getFileSha1( $this->getPath() );
1545 }
1546
1547 /**
1548 * Get the deletion archive key, <sha1>.<ext>
1549 *
1550 * @return string
1551 */
1552 function getStorageKey() {
1553 $hash = $this->getSha1();
1554 if ( !$hash ) {
1555 return false;
1556 }
1557 $ext = $this->getExtension();
1558 $dotExt = $ext === '' ? '' : ".$ext";
1559 return $hash . $dotExt;
1560 }
1561
1562 /**
1563 * Determine if the current user is allowed to view a particular
1564 * field of this file, if it's marked as deleted.
1565 * STUB
1566 * @param $field Integer
1567 * @param $user User object to check, or null to use $wgUser
1568 * @return Boolean
1569 */
1570 function userCan( $field, User $user = null ) {
1571 return true;
1572 }
1573
1574 /**
1575 * Get an associative array containing information about a file in the local filesystem.
1576 *
1577 * @param $path String: absolute local filesystem path
1578 * @param $ext Mixed: the file extension, or true to extract it from the filename.
1579 * Set it to false to ignore the extension.
1580 *
1581 * @return array
1582 */
1583 static function getPropsFromPath( $path, $ext = true ) {
1584 wfDebug( __METHOD__.": Getting file info for $path\n" );
1585 wfDeprecated( __METHOD__, '1.19' );
1586
1587 $fsFile = new FSFile( $path );
1588 return $fsFile->getProps();
1589 }
1590
1591 /**
1592 * Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
1593 * encoding, zero padded to 31 digits.
1594 *
1595 * 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
1596 * fairly neatly.
1597 *
1598 * @param $path string
1599 *
1600 * @return false|string False on failure
1601 */
1602 static function sha1Base36( $path ) {
1603 wfDeprecated( __METHOD__, '1.19' );
1604
1605 $fsFile = new FSFile( $path );
1606 return $fsFile->getSha1Base36();
1607 }
1608
1609 /**
1610 * @return string
1611 */
1612 function getLongDesc() {
1613 $handler = $this->getHandler();
1614 if ( $handler ) {
1615 return $handler->getLongDesc( $this );
1616 } else {
1617 return MediaHandler::getGeneralLongDesc( $this );
1618 }
1619 }
1620
1621 /**
1622 * @return string
1623 */
1624 function getShortDesc() {
1625 $handler = $this->getHandler();
1626 if ( $handler ) {
1627 return $handler->getShortDesc( $this );
1628 } else {
1629 return MediaHandler::getGeneralShortDesc( $this );
1630 }
1631 }
1632
1633 /**
1634 * @return string
1635 */
1636 function getDimensionsString() {
1637 $handler = $this->getHandler();
1638 if ( $handler ) {
1639 return $handler->getDimensionsString( $this );
1640 } else {
1641 return '';
1642 }
1643 }
1644
1645 /**
1646 * @return
1647 */
1648 function getRedirected() {
1649 return $this->redirected;
1650 }
1651
1652 /**
1653 * @return Title
1654 */
1655 function getRedirectedTitle() {
1656 if ( $this->redirected ) {
1657 if ( !$this->redirectTitle ) {
1658 $this->redirectTitle = Title::makeTitle( NS_FILE, $this->redirected );
1659 }
1660 return $this->redirectTitle;
1661 }
1662 }
1663
1664 /**
1665 * @param $from
1666 * @return void
1667 */
1668 function redirectedFrom( $from ) {
1669 $this->redirected = $from;
1670 }
1671
1672 /**
1673 * @return bool
1674 */
1675 function isMissing() {
1676 return false;
1677 }
1678
1679 /**
1680 * Assert that $this->repo is set to a valid FileRepo instance
1681 * @throws MWException
1682 */
1683 protected function assertRepoDefined() {
1684 if ( !( $this->repo instanceof $this->repoClass ) ) {
1685 throw new MWException( "A {$this->repoClass} object is not set for this File.\n" );
1686 }
1687 }
1688
1689 /**
1690 * Assert that $this->title is set to a Title
1691 * @throws MWException
1692 */
1693 protected function assertTitleDefined() {
1694 if ( !( $this->title instanceof Title ) ) {
1695 throw new MWException( "A Title object is not set for this File.\n" );
1696 }
1697 }
1698 }