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