168 if ( $title !==
false ) {
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' ];
289 return strcmp( $a->getName(), $b->getName() );
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 ) {
1068 if ( $this->repo->canTransformVia404() && !(
$flags & self::RENDER_NOW ) ) {
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 ];
1431 $title->invalidateCache();
1432 $title->purgeSquid();
1448 DeferredUpdates::addUpdate(
new HTMLCacheUpdate( $title,
'imagelinks' ) );
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 ) {
1525 $path = substr( $path, 0, -1 );
1542 if ( $suffix !==
false ) {
1543 $path .=
'/' . $suffix;
1568 $path =
'archive/' . $this->
getHashPath() . $archiveName .
"/";
1569 if ( $suffix ===
false ) {
1570 $path = substr( $path, 0, -1 );
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 );
1637 $path = $this->repo->getZoneUrl(
'public',
$ext ) .
'/archive/' . $this->
getHashPath();
1638 if ( $suffix ===
false ) {
1639 $path = substr( $path, 0, -1 );
1641 $path .= rawurlencode( $suffix );
1657 $path = $this->repo->getZoneUrl(
'thumb',
$ext ) .
'/archive/' .
1658 $this->
getHashPath() . rawurlencode( $archiveName ) .
"/";
1659 if ( $suffix ===
false ) {
1660 $path = substr( $path, 0, -1 );
1662 $path .= rawurlencode( $suffix );
1678 $path = $this->repo->getZoneUrl( $zone,
$ext ) .
'/' . $this->
getUrlRel();
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 ) {
1732 $path = substr( $path, 0, -1 );
1734 $path .= rawurlencode( $suffix );
1748 $path = $this->repo->getVirtualUrl() .
'/thumb/' . $this->
getUrlRel();
1749 if ( $suffix !==
false ) {
1750 $path .=
'/' . rawurlencode( $suffix );
1762 return (
bool)$this->repo->getHashLevels();
1769 throw new MWException( static::class .
': write operations are not supported' );
1788 $watch =
false, $timestamp =
false,
User $user =
null
1836 return $this->repo && $this->repo->isLocal();
1845 return $this->repo ? $this->repo->getName() :
'unknown';
1895 return $title && $title->isDeletedQuick();
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() );
2047 $cache = ObjectCache::getMainWANInstance();
2048 $key = $this->repo->getLocalCacheKey(
2049 'RemoteFileDescription',
2055 return $cache->getWithSetCallback(
2057 $this->repo->descriptionCacheExpiry ?: $cache::TTL_UNCACHEABLE,
2058 function ( $oldValue, &$ttl, array &$setOpts ) use ( $renderUrl ) {
2059 wfDebug(
"Fetching shared description from $renderUrl\n" );
2060 $res = Http::get( $renderUrl, [], __METHOD__ );
2062 $ttl = WANObjectCache::TTL_UNCACHEABLE;
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 ) {
2230 $this->redirectTitle = Title::makeTitle(
NS_FILE, $this->redirected );
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" );
2277 if ( !( $this->title instanceof
Title ) ) {
2278 throw new MWException(
"A Title object is not set for this File.\n" );
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...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
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.
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()
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.
getDescriptionText( $lang=false)
Get the HTML text of the description page, if available.
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.
A repository that stores files in the local filesystem and registers them in the wiki's own database.
static singleton()
Get an instance of this class.
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 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 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
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
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 "<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
it s the revision text itself In either if gzip is the revision text is gzipped $flags
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
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
see documentation in includes Linker php for Linker::makeImageLink & $handlerParams
Interface for database access objects.
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(!isset( $args[0])) $lang