3 * @defgroup FileAbstraction File abstraction
6 * Represents files in a repository.
10 * Base code for files.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
28 * @ingroup FileAbstraction
32 * Implements some public methods and some protected utility functions which
33 * are required by multiple child classes. Contains stub functionality for
34 * unimplemented public methods.
36 * Stub functions which should be overridden are marked with STUB. Some more
37 * concrete functions are also typically overridden by child classes.
39 * Note that only the repo object knows what its file class is called. You should
40 * never name a file class explictly outside of the repo class. Instead use the
41 * repo's factory functions to generate file objects, for example:
43 * RepoGroup::singleton()->getLocalRepo()->newFile( $title );
45 * The convenience functions wfLocalFile() and wfFindFile() should be sufficient
48 * @ingroup FileAbstraction
51 const DELETED_FILE
= 1;
52 const DELETED_COMMENT
= 2;
53 const DELETED_USER
= 4;
54 const DELETED_RESTRICTED
= 8;
56 /** Force rendering in the current process */
59 * Force rendering even if thumbnail already exist and using RENDER_NOW
60 * I.e. you have to pass both flags: File::RENDER_NOW | File::RENDER_FORCE
62 const RENDER_FORCE
= 2;
64 const DELETE_SOURCE
= 1;
66 // Audience options for File::getDescription()
68 const FOR_THIS_USER
= 2;
71 // Options for File::thumbName()
72 const THUMB_FULL_NAME
= 1;
75 * Some member variables can be lazy-initialised using __get(). The
76 * initialisation function for these variables is always a function named
77 * like getVar(), where Var is the variable name with upper-case first
80 * The following variables are initialised in this way in this base class:
81 * name, extension, handler, path, canRender, isSafeFile,
82 * transformScript, hashPath, pageCount, url
84 * Code within this class should generally use the accessor function
85 * directly, since __get() isn't re-entrant and therefore causes bugs that
86 * depend on initialisation order.
90 * The following member variables are not lazy-initialised
103 var $lastError, $redirected, $redirectedTitle;
106 * @var FSFile|bool False if undefined
118 protected $url, $extension, $name, $path, $hashPath, $pageCount, $transformScript;
120 protected $redirectTitle;
125 protected $canRender, $isSafeFile;
128 * @var string Required Repository class type
130 protected $repoClass = 'FileRepo';
133 * Call this constructor from child classes.
135 * Both $title and $repo are optional, though some functions
136 * may return false or throw exceptions if they are not set.
137 * Most subclasses will want to call assertRepoDefined() here.
139 * @param $title Title|string|bool
140 * @param $repo FileRepo|bool
142 function __construct( $title, $repo ) {
143 if ( $title !== false ) { // subclasses may not use MW titles
144 $title = self
::normalizeTitle( $title, 'exception' );
146 $this->title
= $title;
151 * Given a string or Title object return either a
152 * valid Title object with namespace NS_FILE or null
154 * @param $title Title|string
155 * @param string|bool $exception Use 'exception' to throw an error on bad titles
156 * @throws MWException
159 static function normalizeTitle( $title, $exception = false ) {
161 if ( $ret instanceof Title
) {
162 # Normalize NS_MEDIA -> NS_FILE
163 if ( $ret->getNamespace() == NS_MEDIA
) {
164 $ret = Title
::makeTitleSafe( NS_FILE
, $ret->getDBkey() );
165 # Sanity check the title namespace
166 } elseif ( $ret->getNamespace() !== NS_FILE
) {
170 # Convert strings to Title objects
171 $ret = Title
::makeTitleSafe( NS_FILE
, (string)$ret );
173 if ( !$ret && $exception !== false ) {
174 throw new MWException( "`$title` is not a valid file title." );
179 function __get( $name ) {
180 $function = array( $this, 'get' . ucfirst( $name ) );
181 if ( !is_callable( $function ) ) {
184 $this->$name = call_user_func( $function );
190 * Normalize a file extension to the common form, and ensure it's clean.
191 * Extensions with non-alphanumeric characters will be discarded.
193 * @param string $ext (without the .)
196 static function normalizeExtension( $ext ) {
197 $lower = strtolower( $ext );
204 if ( isset( $squish[$lower] ) ) {
205 return $squish[$lower];
206 } elseif ( preg_match( '/^[0-9a-z]+$/', $lower ) ) {
214 * Checks if file extensions are compatible
216 * @param $old File Old file
217 * @param string $new New name
221 static function checkExtensionCompatibility( File
$old, $new ) {
222 $oldMime = $old->getMimeType();
223 $n = strrpos( $new, '.' );
224 $newExt = self
::normalizeExtension( $n ?
substr( $new, $n +
1 ) : '' );
225 $mimeMagic = MimeMagic
::singleton();
226 return $mimeMagic->isMatchingExtension( $newExt, $oldMime );
230 * Upgrade the database row if there is one
231 * Called by ImagePage
234 function upgradeRow() {}
237 * Split an internet media type into its two components; if not
238 * a two-part name, set the minor type to 'unknown'.
240 * @param string $mime "text/html" etc
241 * @return array ("text", "html") etc
243 public static function splitMime( $mime ) {
244 if ( strpos( $mime, '/' ) !== false ) {
245 return explode( '/', $mime, 2 );
247 return array( $mime, 'unknown' );
252 * Callback for usort() to do file sorts by name
257 * @return Integer: result of name comparison
259 public static function compare( File
$a, File
$b ) {
260 return strcmp( $a->getName(), $b->getName() );
264 * Return the name of this file
268 public function getName() {
269 if ( !isset( $this->name
) ) {
270 $this->assertRepoDefined();
271 $this->name
= $this->repo
->getNameFromTitle( $this->title
);
277 * Get the file extension, e.g. "svg"
281 function getExtension() {
282 if ( !isset( $this->extension
) ) {
283 $n = strrpos( $this->getName(), '.' );
284 $this->extension
= self
::normalizeExtension(
285 $n ?
substr( $this->getName(), $n +
1 ) : '' );
287 return $this->extension
;
291 * Return the associated title object
295 public function getTitle() {
300 * Return the title used to find this file
304 public function getOriginalTitle() {
305 if ( $this->redirected
) {
306 return $this->getRedirectedTitle();
312 * Return the URL of the file
316 public function getUrl() {
317 if ( !isset( $this->url
) ) {
318 $this->assertRepoDefined();
319 $ext = $this->getExtension();
320 $this->url
= $this->repo
->getZoneUrl( 'public', $ext ) . '/' . $this->getUrlRel();
326 * Return a fully-qualified URL to the file.
327 * Upload URL paths _may or may not_ be fully qualified, so
328 * we check. Local paths are assumed to belong on $wgServer.
332 public function getFullUrl() {
333 return wfExpandUrl( $this->getUrl(), PROTO_RELATIVE
);
339 public function getCanonicalUrl() {
340 return wfExpandUrl( $this->getUrl(), PROTO_CANONICAL
);
346 function getViewURL() {
347 if ( $this->mustRender() ) {
348 if ( $this->canRender() ) {
349 return $this->createThumb( $this->getWidth() );
351 wfDebug( __METHOD__
. ': supposed to render ' . $this->getName() .
352 ' (' . $this->getMimeType() . "), but can't!\n" );
353 return $this->getURL(); #hm... return NULL?
356 return $this->getURL();
361 * Return the storage path to the file. Note that this does
362 * not mean that a file actually exists under that location.
364 * This path depends on whether directory hashing is active or not,
365 * i.e. whether the files are all found in the same directory,
366 * or in hashed paths like /images/3/3c.
368 * Most callers don't check the return value, but ForeignAPIFile::getPath
371 * @return string|bool ForeignAPIFile::getPath can return false
373 public function getPath() {
374 if ( !isset( $this->path
) ) {
375 $this->assertRepoDefined();
376 $this->path
= $this->repo
->getZonePath( 'public' ) . '/' . $this->getRel();
382 * Get an FS copy or original of this file and return the path.
383 * Returns false on failure. Callers must not alter the file.
384 * Temporary files are cleared automatically.
386 * @return string|bool False on failure
388 public function getLocalRefPath() {
389 $this->assertRepoDefined();
390 if ( !isset( $this->fsFile
) ) {
391 $this->fsFile
= $this->repo
->getLocalReference( $this->getPath() );
392 if ( !$this->fsFile
) {
393 $this->fsFile
= false; // null => false; cache negative hits
396 return ( $this->fsFile
)
397 ?
$this->fsFile
->getPath()
402 * Return the width of the image. Returns false if the width is unknown
406 * Overridden by LocalFile, UnregisteredLocalFile
412 public function getWidth( $page = 1 ) {
417 * Return the height of the image. Returns false if the height is unknown
421 * Overridden by LocalFile, UnregisteredLocalFile
425 * @return bool|number False on failure
427 public function getHeight( $page = 1 ) {
432 * Returns ID or name of user who uploaded the file
435 * @param string $type 'text' or 'id'
439 public function getUser( $type = 'text' ) {
444 * Get the duration of a media file in seconds
448 public function getLength() {
449 $handler = $this->getHandler();
451 return $handler->getLength( $this );
458 * Return true if the file is vectorized
462 public function isVectorized() {
463 $handler = $this->getHandler();
465 return $handler->isVectorized( $this );
472 * Will the thumbnail be animated if one would expect it to be.
474 * Currently used to add a warning to the image description page
476 * @return bool false if the main image is both animated
477 * and the thumbnail is not. In all other cases must return
478 * true. If image is not renderable whatsoever, should
481 public function canAnimateThumbIfAppropriate() {
482 $handler = $this->getHandler();
484 // We cannot handle image whatsoever, thus
485 // one would not expect it to be animated
489 if ( $this->allowInlineDisplay()
490 && $handler->isAnimatedImage( $this )
491 && !$handler->canAnimateThumbnail( $this )
493 // Image is animated, but thumbnail isn't.
494 // This is unexpected to the user.
497 // Image is not animated, so one would
498 // not expect thumb to be
505 * Get handler-specific metadata
506 * Overridden by LocalFile, UnregisteredLocalFile
510 public function getMetadata() {
515 * get versioned metadata
517 * @param $metadata Mixed Array or String of (serialized) metadata
518 * @param $version integer version number.
519 * @return Array containing metadata, or what was passed to it on fail (unserializing if not array)
521 public function convertMetadataVersion( $metadata, $version ) {
522 $handler = $this->getHandler();
523 if ( !is_array( $metadata ) ) {
524 // Just to make the return type consistent
525 $metadata = unserialize( $metadata );
528 return $handler->convertMetadataVersion( $metadata, $version );
535 * Return the bit depth of the file
536 * Overridden by LocalFile
540 public function getBitDepth() {
545 * Return the size of the image file, in bytes
546 * Overridden by LocalFile, UnregisteredLocalFile
550 public function getSize() {
555 * Returns the mime type of the file.
556 * Overridden by LocalFile, UnregisteredLocalFile
561 function getMimeType() {
562 return 'unknown/unknown';
566 * Return the type of the media in the file.
567 * Use the value returned by this function with the MEDIATYPE_xxx constants.
568 * Overridden by LocalFile,
572 function getMediaType() {
573 return MEDIATYPE_UNKNOWN
;
577 * Checks if the output of transform() for this file is likely
578 * to be valid. If this is false, various user elements will
579 * display a placeholder instead.
581 * Currently, this checks if the file is an image format
582 * that can be converted to a format
583 * supported by all browsers (namely GIF, PNG and JPEG),
584 * or if it is an SVG image and SVG conversion is enabled.
588 function canRender() {
589 if ( !isset( $this->canRender
) ) {
590 $this->canRender
= $this->getHandler() && $this->handler
->canRender( $this );
592 return $this->canRender
;
596 * Accessor for __get()
599 protected function getCanRender() {
600 return $this->canRender();
604 * Return true if the file is of a type that can't be directly
605 * rendered by typical browsers and needs to be re-rasterized.
607 * This returns true for everything but the bitmap types
608 * supported by all browsers, i.e. JPEG; GIF and PNG. It will
609 * also return true for any non-image formats.
613 function mustRender() {
614 return $this->getHandler() && $this->handler
->mustRender( $this );
618 * Alias for canRender()
622 function allowInlineDisplay() {
623 return $this->canRender();
627 * Determines if this media file is in a format that is unlikely to
628 * contain viruses or malicious content. It uses the global
629 * $wgTrustedMediaFormats list to determine if the file is safe.
631 * This is used to show a warning on the description page of non-safe files.
632 * It may also be used to disallow direct [[media:...]] links to such files.
634 * Note that this function will always return true if allowInlineDisplay()
635 * or isTrustedFile() is true for this file.
639 function isSafeFile() {
640 if ( !isset( $this->isSafeFile
) ) {
641 $this->isSafeFile
= $this->_getIsSafeFile();
643 return $this->isSafeFile
;
647 * Accessor for __get()
651 protected function getIsSafeFile() {
652 return $this->isSafeFile();
660 protected function _getIsSafeFile() {
661 global $wgTrustedMediaFormats;
663 if ( $this->allowInlineDisplay() ) {
666 if ( $this->isTrustedFile() ) {
670 $type = $this->getMediaType();
671 $mime = $this->getMimeType();
672 #wfDebug( "LocalFile::isSafeFile: type= $type, mime= $mime\n" );
674 if ( !$type ||
$type === MEDIATYPE_UNKNOWN
) {
675 return false; #unknown type, not trusted
677 if ( in_array( $type, $wgTrustedMediaFormats ) ) {
681 if ( $mime === "unknown/unknown" ) {
682 return false; #unknown type, not trusted
684 if ( in_array( $mime, $wgTrustedMediaFormats ) ) {
692 * Returns true if the file is flagged as trusted. Files flagged that way
693 * can be linked to directly, even if that is not allowed for this type of
696 * This is a dummy function right now and always returns false. It could be
697 * implemented to extract a flag from the database. The trusted flag could be
698 * set on upload, if the user has sufficient privileges, to bypass script-
699 * and html-filters. It may even be coupled with cryptographics signatures
704 function isTrustedFile() {
705 #this could be implemented to check a flag in the database,
706 #look for signatures, etc
711 * Returns true if file exists in the repository.
713 * Overridden by LocalFile to avoid unnecessary stat calls.
715 * @return boolean Whether file exists in the repository.
717 public function exists() {
718 return $this->getPath() && $this->repo
->fileExists( $this->path
);
722 * Returns true if file exists in the repository and can be included in a page.
723 * It would be unsafe to include private images, making public thumbnails inadvertently
725 * @return boolean Whether file exists in the repository and is includable.
727 public function isVisible() {
728 return $this->exists();
734 function getTransformScript() {
735 if ( !isset( $this->transformScript
) ) {
736 $this->transformScript
= false;
738 $script = $this->repo
->getThumbScriptUrl();
740 $this->transformScript
= wfAppendQuery( $script, array( 'f' => $this->getName() ) );
744 return $this->transformScript
;
748 * Get a ThumbnailImage which is the same size as the source
750 * @param $handlerParams array
754 function getUnscaledThumb( $handlerParams = array() ) {
755 $hp =& $handlerParams;
756 $page = isset( $hp['page'] ) ?
$hp['page'] : false;
757 $width = $this->getWidth( $page );
759 return $this->iconThumb();
761 $hp['width'] = $width;
762 return $this->transform( $hp );
766 * Return the file name of a thumbnail with the specified parameters.
767 * Use File::THUMB_FULL_NAME to always get a name like "<params>-<source>".
768 * Otherwise, the format may be "<params>-<source>" or "<params>-thumbnail.<ext>".
770 * @param array $params handler-specific parameters
771 * @param $flags integer Bitfield that supports THUMB_* constants
774 public function thumbName( $params, $flags = 0 ) {
775 $name = ( $this->repo
&& !( $flags & self
::THUMB_FULL_NAME
) )
776 ?
$this->repo
->nameForThumb( $this->getName() )
778 return $this->generateThumbName( $name, $params );
782 * Generate a thumbnail file name from a name and specified parameters
784 * @param string $name
785 * @param array $params Parameters which will be passed to MediaHandler::makeParamString
789 public function generateThumbName( $name, $params ) {
790 if ( !$this->getHandler() ) {
793 $extension = $this->getExtension();
794 list( $thumbExt, $thumbMime ) = $this->handler
->getThumbType(
795 $extension, $this->getMimeType(), $params );
796 $thumbName = $this->handler
->makeParamString( $params ) . '-' . $name;
797 if ( $thumbExt != $extension ) {
798 $thumbName .= ".$thumbExt";
804 * Create a thumbnail of the image having the specified width/height.
805 * The thumbnail will not be created if the width is larger than the
806 * image's width. Let the browser do the scaling in this case.
807 * The thumbnail is stored on disk and is only computed if the thumbnail
808 * file does not exist OR if it is older than the image.
811 * Keeps aspect ratio of original image. If both width and height are
812 * specified, the generated image will be no bigger than width x height,
813 * and will also have correct aspect ratio.
815 * @param $width Integer: maximum width of the generated thumbnail
816 * @param $height Integer: maximum height of the image (optional)
820 public function createThumb( $width, $height = -1 ) {
821 $params = array( 'width' => $width );
822 if ( $height != -1 ) {
823 $params['height'] = $height;
825 $thumb = $this->transform( $params );
826 if ( is_null( $thumb ) ||
$thumb->isError() ) {
829 return $thumb->getUrl();
833 * Return either a MediaTransformError or placeholder thumbnail (if $wgIgnoreImageErrors)
835 * @param string $thumbPath Thumbnail storage path
836 * @param string $thumbUrl Thumbnail URL
837 * @param $params Array
838 * @param $flags integer
839 * @return MediaTransformOutput
841 protected function transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags ) {
842 global $wgIgnoreImageErrors;
844 if ( $wgIgnoreImageErrors && !( $flags & self
::RENDER_NOW
) ) {
845 return $this->getHandler()->getTransform( $this, $thumbPath, $thumbUrl, $params );
847 return new MediaTransformError( 'thumbnail_error',
848 $params['width'], 0, wfMessage( 'thumbnail-dest-create' )->text() );
853 * Transform a media file
855 * @param array $params an associative array of handler-specific parameters.
856 * Typical keys are width, height and page.
857 * @param $flags Integer: a bitfield, may contain self::RENDER_NOW to force rendering
858 * @return MediaTransformOutput|bool False on failure
860 function transform( $params, $flags = 0 ) {
861 global $wgUseSquid, $wgIgnoreImageErrors, $wgThumbnailEpoch;
863 wfProfileIn( __METHOD__
);
865 if ( !$this->canRender() ) {
866 $thumb = $this->iconThumb();
867 break; // not a bitmap or renderable image, don't try
870 // Get the descriptionUrl to embed it as comment into the thumbnail. Bug 19791.
871 $descriptionUrl = $this->getDescriptionUrl();
872 if ( $descriptionUrl ) {
873 $params['descriptionUrl'] = wfExpandUrl( $descriptionUrl, PROTO_CANONICAL
);
876 $handler = $this->getHandler();
877 $script = $this->getTransformScript();
878 if ( $script && !( $flags & self
::RENDER_NOW
) ) {
879 // Use a script to transform on client request, if possible
880 $thumb = $handler->getScriptedTransform( $this, $script, $params );
886 $normalisedParams = $params;
887 $handler->normaliseParams( $this, $normalisedParams );
889 $thumbName = $this->thumbName( $normalisedParams );
890 $thumbUrl = $this->getThumbUrl( $thumbName );
891 $thumbPath = $this->getThumbPath( $thumbName ); // final thumb path
894 // Defer rendering if a 404 handler is set up...
895 if ( $this->repo
->canTransformVia404() && !( $flags & self
::RENDER_NOW
) ) {
896 wfDebug( __METHOD__
. " transformation deferred." );
897 // XXX: Pass in the storage path even though we are not rendering anything
898 // and the path is supposed to be an FS path. This is due to getScalerType()
899 // getting called on the path and clobbering $thumb->getUrl() if it's false.
900 $thumb = $handler->getTransform( $this, $thumbPath, $thumbUrl, $params );
903 // Clean up broken thumbnails as needed
904 $this->migrateThumbFile( $thumbName );
905 // Check if an up-to-date thumbnail already exists...
906 wfDebug( __METHOD__
. ": Doing stat for $thumbPath\n" );
907 if ( !( $flags & self
::RENDER_FORCE
) && $this->repo
->fileExists( $thumbPath ) ) {
908 $timestamp = $this->repo
->getFileTimestamp( $thumbPath );
909 if ( $timestamp !== false && $timestamp >= $wgThumbnailEpoch ) {
910 // XXX: Pass in the storage path even though we are not rendering anything
911 // and the path is supposed to be an FS path. This is due to getScalerType()
912 // getting called on the path and clobbering $thumb->getUrl() if it's false.
913 $thumb = $handler->getTransform( $this, $thumbPath, $thumbUrl, $params );
914 $thumb->setStoragePath( $thumbPath );
917 } elseif ( $flags & self
::RENDER_FORCE
) {
918 wfDebug( __METHOD__
. " forcing rendering per flag File::RENDER_FORCE\n" );
922 // If the backend is ready-only, don't keep generating thumbnails
923 // only to return transformation errors, just return the error now.
924 if ( $this->repo
->getReadOnlyReason() !== false ) {
925 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
929 // Create a temp FS file with the same extension and the thumbnail
930 $thumbExt = FileBackend
::extensionFromPath( $thumbPath );
931 $tmpFile = TempFSFile
::factory( 'transform_', $thumbExt );
933 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
936 $tmpThumbPath = $tmpFile->getPath(); // path of 0-byte temp file
938 // Actually render the thumbnail...
939 wfProfileIn( __METHOD__
. '-doTransform' );
940 $thumb = $handler->doTransform( $this, $tmpThumbPath, $thumbUrl, $params );
941 wfProfileOut( __METHOD__
. '-doTransform' );
942 $tmpFile->bind( $thumb ); // keep alive with $thumb
944 if ( !$thumb ) { // bad params?
946 } elseif ( $thumb->isError() ) { // transform error
947 $this->lastError
= $thumb->toText();
948 // Ignore errors if requested
949 if ( $wgIgnoreImageErrors && !( $flags & self
::RENDER_NOW
) ) {
950 $thumb = $handler->getTransform( $this, $tmpThumbPath, $thumbUrl, $params );
952 } elseif ( $this->repo
&& $thumb->hasFile() && !$thumb->fileIsSource() ) {
953 // Copy the thumbnail from the file system into storage...
954 $disposition = $this->getThumbDisposition( $thumbName );
955 $status = $this->repo
->quickImport( $tmpThumbPath, $thumbPath, $disposition );
956 if ( $status->isOK() ) {
957 $thumb->setStoragePath( $thumbPath );
959 $thumb = $this->transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags );
961 // Give extensions a chance to do something with this thumbnail...
962 wfRunHooks( 'FileTransformed', array( $this, $thumb, $tmpThumbPath, $thumbPath ) );
965 // Purge. Useful in the event of Core -> Squid connection failure or squid
966 // purge collisions from elsewhere during failure. Don't keep triggering for
967 // "thumbs" which have the main image URL though (bug 13776)
969 if ( !$thumb ||
$thumb->isError() ||
$thumb->getUrl() != $this->getURL() ) {
970 SquidUpdate
::purge( array( $thumbUrl ) );
975 wfProfileOut( __METHOD__
);
976 return is_object( $thumb ) ?
$thumb : false;
980 * @param string $thumbName Thumbnail name
981 * @return string Content-Disposition header value
983 function getThumbDisposition( $thumbName ) {
984 $fileName = $this->name
; // file name to suggest
985 $thumbExt = FileBackend
::extensionFromPath( $thumbName );
986 if ( $thumbExt != '' && $thumbExt !== $this->getExtension() ) {
987 $fileName .= ".$thumbExt";
989 return FileBackend
::makeContentDisposition( 'inline', $fileName );
993 * Hook into transform() to allow migration of thumbnail files
995 * Overridden by LocalFile
997 function migrateThumbFile( $thumbName ) {}
1000 * Get a MediaHandler instance for this file
1002 * @return MediaHandler
1004 function getHandler() {
1005 if ( !isset( $this->handler
) ) {
1006 $this->handler
= MediaHandler
::getHandler( $this->getMimeType() );
1008 return $this->handler
;
1012 * Get a ThumbnailImage representing a file type icon
1014 * @return ThumbnailImage
1016 function iconThumb() {
1017 global $wgStylePath, $wgStyleDirectory;
1019 $try = array( 'fileicon-' . $this->getExtension() . '.png', 'fileicon.png' );
1020 foreach ( $try as $icon ) {
1021 $path = '/common/images/icons/' . $icon;
1022 $filepath = $wgStyleDirectory . $path;
1023 if ( file_exists( $filepath ) ) { // always FS
1024 $params = array( 'width' => 120, 'height' => 120 );
1025 return new ThumbnailImage( $this, $wgStylePath . $path, false, $params );
1032 * Get last thumbnailing error.
1035 function getLastError() {
1036 return $this->lastError
;
1040 * Get all thumbnail names previously generated for this file
1042 * Overridden by LocalFile
1045 function getThumbnails() {
1050 * Purge shared caches such as thumbnails and DB data caching
1052 * Overridden by LocalFile
1053 * @param array $options Options, which include:
1054 * 'forThumbRefresh' : The purging is only to refresh thumbnails
1056 function purgeCache( $options = array() ) {}
1059 * Purge the file description page, but don't go after
1060 * pages using the file. Use when modifying file history
1061 * but not the current data.
1063 function purgeDescription() {
1064 $title = $this->getTitle();
1066 $title->invalidateCache();
1067 $title->purgeSquid();
1072 * Purge metadata and all affected pages when the file is created,
1073 * deleted, or majorly updated.
1075 function purgeEverything() {
1076 // Delete thumbnails and refresh file metadata cache
1077 $this->purgeCache();
1078 $this->purgeDescription();
1080 // Purge cache of all pages using this file
1081 $title = $this->getTitle();
1083 $update = new HTMLCacheUpdate( $title, 'imagelinks' );
1084 $update->doUpdate();
1089 * Return a fragment of the history of file.
1092 * @param $limit integer Limit of rows to return
1093 * @param string $start timestamp Only revisions older than $start will be returned
1094 * @param string $end timestamp Only revisions newer than $end will be returned
1095 * @param bool $inc Include the endpoints of the time range
1099 function getHistory( $limit = null, $start = null, $end = null, $inc = true ) {
1104 * Return the history of this file, line by line. Starts with current version,
1105 * then old versions. Should return an object similar to an image/oldimage
1109 * Overridden in LocalFile
1112 public function nextHistoryLine() {
1117 * Reset the history pointer to the first element of the history.
1118 * Always call this function after using nextHistoryLine() to free db resources
1120 * Overridden in LocalFile.
1122 public function resetHistory() {}
1125 * Get the filename hash component of the directory including trailing slash,
1127 * If the repository is not hashed, returns an empty string.
1131 function getHashPath() {
1132 if ( !isset( $this->hashPath
) ) {
1133 $this->assertRepoDefined();
1134 $this->hashPath
= $this->repo
->getHashPath( $this->getName() );
1136 return $this->hashPath
;
1140 * Get the path of the file relative to the public zone root.
1141 * This function is overriden in OldLocalFile to be like getArchiveRel().
1146 return $this->getHashPath() . $this->getName();
1150 * Get the path of an archived file relative to the public zone root
1152 * @param bool|string $suffix if not false, the name of an archived thumbnail file
1156 function getArchiveRel( $suffix = false ) {
1157 $path = 'archive/' . $this->getHashPath();
1158 if ( $suffix === false ) {
1159 $path = substr( $path, 0, -1 );
1167 * Get the path, relative to the thumbnail zone root, of the
1168 * thumbnail directory or a particular file if $suffix is specified
1170 * @param bool|string $suffix if not false, the name of a thumbnail file
1174 function getThumbRel( $suffix = false ) {
1175 $path = $this->getRel();
1176 if ( $suffix !== false ) {
1177 $path .= '/' . $suffix;
1183 * Get urlencoded path of the file relative to the public zone root.
1184 * This function is overriden in OldLocalFile to be like getArchiveUrl().
1188 function getUrlRel() {
1189 return $this->getHashPath() . rawurlencode( $this->getName() );
1193 * Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory
1194 * or a specific thumb if the $suffix is given.
1196 * @param string $archiveName the timestamped name of an archived image
1197 * @param bool|string $suffix if not false, the name of a thumbnail file
1201 function getArchiveThumbRel( $archiveName, $suffix = false ) {
1202 $path = 'archive/' . $this->getHashPath() . $archiveName . "/";
1203 if ( $suffix === false ) {
1204 $path = substr( $path, 0, -1 );
1212 * Get the path of the archived file.
1214 * @param bool|string $suffix if not false, the name of an archived file.
1218 function getArchivePath( $suffix = false ) {
1219 $this->assertRepoDefined();
1220 return $this->repo
->getZonePath( 'public' ) . '/' . $this->getArchiveRel( $suffix );
1224 * Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified
1226 * @param string $archiveName the timestamped name of an archived image
1227 * @param bool|string $suffix if not false, the name of a thumbnail file
1231 function getArchiveThumbPath( $archiveName, $suffix = false ) {
1232 $this->assertRepoDefined();
1233 return $this->repo
->getZonePath( 'thumb' ) . '/' .
1234 $this->getArchiveThumbRel( $archiveName, $suffix );
1238 * Get the path of the thumbnail directory, or a particular file if $suffix is specified
1240 * @param bool|string $suffix if not false, the name of a thumbnail file
1244 function getThumbPath( $suffix = false ) {
1245 $this->assertRepoDefined();
1246 return $this->repo
->getZonePath( 'thumb' ) . '/' . $this->getThumbRel( $suffix );
1250 * Get the path of the transcoded directory, or a particular file if $suffix is specified
1252 * @param bool|string $suffix if not false, the name of a media file
1256 function getTranscodedPath( $suffix = false ) {
1257 $this->assertRepoDefined();
1258 return $this->repo
->getZonePath( 'transcoded' ) . '/' . $this->getThumbRel( $suffix );
1262 * Get the URL of the archive directory, or a particular file if $suffix is specified
1264 * @param bool|string $suffix if not false, the name of an archived file
1268 function getArchiveUrl( $suffix = false ) {
1269 $this->assertRepoDefined();
1270 $ext = $this->getExtension();
1271 $path = $this->repo
->getZoneUrl( 'public', $ext ) . '/archive/' . $this->getHashPath();
1272 if ( $suffix === false ) {
1273 $path = substr( $path, 0, -1 );
1275 $path .= rawurlencode( $suffix );
1281 * Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified
1283 * @param string $archiveName the timestamped name of an archived image
1284 * @param bool|string $suffix if not false, the name of a thumbnail file
1288 function getArchiveThumbUrl( $archiveName, $suffix = false ) {
1289 $this->assertRepoDefined();
1290 $ext = $this->getExtension();
1291 $path = $this->repo
->getZoneUrl( 'thumb', $ext ) . '/archive/' .
1292 $this->getHashPath() . rawurlencode( $archiveName ) . "/";
1293 if ( $suffix === false ) {
1294 $path = substr( $path, 0, -1 );
1296 $path .= rawurlencode( $suffix );
1302 * Get the URL of the zone directory, or a particular file if $suffix is specified
1304 * @param string $zone name of requested zone
1305 * @param bool|string $suffix if not false, the name of a file in zone
1307 * @return string path
1309 function getZoneUrl( $zone, $suffix = false ) {
1310 $this->assertRepoDefined();
1311 $ext = $this->getExtension();
1312 $path = $this->repo
->getZoneUrl( $zone, $ext ) . '/' . $this->getUrlRel();
1313 if ( $suffix !== false ) {
1314 $path .= '/' . rawurlencode( $suffix );
1320 * Get the URL of the thumbnail directory, or a particular file if $suffix is specified
1322 * @param bool|string $suffix if not false, the name of a thumbnail file
1324 * @return string path
1326 function getThumbUrl( $suffix = false ) {
1327 return $this->getZoneUrl( 'thumb', $suffix );
1331 * Get the URL of the transcoded directory, or a particular file if $suffix is specified
1333 * @param bool|string $suffix if not false, the name of a media file
1335 * @return string path
1337 function getTranscodedUrl( $suffix = false ) {
1338 return $this->getZoneUrl( 'transcoded', $suffix );
1342 * Get the public zone virtual URL for a current version source file
1344 * @param bool|string $suffix if not false, the name of a thumbnail file
1348 function getVirtualUrl( $suffix = false ) {
1349 $this->assertRepoDefined();
1350 $path = $this->repo
->getVirtualUrl() . '/public/' . $this->getUrlRel();
1351 if ( $suffix !== false ) {
1352 $path .= '/' . rawurlencode( $suffix );
1358 * Get the public zone virtual URL for an archived version source file
1360 * @param bool|string $suffix if not false, the name of a thumbnail file
1364 function getArchiveVirtualUrl( $suffix = false ) {
1365 $this->assertRepoDefined();
1366 $path = $this->repo
->getVirtualUrl() . '/public/archive/' . $this->getHashPath();
1367 if ( $suffix === false ) {
1368 $path = substr( $path, 0, -1 );
1370 $path .= rawurlencode( $suffix );
1376 * Get the virtual URL for a thumbnail file or directory
1378 * @param bool|string $suffix if not false, the name of a thumbnail file
1382 function getThumbVirtualUrl( $suffix = false ) {
1383 $this->assertRepoDefined();
1384 $path = $this->repo
->getVirtualUrl() . '/thumb/' . $this->getUrlRel();
1385 if ( $suffix !== false ) {
1386 $path .= '/' . rawurlencode( $suffix );
1394 function isHashed() {
1395 $this->assertRepoDefined();
1396 return (bool)$this->repo
->getHashLevels();
1400 * @throws MWException
1402 function readOnlyError() {
1403 throw new MWException( get_class( $this ) . ': write operations are not supported' );
1407 * Record a file upload in the upload log and the image table
1409 * Overridden by LocalFile
1412 * @param $license string
1413 * @param $copyStatus string
1414 * @param $source string
1415 * @param $watch bool
1416 * @param $timestamp string|bool
1417 * @param $user User object or null to use $wgUser
1419 * @throws MWException
1421 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', $watch = false, $timestamp = false, User
$user = null ) {
1422 $this->readOnlyError();
1426 * Move or copy a file to its public location. If a file exists at the
1427 * destination, move it to an archive. Returns a FileRepoStatus object with
1428 * the archive name in the "value" member on success.
1430 * The archive name should be passed through to recordUpload for database
1433 * Options to $options include:
1434 * - headers : name/value map of HTTP headers to use in response to GET/HEAD requests
1436 * @param string $srcPath local filesystem path to the source image
1437 * @param $flags Integer: a bitwise combination of:
1438 * File::DELETE_SOURCE Delete the source file, i.e. move
1440 * @param array $options Optional additional parameters
1441 * @return FileRepoStatus object. On success, the value member contains the
1442 * archive name, or an empty string if it was a new file.
1445 * Overridden by LocalFile
1447 function publish( $srcPath, $flags = 0, array $options = array() ) {
1448 $this->readOnlyError();
1454 function formatMetadata() {
1455 if ( !$this->getHandler() ) {
1458 return $this->getHandler()->formatMetadata( $this, $this->getMetadata() );
1462 * Returns true if the file comes from the local file repository.
1466 function isLocal() {
1467 return $this->repo
&& $this->repo
->isLocal();
1471 * Returns the name of the repository.
1475 function getRepoName() {
1476 return $this->repo ?
$this->repo
->getName() : 'unknown';
1480 * Returns the repository
1482 * @return FileRepo|bool
1484 function getRepo() {
1489 * Returns true if the image is an old version
1499 * Is this file a "deleted" file in a private archive?
1506 function isDeleted( $field ) {
1511 * Return the deletion bitfield
1515 function getVisibility() {
1520 * Was this file ever deleted from the wiki?
1524 function wasDeleted() {
1525 $title = $this->getTitle();
1526 return $title && $title->isDeletedQuick();
1530 * Move file to the new title
1532 * Move current, old version and all thumbnails
1533 * to the new filename. Old file is deleted.
1535 * Cache purging is done; checks for validity
1536 * and logging are caller's responsibility
1538 * @param $target Title New file name
1539 * @return FileRepoStatus object.
1541 function move( $target ) {
1542 $this->readOnlyError();
1546 * Delete all versions of the file.
1548 * Moves the files into an archive directory (or deletes them)
1549 * and removes the database rows.
1551 * Cache purging is done; logging is caller's responsibility.
1553 * @param $reason String
1554 * @param $suppress Boolean: hide content from sysops?
1555 * @return bool on success, false on some kind of failure
1557 * Overridden by LocalFile
1559 function delete( $reason, $suppress = false ) {
1560 $this->readOnlyError();
1564 * Restore all or specified deleted revisions to the given file.
1565 * Permissions and logging are left to the caller.
1567 * May throw database exceptions on error.
1569 * @param array $versions set of record ids of deleted items to restore,
1570 * or empty to restore all revisions.
1571 * @param bool $unsuppress remove restrictions on content upon restoration?
1572 * @return int|bool the number of file revisions restored if successful,
1573 * or false on failure
1575 * Overridden by LocalFile
1577 function restore( $versions = array(), $unsuppress = false ) {
1578 $this->readOnlyError();
1582 * Returns 'true' if this file is a type which supports multiple pages,
1583 * e.g. DJVU or PDF. Note that this may be true even if the file in
1584 * question only has a single page.
1588 function isMultipage() {
1589 return $this->getHandler() && $this->handler
->isMultiPage( $this );
1593 * Returns the number of pages of a multipage document, or false for
1594 * documents which aren't multipage documents
1598 function pageCount() {
1599 if ( !isset( $this->pageCount
) ) {
1600 if ( $this->getHandler() && $this->handler
->isMultiPage( $this ) ) {
1601 $this->pageCount
= $this->handler
->pageCount( $this );
1603 $this->pageCount
= false;
1606 return $this->pageCount
;
1610 * Calculate the height of a thumbnail using the source and destination width
1618 static function scaleHeight( $srcWidth, $srcHeight, $dstWidth ) {
1619 // Exact integer multiply followed by division
1620 if ( $srcWidth == 0 ) {
1623 return round( $srcHeight * $dstWidth / $srcWidth );
1628 * Get an image size array like that returned by getImageSize(), or false if it
1629 * can't be determined.
1631 * @param string $fileName The filename
1634 function getImageSize( $fileName ) {
1635 if ( !$this->getHandler() ) {
1638 return $this->handler
->getImageSize( $this, $fileName );
1642 * Get the URL of the image description page. May return false if it is
1643 * unknown or not applicable.
1647 function getDescriptionUrl() {
1648 if ( $this->repo
) {
1649 return $this->repo
->getDescriptionUrl( $this->getName() );
1656 * Get the HTML text of the description page, if available
1660 function getDescriptionText() {
1661 global $wgMemc, $wgLang;
1662 if ( !$this->repo ||
!$this->repo
->fetchDescription
) {
1665 $renderUrl = $this->repo
->getDescriptionRenderUrl( $this->getName(), $wgLang->getCode() );
1667 if ( $this->repo
->descriptionCacheExpiry
> 0 ) {
1668 wfDebug( "Attempting to get the description from cache..." );
1669 $key = $this->repo
->getLocalCacheKey( 'RemoteFileDescription', 'url', $wgLang->getCode(),
1671 $obj = $wgMemc->get( $key );
1673 wfDebug( "success!\n" );
1676 wfDebug( "miss\n" );
1678 wfDebug( "Fetching shared description from $renderUrl\n" );
1679 $res = Http
::get( $renderUrl );
1680 if ( $res && $this->repo
->descriptionCacheExpiry
> 0 ) {
1681 $wgMemc->set( $key, $res, $this->repo
->descriptionCacheExpiry
);
1690 * Get description of file revision
1693 * @param $audience Integer: one of:
1694 * File::FOR_PUBLIC to be displayed to all users
1695 * File::FOR_THIS_USER to be displayed to the given user
1696 * File::RAW get the description regardless of permissions
1697 * @param $user User object to check for, only if FOR_THIS_USER is passed
1698 * to the $audience parameter
1701 function getDescription( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
1706 * Get the 14-character timestamp of the file upload
1708 * @return string|bool TS_MW timestamp or false on failure
1710 function getTimestamp() {
1711 $this->assertRepoDefined();
1712 return $this->repo
->getFileTimestamp( $this->getPath() );
1716 * Get the SHA-1 base 36 hash of the file
1720 function getSha1() {
1721 $this->assertRepoDefined();
1722 return $this->repo
->getFileSha1( $this->getPath() );
1726 * Get the deletion archive key, "<sha1>.<ext>"
1730 function getStorageKey() {
1731 $hash = $this->getSha1();
1735 $ext = $this->getExtension();
1736 $dotExt = $ext === '' ?
'' : ".$ext";
1737 return $hash . $dotExt;
1741 * Determine if the current user is allowed to view a particular
1742 * field of this file, if it's marked as deleted.
1744 * @param $field Integer
1745 * @param $user User object to check, or null to use $wgUser
1748 function userCan( $field, User
$user = null ) {
1753 * Get an associative array containing information about a file in the local filesystem.
1755 * @param string $path absolute local filesystem path
1756 * @param $ext Mixed: the file extension, or true to extract it from the filename.
1757 * Set it to false to ignore the extension.
1760 * @deprecated since 1.19
1762 static function getPropsFromPath( $path, $ext = true ) {
1763 wfDebug( __METHOD__
. ": Getting file info for $path\n" );
1764 wfDeprecated( __METHOD__
, '1.19' );
1766 $fsFile = new FSFile( $path );
1767 return $fsFile->getProps();
1771 * Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
1772 * encoding, zero padded to 31 digits.
1774 * 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
1777 * @param $path string
1779 * @return bool|string False on failure
1780 * @deprecated since 1.19
1782 static function sha1Base36( $path ) {
1783 wfDeprecated( __METHOD__
, '1.19' );
1785 $fsFile = new FSFile( $path );
1786 return $fsFile->getSha1Base36();
1790 * @return Array HTTP header name/value map to use for HEAD/GET request responses
1792 function getStreamHeaders() {
1793 $handler = $this->getHandler();
1795 return $handler->getStreamHeaders( $this->getMetadata() );
1804 function getLongDesc() {
1805 $handler = $this->getHandler();
1807 return $handler->getLongDesc( $this );
1809 return MediaHandler
::getGeneralLongDesc( $this );
1816 function getShortDesc() {
1817 $handler = $this->getHandler();
1819 return $handler->getShortDesc( $this );
1821 return MediaHandler
::getGeneralShortDesc( $this );
1828 function getDimensionsString() {
1829 $handler = $this->getHandler();
1831 return $handler->getDimensionsString( $this );
1840 function getRedirected() {
1841 return $this->redirected
;
1845 * @return Title|null
1847 function getRedirectedTitle() {
1848 if ( $this->redirected
) {
1849 if ( !$this->redirectTitle
) {
1850 $this->redirectTitle
= Title
::makeTitle( NS_FILE
, $this->redirected
);
1852 return $this->redirectTitle
;
1861 function redirectedFrom( $from ) {
1862 $this->redirected
= $from;
1868 function isMissing() {
1873 * Check if this file object is small and can be cached
1876 public function isCacheable() {
1881 * Assert that $this->repo is set to a valid FileRepo instance
1882 * @throws MWException
1884 protected function assertRepoDefined() {
1885 if ( !( $this->repo
instanceof $this->repoClass
) ) {
1886 throw new MWException( "A {$this->repoClass} object is not set for this File.\n" );
1891 * Assert that $this->title is set to a Title
1892 * @throws MWException
1894 protected function assertTitleDefined() {
1895 if ( !( $this->title
instanceof Title
) ) {
1896 throw new MWException( "A Title object is not set for this File.\n" );