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