Merge "(bug 33602) list=allusers throws exceptions with invalid names"
[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
77 */
78 var $title;
79
80 var $lastError, $redirected, $redirectedTitle;
81
82 /**
83 * @var FSFile|bool False if undefined
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
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 ForeignAPIFile::getPath can return false
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 False on failure
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 False on failure
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 False on failure
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 // If the backend is ready-only, don't keep generating thumbnails
846 // only to return transformation errors, just return the error now.
847 if ( $this->repo->getReadOnlyReason() !== false ) {
848 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
849 break;
850 }
851
852 // Create a temp FS file with the same extension and the thumbnail
853 $thumbExt = FileBackend::extensionFromPath( $thumbPath );
854 $tmpFile = TempFSFile::factory( 'transform_', $thumbExt );
855 if ( !$tmpFile ) {
856 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
857 break;
858 }
859 $tmpThumbPath = $tmpFile->getPath(); // path of 0-byte temp file
860
861 // Actually render the thumbnail...
862 $thumb = $this->handler->doTransform( $this, $tmpThumbPath, $thumbUrl, $params );
863 $tmpFile->bind( $thumb ); // keep alive with $thumb
864
865 if ( !$thumb ) { // bad params?
866 $thumb = null;
867 } elseif ( $thumb->isError() ) { // transform error
868 $this->lastError = $thumb->toText();
869 // Ignore errors if requested
870 if ( $wgIgnoreImageErrors && !( $flags & self::RENDER_NOW ) ) {
871 $thumb = $this->handler->getTransform( $this, $tmpThumbPath, $thumbUrl, $params );
872 }
873 } elseif ( $this->repo && $thumb->hasFile() && !$thumb->fileIsSource() ) {
874 // Copy the thumbnail from the file system into storage...
875 $status = $this->repo->quickImport( $tmpThumbPath, $thumbPath );
876 if ( $status->isOK() ) {
877 $thumb->setStoragePath( $thumbPath );
878 } else {
879 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
880 }
881 }
882
883 // Purge. Useful in the event of Core -> Squid connection failure or squid
884 // purge collisions from elsewhere during failure. Don't keep triggering for
885 // "thumbs" which have the main image URL though (bug 13776)
886 if ( $wgUseSquid ) {
887 if ( !$thumb || $thumb->isError() || $thumb->getUrl() != $this->getURL() ) {
888 SquidUpdate::purge( array( $thumbUrl ) );
889 }
890 }
891 } while ( false );
892
893 wfProfileOut( __METHOD__ );
894 return is_object( $thumb ) ? $thumb : false;
895 }
896
897 /**
898 * Hook into transform() to allow migration of thumbnail files
899 * STUB
900 * Overridden by LocalFile
901 */
902 function migrateThumbFile( $thumbName ) {}
903
904 /**
905 * Get a MediaHandler instance for this file
906 *
907 * @return MediaHandler
908 */
909 function getHandler() {
910 if ( !isset( $this->handler ) ) {
911 $this->handler = MediaHandler::getHandler( $this->getMimeType() );
912 }
913 return $this->handler;
914 }
915
916 /**
917 * Get a ThumbnailImage representing a file type icon
918 *
919 * @return ThumbnailImage
920 */
921 function iconThumb() {
922 global $wgStylePath, $wgStyleDirectory;
923
924 $try = array( 'fileicon-' . $this->getExtension() . '.png', 'fileicon.png' );
925 foreach ( $try as $icon ) {
926 $path = '/common/images/icons/' . $icon;
927 $filepath = $wgStyleDirectory . $path;
928 if ( file_exists( $filepath ) ) { // always FS
929 return new ThumbnailImage( $this, $wgStylePath . $path, 120, 120 );
930 }
931 }
932 return null;
933 }
934
935 /**
936 * Get last thumbnailing error.
937 * Largely obsolete.
938 */
939 function getLastError() {
940 return $this->lastError;
941 }
942
943 /**
944 * Get all thumbnail names previously generated for this file
945 * STUB
946 * Overridden by LocalFile
947 * @return array
948 */
949 function getThumbnails() {
950 return array();
951 }
952
953 /**
954 * Purge shared caches such as thumbnails and DB data caching
955 * STUB
956 * Overridden by LocalFile
957 * @param $options Array Options, which include:
958 * 'forThumbRefresh' : The purging is only to refresh thumbnails
959 */
960 function purgeCache( $options = array() ) {}
961
962 /**
963 * Purge the file description page, but don't go after
964 * pages using the file. Use when modifying file history
965 * but not the current data.
966 */
967 function purgeDescription() {
968 $title = $this->getTitle();
969 if ( $title ) {
970 $title->invalidateCache();
971 $title->purgeSquid();
972 }
973 }
974
975 /**
976 * Purge metadata and all affected pages when the file is created,
977 * deleted, or majorly updated.
978 */
979 function purgeEverything() {
980 // Delete thumbnails and refresh file metadata cache
981 $this->purgeCache();
982 $this->purgeDescription();
983
984 // Purge cache of all pages using this file
985 $title = $this->getTitle();
986 if ( $title ) {
987 $update = new HTMLCacheUpdate( $title, 'imagelinks' );
988 $update->doUpdate();
989 }
990 }
991
992 /**
993 * Return a fragment of the history of file.
994 *
995 * STUB
996 * @param $limit integer Limit of rows to return
997 * @param $start string timestamp Only revisions older than $start will be returned
998 * @param $end string timestamp Only revisions newer than $end will be returned
999 * @param $inc bool Include the endpoints of the time range
1000 *
1001 * @return array
1002 */
1003 function getHistory($limit = null, $start = null, $end = null, $inc=true) {
1004 return array();
1005 }
1006
1007 /**
1008 * Return the history of this file, line by line. Starts with current version,
1009 * then old versions. Should return an object similar to an image/oldimage
1010 * database row.
1011 *
1012 * STUB
1013 * Overridden in LocalFile
1014 * @return bool
1015 */
1016 public function nextHistoryLine() {
1017 return false;
1018 }
1019
1020 /**
1021 * Reset the history pointer to the first element of the history.
1022 * Always call this function after using nextHistoryLine() to free db resources
1023 * STUB
1024 * Overridden in LocalFile.
1025 */
1026 public function resetHistory() {}
1027
1028 /**
1029 * Get the filename hash component of the directory including trailing slash,
1030 * e.g. f/fa/
1031 * If the repository is not hashed, returns an empty string.
1032 *
1033 * @return string
1034 */
1035 function getHashPath() {
1036 if ( !isset( $this->hashPath ) ) {
1037 $this->assertRepoDefined();
1038 $this->hashPath = $this->repo->getHashPath( $this->getName() );
1039 }
1040 return $this->hashPath;
1041 }
1042
1043 /**
1044 * Get the path of the file relative to the public zone root.
1045 * This function is overriden in OldLocalFile to be like getArchiveRel().
1046 *
1047 * @return string
1048 */
1049 function getRel() {
1050 return $this->getHashPath() . $this->getName();
1051 }
1052
1053 /**
1054 * Get the path of an archived file relative to the public zone root
1055 *
1056 * @param $suffix bool|string if not false, the name of an archived thumbnail file
1057 *
1058 * @return string
1059 */
1060 function getArchiveRel( $suffix = false ) {
1061 $path = 'archive/' . $this->getHashPath();
1062 if ( $suffix === false ) {
1063 $path = substr( $path, 0, -1 );
1064 } else {
1065 $path .= $suffix;
1066 }
1067 return $path;
1068 }
1069
1070 /**
1071 * Get the path, relative to the thumbnail zone root, of the
1072 * thumbnail directory or a particular file if $suffix is specified
1073 *
1074 * @param $suffix bool|string if not false, the name of a thumbnail file
1075 *
1076 * @return string
1077 */
1078 function getThumbRel( $suffix = false ) {
1079 $path = $this->getRel();
1080 if ( $suffix !== false ) {
1081 $path .= '/' . $suffix;
1082 }
1083 return $path;
1084 }
1085
1086 /**
1087 * Get urlencoded path of the file relative to the public zone root.
1088 * This function is overriden in OldLocalFile to be like getArchiveUrl().
1089 *
1090 * @return string
1091 */
1092 function getUrlRel() {
1093 return $this->getHashPath() . rawurlencode( $this->getName() );
1094 }
1095
1096 /**
1097 * Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory
1098 * or a specific thumb if the $suffix is given.
1099 *
1100 * @param $archiveName string the timestamped name of an archived image
1101 * @param $suffix bool|string if not false, the name of a thumbnail file
1102 *
1103 * @return string
1104 */
1105 function getArchiveThumbRel( $archiveName, $suffix = false ) {
1106 $path = 'archive/' . $this->getHashPath() . $archiveName . "/";
1107 if ( $suffix === false ) {
1108 $path = substr( $path, 0, -1 );
1109 } else {
1110 $path .= $suffix;
1111 }
1112 return $path;
1113 }
1114
1115 /**
1116 * Get the path of the archived file.
1117 *
1118 * @param $suffix bool|string if not false, the name of an archived file.
1119 *
1120 * @return string
1121 */
1122 function getArchivePath( $suffix = false ) {
1123 $this->assertRepoDefined();
1124 return $this->repo->getZonePath( 'public' ) . '/' . $this->getArchiveRel( $suffix );
1125 }
1126
1127 /**
1128 * Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified
1129 *
1130 * @param $archiveName string the timestamped name of an archived image
1131 * @param $suffix bool|string if not false, the name of a thumbnail file
1132 *
1133 * @return string
1134 */
1135 function getArchiveThumbPath( $archiveName, $suffix = false ) {
1136 $this->assertRepoDefined();
1137 return $this->repo->getZonePath( 'thumb' ) . '/' .
1138 $this->getArchiveThumbRel( $archiveName, $suffix );
1139 }
1140
1141 /**
1142 * Get the path of the thumbnail directory, or a particular file if $suffix is specified
1143 *
1144 * @param $suffix bool|string if not false, the name of a thumbnail file
1145 *
1146 * @return string
1147 */
1148 function getThumbPath( $suffix = false ) {
1149 $this->assertRepoDefined();
1150 return $this->repo->getZonePath( 'thumb' ) . '/' . $this->getThumbRel( $suffix );
1151 }
1152
1153 /**
1154 * Get the URL of the archive directory, or a particular file if $suffix is specified
1155 *
1156 * @param $suffix bool|string if not false, the name of an archived file
1157 *
1158 * @return string
1159 */
1160 function getArchiveUrl( $suffix = false ) {
1161 $this->assertRepoDefined();
1162 $path = $this->repo->getZoneUrl( 'public' ) . '/archive/' . $this->getHashPath();
1163 if ( $suffix === false ) {
1164 $path = substr( $path, 0, -1 );
1165 } else {
1166 $path .= rawurlencode( $suffix );
1167 }
1168 return $path;
1169 }
1170
1171 /**
1172 * Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified
1173 *
1174 * @param $archiveName string the timestamped name of an archived image
1175 * @param $suffix bool|string if not false, the name of a thumbnail file
1176 *
1177 * @return string
1178 */
1179 function getArchiveThumbUrl( $archiveName, $suffix = false ) {
1180 $this->assertRepoDefined();
1181 $path = $this->repo->getZoneUrl( 'thumb' ) . '/archive/' .
1182 $this->getHashPath() . rawurlencode( $archiveName ) . "/";
1183 if ( $suffix === false ) {
1184 $path = substr( $path, 0, -1 );
1185 } else {
1186 $path .= rawurlencode( $suffix );
1187 }
1188 return $path;
1189 }
1190
1191 /**
1192 * Get the URL of the thumbnail directory, or a particular file if $suffix is specified
1193 *
1194 * @param $suffix bool|string if not false, the name of a thumbnail file
1195 *
1196 * @return string path
1197 */
1198 function getThumbUrl( $suffix = false ) {
1199 $this->assertRepoDefined();
1200 $path = $this->repo->getZoneUrl( 'thumb' ) . '/' . $this->getUrlRel();
1201 if ( $suffix !== false ) {
1202 $path .= '/' . rawurlencode( $suffix );
1203 }
1204 return $path;
1205 }
1206
1207 /**
1208 * Get the public zone virtual URL for a current version source file
1209 *
1210 * @param $suffix bool|string if not false, the name of a thumbnail file
1211 *
1212 * @return string
1213 */
1214 function getVirtualUrl( $suffix = false ) {
1215 $this->assertRepoDefined();
1216 $path = $this->repo->getVirtualUrl() . '/public/' . $this->getUrlRel();
1217 if ( $suffix !== false ) {
1218 $path .= '/' . rawurlencode( $suffix );
1219 }
1220 return $path;
1221 }
1222
1223 /**
1224 * Get the public zone virtual URL for an archived version source file
1225 *
1226 * @param $suffix bool|string if not false, the name of a thumbnail file
1227 *
1228 * @return string
1229 */
1230 function getArchiveVirtualUrl( $suffix = false ) {
1231 $this->assertRepoDefined();
1232 $path = $this->repo->getVirtualUrl() . '/public/archive/' . $this->getHashPath();
1233 if ( $suffix === false ) {
1234 $path = substr( $path, 0, -1 );
1235 } else {
1236 $path .= rawurlencode( $suffix );
1237 }
1238 return $path;
1239 }
1240
1241 /**
1242 * Get the virtual URL for a thumbnail file or directory
1243 *
1244 * @param $suffix bool|string if not false, the name of a thumbnail file
1245 *
1246 * @return string
1247 */
1248 function getThumbVirtualUrl( $suffix = false ) {
1249 $this->assertRepoDefined();
1250 $path = $this->repo->getVirtualUrl() . '/thumb/' . $this->getUrlRel();
1251 if ( $suffix !== false ) {
1252 $path .= '/' . rawurlencode( $suffix );
1253 }
1254 return $path;
1255 }
1256
1257 /**
1258 * @return bool
1259 */
1260 function isHashed() {
1261 $this->assertRepoDefined();
1262 return (bool)$this->repo->getHashLevels();
1263 }
1264
1265 /**
1266 * @throws MWException
1267 */
1268 function readOnlyError() {
1269 throw new MWException( get_class($this) . ': write operations are not supported' );
1270 }
1271
1272 /**
1273 * Record a file upload in the upload log and the image table
1274 * STUB
1275 * Overridden by LocalFile
1276 * @param $oldver
1277 * @param $desc
1278 * @param $license string
1279 * @param $copyStatus string
1280 * @param $source string
1281 * @param $watch bool
1282 */
1283 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', $watch = false ) {
1284 $this->readOnlyError();
1285 }
1286
1287 /**
1288 * Move or copy a file to its public location. If a file exists at the
1289 * destination, move it to an archive. Returns a FileRepoStatus object with
1290 * the archive name in the "value" member on success.
1291 *
1292 * The archive name should be passed through to recordUpload for database
1293 * registration.
1294 *
1295 * @param $srcPath String: local filesystem path to the source image
1296 * @param $flags Integer: a bitwise combination of:
1297 * File::DELETE_SOURCE Delete the source file, i.e. move
1298 * rather than copy
1299 * @return FileRepoStatus object. On success, the value member contains the
1300 * archive name, or an empty string if it was a new file.
1301 *
1302 * STUB
1303 * Overridden by LocalFile
1304 */
1305 function publish( $srcPath, $flags = 0 ) {
1306 $this->readOnlyError();
1307 }
1308
1309 /**
1310 * @return bool
1311 */
1312 function formatMetadata() {
1313 if ( !$this->getHandler() ) {
1314 return false;
1315 }
1316 return $this->getHandler()->formatMetadata( $this, $this->getMetadata() );
1317 }
1318
1319 /**
1320 * Returns true if the file comes from the local file repository.
1321 *
1322 * @return bool
1323 */
1324 function isLocal() {
1325 return $this->repo && $this->repo->isLocal();
1326 }
1327
1328 /**
1329 * Returns the name of the repository.
1330 *
1331 * @return string
1332 */
1333 function getRepoName() {
1334 return $this->repo ? $this->repo->getName() : 'unknown';
1335 }
1336
1337 /**
1338 * Returns the repository
1339 *
1340 * @return FileRepo|bool
1341 */
1342 function getRepo() {
1343 return $this->repo;
1344 }
1345
1346 /**
1347 * Returns true if the image is an old version
1348 * STUB
1349 *
1350 * @return bool
1351 */
1352 function isOld() {
1353 return false;
1354 }
1355
1356 /**
1357 * Is this file a "deleted" file in a private archive?
1358 * STUB
1359 *
1360 * @param $field
1361 *
1362 * @return bool
1363 */
1364 function isDeleted( $field ) {
1365 return false;
1366 }
1367
1368 /**
1369 * Return the deletion bitfield
1370 * STUB
1371 * @return int
1372 */
1373 function getVisibility() {
1374 return 0;
1375 }
1376
1377 /**
1378 * Was this file ever deleted from the wiki?
1379 *
1380 * @return bool
1381 */
1382 function wasDeleted() {
1383 $title = $this->getTitle();
1384 return $title && $title->isDeletedQuick();
1385 }
1386
1387 /**
1388 * Move file to the new title
1389 *
1390 * Move current, old version and all thumbnails
1391 * to the new filename. Old file is deleted.
1392 *
1393 * Cache purging is done; checks for validity
1394 * and logging are caller's responsibility
1395 *
1396 * @param $target Title New file name
1397 * @return FileRepoStatus object.
1398 */
1399 function move( $target ) {
1400 $this->readOnlyError();
1401 }
1402
1403 /**
1404 * Delete all versions of the file.
1405 *
1406 * Moves the files into an archive directory (or deletes them)
1407 * and removes the database rows.
1408 *
1409 * Cache purging is done; logging is caller's responsibility.
1410 *
1411 * @param $reason String
1412 * @param $suppress Boolean: hide content from sysops?
1413 * @return bool on success, false on some kind of failure
1414 * STUB
1415 * Overridden by LocalFile
1416 */
1417 function delete( $reason, $suppress = false ) {
1418 $this->readOnlyError();
1419 }
1420
1421 /**
1422 * Restore all or specified deleted revisions to the given file.
1423 * Permissions and logging are left to the caller.
1424 *
1425 * May throw database exceptions on error.
1426 *
1427 * @param $versions array set of record ids of deleted items to restore,
1428 * or empty to restore all revisions.
1429 * @param $unsuppress bool remove restrictions on content upon restoration?
1430 * @return int|bool the number of file revisions restored if successful,
1431 * or false on failure
1432 * STUB
1433 * Overridden by LocalFile
1434 */
1435 function restore( $versions = array(), $unsuppress = false ) {
1436 $this->readOnlyError();
1437 }
1438
1439 /**
1440 * Returns 'true' if this file is a type which supports multiple pages,
1441 * e.g. DJVU or PDF. Note that this may be true even if the file in
1442 * question only has a single page.
1443 *
1444 * @return Bool
1445 */
1446 function isMultipage() {
1447 return $this->getHandler() && $this->handler->isMultiPage( $this );
1448 }
1449
1450 /**
1451 * Returns the number of pages of a multipage document, or false for
1452 * documents which aren't multipage documents
1453 *
1454 * @return bool|int
1455 */
1456 function pageCount() {
1457 if ( !isset( $this->pageCount ) ) {
1458 if ( $this->getHandler() && $this->handler->isMultiPage( $this ) ) {
1459 $this->pageCount = $this->handler->pageCount( $this );
1460 } else {
1461 $this->pageCount = false;
1462 }
1463 }
1464 return $this->pageCount;
1465 }
1466
1467 /**
1468 * Calculate the height of a thumbnail using the source and destination width
1469 *
1470 * @param $srcWidth
1471 * @param $srcHeight
1472 * @param $dstWidth
1473 *
1474 * @return int
1475 */
1476 static function scaleHeight( $srcWidth, $srcHeight, $dstWidth ) {
1477 // Exact integer multiply followed by division
1478 if ( $srcWidth == 0 ) {
1479 return 0;
1480 } else {
1481 return round( $srcHeight * $dstWidth / $srcWidth );
1482 }
1483 }
1484
1485 /**
1486 * Get an image size array like that returned by getImageSize(), or false if it
1487 * can't be determined.
1488 *
1489 * @param $fileName String: The filename
1490 * @return Array
1491 */
1492 function getImageSize( $fileName ) {
1493 if ( !$this->getHandler() ) {
1494 return false;
1495 }
1496 return $this->handler->getImageSize( $this, $fileName );
1497 }
1498
1499 /**
1500 * Get the URL of the image description page. May return false if it is
1501 * unknown or not applicable.
1502 *
1503 * @return string
1504 */
1505 function getDescriptionUrl() {
1506 if ( $this->repo ) {
1507 return $this->repo->getDescriptionUrl( $this->getName() );
1508 } else {
1509 return false;
1510 }
1511 }
1512
1513 /**
1514 * Get the HTML text of the description page, if available
1515 *
1516 * @return string
1517 */
1518 function getDescriptionText() {
1519 global $wgMemc, $wgLang;
1520 if ( !$this->repo || !$this->repo->fetchDescription ) {
1521 return false;
1522 }
1523 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->getName(), $wgLang->getCode() );
1524 if ( $renderUrl ) {
1525 if ( $this->repo->descriptionCacheExpiry > 0 ) {
1526 wfDebug("Attempting to get the description from cache...");
1527 $key = $this->repo->getLocalCacheKey( 'RemoteFileDescription', 'url', $wgLang->getCode(),
1528 $this->getName() );
1529 $obj = $wgMemc->get($key);
1530 if ($obj) {
1531 wfDebug("success!\n");
1532 return $obj;
1533 }
1534 wfDebug("miss\n");
1535 }
1536 wfDebug( "Fetching shared description from $renderUrl\n" );
1537 $res = Http::get( $renderUrl );
1538 if ( $res && $this->repo->descriptionCacheExpiry > 0 ) {
1539 $wgMemc->set( $key, $res, $this->repo->descriptionCacheExpiry );
1540 }
1541 return $res;
1542 } else {
1543 return false;
1544 }
1545 }
1546
1547 /**
1548 * Get discription of file revision
1549 * STUB
1550 *
1551 * @return string
1552 */
1553 function getDescription() {
1554 return null;
1555 }
1556
1557 /**
1558 * Get the 14-character timestamp of the file upload
1559 *
1560 * @return string|bool TS_MW timestamp or false on failure
1561 */
1562 function getTimestamp() {
1563 $this->assertRepoDefined();
1564 return $this->repo->getFileTimestamp( $this->getPath() );
1565 }
1566
1567 /**
1568 * Get the SHA-1 base 36 hash of the file
1569 *
1570 * @return string
1571 */
1572 function getSha1() {
1573 $this->assertRepoDefined();
1574 return $this->repo->getFileSha1( $this->getPath() );
1575 }
1576
1577 /**
1578 * Get the deletion archive key, <sha1>.<ext>
1579 *
1580 * @return string
1581 */
1582 function getStorageKey() {
1583 $hash = $this->getSha1();
1584 if ( !$hash ) {
1585 return false;
1586 }
1587 $ext = $this->getExtension();
1588 $dotExt = $ext === '' ? '' : ".$ext";
1589 return $hash . $dotExt;
1590 }
1591
1592 /**
1593 * Determine if the current user is allowed to view a particular
1594 * field of this file, if it's marked as deleted.
1595 * STUB
1596 * @param $field Integer
1597 * @param $user User object to check, or null to use $wgUser
1598 * @return Boolean
1599 */
1600 function userCan( $field, User $user = null ) {
1601 return true;
1602 }
1603
1604 /**
1605 * Get an associative array containing information about a file in the local filesystem.
1606 *
1607 * @param $path String: absolute local filesystem path
1608 * @param $ext Mixed: the file extension, or true to extract it from the filename.
1609 * Set it to false to ignore the extension.
1610 *
1611 * @return array
1612 */
1613 static function getPropsFromPath( $path, $ext = true ) {
1614 wfDebug( __METHOD__.": Getting file info for $path\n" );
1615 wfDeprecated( __METHOD__, '1.19' );
1616
1617 $fsFile = new FSFile( $path );
1618 return $fsFile->getProps();
1619 }
1620
1621 /**
1622 * Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
1623 * encoding, zero padded to 31 digits.
1624 *
1625 * 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
1626 * fairly neatly.
1627 *
1628 * @param $path string
1629 *
1630 * @return bool|string False on failure
1631 */
1632 static function sha1Base36( $path ) {
1633 wfDeprecated( __METHOD__, '1.19' );
1634
1635 $fsFile = new FSFile( $path );
1636 return $fsFile->getSha1Base36();
1637 }
1638
1639 /**
1640 * @return string
1641 */
1642 function getLongDesc() {
1643 $handler = $this->getHandler();
1644 if ( $handler ) {
1645 return $handler->getLongDesc( $this );
1646 } else {
1647 return MediaHandler::getGeneralLongDesc( $this );
1648 }
1649 }
1650
1651 /**
1652 * @return string
1653 */
1654 function getShortDesc() {
1655 $handler = $this->getHandler();
1656 if ( $handler ) {
1657 return $handler->getShortDesc( $this );
1658 } else {
1659 return MediaHandler::getGeneralShortDesc( $this );
1660 }
1661 }
1662
1663 /**
1664 * @return string
1665 */
1666 function getDimensionsString() {
1667 $handler = $this->getHandler();
1668 if ( $handler ) {
1669 return $handler->getDimensionsString( $this );
1670 } else {
1671 return '';
1672 }
1673 }
1674
1675 /**
1676 * @return
1677 */
1678 function getRedirected() {
1679 return $this->redirected;
1680 }
1681
1682 /**
1683 * @return Title
1684 */
1685 function getRedirectedTitle() {
1686 if ( $this->redirected ) {
1687 if ( !$this->redirectTitle ) {
1688 $this->redirectTitle = Title::makeTitle( NS_FILE, $this->redirected );
1689 }
1690 return $this->redirectTitle;
1691 }
1692 }
1693
1694 /**
1695 * @param $from
1696 * @return void
1697 */
1698 function redirectedFrom( $from ) {
1699 $this->redirected = $from;
1700 }
1701
1702 /**
1703 * @return bool
1704 */
1705 function isMissing() {
1706 return false;
1707 }
1708
1709 /**
1710 * Check if this file object is small and can be cached
1711 * @return boolean
1712 */
1713 public function isCacheable() {
1714 return true;
1715 }
1716
1717 /**
1718 * Assert that $this->repo is set to a valid FileRepo instance
1719 * @throws MWException
1720 */
1721 protected function assertRepoDefined() {
1722 if ( !( $this->repo instanceof $this->repoClass ) ) {
1723 throw new MWException( "A {$this->repoClass} object is not set for this File.\n" );
1724 }
1725 }
1726
1727 /**
1728 * Assert that $this->title is set to a Title
1729 * @throws MWException
1730 */
1731 protected function assertTitleDefined() {
1732 if ( !( $this->title instanceof Title ) ) {
1733 throw new MWException( "A Title object is not set for this File.\n" );
1734 }
1735 }
1736 }