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