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