Fix use of GenderCache in ApiPageSet::processTitlesArray
[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 ( $this->name === null ) {
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 MediaWikiServices::getInstance()->getTempFSFileFactory()
1356 ->newTempFSFile( 'transform_', $thumbExt );
1357 }
1358
1359 /**
1360 * @param string $thumbName Thumbnail name
1361 * @param string $dispositionType Type of disposition (either "attachment" or "inline")
1362 * @return string Content-Disposition header value
1363 */
1364 function getThumbDisposition( $thumbName, $dispositionType = 'inline' ) {
1365 $fileName = $this->name; // file name to suggest
1366 $thumbExt = FileBackend::extensionFromPath( $thumbName );
1367 if ( $thumbExt != '' && $thumbExt !== $this->getExtension() ) {
1368 $fileName .= ".$thumbExt";
1369 }
1370
1371 return FileBackend::makeContentDisposition( $dispositionType, $fileName );
1372 }
1373
1374 /**
1375 * Hook into transform() to allow migration of thumbnail files
1376 * STUB
1377 * Overridden by LocalFile
1378 * @param string $thumbName
1379 */
1380 function migrateThumbFile( $thumbName ) {
1381 }
1382
1383 /**
1384 * Get a MediaHandler instance for this file
1385 *
1386 * @return MediaHandler|bool Registered MediaHandler for file's MIME type
1387 * or false if none found
1388 */
1389 function getHandler() {
1390 if ( !isset( $this->handler ) ) {
1391 $this->handler = MediaHandler::getHandler( $this->getMimeType() );
1392 }
1393
1394 return $this->handler;
1395 }
1396
1397 /**
1398 * Get a ThumbnailImage representing a file type icon
1399 *
1400 * @return ThumbnailImage
1401 */
1402 function iconThumb() {
1403 global $wgResourceBasePath, $IP;
1404 $assetsPath = "$wgResourceBasePath/resources/assets/file-type-icons/";
1405 $assetsDirectory = "$IP/resources/assets/file-type-icons/";
1406
1407 $try = [ 'fileicon-' . $this->getExtension() . '.png', 'fileicon.png' ];
1408 foreach ( $try as $icon ) {
1409 if ( file_exists( $assetsDirectory . $icon ) ) { // always FS
1410 $params = [ 'width' => 120, 'height' => 120 ];
1411
1412 return new ThumbnailImage( $this, $assetsPath . $icon, false, $params );
1413 }
1414 }
1415
1416 return null;
1417 }
1418
1419 /**
1420 * Get last thumbnailing error.
1421 * Largely obsolete.
1422 * @return string
1423 */
1424 function getLastError() {
1425 return $this->lastError;
1426 }
1427
1428 /**
1429 * Get all thumbnail names previously generated for this file
1430 * STUB
1431 * Overridden by LocalFile
1432 * @return string[]
1433 */
1434 function getThumbnails() {
1435 return [];
1436 }
1437
1438 /**
1439 * Purge shared caches such as thumbnails and DB data caching
1440 * STUB
1441 * Overridden by LocalFile
1442 * @param array $options Options, which include:
1443 * 'forThumbRefresh' : The purging is only to refresh thumbnails
1444 */
1445 function purgeCache( $options = [] ) {
1446 }
1447
1448 /**
1449 * Purge the file description page, but don't go after
1450 * pages using the file. Use when modifying file history
1451 * but not the current data.
1452 */
1453 function purgeDescription() {
1454 $title = $this->getTitle();
1455 if ( $title ) {
1456 $title->invalidateCache();
1457 $title->purgeSquid();
1458 }
1459 }
1460
1461 /**
1462 * Purge metadata and all affected pages when the file is created,
1463 * deleted, or majorly updated.
1464 */
1465 function purgeEverything() {
1466 // Delete thumbnails and refresh file metadata cache
1467 $this->purgeCache();
1468 $this->purgeDescription();
1469
1470 // Purge cache of all pages using this file
1471 $title = $this->getTitle();
1472 if ( $title ) {
1473 DeferredUpdates::addUpdate(
1474 new HTMLCacheUpdate( $title, 'imagelinks', 'file-purge' )
1475 );
1476 }
1477 }
1478
1479 /**
1480 * Return a fragment of the history of file.
1481 *
1482 * STUB
1483 * @param int|null $limit Limit of rows to return
1484 * @param string|int|null $start Only revisions older than $start will be returned
1485 * @param string|int|null $end Only revisions newer than $end will be returned
1486 * @param bool $inc Include the endpoints of the time range
1487 *
1488 * @return File[]
1489 */
1490 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
1491 return [];
1492 }
1493
1494 /**
1495 * Return the history of this file, line by line. Starts with current version,
1496 * then old versions. Should return an object similar to an image/oldimage
1497 * database row.
1498 *
1499 * STUB
1500 * Overridden in LocalFile
1501 * @return bool
1502 */
1503 public function nextHistoryLine() {
1504 return false;
1505 }
1506
1507 /**
1508 * Reset the history pointer to the first element of the history.
1509 * Always call this function after using nextHistoryLine() to free db resources
1510 * STUB
1511 * Overridden in LocalFile.
1512 */
1513 public function resetHistory() {
1514 }
1515
1516 /**
1517 * Get the filename hash component of the directory including trailing slash,
1518 * e.g. f/fa/
1519 * If the repository is not hashed, returns an empty string.
1520 *
1521 * @return string
1522 */
1523 function getHashPath() {
1524 if ( $this->hashPath === null ) {
1525 $this->assertRepoDefined();
1526 $this->hashPath = $this->repo->getHashPath( $this->getName() );
1527 }
1528
1529 return $this->hashPath;
1530 }
1531
1532 /**
1533 * Get the path of the file relative to the public zone root.
1534 * This function is overridden in OldLocalFile to be like getArchiveRel().
1535 *
1536 * @return string
1537 */
1538 function getRel() {
1539 return $this->getHashPath() . $this->getName();
1540 }
1541
1542 /**
1543 * Get the path of an archived file relative to the public zone root
1544 *
1545 * @param bool|string $suffix If not false, the name of an archived thumbnail file
1546 *
1547 * @return string
1548 */
1549 function getArchiveRel( $suffix = false ) {
1550 $path = 'archive/' . $this->getHashPath();
1551 if ( $suffix === false ) {
1552 $path = rtrim( $path, '/' );
1553 } else {
1554 $path .= $suffix;
1555 }
1556
1557 return $path;
1558 }
1559
1560 /**
1561 * Get the path, relative to the thumbnail zone root, of the
1562 * thumbnail directory or a particular file if $suffix is specified
1563 *
1564 * @param bool|string $suffix If not false, the name of a thumbnail file
1565 * @return string
1566 */
1567 function getThumbRel( $suffix = false ) {
1568 $path = $this->getRel();
1569 if ( $suffix !== false ) {
1570 $path .= '/' . $suffix;
1571 }
1572
1573 return $path;
1574 }
1575
1576 /**
1577 * Get urlencoded path of the file relative to the public zone root.
1578 * This function is overridden in OldLocalFile to be like getArchiveUrl().
1579 *
1580 * @return string
1581 */
1582 function getUrlRel() {
1583 return $this->getHashPath() . rawurlencode( $this->getName() );
1584 }
1585
1586 /**
1587 * Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory
1588 * or a specific thumb if the $suffix is given.
1589 *
1590 * @param string $archiveName The timestamped name of an archived image
1591 * @param bool|string $suffix If not false, the name of a thumbnail file
1592 * @return string
1593 */
1594 function getArchiveThumbRel( $archiveName, $suffix = false ) {
1595 $path = $this->getArchiveRel( $archiveName );
1596 if ( $suffix !== false ) {
1597 $path .= '/' . $suffix;
1598 }
1599
1600 return $path;
1601 }
1602
1603 /**
1604 * Get the path of the archived file.
1605 *
1606 * @param bool|string $suffix If not false, the name of an archived file.
1607 * @return string
1608 */
1609 function getArchivePath( $suffix = false ) {
1610 $this->assertRepoDefined();
1611
1612 return $this->repo->getZonePath( 'public' ) . '/' . $this->getArchiveRel( $suffix );
1613 }
1614
1615 /**
1616 * Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified
1617 *
1618 * @param string $archiveName The timestamped name of an archived image
1619 * @param bool|string $suffix If not false, the name of a thumbnail file
1620 * @return string
1621 */
1622 function getArchiveThumbPath( $archiveName, $suffix = false ) {
1623 $this->assertRepoDefined();
1624
1625 return $this->repo->getZonePath( 'thumb' ) . '/' .
1626 $this->getArchiveThumbRel( $archiveName, $suffix );
1627 }
1628
1629 /**
1630 * Get the path of the thumbnail directory, or a particular file if $suffix is specified
1631 *
1632 * @param bool|string $suffix If not false, the name of a thumbnail file
1633 * @return string
1634 */
1635 function getThumbPath( $suffix = false ) {
1636 $this->assertRepoDefined();
1637
1638 return $this->repo->getZonePath( 'thumb' ) . '/' . $this->getThumbRel( $suffix );
1639 }
1640
1641 /**
1642 * Get the path of the transcoded directory, or a particular file if $suffix is specified
1643 *
1644 * @param bool|string $suffix If not false, the name of a media file
1645 * @return string
1646 */
1647 function getTranscodedPath( $suffix = false ) {
1648 $this->assertRepoDefined();
1649
1650 return $this->repo->getZonePath( 'transcoded' ) . '/' . $this->getThumbRel( $suffix );
1651 }
1652
1653 /**
1654 * Get the URL of the archive directory, or a particular file if $suffix is specified
1655 *
1656 * @param bool|string $suffix If not false, the name of an archived file
1657 * @return string
1658 */
1659 function getArchiveUrl( $suffix = false ) {
1660 $this->assertRepoDefined();
1661 $ext = $this->getExtension();
1662 $path = $this->repo->getZoneUrl( 'public', $ext ) . '/archive/' . $this->getHashPath();
1663 if ( $suffix === false ) {
1664 $path = rtrim( $path, '/' );
1665 } else {
1666 $path .= rawurlencode( $suffix );
1667 }
1668
1669 return $path;
1670 }
1671
1672 /**
1673 * Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified
1674 *
1675 * @param string $archiveName The timestamped name of an archived image
1676 * @param bool|string $suffix If not false, the name of a thumbnail file
1677 * @return string
1678 */
1679 function getArchiveThumbUrl( $archiveName, $suffix = false ) {
1680 $this->assertRepoDefined();
1681 $ext = $this->getExtension();
1682 $path = $this->repo->getZoneUrl( 'thumb', $ext ) . '/archive/' .
1683 $this->getHashPath() . rawurlencode( $archiveName );
1684 if ( $suffix !== false ) {
1685 $path .= '/' . rawurlencode( $suffix );
1686 }
1687
1688 return $path;
1689 }
1690
1691 /**
1692 * Get the URL of the zone directory, or a particular file if $suffix is specified
1693 *
1694 * @param string $zone Name of requested zone
1695 * @param bool|string $suffix If not false, the name of a file in zone
1696 * @return string Path
1697 */
1698 function getZoneUrl( $zone, $suffix = false ) {
1699 $this->assertRepoDefined();
1700 $ext = $this->getExtension();
1701 $path = $this->repo->getZoneUrl( $zone, $ext ) . '/' . $this->getUrlRel();
1702 if ( $suffix !== false ) {
1703 $path .= '/' . rawurlencode( $suffix );
1704 }
1705
1706 return $path;
1707 }
1708
1709 /**
1710 * Get the URL of the thumbnail directory, or a particular file if $suffix is specified
1711 *
1712 * @param bool|string $suffix If not false, the name of a thumbnail file
1713 * @return string Path
1714 */
1715 function getThumbUrl( $suffix = false ) {
1716 return $this->getZoneUrl( 'thumb', $suffix );
1717 }
1718
1719 /**
1720 * Get the URL of the transcoded directory, or a particular file if $suffix is specified
1721 *
1722 * @param bool|string $suffix If not false, the name of a media file
1723 * @return string Path
1724 */
1725 function getTranscodedUrl( $suffix = false ) {
1726 return $this->getZoneUrl( 'transcoded', $suffix );
1727 }
1728
1729 /**
1730 * Get the public zone virtual URL for a current version source file
1731 *
1732 * @param bool|string $suffix If not false, the name of a thumbnail file
1733 * @return string
1734 */
1735 function getVirtualUrl( $suffix = false ) {
1736 $this->assertRepoDefined();
1737 $path = $this->repo->getVirtualUrl() . '/public/' . $this->getUrlRel();
1738 if ( $suffix !== false ) {
1739 $path .= '/' . rawurlencode( $suffix );
1740 }
1741
1742 return $path;
1743 }
1744
1745 /**
1746 * Get the public zone virtual URL for an archived version source file
1747 *
1748 * @param bool|string $suffix If not false, the name of a thumbnail file
1749 * @return string
1750 */
1751 function getArchiveVirtualUrl( $suffix = false ) {
1752 $this->assertRepoDefined();
1753 $path = $this->repo->getVirtualUrl() . '/public/archive/' . $this->getHashPath();
1754 if ( $suffix === false ) {
1755 $path = rtrim( $path, '/' );
1756 } else {
1757 $path .= rawurlencode( $suffix );
1758 }
1759
1760 return $path;
1761 }
1762
1763 /**
1764 * Get the virtual URL for a thumbnail file or directory
1765 *
1766 * @param bool|string $suffix If not false, the name of a thumbnail file
1767 * @return string
1768 */
1769 function getThumbVirtualUrl( $suffix = false ) {
1770 $this->assertRepoDefined();
1771 $path = $this->repo->getVirtualUrl() . '/thumb/' . $this->getUrlRel();
1772 if ( $suffix !== false ) {
1773 $path .= '/' . rawurlencode( $suffix );
1774 }
1775
1776 return $path;
1777 }
1778
1779 /**
1780 * @return bool
1781 */
1782 function isHashed() {
1783 $this->assertRepoDefined();
1784
1785 return (bool)$this->repo->getHashLevels();
1786 }
1787
1788 /**
1789 * @throws MWException
1790 */
1791 function readOnlyError() {
1792 throw new MWException( static::class . ': write operations are not supported' );
1793 }
1794
1795 /**
1796 * Record a file upload in the upload log and the image table
1797 * STUB
1798 * Overridden by LocalFile
1799 * @param string $oldver
1800 * @param string $desc
1801 * @param string $license
1802 * @param string $copyStatus
1803 * @param string $source
1804 * @param bool $watch
1805 * @param string|bool $timestamp
1806 * @param null|User $user User object or null to use $wgUser
1807 * @return bool
1808 * @throws MWException
1809 */
1810 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
1811 $watch = false, $timestamp = false, User $user = null
1812 ) {
1813 $this->readOnlyError();
1814 }
1815
1816 /**
1817 * Move or copy a file to its public location. If a file exists at the
1818 * destination, move it to an archive. Returns a Status object with
1819 * the archive name in the "value" member on success.
1820 *
1821 * The archive name should be passed through to recordUpload for database
1822 * registration.
1823 *
1824 * Options to $options include:
1825 * - headers : name/value map of HTTP headers to use in response to GET/HEAD requests
1826 *
1827 * @param string|FSFile $src Local filesystem path to the source image
1828 * @param int $flags A bitwise combination of:
1829 * File::DELETE_SOURCE Delete the source file, i.e. move rather than copy
1830 * @param array $options Optional additional parameters
1831 * @return Status On success, the value member contains the
1832 * archive name, or an empty string if it was a new file.
1833 *
1834 * STUB
1835 * Overridden by LocalFile
1836 */
1837 function publish( $src, $flags = 0, array $options = [] ) {
1838 $this->readOnlyError();
1839 }
1840
1841 /**
1842 * @param bool|IContextSource $context Context to use (optional)
1843 * @return bool
1844 */
1845 function formatMetadata( $context = false ) {
1846 if ( !$this->getHandler() ) {
1847 return false;
1848 }
1849
1850 return $this->getHandler()->formatMetadata( $this, $context );
1851 }
1852
1853 /**
1854 * Returns true if the file comes from the local file repository.
1855 *
1856 * @return bool
1857 */
1858 function isLocal() {
1859 return $this->repo && $this->repo->isLocal();
1860 }
1861
1862 /**
1863 * Returns the name of the repository.
1864 *
1865 * @return string
1866 */
1867 function getRepoName() {
1868 return $this->repo ? $this->repo->getName() : 'unknown';
1869 }
1870
1871 /**
1872 * Returns the repository
1873 *
1874 * @return FileRepo|LocalRepo|bool
1875 */
1876 function getRepo() {
1877 return $this->repo;
1878 }
1879
1880 /**
1881 * Returns true if the image is an old version
1882 * STUB
1883 *
1884 * @return bool
1885 */
1886 function isOld() {
1887 return false;
1888 }
1889
1890 /**
1891 * Is this file a "deleted" file in a private archive?
1892 * STUB
1893 *
1894 * @param int $field One of DELETED_* bitfield constants
1895 * @return bool
1896 */
1897 function isDeleted( $field ) {
1898 return false;
1899 }
1900
1901 /**
1902 * Return the deletion bitfield
1903 * STUB
1904 * @return int
1905 */
1906 function getVisibility() {
1907 return 0;
1908 }
1909
1910 /**
1911 * Was this file ever deleted from the wiki?
1912 *
1913 * @return bool
1914 */
1915 function wasDeleted() {
1916 $title = $this->getTitle();
1917
1918 return $title && $title->isDeletedQuick();
1919 }
1920
1921 /**
1922 * Move file to the new title
1923 *
1924 * Move current, old version and all thumbnails
1925 * to the new filename. Old file is deleted.
1926 *
1927 * Cache purging is done; checks for validity
1928 * and logging are caller's responsibility
1929 *
1930 * @param Title $target New file name
1931 * @return Status
1932 */
1933 function move( $target ) {
1934 $this->readOnlyError();
1935 }
1936
1937 /**
1938 * Delete all versions of the file.
1939 *
1940 * Moves the files into an archive directory (or deletes them)
1941 * and removes the database rows.
1942 *
1943 * Cache purging is done; logging is caller's responsibility.
1944 *
1945 * @param string $reason
1946 * @param bool $suppress Hide content from sysops?
1947 * @param User|null $user
1948 * @return Status
1949 * STUB
1950 * Overridden by LocalFile
1951 */
1952 function delete( $reason, $suppress = false, $user = null ) {
1953 $this->readOnlyError();
1954 }
1955
1956 /**
1957 * Restore all or specified deleted revisions to the given file.
1958 * Permissions and logging are left to the caller.
1959 *
1960 * May throw database exceptions on error.
1961 *
1962 * @param array $versions Set of record ids of deleted items to restore,
1963 * or empty to restore all revisions.
1964 * @param bool $unsuppress Remove restrictions on content upon restoration?
1965 * @return Status
1966 * STUB
1967 * Overridden by LocalFile
1968 */
1969 function restore( $versions = [], $unsuppress = false ) {
1970 $this->readOnlyError();
1971 }
1972
1973 /**
1974 * Returns 'true' if this file is a type which supports multiple pages,
1975 * e.g. DJVU or PDF. Note that this may be true even if the file in
1976 * question only has a single page.
1977 *
1978 * @return bool
1979 */
1980 function isMultipage() {
1981 return $this->getHandler() && $this->handler->isMultiPage( $this );
1982 }
1983
1984 /**
1985 * Returns the number of pages of a multipage document, or false for
1986 * documents which aren't multipage documents
1987 *
1988 * @return string|bool|int
1989 */
1990 function pageCount() {
1991 if ( !isset( $this->pageCount ) ) {
1992 if ( $this->getHandler() && $this->handler->isMultiPage( $this ) ) {
1993 $this->pageCount = $this->handler->pageCount( $this );
1994 } else {
1995 $this->pageCount = false;
1996 }
1997 }
1998
1999 return $this->pageCount;
2000 }
2001
2002 /**
2003 * Calculate the height of a thumbnail using the source and destination width
2004 *
2005 * @param int $srcWidth
2006 * @param int $srcHeight
2007 * @param int $dstWidth
2008 *
2009 * @return int
2010 */
2011 static function scaleHeight( $srcWidth, $srcHeight, $dstWidth ) {
2012 // Exact integer multiply followed by division
2013 if ( $srcWidth == 0 ) {
2014 return 0;
2015 } else {
2016 return (int)round( $srcHeight * $dstWidth / $srcWidth );
2017 }
2018 }
2019
2020 /**
2021 * Get an image size array like that returned by getImageSize(), or false if it
2022 * can't be determined. Loads the image size directly from the file ignoring caches.
2023 *
2024 * @note Use getWidth()/getHeight() instead of this method unless you have a
2025 * a good reason. This method skips all caches.
2026 *
2027 * @param string $filePath The path to the file (e.g. From getLocalRefPath() )
2028 * @return array|false The width, followed by height, with optionally more things after
2029 */
2030 function getImageSize( $filePath ) {
2031 if ( !$this->getHandler() ) {
2032 return false;
2033 }
2034
2035 return $this->getHandler()->getImageSize( $this, $filePath );
2036 }
2037
2038 /**
2039 * Get the URL of the image description page. May return false if it is
2040 * unknown or not applicable.
2041 *
2042 * @return string
2043 */
2044 function getDescriptionUrl() {
2045 if ( $this->repo ) {
2046 return $this->repo->getDescriptionUrl( $this->getName() );
2047 } else {
2048 return false;
2049 }
2050 }
2051
2052 /**
2053 * Get the HTML text of the description page, if available
2054 *
2055 * @param Language|null $lang Optional language to fetch description in
2056 * @return string|false
2057 */
2058 function getDescriptionText( Language $lang = null ) {
2059 global $wgLang;
2060
2061 if ( !$this->repo || !$this->repo->fetchDescription ) {
2062 return false;
2063 }
2064
2065 $lang = $lang ?? $wgLang;
2066
2067 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->getName(), $lang->getCode() );
2068 if ( $renderUrl ) {
2069 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2070 $key = $this->repo->getLocalCacheKey(
2071 'RemoteFileDescription',
2072 $lang->getCode(),
2073 md5( $this->getName() )
2074 );
2075 $fname = __METHOD__;
2076
2077 return $cache->getWithSetCallback(
2078 $key,
2079 $this->repo->descriptionCacheExpiry ?: $cache::TTL_UNCACHEABLE,
2080 function ( $oldValue, &$ttl, array &$setOpts ) use ( $renderUrl, $fname ) {
2081 wfDebug( "Fetching shared description from $renderUrl\n" );
2082 $res = MediaWikiServices::getInstance()->getHttpRequestFactory()->
2083 get( $renderUrl, [], $fname );
2084 if ( !$res ) {
2085 $ttl = WANObjectCache::TTL_UNCACHEABLE;
2086 }
2087
2088 return $res;
2089 }
2090 );
2091 }
2092
2093 return false;
2094 }
2095
2096 /**
2097 * Get description of file revision
2098 * STUB
2099 *
2100 * @param int $audience One of:
2101 * File::FOR_PUBLIC to be displayed to all users
2102 * File::FOR_THIS_USER to be displayed to the given user
2103 * File::RAW get the description regardless of permissions
2104 * @param User|null $user User object to check for, only if FOR_THIS_USER is
2105 * passed to the $audience parameter
2106 * @return null|string
2107 */
2108 function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
2109 return null;
2110 }
2111
2112 /**
2113 * Get the 14-character timestamp of the file upload
2114 *
2115 * @return string|bool TS_MW timestamp or false on failure
2116 */
2117 function getTimestamp() {
2118 $this->assertRepoDefined();
2119
2120 return $this->repo->getFileTimestamp( $this->getPath() );
2121 }
2122
2123 /**
2124 * Returns the timestamp (in TS_MW format) of the last change of the description page.
2125 * Returns false if the file does not have a description page, or retrieving the timestamp
2126 * would be expensive.
2127 * @since 1.25
2128 * @return string|bool
2129 */
2130 public function getDescriptionTouched() {
2131 return false;
2132 }
2133
2134 /**
2135 * Get the SHA-1 base 36 hash of the file
2136 *
2137 * @return string
2138 */
2139 function getSha1() {
2140 $this->assertRepoDefined();
2141
2142 return $this->repo->getFileSha1( $this->getPath() );
2143 }
2144
2145 /**
2146 * Get the deletion archive key, "<sha1>.<ext>"
2147 *
2148 * @return string|false
2149 */
2150 function getStorageKey() {
2151 $hash = $this->getSha1();
2152 if ( !$hash ) {
2153 return false;
2154 }
2155 $ext = $this->getExtension();
2156 $dotExt = $ext === '' ? '' : ".$ext";
2157
2158 return $hash . $dotExt;
2159 }
2160
2161 /**
2162 * Determine if the current user is allowed to view a particular
2163 * field of this file, if it's marked as deleted.
2164 * STUB
2165 * @param int $field
2166 * @param User|null $user User object to check, or null to use $wgUser
2167 * @return bool
2168 */
2169 function userCan( $field, User $user = null ) {
2170 return true;
2171 }
2172
2173 /**
2174 * @return string[] HTTP header name/value map to use for HEAD/GET request responses
2175 * @since 1.30
2176 */
2177 function getContentHeaders() {
2178 $handler = $this->getHandler();
2179 if ( $handler ) {
2180 $metadata = $this->getMetadata();
2181
2182 if ( is_string( $metadata ) ) {
2183 $metadata = AtEase::quietCall( 'unserialize', $metadata );
2184 }
2185
2186 if ( !is_array( $metadata ) ) {
2187 $metadata = [];
2188 }
2189
2190 return $handler->getContentHeaders( $metadata );
2191 }
2192
2193 return [];
2194 }
2195
2196 /**
2197 * @return string
2198 */
2199 function getLongDesc() {
2200 $handler = $this->getHandler();
2201 if ( $handler ) {
2202 return $handler->getLongDesc( $this );
2203 } else {
2204 return MediaHandler::getGeneralLongDesc( $this );
2205 }
2206 }
2207
2208 /**
2209 * @return string
2210 */
2211 function getShortDesc() {
2212 $handler = $this->getHandler();
2213 if ( $handler ) {
2214 return $handler->getShortDesc( $this );
2215 } else {
2216 return MediaHandler::getGeneralShortDesc( $this );
2217 }
2218 }
2219
2220 /**
2221 * @return string
2222 */
2223 function getDimensionsString() {
2224 $handler = $this->getHandler();
2225 if ( $handler ) {
2226 return $handler->getDimensionsString( $this );
2227 } else {
2228 return '';
2229 }
2230 }
2231
2232 /**
2233 * @return string
2234 */
2235 function getRedirected() {
2236 return $this->redirected;
2237 }
2238
2239 /**
2240 * @return Title|null
2241 */
2242 function getRedirectedTitle() {
2243 if ( $this->redirected ) {
2244 if ( !$this->redirectTitle ) {
2245 $this->redirectTitle = Title::makeTitle( NS_FILE, $this->redirected );
2246 }
2247
2248 return $this->redirectTitle;
2249 }
2250
2251 return null;
2252 }
2253
2254 /**
2255 * @param string $from
2256 * @return void
2257 */
2258 function redirectedFrom( $from ) {
2259 $this->redirected = $from;
2260 }
2261
2262 /**
2263 * @return bool
2264 */
2265 function isMissing() {
2266 return false;
2267 }
2268
2269 /**
2270 * Check if this file object is small and can be cached
2271 * @return bool
2272 */
2273 public function isCacheable() {
2274 return true;
2275 }
2276
2277 /**
2278 * Assert that $this->repo is set to a valid FileRepo instance
2279 * @throws MWException
2280 */
2281 protected function assertRepoDefined() {
2282 if ( !( $this->repo instanceof $this->repoClass ) ) {
2283 throw new MWException( "A {$this->repoClass} object is not set for this File.\n" );
2284 }
2285 }
2286
2287 /**
2288 * Assert that $this->title is set to a Title
2289 * @throws MWException
2290 */
2291 protected function assertTitleDefined() {
2292 if ( !( $this->title instanceof Title ) ) {
2293 throw new MWException( "A Title object is not set for this File.\n" );
2294 }
2295 }
2296
2297 /**
2298 * True if creating thumbnails from the file is large or otherwise resource-intensive.
2299 * @return bool
2300 */
2301 public function isExpensiveToThumbnail() {
2302 $handler = $this->getHandler();
2303 return $handler ? $handler->isExpensiveToThumbnail( $this ) : false;
2304 }
2305
2306 /**
2307 * Whether the thumbnails created on the same server as this code is running.
2308 * @since 1.25
2309 * @return bool
2310 */
2311 public function isTransformedLocally() {
2312 return true;
2313 }
2314 }