186 # Normalize NS_MEDIA -> NS_FILE
189 # Sanity check the title namespace
194 # Convert strings to Title objects
197 if ( !
$ret && $exception !==
false ) {
198 throw new MWException(
"`$title` is not a valid file title." );
205 $function = [ $this,
'get' . ucfirst(
$name ) ];
206 if ( !is_callable( $function ) ) {
209 $this->
$name = call_user_func( $function );
231 if ( isset( $squish[$lower] ) ) {
232 return $squish[$lower];
233 } elseif ( preg_match(
'/^[0-9a-z]+$/', $lower ) ) {
250 $n = strrpos( $new,
'.' );
251 $newExt = self::normalizeExtension( $n ? substr( $new, $n + 1 ) :
'' );
254 return $mimeMagic->isMatchingExtension( $newExt, $oldMime );
273 if ( strpos(
$mime,
'/' ) !==
false ) {
274 return explode(
'/',
$mime, 2 );
276 return [
$mime,
'unknown' ];
297 if ( !isset( $this->
name ) ) {
299 $this->
name = $this->repo->getNameFromTitle( $this->
title );
311 if ( !isset( $this->extension ) ) {
312 $n = strrpos( $this->
getName(),
'.' );
313 $this->extension = self::normalizeExtension(
314 $n ? substr( $this->
getName(), $n + 1 ) :
'' );
335 if ( $this->redirected ) {
348 if ( !isset( $this->url ) ) {
351 $this->url = $this->repo->getZoneUrl(
'public',
$ext ) .
'/' . $this->
getUrlRel();
393 wfDebug( __METHOD__ .
': supposed to render ' . $this->
getName() .
396 return $this->
getUrl(); # hm...
return NULL?
417 if ( !isset( $this->path ) ) {
419 $this->path = $this->repo->getZonePath(
'public' ) .
'/' . $this->
getRel();
434 if ( !isset( $this->fsFile ) ) {
436 $this->fsFile = $this->repo->getLocalReference( $this->
getPath() );
440 'media.thumbnail.generate.fetchoriginal', 1000 * $statTiming );
442 if ( !$this->fsFile ) {
443 $this->fsFile =
false;
447 return ( $this->fsFile )
448 ? $this->fsFile->getPath()
494 if ( $imageWidth ===
false ) {
498 if ( $desiredWidth > $imageWidth ) {
502 if ( !$wgThumbnailBuckets ) {
508 sort( $sortedBuckets );
510 foreach ( $sortedBuckets
as $bucket ) {
511 if ( $bucket >= $imageWidth ) {
515 if ( $bucket - $wgThumbnailMinimumBucketDistance > $desiredWidth ) {
668 if ( !is_array( $metadata ) ) {
707 return 'unknown/unknown';
819 # wfDebug( "LocalFile::isSafeFile: type= $type, mime= $mime\n" );
822 return false; # unknown
type,
not trusted
824 if ( in_array(
$type, $wgTrustedMediaFormats ) ) {
828 if (
$mime ===
"unknown/unknown" ) {
829 return false; # unknown
type,
not trusted
831 if ( in_array(
$mime, $wgTrustedMediaFormats ) ) {
852 # this could be implemented to check a flag in the database,
853 # look for signatures, etc
877 return $this->
getPath() && $this->repo->fileExists( $this->path );
894 if ( !isset( $this->transformScript ) ) {
895 $this->transformScript =
false;
897 $script = $this->repo->getThumbScriptUrl();
916 $page = isset( $hp[
'page'] ) ? $hp[
'page'] :
false;
921 $hp[
'width'] = $width;
923 unset( $hp[
'height'] );
938 $name = ( $this->repo && !(
$flags & self::THUMB_FULL_NAME ) )
939 ? $this->repo->nameForThumb( $this->
getName() )
961 if ( $this->repo->supportsSha1URLs() ) {
962 $thumbName .=
'-' . $this->
getSha1() .
'.' . $thumbExt;
964 $thumbName .=
'-' .
$name;
967 $thumbName .=
".$thumbExt";
992 $params = [
'width' => $width ];
993 if ( $height != -1 ) {
997 if ( !$thumb || $thumb->isError() ) {
1001 return $thumb->getUrl();
1017 if (
$handler && $wgIgnoreImageErrors && !(
$flags & self::RENDER_NOW ) ) {
1044 if ( $descriptionUrl ) {
1050 if ( $script && !(
$flags & self::RENDER_NOW ) ) {
1061 $thumbName = $this->
thumbName( $normalisedParams );
1065 if ( $this->repo ) {
1067 if ( $this->repo->canTransformVia404() && !(
$flags & self::RENDER_NOW ) ) {
1075 wfDebug( __METHOD__ .
": Doing stat for $thumbPath\n" );
1076 if ( !(
$flags & self::RENDER_FORCE ) && $this->repo->fileExists( $thumbPath ) ) {
1077 $timestamp = $this->repo->getFileTimestamp( $thumbPath );
1083 $thumb->setStoragePath( $thumbPath );
1086 } elseif (
$flags & self::RENDER_FORCE ) {
1087 wfDebug( __METHOD__ .
" forcing rendering per flag File::RENDER_FORCE\n" );
1092 if ( $this->repo->getReadOnlyReason() !==
false ) {
1107 return is_object( $thumb ) ? $thumb :
false;
1124 $normalisedParams = $transformParams;
1127 $thumbName = $this->
thumbName( $normalisedParams );
1131 $tmpThumbPath = $tmpFile->getPath();
1141 $tmpFile->bind( $thumb );
1143 $statTiming = microtime(
true ) -
$starttime;
1144 $stats->timing(
'media.thumbnail.generate.transform', 1000 * $statTiming );
1148 } elseif ( $thumb->isError() ) {
1150 $this->lastError = $thumb->toText();
1152 if ( $wgIgnoreImageErrors && !(
$flags & self::RENDER_NOW ) ) {
1155 } elseif ( $this->repo && $thumb->hasFile() && !$thumb->fileIsSource() ) {
1161 $status = $this->repo->quickImport( $tmpThumbPath, $thumbPath, $disposition );
1163 $thumb->setStoragePath( $thumbPath );
1168 $statTiming = microtime(
true ) -
$starttime;
1169 $stats->timing(
'media.thumbnail.generate.store', 1000 * $statTiming );
1172 Hooks::run(
'FileTransformed', [ $this, $thumb, $tmpThumbPath, $thumbPath ] );
1186 || !isset(
$params[
'physicalWidth'] )
1187 || !isset(
$params[
'physicalHeight'] )
1194 if ( !$bucket || $bucket ==
$params[
'physicalWidth'] ) {
1200 if ( $this->repo->fileExists( $bucketPath ) ) {
1206 $params[
'physicalWidth'] = $bucket;
1219 $buckettime = microtime(
true ) -
$starttime;
1221 if ( !$thumb || $thumb->isError() ) {
1225 $this->tmpBucketedThumbCache[$bucket] = $tmpFile->getPath();
1228 $tmpFile->bind( $this );
1231 'media.thumbnail.generate.bucket', 1000 * $buckettime );
1244 && isset(
$params[
'physicalWidth'] )
1254 if ( isset( $this->tmpBucketedThumbCache[$bucket] ) ) {
1255 $tmpPath = $this->tmpBucketedThumbCache[$bucket];
1257 if ( file_exists( $tmpPath ) ) {
1261 'height' => $bucketHeight
1268 if ( $this->repo->fileExists( $bucketPath ) ) {
1269 $fsFile = $this->repo->getLocalReference( $bucketPath );
1275 'height' => $bucketHeight
1283 if ( $this->
getSize() >= 1e7 ) {
1287 'doWork' =>
function ()
use ( $that ) {
1288 return $that->getLocalRefPath();
1321 return $this->
thumbName( [
'physicalWidth' => $bucket ] );
1342 if ( $thumbExt !=
'' && $thumbExt !== $this->
getExtension() ) {
1343 $fileName .=
".$thumbExt";
1365 if ( !isset( $this->
handler ) ) {
1379 $assetsPath =
"$wgResourceBasePath/resources/assets/file-type-icons/";
1380 $assetsDirectory =
"$IP/resources/assets/file-type-icons/";
1382 $try = [
'fileicon-' . $this->
getExtension() .
'.png',
'fileicon.png' ];
1383 foreach ( $try
as $icon ) {
1384 if ( file_exists( $assetsDirectory . $icon ) ) {
1385 $params = [
'width' => 120,
'height' => 120 ];
1497 if ( !isset( $this->hashPath ) ) {
1499 $this->hashPath = $this->repo->getHashPath( $this->
getName() );
1524 if ( $suffix ===
false ) {
1542 if ( $suffix !==
false ) {
1543 $path .=
'/' . $suffix;
1569 if ( $suffix ===
false ) {
1587 return $this->repo->getZonePath(
'public' ) .
'/' . $this->
getArchiveRel( $suffix );
1600 return $this->repo->getZonePath(
'thumb' ) .
'/' .
1613 return $this->repo->getZonePath(
'thumb' ) .
'/' . $this->
getThumbRel( $suffix );
1625 return $this->repo->getZonePath(
'transcoded' ) .
'/' . $this->
getThumbRel( $suffix );
1638 if ( $suffix ===
false ) {
1641 $path .= rawurlencode( $suffix );
1657 $path = $this->repo->getZoneUrl(
'thumb',
$ext ) .
'/archive/' .
1658 $this->
getHashPath() . rawurlencode( $archiveName ) .
"/";
1659 if ( $suffix ===
false ) {
1662 $path .= rawurlencode( $suffix );
1679 if ( $suffix !==
false ) {
1680 $path .=
'/' . rawurlencode( $suffix );
1693 return $this->
getZoneUrl(
'thumb', $suffix );
1703 return $this->
getZoneUrl(
'transcoded', $suffix );
1714 $path = $this->repo->getVirtualUrl() .
'/public/' . $this->
getUrlRel();
1715 if ( $suffix !==
false ) {
1716 $path .=
'/' . rawurlencode( $suffix );
1730 $path = $this->repo->getVirtualUrl() .
'/public/archive/' . $this->
getHashPath();
1731 if ( $suffix ===
false ) {
1734 $path .= rawurlencode( $suffix );
1748 $path = $this->repo->getVirtualUrl() .
'/thumb/' . $this->
getUrlRel();
1749 if ( $suffix !==
false ) {
1750 $path .=
'/' . rawurlencode( $suffix );
1762 return (
bool)$this->repo->getHashLevels();
1769 throw new MWException( get_class( $this ) .
': write operations are not supported' );
1836 return $this->repo && $this->repo->isLocal();
1845 return $this->repo ? $this->repo->getName() :
'unknown';
1929 function delete( $reason, $suppress =
false,
$user = null ) {
1947 function restore( $versions = [], $unsuppress =
false ) {
1991 if ( $srcWidth == 0 ) {
1994 return round( $srcHeight * $dstWidth / $srcWidth );
2013 return $this->
getHandler()->getImageSize( $this, $filePath );
2023 if ( $this->repo ) {
2024 return $this->repo->getDescriptionUrl( $this->
getName() );
2039 if ( !$this->repo || !$this->repo->fetchDescription ) {
2045 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->
getName(),
$lang->getCode() );
2048 $key = $this->repo->getLocalCacheKey(
2049 'RemoteFileDescription',
2055 return $cache->getWithSetCallback(
2057 $this->repo->descriptionCacheExpiry ?: $cache::TTL_UNCACHEABLE,
2059 wfDebug(
"Fetching shared description from $renderUrl\n" );
2097 return $this->repo->getFileTimestamp( $this->
getPath() );
2119 return $this->repo->getFileSha1( $this->
getPath() );
2133 $dotExt =
$ext ===
'' ?
'' :
".$ext";
2135 return $hash . $dotExt;
2209 if ( $this->redirected ) {
2210 if ( !$this->redirectTitle ) {
2225 $this->redirected =
$from;
2248 if ( !( $this->repo instanceof $this->repoClass ) ) {
2249 throw new MWException(
"A {$this->repoClass} object is not set for this File.\n" );
2259 throw new MWException(
"A Title object is not set for this File.\n" );
getArchivePath($suffix=false)
Get the path of the archived file.
getArchiveThumbPath($archiveName, $suffix=false)
Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified.
getLocalRefPath()
Get an FS copy or original of this file and return the path.
static getMainWANInstance()
Get the main WAN cache object.
static normalizeTitle($title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
convertMetadataVersion($metadata, $version)
get versioned metadata
transformErrorOutput($thumbPath, $thumbUrl, $params, $flags)
Return either a MediaTransformError or placeholder thumbnail (if $wgIgnoreImageErrors) ...
the array() calling protocol came about after MediaWiki 1.4rc1.
getRepoName()
Returns the name of the repository.
nextHistoryLine()
Return the history of this file, line by line.
static splitMime($mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
getPath()
Returns the file system path.
assertTitleDefined()
Assert that $this->title is set to a Title.
getUnscaledThumb($handlerParams=[])
Get a ThumbnailImage which is the same size as the source.
userCan($field, User $user=null)
Determine if the current user is allowed to view a particular field of this file, if it's marked as d...
processing should stop and the error should be shown to the user * false
getThumbnailSource($params)
Returns the most appropriate source image for the thumbnail, given a target thumbnail size...
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
getTranscodedPath($suffix=false)
Get the path of the transcoded directory, or a particular file if $suffix is specified.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static singleton()
Get an instance of this class.
FSFile bool $fsFile
False if undefined.
execute($skipcache=false)
Get the result of the work (whatever it is), or the result of the error() function.
getAvailableLanguages()
Gives a (possibly empty) list of languages to render the file in.
iconThumb()
Get a ThumbnailImage representing a file type icon.
getArchiveVirtualUrl($suffix=false)
Get the public zone virtual URL for an archived version source file.
if(!isset($args[0])) $lang
isSafeFile()
Determines if this media file is in a format that is unlikely to contain viruses or malicious content...
getThumbPath($suffix=false)
Get the path of the thumbnail directory, or a particular file if $suffix is specified.
getTranscodedUrl($suffix=false)
Get the URL of the transcoded directory, or a particular file if $suffix is specified.
const TTL_UNCACHEABLE
Idiom for getWithSetCallback() callbacks to avoid calling set()
string $extension
File extension.
getStorageKey()
Get the deletion archive key, ".".
getCommonMetaArray()
Like getMetadata but returns a handler independent array of common values.
publish($src, $flags=0, array $options=[])
Move or copy a file to its public location.
getDescriptionUrl()
Get the URL of the image description page.
$wgThumbnailEpoch
If rendered thumbnail files are older than this timestamp, they will be rerendered on demand as if th...
getArchiveThumbUrl($archiveName, $suffix=false)
Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified.
if($ext== 'php'||$ext== 'php5') $mime
canRender()
Checks if the output of transform() for this file is likely to be valid.
getThumbnailBucket($desiredWidth, $page=1)
Return the smallest bucket from $wgThumbnailBuckets which is at least $wgThumbnailMinimumBucketDistan...
getArchiveThumbRel($archiveName, $suffix=false)
Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory or a speci...
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
getName()
Return the name of this file.
string $name
The name of a file from its title object.
getRepo()
Returns the repository.
isLocal()
Returns true if the file comes from the local file repository.
restore($versions=[], $unsuppress=false)
Restore all or specified deleted revisions to the given file.
formatMetadata($context=false)
getThumbVirtualUrl($suffix=false)
Get the virtual URL for a thumbnail file or directory.
when a variable name is used in a it is silently declared as a new local masking the global
isOld()
Returns true if the image is an old version STUB.
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
generateBucketsIfNeeded($params, $flags=0)
Generates chained bucketed thumbnails if needed.
getCanRender()
Accessor for __get()
when a variable name is used in a function
static extensionFromPath($path, $case= 'lowercase')
Get the final extension from a storage or FS path.
getTitle()
Return the associated title object.
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
bool $isSafeFile
Whether this media file is in a format that is unlikely to contain viruses or malicious content...
static normalizeExtension($extension)
Normalize a file extension to the common form, making it lowercase and checking some synonyms...
purgeEverything()
Purge metadata and all affected pages when the file is created, deleted, or majorly updated...
static factory($prefix, $extension= '', $tmpDirectory=null)
Make a new temporary file on the file system.
migrateThumbFile($thumbName)
Hook into transform() to allow migration of thumbnail files STUB Overridden by LocalFile.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
getThumbRel($suffix=false)
Get the path, relative to the thumbnail zone root, of the thumbnail directory or a particular file if...
getThumbnails()
Get all thumbnail names previously generated for this file STUB Overridden by LocalFile.
getLength()
Get the duration of a media file in seconds.
string $hashPath
Relative path including trailing slash.
getDescriptionText($lang=false)
Get the HTML text of the description page, if available.
getPath()
Return the storage path to the file.
const RENDER_NOW
Force rendering in the current process.
move($target)
Move file to the new title.
wasDeleted()
Was this file ever deleted from the wiki?
Convenience class for dealing with PoolCounters using callbacks.
wfTempDir()
Tries to get the system directory for temporary files.
static getMain()
Static methods.
mustRender()
Return true if the file is of a type that can't be directly rendered by typical browsers and needs to...
isTrustedFile()
Returns true if the file is flagged as trusted.
getSize()
Return the size of the image file, in bytes Overridden by LocalFile, UnregisteredLocalFile STUB...
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
isDeleted($field)
Is this file a "deleted" file in a private archive? STUB.
isVectorized()
Return true if the file is vectorized.
Class to invalidate the HTML cache of all the pages linking to a given title.
isMultipage()
Returns 'true' if this file is a type which supports multiple pages, e.g.
getHandler()
Get a MediaHandler instance for this file.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"<
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
generateAndSaveThumb($tmpFile, $transformParams, $flags)
Generates a thumbnail according to the given parameters and saves it to storage.
transform($params, $flags=0)
Transform a media file.
$wgThumbnailBuckets
When defined, is an array of image widths used as buckets for thumbnail generation.
getRel()
Get the path of the file relative to the public zone root.
getMetadata()
Get handler-specific metadata Overridden by LocalFile, UnregisteredLocalFile STUB.
purgeCache($options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
string $lastError
Text of last error.
Media transform output for images.
resetHistory()
Reset the history pointer to the first element of the history.
canAnimateThumbIfAppropriate()
Will the thumbnail be animated if one would expect it to be.
getArchiveRel($suffix=false)
Get the path of an archived file relative to the public zone root.
invalidateCache($purgeTime=null)
Updates page_touched for this page; called from LinksUpdate.php.
getLastError()
Get last thumbnailing error.
allowInlineDisplay()
Alias for canRender()
$wgResourceBasePath
The default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
array $tmpBucketedThumbCache
Cache of tmp filepaths pointing to generated bucket thumbnails, keyed by width.
getSha1()
Get the SHA-1 base 36 hash of the file.
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getFullUrl()
Return a fully-qualified URL to the file.
getVirtualUrl($suffix=false)
Get the public zone virtual URL for a current version source file.
getExtension()
Get the file extension, e.g.
string $redirected
Main part of the title, with underscores (Title::getDBkey)
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
$wgThumbnailMinimumBucketDistance
When using thumbnail buckets as defined above, this sets the minimum distance to the bucket above the...
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
static compare(File $a, File $b)
Callback for usort() to do file sorts by name.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array change it to the message you want to define you are encouraged to submit patches to MediaWiki s core to add new MIME types to mime types $mimeMagic
getMediaType()
Return the type of the media in the file.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
isVisible()
Returns true if file exists in the repository and can be included in a page.
getUrlRel()
Get urlencoded path of the file relative to the public zone root.
getBitDepth()
Return the bit depth of the file Overridden by LocalFile STUB.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
getImageSize($filePath)
Get an image size array like that returned by getImageSize(), or false if it can't be determined...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor'$rcid is used in generating this variable which contains information about the new such as the revision s whether the revision was marked as a minor edit or not
generateThumbName($name, $params)
Generate a thumbnail file name from a name and specified parameters.
getHeight($page=1)
Return the height of the image.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
string $transformScript
URL of transformscript (for example thumb.php)
isExpensiveToThumbnail()
True if creating thumbnails from the file is large or otherwise resource-intensive.
recordUpload($oldver, $desc, $license= '', $copyStatus= '', $source= '', $watch=false, $timestamp=false, User $user=null)
Record a file upload in the upload log and the image table STUB Overridden by LocalFile.
getIsSafeFileUncached()
Uncached accessor.
string $pageCount
Number of pages of a multipage document, or false for documents which aren't multipage documents...
getDescriptionTouched()
Returns the timestamp (in TS_MW format) of the last change of the description page.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static checkExtensionCompatibility(File $old, $new)
Checks if file extensions are compatible.
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
getWidth($page=1)
Return the width of the image.
getTimestamp()
Get the 14-character timestamp of the file upload.
getDefaultRenderLanguage()
In files that support multiple language, what is the default language to use if none specified...
string $url
The URL corresponding to one of the four basic zones.
getVisibility()
Return the deletion bitfield STUB.
exists()
Returns true if file exists in the repository.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
static scaleHeight($srcWidth, $srcHeight, $dstWidth)
Calculate the height of a thumbnail using the source and destination width.
__construct($title, $repo)
Call this constructor from child classes.
getUrl()
Return the URL of the file.
getOriginalTitle()
Return the title used to find this file.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Interface for database access objects.
isDeletedQuick()
Is there a version of this page in the deletion archive?
getThumbUrl($suffix=false)
Get the URL of the thumbnail directory, or a particular file if $suffix is specified.
getBucketThumbName($bucket)
Returns the name of the thumb for a given bucket.
static makeContentDisposition($type, $filename= '')
Build a Content-Disposition header value per RFC 6266.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
bool $canRender
Whether the output of transform() for this file is likely to be valid.
see documentation in includes Linker php for Linker::makeImageLink & $handlerParams
isCacheable()
Check if this file object is small and can be cached.
createThumb($width, $height=-1)
Create a thumbnail of the image having the specified width/height.
$wgTrustedMediaFormats
list of trusted media-types and MIME types.
getThumbDisposition($thumbName, $dispositionType= 'inline')
getIsSafeFile()
Accessor for __get()
load($flags=0)
Load any lazy-loaded file object fields from source.
const RENDER_FORCE
Force rendering even if thumbnail already exist and using RENDER_NOW I.e.
pageCount()
Returns the number of pages of a multipage document, or false for documents which aren't multipage do...
upgradeRow()
Upgrade the database row if there is one Called by ImagePage STUB.
static get($url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
string $path
The storage path corresponding to one of the zones.
Implements some public methods and some protected utility functions which are required by multiple ch...
getArchiveUrl($suffix=false)
Get the URL of the archive directory, or a particular file if $suffix is specified.
getUser($type= 'text')
Returns ID or name of user who uploaded the file STUB.
$wgIgnoreImageErrors
If set, inline scaled images will still produce "
" tags ready for output instead of showing an e...
getDescription($audience=self::FOR_PUBLIC, User $user=null)
Get description of file revision STUB.
string $repoClass
Required Repository class type.
thumbName($params, $flags=0)
Return the file name of a thumbnail with the specified parameters.
isTransformedLocally()
Whether the thumbnails created on the same server as this code is running.
getMimeType()
Returns the MIME type of the file.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getZoneUrl($zone, $suffix=false)
Get the URL of the zone directory, or a particular file if $suffix is specified.
purgeDescription()
Purge the file description page, but don't go after pages using the file.
getHistory($limit=null, $start=null, $end=null, $inc=true)
Return a fragment of the history of file.
purgeSquid()
Purge all applicable CDN URLs.
getBucketThumbPath($bucket)
Returns the repo path of the thumb for a given bucket.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
makeTransformTmpFile($thumbPath)
Creates a temp FS file with the same extension and the thumbnail.