Go to the documentation of this file.
187 # Normalize NS_MEDIA -> NS_FILE
190 # Sanity check the title namespace
195 # Convert strings to Title objects
198 if ( !
$ret && $exception !==
false ) {
199 throw new MWException(
"`$title` is not a valid file title." );
206 $function = [ $this,
'get' . ucfirst(
$name ) ];
207 if ( !is_callable( $function ) ) {
210 $this->
$name = call_user_func( $function );
232 if ( isset( $squish[$lower] ) ) {
233 return $squish[$lower];
234 } elseif ( preg_match(
'/^[0-9a-z]+$/', $lower ) ) {
251 $n = strrpos( $new,
'.' );
255 return $mimeMagic->isMatchingExtension( $newExt, $oldMime );
274 if ( strpos(
$mime,
'/' ) !==
false ) {
275 return explode(
'/',
$mime, 2 );
277 return [
$mime,
'unknown' ];
298 if ( !isset( $this->
name ) ) {
300 $this->
name = $this->repo->getNameFromTitle( $this->
title );
312 if ( !isset( $this->extension ) ) {
313 $n = strrpos( $this->
getName(),
'.' );
315 $n ? substr( $this->
getName(), $n + 1 ) :
'' );
336 if ( $this->redirected ) {
349 if ( !isset( $this->url ) ) {
352 $this->url = $this->repo->getZoneUrl(
'public',
$ext ) .
'/' . $this->
getUrlRel();
394 wfDebug( __METHOD__ .
': supposed to render ' . $this->
getName() .
397 return $this->
getUrl(); # hm...
return NULL?
418 if ( !isset( $this->path ) ) {
420 $this->path = $this->repo->getZonePath(
'public' ) .
'/' . $this->
getRel();
435 if ( !isset( $this->fsFile ) ) {
437 $this->fsFile = $this->repo->getLocalReference( $this->
getPath() );
440 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
441 'media.thumbnail.generate.fetchoriginal', 1000 * $statTiming );
443 if ( !$this->fsFile ) {
444 $this->fsFile =
false;
448 return ( $this->fsFile )
449 ? $this->fsFile->getPath()
493 $imageWidth = $this->
getWidth( $page );
495 if ( $imageWidth ===
false ) {
499 if ( $desiredWidth > $imageWidth ) {
509 sort( $sortedBuckets );
511 foreach ( $sortedBuckets
as $bucket ) {
512 if ( $bucket >= $imageWidth ) {
669 if ( !is_array( $metadata ) ) {
708 return 'unknown/unknown';
820 # wfDebug( "LocalFile::isSafeFile: type= $type, mime= $mime\n" );
823 return false; # unknown
type,
not trusted
829 if (
$mime ===
"unknown/unknown" ) {
830 return false; # unknown
type,
not trusted
853 # this could be implemented to check a flag in the database,
854 # look for signatures, etc
878 return $this->
getPath() && $this->repo->fileExists( $this->path );
895 if ( !isset( $this->transformScript ) ) {
896 $this->transformScript =
false;
898 $script = $this->repo->getThumbScriptUrl();
917 $page = isset( $hp[
'page'] ) ? $hp[
'page'] :
false;
922 $hp[
'width'] = $width;
924 unset( $hp[
'height'] );
940 ? $this->repo->nameForThumb( $this->
getName() )
962 if ( $this->repo->supportsSha1URLs() ) {
963 $thumbName .=
'-' . $this->
getSha1() .
'.' . $thumbExt;
965 $thumbName .=
'-' .
$name;
968 $thumbName .=
".$thumbExt";
993 $params = [
'width' => $width ];
994 if ( $height != -1 ) {
998 if ( !$thumb || $thumb->isError() ) {
1002 return $thumb->getUrl();
1018 if (
$handler && $wgIgnoreImageErrors && !(
$flags & self::RENDER_NOW ) ) {
1045 if ( $descriptionUrl ) {
1051 if ( $script && !(
$flags & self::RENDER_NOW ) ) {
1062 $thumbName = $this->
thumbName( $normalisedParams );
1066 if ( $this->repo ) {
1076 wfDebug( __METHOD__ .
": Doing stat for $thumbPath\n" );
1077 if ( !(
$flags & self::RENDER_FORCE ) && $this->repo->fileExists( $thumbPath ) ) {
1078 $timestamp = $this->repo->getFileTimestamp( $thumbPath );
1084 $thumb->setStoragePath( $thumbPath );
1087 } elseif (
$flags & self::RENDER_FORCE ) {
1088 wfDebug( __METHOD__ .
" forcing rendering per flag File::RENDER_FORCE\n" );
1093 if ( $this->repo->getReadOnlyReason() !==
false ) {
1108 return is_object( $thumb ) ? $thumb :
false;
1121 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1125 $normalisedParams = $transformParams;
1128 $thumbName = $this->
thumbName( $normalisedParams );
1132 $tmpThumbPath = $tmpFile->getPath();
1142 $tmpFile->bind( $thumb );
1144 $statTiming = microtime(
true ) -
$starttime;
1145 $stats->timing(
'media.thumbnail.generate.transform', 1000 * $statTiming );
1149 } elseif ( $thumb->isError() ) {
1151 $this->lastError = $thumb->toText();
1156 } elseif ( $this->repo && $thumb->hasFile() && !$thumb->fileIsSource() ) {
1162 $status = $this->repo->quickImport( $tmpThumbPath, $thumbPath, $disposition );
1164 $thumb->setStoragePath( $thumbPath );
1169 $statTiming = microtime(
true ) -
$starttime;
1170 $stats->timing(
'media.thumbnail.generate.store', 1000 * $statTiming );
1173 Hooks::run(
'FileTransformed', [ $this, $thumb, $tmpThumbPath, $thumbPath ] );
1187 || !isset(
$params[
'physicalWidth'] )
1188 || !isset(
$params[
'physicalHeight'] )
1195 if ( !$bucket || $bucket ==
$params[
'physicalWidth'] ) {
1201 if ( $this->repo->fileExists( $bucketPath ) ) {
1207 $params[
'physicalWidth'] = $bucket;
1220 $buckettime = microtime(
true ) -
$starttime;
1222 if ( !$thumb || $thumb->isError() ) {
1226 $this->tmpBucketedThumbCache[$bucket] = $tmpFile->getPath();
1229 $tmpFile->bind( $this );
1231 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
1232 'media.thumbnail.generate.bucket', 1000 * $buckettime );
1245 && isset(
$params[
'physicalWidth'] )
1255 if ( isset( $this->tmpBucketedThumbCache[$bucket] ) ) {
1256 $tmpPath = $this->tmpBucketedThumbCache[$bucket];
1258 if ( file_exists( $tmpPath ) ) {
1262 'height' => $bucketHeight
1269 if ( $this->repo->fileExists( $bucketPath ) ) {
1270 $fsFile = $this->repo->getLocalReference( $bucketPath );
1276 'height' => $bucketHeight
1284 if ( $this->
getSize() >= 1e7 ) {
1287 'doWork' =>
function () {
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 ];
1463 function getHistory( $limit =
null, $start =
null, $end =
null, $inc =
true ) {
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();
1788 $watch =
false, $timestamp =
false,
User $user =
null
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 (
int)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;
2167 if ( is_string( $metadata ) ) {
2168 $metadata = MediaWiki\quietCall(
'unserialize', $metadata );
2171 if ( !is_array( $metadata ) ) {
2228 if ( $this->redirected ) {
2229 if ( !$this->redirectTitle ) {
2244 $this->redirected = $from;
2267 if ( !( $this->repo instanceof $this->repoClass ) ) {
2268 throw new MWException(
"A {$this->repoClass} object is not set for this File.\n" );
2278 throw new MWException(
"A Title object is not set for this File.\n" );
getExtension()
Get the file extension, e.g.
when a variable name is used in a function
wasDeleted()
Was this file ever deleted from the wiki?
getDescriptionTouched()
Returns the timestamp (in TS_MW format) of the last change of the description page.
getPath()
Return the storage path to the file.
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 account $user
Media transform output for images.
static checkExtensionCompatibility(File $old, $new)
Checks if file extensions are compatible.
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
canAnimateThumbIfAppropriate()
Will the thumbnail be animated if one would expect it to be.
getArchiveThumbPath( $archiveName, $suffix=false)
Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified.
const TTL_UNCACHEABLE
Idiom for getWithSetCallback() callbacks to avoid calling set()
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
processing should stop and the error should be shown to the user * false
getHeight( $page=1)
Return the height of the image.
array $tmpBucketedThumbCache
Cache of tmp filepaths pointing to generated bucket thumbnails, keyed by width.
getDescriptionShortUrl()
Get short description URL for a files based on the page ID.
getBitDepth()
Return the bit depth of the file Overridden by LocalFile STUB.
getUrlRel()
Get urlencoded path of the file relative to the public zone root.
migrateThumbFile( $thumbName)
Hook into transform() to allow migration of thumbnail files STUB Overridden by LocalFile.
isMultipage()
Returns 'true' if this file is a type which supports multiple pages, e.g.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
getFullUrl()
Return a fully-qualified URL to the file.
getZoneUrl( $zone, $suffix=false)
Get the URL of the zone directory, or a particular file if $suffix is specified.
getMetadata()
Get handler-specific metadata Overridden by LocalFile, UnregisteredLocalFile STUB.
if(!isset( $args[0])) $lang
getIsSafeFileUncached()
Uncached accessor.
string $transformScript
URL of transformscript (for example thumb.php)
getRel()
Get the path of the file relative to the public zone root.
isExpensiveToThumbnail()
True if creating thumbnails from the file is large or otherwise resource-intensive.
getOriginalTitle()
Return the title used to find this file.
getLastError()
Get last thumbnailing error.
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, 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. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
getTimestamp()
Get the 14-character timestamp of the file upload.
getSha1()
Get the SHA-1 base 36 hash of the file.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
convertMetadataVersion( $metadata, $version)
get versioned metadata
getUser( $type='text')
Returns ID or name of user who uploaded the file STUB.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
static extensionFromPath( $path, $case='lowercase')
Get the final extension from a storage or FS path.
unserialize( $serialized)
const RENDER_FORCE
Force rendering even if thumbnail already exist and using RENDER_NOW I.e.
getUrl()
Return the URL of the file.
static compare(File $a, File $b)
Callback for usort() to do file sorts by name.
getTranscodedUrl( $suffix=false)
Get the URL of the transcoded directory, or a particular file if $suffix is specified.
getThumbnailSource( $params)
Returns the most appropriate source image for the thumbnail, given a target thumbnail size.
getWidth( $page=1)
Return the width of the image.
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.
getMediaType()
Return the type of the media in the file.
restore( $versions=[], $unsuppress=false)
Restore all or specified deleted revisions to the given file.
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
isVisible()
Returns true if file exists in the repository and can be included in a page.
Convenience class for dealing with PoolCounters using callbacks.
$wgThumbnailBuckets
When defined, is an array of image widths used as buckets for thumbnail generation.
Interface for database access objects.
string $repoClass
Required Repository class type.
getArchiveRel( $suffix=false)
Get the path of an archived file relative to the public zone root.
isDeleted( $field)
Is this file a "deleted" file in a private archive? STUB.
getVisibility()
Return the deletion bitfield STUB.
getDescriptionText( $lang=false)
Get the HTML text of the description page, if available.
$wgThumbnailMinimumBucketDistance
When using thumbnail buckets as defined above, this sets the minimum distance to the bucket above the...
static normalizeTitle( $title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null.
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
exists()
Returns true if file exists in the repository.
getThumbVirtualUrl( $suffix=false)
Get the virtual URL for a thumbnail file or directory.
$wgThumbnailEpoch
If rendered thumbnail files are older than this timestamp, they will be rerendered on demand as if th...
upgradeRow()
Upgrade the database row if there is one Called by ImagePage STUB.
Base class for file repositories.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
string $path
The storage path corresponding to one of the zones.
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
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
isCacheable()
Check if this file object is small and can be cached.
bool $canRender
Whether the output of transform() for this file is likely to be valid.
getBucketThumbName( $bucket)
Returns the name of the thumb for a given bucket.
Implements some public methods and some protected utility functions which are required by multiple ch...
getMimeType()
Returns the MIME type of the file.
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.
getLocalRefPath()
Get an FS copy or original of this file and return the path.
transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags)
Return either a MediaTransformError or placeholder thumbnail (if $wgIgnoreImageErrors)
getIsSafeFile()
Accessor for __get()
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getThumbPath( $suffix=false)
Get the path of the thumbnail directory, or a particular file if $suffix is specified.
pageCount()
Returns the number of pages of a multipage document, or false for documents which aren't multipage do...
nextHistoryLine()
Return the history of this file, line by line.
static normalizeExtension( $extension)
Normalize a file extension to the common form, making it lowercase and checking some synonyms,...
execute( $skipcache=false)
Get the result of the work (whatever it is), or the result of the error() function.
getArchiveVirtualUrl( $suffix=false)
Get the public zone virtual URL for an archived version source file.
purgeCache( $options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
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
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
getArchiveThumbRel( $archiveName, $suffix=false)
Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory or a speci...
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
when a variable name is used in a it is silently declared as a new masking the global
static singleton()
Get an instance of this class.
getStorageKey()
Get the deletion archive key, "<sha1>.<ext>".
__construct( $title, $repo)
Call this constructor from child classes.
generateAndSaveThumb( $tmpFile, $transformParams, $flags)
Generates a thumbnail according to the given parameters and saves it to storage.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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
getCommonMetaArray()
Like getMetadata but returns a handler independent array of common values.
getThumbRel( $suffix=false)
Get the path, relative to the thumbnail zone root, of the thumbnail directory or a particular file if...
static factory( $prefix, $extension='', $tmpDirectory=null)
Make a new temporary file on the file system.
isTransformedLocally()
Whether the thumbnails created on the same server as this code is running.
static get( $url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
canRender()
Checks if the output of transform() for this file is likely to be valid.
FSFile bool $fsFile
False if undefined.
if( $ext=='php'|| $ext=='php5') $mime
string false $pageCount
Number of pages of a multipage document, or false for documents which aren't multipage documents.
Class to invalidate the HTML cache of all the pages linking to a given title.
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
getAvailableLanguages()
Gives a (possibly empty) list of languages to render the file in.
iconThumb()
Get a ThumbnailImage representing a file type icon.
purgeDescription()
Purge the file description page, but don't go after pages using the file.
isOld()
Returns true if the image is an old version STUB.
assertTitleDefined()
Assert that $this->title is set to a Title.
$wgIgnoreImageErrors
If set, inline scaled images will still produce "<img>" tags ready for output instead of showing an e...
getHistory( $limit=null, $start=null, $end=null, $inc=true)
Return a fragment of the history of file.
generateThumbName( $name, $params)
Generate a thumbnail file name from a name and specified parameters.
formatMetadata( $context=false)
createThumb( $width, $height=-1)
Create a thumbnail of the image having the specified width/height.
getDescriptionUrl()
Get the URL of the image description page.
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
getArchiveThumbUrl( $archiveName, $suffix=false)
Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified.
getName()
Return the name of this file.
getArchiveUrl( $suffix=false)
Get the URL of the archive directory, or a particular file if $suffix is specified.
getThumbDisposition( $thumbName, $dispositionType='inline')
Class representing a non-directory file on the file system.
isSafeFile()
Determines if this media file is in a format that is unlikely to contain viruses or malicious content...
getRepoName()
Returns the name of the repository.
$wgResourceBasePath
The default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
publish( $src, $flags=0, array $options=[])
Move or copy a file to its public location.
string $extension
File extension.
getBucketThumbPath( $bucket)
Returns the repo path of the thumb for a given bucket.
string $hashPath
Relative path including trailing slash.
static scaleHeight( $srcWidth, $srcHeight, $dstWidth)
Calculate the height of a thumbnail using the source and destination width.
see documentation in includes Linker php for Linker::makeImageLink & $handlerParams
const RENDER_NOW
Force rendering in the current process.
transform( $params, $flags=0)
Transform a media file.
getTitle()
Return the associated title object.
Represents a title within MediaWiki.
A foreign repository with a remote MediaWiki with an API thingy.
wfTempDir()
Tries to get the system directory for temporary files.
bool $isSafeFile
Whether this media file is in a format that is unlikely to contain viruses or malicious content.
getThumbnailBucket( $desiredWidth, $page=1)
Return the smallest bucket from $wgThumbnailBuckets which is at least $wgThumbnailMinimumBucketDistan...
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 & $options
move( $target)
Move file to the new title.
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
static getMainWANInstance()
Get the main WAN cache object.
getDescription( $audience=self::FOR_PUBLIC, User $user=null)
Get description of file revision STUB.
getLength()
Get the duration of a media file in seconds.
isLocal()
Returns true if the file comes from the local file repository.
purgeSquid()
Purge all applicable CDN URLs.
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
getCanRender()
Accessor for __get()
mustRender()
Return true if the file is of a type that can't be directly rendered by typical browsers and needs to...
load( $flags=0)
Load any lazy-loaded file object fields from source.
isDeletedQuick()
Is there a version of this page in the deletion archive?
resetHistory()
Reset the history pointer to the first element of the history.
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 unset offset - wrap String Wrap the message in html(usually something like "<
string $name
The name of a file from its title object.
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
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
getRepo()
Returns the repository.
allowInlineDisplay()
Alias for canRender()
invalidateCache( $purgeTime=null)
Updates page_touched for this page; called from LinksUpdate.php.
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 MediaWikiServices
getThumbUrl( $suffix=false)
Get the URL of the thumbnail directory, or a particular file if $suffix is specified.
isVectorized()
Return true if the file is vectorized.
getHandler()
Get a MediaHandler instance for this file.
$wgTrustedMediaFormats
list of trusted media-types and MIME types.
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...
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
generateBucketsIfNeeded( $params, $flags=0)
Generates chained bucketed thumbnails if needed.
thumbName( $params, $flags=0)
Return the file name of a thumbnail with the specified parameters.
string $lastError
Text of last error.
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.
getImageSize( $filePath)
Get an image size array like that returned by getImageSize(), or false if it can't be determined.
getPath()
Returns the file system path.
makeTransformTmpFile( $thumbPath)
Creates a temp FS file with the same extension and the thumbnail.
getArchivePath( $suffix=false)
Get the path of the archived file.
purgeEverything()
Purge metadata and all affected pages when the file is created, deleted, or majorly updated.
getUnscaledThumb( $handlerParams=[])
Get a ThumbnailImage which is the same size as the source.
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
isTrustedFile()
Returns true if the file is flagged as trusted.
A repository that stores files in the local filesystem and registers them in the wiki's own database.
getSize()
Return the size of the image file, in bytes Overridden by LocalFile, UnregisteredLocalFile STUB.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
the array() calling protocol came about after MediaWiki 1.4rc1.
getThumbnails()
Get all thumbnail names previously generated for this file STUB Overridden by LocalFile.
getTranscodedPath( $suffix=false)
Get the path of the transcoded directory, or a particular file if $suffix is specified.
getVirtualUrl( $suffix=false)
Get the public zone virtual URL for a current version source file.
static makeContentDisposition( $type, $filename='')
Build a Content-Disposition header value per RFC 6266.