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