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