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,
'.' );
253 $mimeMagic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
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 ) {
595 $userPreferredLanguage,
688 if ( !is_array( $metadata ) ) {
727 return 'unknown/unknown';
839 # wfDebug( "LocalFile::isSafeFile: type= $type, mime= $mime\n" );
842 return false; # unknown
type, not trusted
848 if (
$mime ===
"unknown/unknown" ) {
849 return false; # unknown
type, not trusted
872 # this could be implemented to check a flag in the database,
873 # look for signatures, etc
886 public function load( $flags = 0 ) {
897 return $this->
getPath() && $this->repo->fileExists( $this->path );
914 if ( !isset( $this->transformScript ) ) {
915 $this->transformScript =
false;
917 $script = $this->repo->getThumbScriptUrl();
936 $page = $hp[
'page'] ??
false;
941 $hp[
'width'] = $width;
943 unset( $hp[
'height'] );
959 ? $this->repo->nameForThumb( $this->
getName() )
981 if ( $this->repo->supportsSha1URLs() ) {
982 $thumbName .=
'-' . $this->
getSha1() .
'.' . $thumbExt;
984 $thumbName .=
'-' .
$name;
987 $thumbName .=
".$thumbExt";
1012 $params = [
'width' => $width ];
1013 if ( $height != -1 ) {
1017 if ( !$thumb || $thumb->isError() ) {
1021 return $thumb->getUrl();
1037 if (
$handler && $wgIgnoreImageErrors && !( $flags & self::RENDER_NOW ) ) {
1064 if ( $descriptionUrl ) {
1070 if ( $script && !( $flags & self::RENDER_NOW ) ) {
1081 $thumbName = $this->
thumbName( $normalisedParams );
1085 if ( $this->repo ) {
1087 if ( $this->repo->canTransformVia404() && !( $flags & self::RENDER_NOW ) ) {
1095 wfDebug( __METHOD__ .
": Doing stat for $thumbPath\n" );
1096 if ( !( $flags & self::RENDER_FORCE ) && $this->repo->fileExists( $thumbPath ) ) {
1097 $timestamp = $this->repo->getFileTimestamp( $thumbPath );
1103 $thumb->setStoragePath( $thumbPath );
1106 } elseif ( $flags & self::RENDER_FORCE ) {
1107 wfDebug( __METHOD__ .
" forcing rendering per flag File::RENDER_FORCE\n" );
1112 if ( $this->repo->getReadOnlyReason() !==
false ) {
1127 return is_object( $thumb ) ? $thumb :
false;
1140 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
1144 $normalisedParams = $transformParams;
1147 $thumbName = $this->
thumbName( $normalisedParams );
1151 $tmpThumbPath = $tmpFile->getPath();
1161 $tmpFile->bind( $thumb );
1163 $statTiming = microtime(
true ) -
$starttime;
1164 $stats->timing(
'media.thumbnail.generate.transform', 1000 * $statTiming );
1168 } elseif ( $thumb->isError() ) {
1170 $this->lastError = $thumb->toText();
1175 } elseif ( $this->repo && $thumb->hasFile() && !$thumb->fileIsSource() ) {
1181 $status = $this->repo->quickImport( $tmpThumbPath, $thumbPath, $disposition );
1183 $thumb->setStoragePath( $thumbPath );
1188 $statTiming = microtime(
true ) -
$starttime;
1189 $stats->timing(
'media.thumbnail.generate.store', 1000 * $statTiming );
1192 Hooks::run(
'FileTransformed', [ $this, $thumb, $tmpThumbPath, $thumbPath ] );
1206 || !isset(
$params[
'physicalWidth'] )
1207 || !isset(
$params[
'physicalHeight'] )
1214 if ( !$bucket || $bucket ==
$params[
'physicalWidth'] ) {
1220 if ( $this->repo->fileExists( $bucketPath ) ) {
1226 $params[
'physicalWidth'] = $bucket;
1239 $buckettime = microtime(
true ) -
$starttime;
1241 if ( !$thumb || $thumb->isError() ) {
1245 $this->tmpBucketedThumbCache[$bucket] = $tmpFile->getPath();
1248 $tmpFile->bind( $this );
1250 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
1251 'media.thumbnail.generate.bucket', 1000 * $buckettime );
1264 && isset(
$params[
'physicalWidth'] )
1274 if ( isset( $this->tmpBucketedThumbCache[$bucket] ) ) {
1275 $tmpPath = $this->tmpBucketedThumbCache[$bucket];
1277 if ( file_exists( $tmpPath ) ) {
1281 'height' => $bucketHeight
1288 if ( $this->repo->fileExists( $bucketPath ) ) {
1289 $fsFile = $this->repo->getLocalReference( $bucketPath );
1295 'height' => $bucketHeight
1303 if ( $this->
getSize() >= 1e7 ) {
1306 'doWork' =>
function () {
1340 return $this->
thumbName( [
'physicalWidth' => $bucket ] );
1361 if ( $thumbExt !=
'' && $thumbExt !== $this->
getExtension() ) {
1362 $fileName .=
".$thumbExt";
1384 if ( !isset( $this->
handler ) ) {
1398 $assetsPath =
"$wgResourceBasePath/resources/assets/file-type-icons/";
1399 $assetsDirectory =
"$IP/resources/assets/file-type-icons/";
1401 $try = [
'fileicon-' . $this->
getExtension() .
'.png',
'fileicon.png' ];
1402 foreach ( $try
as $icon ) {
1403 if ( file_exists( $assetsDirectory . $icon ) ) {
1404 $params = [
'width' => 120,
'height' => 120 ];
1467 DeferredUpdates::addUpdate(
1484 function getHistory( $limit =
null, $start =
null, $end =
null, $inc =
true ) {
1518 if ( !isset( $this->hashPath ) ) {
1520 $this->hashPath = $this->repo->getHashPath( $this->
getName() );
1545 if ( $suffix ===
false ) {
1563 if ( $suffix !==
false ) {
1564 $path .=
'/' . $suffix;
1590 if ( $suffix ===
false ) {
1608 return $this->repo->getZonePath(
'public' ) .
'/' . $this->
getArchiveRel( $suffix );
1621 return $this->repo->getZonePath(
'thumb' ) .
'/' .
1634 return $this->repo->getZonePath(
'thumb' ) .
'/' . $this->
getThumbRel( $suffix );
1646 return $this->repo->getZonePath(
'transcoded' ) .
'/' . $this->
getThumbRel( $suffix );
1659 if ( $suffix ===
false ) {
1662 $path .= rawurlencode( $suffix );
1678 $path = $this->repo->getZoneUrl(
'thumb',
$ext ) .
'/archive/' .
1679 $this->
getHashPath() . rawurlencode( $archiveName ) .
"/";
1680 if ( $suffix ===
false ) {
1683 $path .= rawurlencode( $suffix );
1700 if ( $suffix !==
false ) {
1701 $path .=
'/' . rawurlencode( $suffix );
1714 return $this->
getZoneUrl(
'thumb', $suffix );
1724 return $this->
getZoneUrl(
'transcoded', $suffix );
1735 $path = $this->repo->getVirtualUrl() .
'/public/' . $this->
getUrlRel();
1736 if ( $suffix !==
false ) {
1737 $path .=
'/' . rawurlencode( $suffix );
1751 $path = $this->repo->getVirtualUrl() .
'/public/archive/' . $this->
getHashPath();
1752 if ( $suffix ===
false ) {
1755 $path .= rawurlencode( $suffix );
1769 $path = $this->repo->getVirtualUrl() .
'/thumb/' . $this->
getUrlRel();
1770 if ( $suffix !==
false ) {
1771 $path .=
'/' . rawurlencode( $suffix );
1783 return (
bool)$this->repo->getHashLevels();
1790 throw new MWException( static::class .
': write operations are not supported' );
1809 $watch =
false, $timestamp =
false,
User $user =
null
1857 return $this->repo && $this->repo->isLocal();
1866 return $this->repo ? $this->repo->getName() :
'unknown';
1950 function delete( $reason, $suppress =
false,
$user = null ) {
1968 function restore( $versions = [], $unsuppress =
false ) {
2012 if ( $srcWidth == 0 ) {
2015 return (
int)round( $srcHeight * $dstWidth / $srcWidth );
2034 return $this->
getHandler()->getImageSize( $this, $filePath );
2044 if ( $this->repo ) {
2045 return $this->repo->getDescriptionUrl( $this->
getName() );
2060 if ( !$this->repo || !$this->repo->fetchDescription ) {
2066 $renderUrl = $this->repo->getDescriptionRenderUrl( $this->
getName(),
$lang->getCode() );
2068 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2069 $key = $this->repo->getLocalCacheKey(
2070 'RemoteFileDescription',
2076 return $cache->getWithSetCallback(
2078 $this->repo->descriptionCacheExpiry ?: $cache::TTL_UNCACHEABLE,
2079 function ( $oldValue, &$ttl,
array &$setOpts )
use ( $renderUrl,
$fname ) {
2080 wfDebug(
"Fetching shared description from $renderUrl\n" );
2083 $ttl = WANObjectCache::TTL_UNCACHEABLE;
2118 return $this->repo->getFileTimestamp( $this->
getPath() );
2140 return $this->repo->getFileSha1( $this->
getPath() );
2154 $dotExt =
$ext ===
'' ?
'' :
".$ext";
2156 return $hash . $dotExt;
2180 if ( is_string( $metadata ) ) {
2181 $metadata = Wikimedia\quietCall(
'unserialize', $metadata );
2184 if ( !is_array( $metadata ) ) {
2241 if ( $this->redirected ) {
2242 if ( !$this->redirectTitle ) {
2243 $this->redirectTitle = Title::makeTitle(
NS_FILE, $this->redirected );
2257 $this->redirected = $from;
2280 if ( !( $this->repo instanceof $this->repoClass ) ) {
2281 throw new MWException(
"A {$this->repoClass} object is not set for this File.\n" );
2291 throw new MWException(
"A Title object is not set for this File.\n" );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
unserialize( $serialized)
$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, $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.
purgeSquid()
Purge all applicable CDN URLs.
isDeletedQuick()
Is there a version of this page in the deletion archive?
invalidateCache( $purgeTime=null)
Updates page_touched for this page; called from LinksUpdate.php.
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 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
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
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 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
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
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
and how to run hooks for an and one after Each event has a name
see documentation in includes Linker php for Linker::makeImageLink & $handlerParams
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
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
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 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
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang