169 if ( $title !==
false ) {
188 # Normalize NS_MEDIA -> NS_FILE
191 # Sanity check the title namespace
196 # Convert strings to Title objects
199 if ( !
$ret && $exception !==
false ) {
200 throw new MWException(
"`$title` is not a valid file title." );
207 $function = [
$this,
'get' . ucfirst( $name ) ];
233 if (
isset( $squish[$lower] ) ) {
254 $mimeMagic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
256 return $mimeMagic->isMatchingExtension( $newExt, $oldMime );
275 if (
strpos( $mime,
'/' ) !==
false ) {
276 return explode(
'/', $mime, 2 );
278 return [ $mime,
'unknown' ];
290 return strcmp( $a->getName(), $b->getName() );
301 $this->
name = $this->repo->getNameFromTitle( $this->
title );
313 if ( !
isset( $this->extension ) ) {
337 if ( $this->redirected ) {
350 if ( !
isset( $this->url ) ) {
353 $this->url = $this->repo->getZoneUrl(
'public',
$ext ) .
'/' . $this->
getUrlRel();
395 wfDebug( __METHOD__ .
': supposed to render ' . $this->
getName() .
398 return $this->
getUrl(); # hm...
return NULL?
419 if ( !
isset( $this->path ) ) {
421 $this->path = $this->repo->getZonePath(
'public' ) .
'/' . $this->
getRel();
436 if ( !
isset( $this->fsFile ) ) {
438 $this->fsFile = $this->repo->getLocalReference( $this->
getPath() );
441 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
442 'media.thumbnail.generate.fetchoriginal', 1000 * $statTiming );
444 if ( !$this->fsFile ) {
445 $this->fsFile =
false;
449 return ( $this->fsFile )
450 ? $this->fsFile->getPath()
494 $imageWidth = $this->
getWidth( $page );
496 if ( $imageWidth ===
false ) {
500 if ( $desiredWidth > $imageWidth ) {
510 sort( $sortedBuckets );
512 foreach ( $sortedBuckets as $bucket ) {
513 if ( $bucket >= $imageWidth ) {
596 $userPreferredLanguage,
723 return 'unknown/unknown';
835 # wfDebug( "LocalFile::isSafeFile: type= $type, mime= $mime\n" );
838 return false; # unknown
type, not trusted
844 if ( $mime ===
"unknown/unknown" ) {
845 return false; # unknown
type, not trusted
868 # this could be implemented to check a flag in the database,
869 # look for signatures, etc
882 public function load( $flags = 0 ) {
893 return $this->
getPath() && $this->repo->fileExists( $this->path );
910 if ( !
isset( $this->transformScript ) ) {
911 $this->transformScript =
false;
913 $script = $this->repo->getThumbScriptUrl();
932 $page = $hp[
'page'] ??
false;
937 $hp[
'width'] = $width;
939 unset( $hp[
'height'] );
955 ? $this->repo->nameForThumb( $this->
getName() )
977 if ( $this->repo->supportsSha1URLs() ) {
980 $thumbName .=
'-' .
$name;
983 $thumbName .=
".$thumbExt";
1008 $params = [
'width' => $width ];
1009 if ( $height != -1 ) {
1013 if ( !$thumb || $thumb->isError() ) {
1017 return $thumb->getUrl();
1033 if (
$handler && $wgIgnoreImageErrors && !( $flags & self::RENDER_NOW ) ) {
1060 if ( $descriptionUrl ) {
1066 if ( $script && !( $flags & self::RENDER_NOW ) ) {
1077 $thumbName = $this->
thumbName( $normalisedParams );
1081 if ( $this->repo ) {
1083 if ( $this->repo->canTransformVia404() && !( $flags & self::RENDER_NOW ) ) {
1091 wfDebug( __METHOD__ .
": Doing stat for $thumbPath\n" );
1092 if ( !( $flags & self::RENDER_FORCE ) && $this->repo->fileExists( $thumbPath ) ) {
1093 $timestamp = $this->repo->getFileTimestamp( $thumbPath );
1099 $thumb->setStoragePath( $thumbPath );
1102 }
elseif ( $flags & self::RENDER_FORCE ) {
1103 wfDebug( __METHOD__ .
" forcing rendering per flag File::RENDER_FORCE\n" );
1108 if ( $this->repo->getReadOnlyReason() !==
false ) {
1136 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1143 $thumbName = $this->
thumbName( $normalisedParams );
1147 $tmpThumbPath = $tmpFile->getPath();
1157 $tmpFile->bind( $thumb );
1160 $stats->timing(
'media.thumbnail.generate.transform', 1000 * $statTiming );
1164 }
elseif ( $thumb->isError() ) {
1166 $this->lastError = $thumb->toText();
1171 }
elseif ( $this->repo && $thumb->hasFile() && !$thumb->fileIsSource() ) {
1177 $status = $this->repo->quickImport( $tmpThumbPath, $thumbPath, $disposition );
1179 $thumb->setStoragePath( $thumbPath );
1185 $stats->timing(
'media.thumbnail.generate.store', 1000 * $statTiming );
1188 Hooks::run(
'FileTransformed', [ $this, $thumb, $tmpThumbPath, $thumbPath ] );
1210 if ( !$bucket || $bucket ==
$params[
'physicalWidth'] ) {
1216 if ( $this->repo->fileExists( $bucketPath ) ) {
1237 if ( !$thumb || $thumb->isError() ) {
1241 $this->tmpBucketedThumbCache[
$bucket] = $tmpFile->getPath();
1244 $tmpFile->bind( $this );
1246 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
1247 'media.thumbnail.generate.bucket', 1000 * $buckettime );
1270 if (
isset( $this->tmpBucketedThumbCache[$bucket] ) ) {
1271 $tmpPath = $this->tmpBucketedThumbCache[
$bucket];
1284 if ( $this->repo->fileExists( $bucketPath ) ) {
1285 $fsFile = $this->repo->getLocalReference( $bucketPath );
1299 if ( $this->
getSize() >= 1e7 ) {
1302 'doWork' =>
function () {
1336 return $this->
thumbName( [
'physicalWidth' => $bucket ] );
1357 if ( $thumbExt !=
'' && $thumbExt !== $this->
getExtension() ) {
1358 $fileName .=
".$thumbExt";
1394 $assetsPath =
"$wgResourceBasePath/resources/assets/file-type-icons/";
1395 $assetsDirectory =
"$IP/resources/assets/file-type-icons/";
1397 $try = [
'fileicon-' . $this->
getExtension() .
'.png',
'fileicon.png' ];
1398 foreach ( $try as $icon ) {
1400 $params = [
'width' => 120,
'height' => 120 ];
1446 $title->invalidateCache();
1447 $title->purgeSquid();
1463 DeferredUpdates::addUpdate(
1480 function getHistory( $limit =
null, $start =
null, $end =
null, $inc =
true ) {
1514 if ( !
isset( $this->hashPath ) ) {
1516 $this->hashPath = $this->repo->getHashPath( $this->
getName() );
1541 if ( $suffix ===
false ) {
1542 $path =
rtrim( $path,
'/' );
1559 if ( $suffix !==
false ) {
1560 $path .=
'/' . $suffix;
1586 if ( $suffix !==
false ) {
1587 $path .=
'/' . $suffix;
1602 return $this->repo->getZonePath(
'public' ) .
'/' . $this->
getArchiveRel( $suffix );
1615 return $this->repo->getZonePath(
'thumb' ) .
'/' .
1628 return $this->repo->getZonePath(
'thumb' ) .
'/' . $this->
getThumbRel( $suffix );
1640 return $this->repo->getZonePath(
'transcoded' ) .
'/' . $this->
getThumbRel( $suffix );
1652 $path = $this->repo->getZoneUrl(
'public',
$ext ) .
'/archive/' . $this->
getHashPath();
1653 if ( $suffix ===
false ) {
1654 $path =
rtrim( $path,
'/' );
1672 $path = $this->repo->getZoneUrl(
'thumb',
$ext ) .
'/archive/' .
1674 if ( $suffix !==
false ) {
1691 $path = $this->repo->getZoneUrl( $zone,
$ext ) .
'/' . $this->
getUrlRel();
1692 if ( $suffix !==
false ) {
1706 return $this->
getZoneUrl(
'thumb', $suffix );
1716 return $this->
getZoneUrl(
'transcoded', $suffix );
1727 $path = $this->repo->getVirtualUrl() .
'/public/' . $this->
getUrlRel();
1728 if ( $suffix !==
false ) {
1743 $path = $this->repo->getVirtualUrl() .
'/public/archive/' . $this->
getHashPath();
1744 if ( $suffix ===
false ) {
1745 $path =
rtrim( $path,
'/' );
1761 $path = $this->repo->getVirtualUrl() .
'/thumb/' . $this->
getUrlRel();
1762 if ( $suffix !==
false ) {
1775 return (
bool)$this->repo->getHashLevels();
1782 throw new MWException( static::class .
': write operations are not supported' );
1801 $watch =
false, $timestamp =
false,
User $user =
null
1849 return $this->repo && $this->repo->isLocal();
1858 return $this->repo ? $this->repo->getName() :
'unknown';
1908 return $title && $title->isDeletedQuick();
1942 function delete( $reason, $suppress =
false, $user =
null ) {
1960 function restore( $versions = [], $unsuppress =
false ) {
2004 if ( $srcWidth == 0 ) {
2007 return (
int)
round( $srcHeight * $dstWidth / $srcWidth );
2026 return $this->
getHandler()->getImageSize( $this, $filePath );
2036 if ( $this->repo ) {
2037 return $this->repo->getDescriptionUrl( $this->
getName() );
2052 if ( !$this->repo || !$this->repo->fetchDescription ) {
2058 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->
getName(),
$lang->getCode() );
2060 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2061 $key = $this->repo->getLocalCacheKey(
2062 'RemoteFileDescription',
2068 return $cache->getWithSetCallback(
2070 $this->repo->descriptionCacheExpiry ?: $cache::TTL_UNCACHEABLE,
2072 wfDebug(
"Fetching shared description from $renderUrl\n" );
2075 $ttl = WANObjectCache::TTL_UNCACHEABLE;
2110 return $this->repo->getFileTimestamp( $this->
getPath() );
2132 return $this->repo->getFileSha1( $this->
getPath() );
2146 $dotExt =
$ext ===
'' ?
'' :
".$ext";
2233 if ( $this->redirected ) {
2234 if ( !$this->redirectTitle ) {
2235 $this->redirectTitle = Title::makeTitle(
NS_FILE, $this->redirected );
2249 $this->redirected = $from;
2272 if ( !( $this->repo instanceof $this->repoClass ) ) {
2273 throw new MWException(
"A {$this->repoClass} object is not set for this File.\n" );
2283 throw new MWException(
"A Title object is not set for this File.\n" );
unserialize( $serialized)
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgIgnoreImageErrors
If set, inline scaled images will still produce "<img>" tags ready for output instead of showing an e...
$wgThumbnailBuckets
When defined, is an array of image widths used as buckets for thumbnail generation.
$wgThumbnailMinimumBucketDistance
When using thumbnail buckets as defined above, this sets the minimum distance to the bucket above the...
$wgResourceBasePath
The default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
$wgThumbnailEpoch
If rendered thumbnail files are older than this timestamp, they will be rerendered on demand as if th...
$wgTrustedMediaFormats
list of trusted media-types and MIME types.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTempDir()
Tries to get the system directory for temporary files.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Class representing a non-directory file on the file system.
getPath()
Returns the file system path.
static extensionFromPath( $path, $case='lowercase')
Get the final extension from a storage or FS path.
static makeContentDisposition( $type, $filename='')
Build a Content-Disposition header value per RFC 6266.
Base class for file repositories.
Implements some public methods and some protected utility functions which are required by multiple ch...
getStorageKey()
Get the deletion archive key, "<sha1>.<ext>".
string $url
The URL corresponding to one of the four basic zones.
getVisibility()
Return the deletion bitfield STUB.
isVectorized()
Return true if the file is vectorized.
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.
restore( $versions=[], $unsuppress=false)
Restore all or specified deleted revisions to the given file.
isExpensiveToThumbnail()
True if creating thumbnails from the file is large or otherwise resource-intensive.
isLocal()
Returns true if the file comes from the local file repository.
getThumbRel( $suffix=false)
Get the path, relative to the thumbnail zone root, of the thumbnail directory or a particular file if...
getLastError()
Get last thumbnailing error.
generateAndSaveThumb( $tmpFile, $transformParams, $flags)
Generates a thumbnail according to the given parameters and saves it to storage.
purgeDescription()
Purge the file description page, but don't go after pages using the file.
__construct( $title, $repo)
Call this constructor from child classes.
getIsSafeFileUncached()
Uncached accessor.
getArchivePath( $suffix=false)
Get the path of the archived file.
getBucketThumbName( $bucket)
Returns the name of the thumb for a given bucket.
FSFile bool $fsFile
False if undefined.
const RENDER_NOW
Force rendering in the current process.
getPath()
Return the storage path to the file.
getThumbPath( $suffix=false)
Get the path of the thumbnail directory, or a particular file if $suffix is specified.
getThumbVirtualUrl( $suffix=false)
Get the virtual URL for a thumbnail file or directory.
getIsSafeFile()
Accessor for __get()
getDescriptionTouched()
Returns the timestamp (in TS_MW format) of the last change of the description page.
transformErrorOutput( $thumbPath, $thumbUrl, $params, $flags)
Return either a MediaTransformError or placeholder thumbnail (if $wgIgnoreImageErrors)
array $tmpBucketedThumbCache
Cache of tmp filepaths pointing to generated bucket thumbnails, keyed by width.
getMimeType()
Returns the MIME type of the file.
getSize()
Return the size of the image file, in bytes Overridden by LocalFile, UnregisteredLocalFile STUB.
string $extension
File extension.
pageCount()
Returns the number of pages of a multipage document, or false for documents which aren't multipage do...
getMediaType()
Return the type of the media in the file.
string $redirected
Main part of the title, with underscores (Title::getDBkey)
getTranscodedUrl( $suffix=false)
Get the URL of the transcoded directory, or a particular file if $suffix is specified.
bool $isSafeFile
Whether this media file is in a format that is unlikely to contain viruses or malicious content.
getRel()
Get the path of the file relative to the public zone root.
getLength()
Get the duration of a media file in seconds.
static normalizeTitle( $title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null.
getTimestamp()
Get the 14-character timestamp of the file upload.
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
getName()
Return the name of this file.
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.
getWidth( $page=1)
Return the width of the image.
getLocalRefPath()
Get an FS copy or original of this file and return the path.
exists()
Returns true if file exists in the repository.
getMatchedLanguage( $userPreferredLanguage)
Get the language code from the available languages for this file that matches the language requested ...
getThumbUrl( $suffix=false)
Get the URL of the thumbnail directory, or a particular file if $suffix is specified.
allowInlineDisplay()
Alias for canRender()
string false $pageCount
Number of pages of a multipage document, or false for documents which aren't multipage documents.
mustRender()
Return true if the file is of a type that can't be directly rendered by typical browsers and needs to...
getVirtualUrl( $suffix=false)
Get the public zone virtual URL for a current version source file.
isTrustedFile()
Returns true if the file is flagged as trusted.
getHistory( $limit=null, $start=null, $end=null, $inc=true)
Return a fragment of the history of file.
isCacheable()
Check if this file object is small and can be cached.
isVisible()
Returns true if file exists in the repository and can be included in a page.
iconThumb()
Get a ThumbnailImage representing a file type icon.
getRepo()
Returns the repository.
getZoneUrl( $zone, $suffix=false)
Get the URL of the zone directory, or a particular file if $suffix is specified.
upgradeRow()
Upgrade the database row if there is one Called by ImagePage STUB.
convertMetadataVersion( $metadata, $version)
get versioned metadata
getCanRender()
Accessor for __get()
getDescriptionText(Language $lang=null)
Get the HTML text of the description page, if available.
getArchiveVirtualUrl( $suffix=false)
Get the public zone virtual URL for an archived version source file.
assertTitleDefined()
Assert that $this->title is set to a Title.
getArchiveThumbPath( $archiveName, $suffix=false)
Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified.
getHeight( $page=1)
Return the height of the image.
getThumbnailSource( $params)
Returns the most appropriate source image for the thumbnail, given a target thumbnail size.
getArchiveThumbRel( $archiveName, $suffix=false)
Get the path, relative to the thumbnail zone root, for an archived file's thumbs directory or a speci...
getUser( $type='text')
Returns ID or name of user who uploaded the file STUB.
makeTransformTmpFile( $thumbPath)
Creates a temp FS file with the same extension and the thumbnail.
getBitDepth()
Return the bit depth of the file Overridden by LocalFile STUB.
publish( $src, $flags=0, array $options=[])
Move or copy a file to its public location.
isOld()
Returns true if the image is an old version STUB.
getTitle()
Return the associated title object.
getDescriptionShortUrl()
Get short description URL for a files based on the page ID.
canRender()
Checks if the output of transform() for this file is likely to be valid.
getAvailableLanguages()
Gives a (possibly empty) list of languages to render the file in.
getCommonMetaArray()
Like getMetadata but returns a handler independent array of common values.
getOriginalTitle()
Return the title used to find this file.
getRepoName()
Returns the name of the repository.
getDefaultRenderLanguage()
In files that support multiple language, what is the default language to use if none specified.
migrateThumbFile( $thumbName)
Hook into transform() to allow migration of thumbnail files STUB Overridden by LocalFile.
static compare(File $a, File $b)
Callback for usort() to do file sorts by name.
isMultipage()
Returns 'true' if this file is a type which supports multiple pages, e.g.
isSafeFile()
Determines if this media file is in a format that is unlikely to contain viruses or malicious content...
getThumbnails()
Get all thumbnail names previously generated for this file STUB Overridden by LocalFile.
createThumb( $width, $height=-1)
Create a thumbnail of the image having the specified width/height.
string $name
The name of a file from its title object.
getTranscodedPath( $suffix=false)
Get the path of the transcoded directory, or a particular file if $suffix is specified.
load( $flags=0)
Load any lazy-loaded file object fields from source.
getExtension()
Get the file extension, e.g.
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
transform( $params, $flags=0)
Transform a media file.
getImageSize( $filePath)
Get an image size array like that returned by getImageSize(), or false if it can't be determined.
nextHistoryLine()
Return the history of this file, line by line.
purgeEverything()
Purge metadata and all affected pages when the file is created, deleted, or majorly updated.
string $path
The storage path corresponding to one of the zones.
static normalizeExtension( $extension)
Normalize a file extension to the common form, making it lowercase and checking some synonyms,...
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
getUrl()
Return the URL of the file.
wasDeleted()
Was this file ever deleted from the wiki?
string $transformScript
URL of transformscript (for example thumb.php)
string $repoClass
Required Repository class type.
thumbName( $params, $flags=0)
Return the file name of a thumbnail with the specified parameters.
getArchiveUrl( $suffix=false)
Get the URL of the archive directory, or a particular file if $suffix is specified.
getSha1()
Get the SHA-1 base 36 hash of the file.
formatMetadata( $context=false)
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...
isTransformedLocally()
Whether the thumbnails created on the same server as this code is running.
getHandler()
Get a MediaHandler instance for this file.
getDescriptionUrl()
Get the URL of the image description page.
string $hashPath
Relative path including trailing slash.
getBucketThumbPath( $bucket)
Returns the repo path of the thumb for a given bucket.
purgeCache( $options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
getThumbnailBucket( $desiredWidth, $page=1)
Return the smallest bucket from $wgThumbnailBuckets which is at least $wgThumbnailMinimumBucketDistan...
getUnscaledThumb( $handlerParams=[])
Get a ThumbnailImage which is the same size as the source.
getArchiveRel( $suffix=false)
Get the path of an archived file relative to the public zone root.
getUrlRel()
Get urlencoded path of the file relative to the public zone root.
getThumbDisposition( $thumbName, $dispositionType='inline')
move( $target)
Move file to the new title.
generateBucketsIfNeeded( $params, $flags=0)
Generates chained bucketed thumbnails if needed.
static scaleHeight( $srcWidth, $srcHeight, $dstWidth)
Calculate the height of a thumbnail using the source and destination width.
isDeleted( $field)
Is this file a "deleted" file in a private archive? STUB.
getArchiveThumbUrl( $archiveName, $suffix=false)
Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified.
getDescription( $audience=self::FOR_PUBLIC, User $user=null)
Get description of file revision STUB.
getMetadata()
Get handler-specific metadata Overridden by LocalFile, UnregisteredLocalFile STUB.
generateThumbName( $name, $params)
Generate a thumbnail file name from a name and specified parameters.
bool $canRender
Whether the output of transform() for this file is likely to be valid.
getFullUrl()
Return a fully-qualified URL to the file.
const RENDER_FORCE
Force rendering even if thumbnail already exist and using RENDER_NOW I.e.
static checkExtensionCompatibility(File $old, $new)
Checks if file extensions are compatible.
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
string $lastError
Text of last error.
A foreign repository with a remote MediaWiki with an API thingy.
Class to invalidate the HTML cache of all the pages linking to a given title.
static get( $url, array $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
Internationalisation code.
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Convenience class for dealing with PoolCounters using callbacks.
execute( $skipcache=false)
Get the result of the work (whatever it is), or the result of the error() function.
static factory( $prefix, $extension='', $tmpDirectory=null)
Make a new temporary file on the file system.
Media transform output for images.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) name
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
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
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
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 use $formDescriptor instead 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 "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. '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
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response 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
see documentation in includes Linker php for Linker::makeImageLink & $handlerParams
Interface for database access objects.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
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 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
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang