Go to the documentation of this file.
134 || !array_key_exists(
'name', $info )
135 || !array_key_exists(
'backend', $info )
138 " requires an array of options having both 'name' and 'backend' keys.\n" );
142 $this->
name = $info[
'name'];
144 $this->backend = $info[
'backend'];
150 $optionalSettings =
array(
151 'descBaseUrl',
'scriptDirUrl',
'articleUrl',
'fetchDescription',
152 'thumbScriptUrl',
'pathDisclosureProtection',
'descriptionCacheExpiry',
153 'scriptExtension',
'favicon'
155 foreach ( $optionalSettings
as $var ) {
156 if ( isset( $info[$var] ) ) {
157 $this->$var = $info[$var];
162 $this->initialCapital = isset( $info[
'initialCapital'] )
163 ? $info[
'initialCapital']
165 $this->url = isset( $info[
'url'] )
168 if ( isset( $info[
'thumbUrl'] ) ) {
169 $this->thumbUrl = $info[
'thumbUrl'];
171 $this->thumbUrl = $this->url ?
"{$this->url}/thumb" :
false;
173 $this->hashLevels = isset( $info[
'hashLevels'] )
174 ? $info[
'hashLevels']
176 $this->deletedHashLevels = isset( $info[
'deletedHashLevels'] )
177 ? $info[
'deletedHashLevels']
179 $this->transformVia404 = !empty( $info[
'transformVia404'] );
180 $this->abbrvThreshold = isset( $info[
'abbrvThreshold'] )
181 ? $info[
'abbrvThreshold']
183 $this->isPrivate = !empty( $info[
'isPrivate'] );
185 $this->zones = isset( $info[
'zones'] ) ? $info[
'zones'] :
array();
186 foreach (
array(
'public',
'thumb',
'transcoded',
'temp',
'deleted' )
as $zone ) {
187 if ( !isset( $this->zones[$zone][
'container'] ) ) {
188 $this->zones[$zone][
'container'] =
"{$this->name}-{$zone}";
190 if ( !isset( $this->zones[$zone][
'directory'] ) ) {
191 $this->zones[$zone][
'directory'] =
'';
193 if ( !isset( $this->zones[$zone][
'urlsByExt'] ) ) {
194 $this->zones[$zone][
'urlsByExt'] =
array();
215 return $this->backend->getReadOnlyReason();
227 foreach ( (
array)$doZones
as $zone ) {
229 if ( $root ===
null ) {
230 throw new MWException(
"No '$zone' zone defined in the {$this->name} repo." );
244 return substr(
$url, 0, 9 ) ==
'mwrepo://';
257 if ( $suffix !==
false ) {
258 $path .=
'/' . rawurlencode( $suffix );
272 if ( in_array( $zone,
array(
'public',
'temp',
'thumb',
'transcoded' ) ) ) {
274 if (
$ext !==
null && isset( $this->zones[$zone][
'urlsByExt'][
$ext] ) ) {
276 return $this->zones[$zone][
'urlsByExt'][
$ext];
277 } elseif ( isset( $this->zones[$zone][
'url'] ) ) {
279 return $this->zones[$zone][
'url'];
286 return "{$this->url}/temp";
292 return "{$this->url}/transcoded";
312 if ( isset( $this->zones[$zone][
'handlerUrl'] )
313 && in_array( $zone,
array(
'public',
'temp',
'thumb',
'transcoded' ) )
315 return $this->zones[$zone][
'handlerUrl'];
330 if ( substr(
$url, 0, 9 ) !=
'mwrepo://' ) {
331 throw new MWException( __METHOD__ .
': unknown protocol' );
333 $bits = explode(
'/', substr(
$url, 9 ), 3 );
334 if ( count( $bits ) != 3 ) {
335 throw new MWException( __METHOD__ .
": invalid mwrepo URL: $url" );
337 list( $repo, $zone, $rel ) = $bits;
338 if ( $repo !== $this->
name ) {
339 throw new MWException( __METHOD__ .
": fetching from a foreign repo is not supported" );
343 throw new MWException( __METHOD__ .
": invalid zone: $zone" );
346 return $base .
'/' . rawurldecode( $rel );
356 if ( !isset( $this->zones[$zone] ) ) {
357 return array(
null,
null );
360 return array( $this->zones[$zone][
'container'], $this->zones[$zone][
'directory'] );
371 if ( $container ===
null || $base ===
null ) {
374 $backendName = $this->backend->getName();
379 return "mwstore://$backendName/{$container}{$base}";
399 if ( $this->oldFileFactory ) {
400 return call_user_func( $this->oldFileFactory,
$title, $this,
$time );
405 return call_user_func( $this->fileFactory,
$title, $this );
431 # First try the current version of the file to see if it precedes the timestamp
436 if ( $img->exists() && ( !
$time || $img->getTimestamp() ==
$time ) ) {
439 # Now try an old version of the file
440 if (
$time !==
false ) {
442 if ( $img && $img->exists() ) {
445 } elseif ( !empty(
$options[
'private'] ) &&
456 if ( !empty(
$options[
'ignoreRedirect'] ) ) {
461 $img = $this->
newFile( $redir );
465 if ( $img->exists() ) {
466 $img->redirectedFrom(
$title->getDBkey() );
494 foreach ( $items
as $item ) {
495 if ( is_array( $item ) ) {
506 if (
$flags & self::NAME_AND_TIME_ONLY ) {
508 'title' =>
$file->getTitle()->getDBkey(),
509 'timestamp' =>
$file->getTimestamp()
531 # First try to find a matching current version of a file...
532 if ( $this->fileFactoryKey ) {
533 $img = call_user_func( $this->fileFactoryKey, $sha1, $this,
$time );
537 if ( $img && $img->exists() ) {
540 # Now try to find a matching old version of a file...
541 if (
$time !==
false && $this->oldFileFactoryKey ) {
542 $img = call_user_func( $this->oldFileFactoryKey, $sha1, $this,
$time );
543 if ( $img && $img->exists() ) {
546 } elseif ( !empty(
$options[
'private'] ) &&
640 if ( $this->initialCapital ) {
678 $parts = explode(
'!', $suffix, 2 );
679 $name = isset( $parts[1] ) ? $parts[1] : $suffix;
689 if ( $levels == 0 ) {
694 for ( $i = 1; $i <= $levels; $i++ ) {
728 if ( isset( $this->scriptDirUrl ) ) {
729 $ext = isset( $this->scriptExtension ) ? $this->scriptExtension :
'.php';
751 if ( !is_null( $this->descBaseUrl ) ) {
752 # "http://example.com/wiki/File:"
753 return $this->descBaseUrl . $encName;
755 if ( !is_null( $this->articleUrl ) ) {
756 # "http://example.com/wiki/$1"
758 # We use "Image:" as the canonical namespace for
759 # compatibility across all MediaWiki versions.
760 return str_replace(
'$1',
761 "Image:$encName", $this->articleUrl );
763 if ( !is_null( $this->scriptDirUrl ) ) {
764 # "http://example.com/w"
766 # We use "Image:" as the canonical namespace for
767 # compatibility across all MediaWiki versions,
768 # and just sort of hope index.php is right. ;)
769 return $this->
makeUrl(
"title=Image:$encName" );
787 if ( !is_null( $lang ) ) {
788 $query .=
'&uselang=' . $lang;
790 if ( isset( $this->scriptDirUrl ) ) {
811 if ( isset( $this->scriptDirUrl ) ) {
812 return $this->
makeUrl(
'title=MediaWiki:Filepage.css&' .
833 public function store( $srcPath, $dstZone, $dstRel,
$flags = 0 ) {
837 if ( $status->successCount == 0 ) {
863 $operations =
array();
864 $sourceFSFilesToDelete =
array();
866 foreach ( $triplets
as $triplet ) {
867 list( $srcPath, $dstZone, $dstRel ) = $triplet;
869 .
"( \$src='$srcPath', \$dstZone='$dstZone', \$dstRel='$dstRel' )\n"
878 throw new MWException(
'Validation error in $dstRel' );
880 $dstPath =
"$root/$dstRel";
881 $dstDir = dirname( $dstPath );
884 return $this->
newFatal(
'directorycreateerror', $dstDir );
895 if (
$flags & self::DELETE_SOURCE ) {
896 $sourceFSFilesToDelete[] = $srcPath;
899 $operations[] =
array(
903 'overwrite' =>
$flags & self::OVERWRITE,
904 'overwriteSame' =>
$flags & self::OVERWRITE_SAME,
909 $opts =
array(
'force' =>
true );
910 if (
$flags & self::SKIP_LOCKING ) {
911 $opts[
'nonLocking'] =
true;
915 foreach ( $sourceFSFilesToDelete
as $file ) {
939 $operations =
array();
941 if ( is_array(
$path ) ) {
949 $operations[] =
array(
'op' =>
'delete',
'src' =>
$path );
952 $opts =
array(
'force' =>
true );
953 if (
$flags & self::SKIP_LOCKING ) {
954 $opts[
'nonLocking'] =
true;
956 $status->merge( $this->backend->doOperations( $operations, $opts ) );
999 $status->merge( $this->backend->clean(
1019 $operations =
array();
1020 foreach ( $triples
as $triple ) {
1021 list( $src, $dst ) = $triple;
1025 if ( !isset( $triple[2] ) ) {
1027 } elseif ( is_string( $triple[2] ) ) {
1029 $headers =
array(
'Content-Disposition' => $triple[2] );
1030 } elseif ( is_array( $triple[2] ) && isset( $triple[2][
'headers'] ) ) {
1031 $headers = $triple[2][
'headers'];
1033 $operations[] =
array(
1037 'headers' => $headers
1041 $status->merge( $this->backend->doQuickOperations( $operations ) );
1056 $operations =
array();
1058 $operations[] =
array(
1061 'ignoreMissingSource' =>
true
1064 $status->merge( $this->backend->doQuickOperations( $operations ) );
1079 public function storeTemp( $originalName, $srcPath ) {
1084 $dstUrlRel = $hashPath . $date .
'!' . rawurlencode( $originalName );
1099 public function freeTemp( $virtualUrl ) {
1103 if ( substr( $virtualUrl, 0, strlen( $temp ) ) != $temp ) {
1104 wfDebug( __METHOD__ .
": Invalid temp virtual URL\n" );
1109 return $this->
quickPurge( $virtualUrl )->isOK();
1127 foreach ( $srcPaths
as $srcPath ) {
1134 $params =
array(
'srcs' => $sources,
'dst' => $dstPath );
1135 $status->merge( $this->backend->concatenate(
$params ) );
1136 if ( !$status->isOK() ) {
1141 if (
$flags & self::DELETE_SOURCE ) {
1146 $status->setResult(
true );
1177 if ( $status->successCount == 0 ) {
1178 $status->ok =
false;
1180 if ( isset( $status->value[0] ) ) {
1181 $status->value = $status->value[0];
1183 $status->value =
false;
1205 if ( !$status->isOK() ) {
1211 $operations =
array();
1212 $sourceFSFilesToDelete =
array();
1214 foreach ( $ntuples
as $ntuple ) {
1215 list( $srcPath, $dstRel, $archiveRel ) = $ntuple;
1220 throw new MWException(
'Validation error in $dstRel' );
1223 throw new MWException(
'Validation error in $archiveRel' );
1227 $dstPath =
"$publicRoot/$dstRel";
1228 $archivePath =
"$publicRoot/$archiveRel";
1230 $dstDir = dirname( $dstPath );
1231 $archiveDir = dirname( $archivePath );
1234 return $this->
newFatal(
'directorycreateerror', $dstDir );
1237 return $this->
newFatal(
'directorycreateerror', $archiveDir );
1249 $operations[] =
array(
1252 'dst' => $archivePath,
1253 'ignoreMissingSource' =>
true
1258 if (
$flags & self::DELETE_SOURCE ) {
1259 $operations[] =
array(
1263 'overwrite' =>
true,
1264 'headers' => $headers
1267 $operations[] =
array(
1271 'overwrite' =>
true,
1272 'headers' => $headers
1276 $operations[] =
array(
1280 'overwrite' =>
true,
1281 'headers' => $headers
1283 if (
$flags & self::DELETE_SOURCE ) {
1284 $sourceFSFilesToDelete[] = $srcPath;
1292 foreach ( $ntuples
as $i => $ntuple ) {
1293 list( , , $archiveRel ) = $ntuple;
1294 $archivePath = $this->
getZonePath(
'public' ) .
"/$archiveRel";
1296 $status->value[$i] =
'archived';
1298 $status->value[$i] =
'new';
1302 foreach ( $sourceFSFilesToDelete
as $file ) {
1323 if ( $this->isPrivate || $container === $this->zones[
'deleted'][
'container'] ) {
1324 # Take all available measures to prevent web accessibility of new deleted
1325 # directories, in case the user has not configured offline storage
1329 return $this->backend->prepare(
$params );
1342 $status->merge( $this->backend->clean(
1386 public function delete( $srcRel, $archiveRel ) {
1414 if ( !$status->isOK() ) {
1421 $operations =
array();
1423 foreach ( $sourceDestPairs
as $pair ) {
1424 list( $srcRel, $archiveRel ) = $pair;
1426 throw new MWException( __METHOD__ .
':Validation error in $srcRel' );
1428 throw new MWException( __METHOD__ .
':Validation error in $archiveRel' );
1432 $srcPath =
"{$publicRoot}/$srcRel";
1435 $archivePath =
"{$deletedRoot}/{$archiveRel}";
1436 $archiveDir = dirname( $archivePath );
1440 return $this->
newFatal(
'directorycreateerror', $archiveDir );
1443 $operations[] =
array(
1446 'dst' => $archivePath,
1449 'overwriteSame' =>
true
1456 $opts =
array(
'force' =>
true );
1480 if ( strlen( $key ) < 31 ) {
1481 throw new MWException(
"Invalid storage key '$key'." );
1517 return $this->backend->getLocalCopy(
array(
'src' =>
$path ) );
1531 return $this->backend->getLocalReference(
array(
'src' =>
$path ) );
1544 return $this->backend->getFileProps(
array(
'src' =>
$path ) );
1556 return $this->backend->getFileTimestamp(
array(
'src' =>
$path ) );
1568 return $this->backend->getFileSize(
array(
'src' =>
$path ) );
1580 return $this->backend->getFileSha1Base36(
array(
'src' =>
$path ) );
1594 return $this->backend->streamFile(
$params )->isOK();
1605 public function enumFiles( $callback ) {
1618 $numDirs = 1 << ( $this->hashLevels * 4 );
1621 for ( $flatIndex = 0; $flatIndex < $numDirs; $flatIndex++ ) {
1622 $hexString = sprintf(
"%0{$this->hashLevels}x", $flatIndex );
1623 $path = $publicRoot;
1625 $path .=
'/' . substr( $hexString, 0, $hexPos + 1 );
1627 $iterator = $this->backend->getFileList(
array(
'dir' =>
$path ) );
1628 foreach ( $iterator
as $name ) {
1630 call_user_func( $callback,
"{$path}/{$name}" );
1642 if ( strval( $filename ) ==
'' ) {
1655 switch ( $this->pathDisclosureProtection ) {
1658 $callback =
array( $this,
'passThrough' );
1661 $callback =
array( $this,
'paranoidClean' );
1692 public function newFatal( $message ) {
1694 array_unshift(
$params, $this );
1696 return call_user_func_array(
array(
'FileRepoStatus',
'newFatal' ),
$params );
1754 if ( strlen(
$name ) > $this->abbrvThreshold ) {
1756 $name = (
$ext ==
'' ) ?
'thumbnail' :
"thumbnail.$ext";
1768 return $this->
getName() ==
'local';
1794 return call_user_func_array(
'wfMemcKey',
$args );
1807 'name' =>
"{$this->name}-temp",
1808 'backend' => $this->backend,
1811 'container' => $this->zones[
'temp'][
'container'],
1812 'directory' => $this->zones[
'temp'][
'directory']
1815 'container' => $this->zones[
'thumb'][
'container'],
1816 'directory' => $this->zones[
'thumb'][
'directory'] ==
''
1818 : $this->zones[
'thumb'][
'directory'] .
'/temp'
1820 'transcoded' =>
array(
1821 'container' => $this->zones[
'transcoded'][
'container'],
1822 'directory' => $this->zones[
'transcoded'][
'directory'] ==
''
1824 : $this->zones[
'transcoded'][
'directory'] .
'/temp'
1828 'thumbUrl' => $this->
getZoneUrl(
'thumb' ) .
'/temp',
1829 'transcodedUrl' => $this->
getZoneUrl(
'transcoded' ) .
'/temp',
1830 'hashLevels' => $this->hashLevels
1868 $optionalSettings =
array(
1869 'url',
'thumbUrl',
'initialCapital',
'descBaseUrl',
'scriptDirUrl',
'articleUrl',
1870 'fetchDescription',
'descriptionCacheExpiry',
'scriptExtension',
'favicon'
1872 foreach ( $optionalSettings
as $k ) {
1873 if ( isset( $this->$k ) ) {
1874 $ret[$k] = $this->$k;
1887 throw new MWException(
"Cannot get a temp repo from a temp repo." );
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
Array $zones
Map of zones to config *.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag '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 '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. '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 '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 '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 wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() '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 User::isValidEmailAddr(), 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 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) '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:Associative array mapping language codes to prefixed links of the form "language:title". & $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. 'LinkBegin':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) $result
see documentation in includes Linker php for Linker::makeImageLink & $time
getReadOnlyReason()
Get an explanatory message if this repo is read-only.
passThrough( $param)
Path disclosure protection function.
findFile( $title, $options=array())
Find an instance of the named file created at the specified time Returns false if the file does not e...
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
findBySha1( $hash)
Get an array or iterator of file objects for files that have a given SHA-1 content hash.
getThumbScriptUrl()
Get the URL of thumb.php.
newGood( $value=null)
Create a new good result.
getDescriptionRenderUrl( $name, $lang=null)
Get the URL of the content-only fragment of the description page.
Base class for all file backend classes (including multi-write backends).
int $deletedHashLevels
The number of directory levels for hash-based division of deleted files *.
enumFilesInStorage( $callback)
Call a callback function for every public file in the repository.
string $favicon
The URL of the repo's favicon, if any *.
validateFilename( $filename)
Determine if a relative path is valid, i.e.
getRootDirectory()
Get the public zone root storage directory of the repository.
getVirtualUrl( $suffix=false)
Get a URL referring to this repository, with the private mwrepo protocol.
makeUrl( $query='', $entry='index')
Make an url to this repo.
storeBatch(array $triplets, $flags=0)
Store a batch of files.
string $pathDisclosureProtection
May be 'paranoid' to remove all parameters from error messages, 'none' to leave the paths in unchange...
getTempRepo()
Get an temporary FileRepo associated with this repo.
getInfo()
Return information about the repository.
UploadStash is intended to accomplish a few things:
int $descriptionCacheExpiry
getName()
Get the name of this repository, as specified by $info['name]' to the constructor.
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
wfSuppressWarnings( $end=false)
Reference-counted warning suppression.
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
quickImportBatch(array $triples)
Import a batch of files from the local file system into the repo.
$fileFactory
Factory functions for creating new files Override these in the base class.
static getHashPathForLevel( $name, $levels)
static getDynamicStylesheetQuery()
Get the query to generate a dynamic stylesheet.
getZoneUrl( $zone, $ext=null)
Get the URL corresponding to one of the four basic zones.
getZonePath( $zone)
Get the storage path corresponding to one of the zones.
getLocalReference( $virtualUrl)
Get a local FS file with a given virtual URL/storage path.
getZoneLocation( $zone)
The the storage container and base path of a zone.
resolveToStoragePath( $path)
If a path is a virtual URL, resolve it to a storage path.
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 and the content language as $wgContLang
it s the revision text itself In either if gzip is the revision text is gzipped $flags
wfMessageFallback()
This function accepts multiple message keys and returns a message instance for the first message whic...
bool $initialCapital
Equivalent to $wgCapitalLinks (or $wgCapitalLinkOverrides[NS_FILE], determines whether filenames impl...
initZones( $doZones=array())
Check if a single zone or list of zones is defined for usage.
static normalizeTitle( $title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null.
string $scriptExtension
Script extension of the MediaWiki installation, equivalent to $wgScriptExtension, e....
getDescriptionStylesheetUrl()
Get the URL of the stylesheet to apply to description pages.
fileExistsBatch(array $files)
Checks existence of an array of files.
Base class for file repositories.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
static newGood( $repo=false, $value=null)
getSharedCacheKey()
Get a key on the primary cache for this repository.
freeTemp( $virtualUrl)
Remove a temporary file or mark it for garbage collection.
findFiles(array $items, $flags=0)
Find many files at once.
quickPurge( $path)
Purge a file from the repo.
newFile( $title, $time=false)
Create a new File object from the local repository.
enumFiles( $callback)
Call a callback function for every public regular file in the repository.
wfRestoreWarnings()
Restore error level to previous value.
checkRedirect(Title $title)
Checks if there is a redirect named as $title.
quickImport( $src, $dst, $options=null)
Import a file from the local file system into the repo.
static isStoragePath( $path)
Check if a given path is a "mwstore://" path.
getUploadStash(User $user=null)
Get an UploadStash associated with this repo.
getTempRepo()
Get an temporary FileRepo associated with this repo.
string $thumbScriptUrl
URL of thumb.php *.
findFilesByPrefix( $prefix, $limit)
Return an array of files where the name starts with $prefix.
paranoidClean( $param)
Path disclosure protection function.
getDescriptionUrl( $name)
Get the URL of an image description page.
store( $srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
getZoneHandlerUrl( $zone)
Get the thumb zone URL configured to be handled by scripts like thumb_handler.php.
static getInstance( $ts=false)
Get a timestamp instance in GMT.
nameForThumb( $name)
Get the portion of the file that contains the origin file name.
invalidateImageRedirect(Title $title)
Invalidates image redirect cache related to that image Doesn't do anything for repositories that don'...
when a variable name is used in a it is silently declared as a new masking the global
getLocalCopy( $virtualUrl)
Get a local FS copy of a file with a given virtual URL/storage path.
FileRepo for temporary files created via FileRepo::getTempRepo()
cleanupBatch(array $files, $flags=0)
Deletes a batch of files.
streamFile( $virtualUrl, $headers=array())
Attempt to stream a file with the given virtual URL/storage path.
doOperations(array $ops, array $opts=array())
This is the main entry point into the backend for write operations.
fileExists( $file)
Checks existence of a a file.
getFileSha1( $virtualUrl)
Get the sha1 (base 36) of a file with a given virtual URL/storage path.
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
getNameFromTitle(Title $title)
Get the name of a file from its title object.
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
wfDebug( $text, $dest='all')
Sends a line to the debug log if enabled or, optionally, to a comment in output.
presenting them properly to the user as errors is done by the caller $title
Allows to change the fields on the form that will be generated $name
getDisplayName()
Get the human-readable name of the repo.
storeTemp( $originalName, $srcPath)
Pick a random name in the temp zone and store a file to it.
newFatal( $message)
Create a new fatal error.
publishBatch(array $ntuples, $flags=0)
Publish a batch of files.
publish( $srcPath, $dstRel, $archiveRel, $flags=0, array $options=array())
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
getHashLevels()
Get the number of hash directory levels.
initDirectory( $dir)
Creates a directory with the appropriate zone permissions.
findFileFromKey( $sha1, $options=array())
Find an instance of the file with this key, created at the specified time Returns false if the file d...
getBackend()
Get the file backend instance.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
quickPurgeBatch(array $paths)
Purge a batch of files from the repo.
getLocalCacheKey()
Get a key for this repo in the local cache domain.
getFileSize( $virtualUrl)
Get the size of a file with a given virtual URL/storage path.
isLocal()
Returns true if this the local file repository.
return false to override stock group addition can be modified try getUserPermissionsErrors userCan checks are continued by internal code can override on output return false to not delete it return false to override the default password checks & $hash
if(PHP_SAPI !='cli') $file
getHashPath( $name)
Get a relative path including trailing slash, e.g.
getErrorCleanupFunction()
Get a callback function to use for cleaning error message parameters.
Represents a title within MediaWiki.
__construct(array $info=null)
findBySha1s(array $hashes)
Get an array of arrays or iterators of file objects for files that have the given SHA-1 content hashe...
if(count( $args)==0) $dir
static extensionFromPath( $path)
Get the final extension from a storage or FS path.
getTempHashPath( $suffix)
Get a relative path including trailing slash, e.g.
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
quickCleanDir( $dir)
Deletes a directory if empty.
static isVirtualUrl( $url)
Determine if a string is an mwrepo:// URL.
static isCapitalized( $index)
Is the namespace first-letter capitalized?
getFileTimestamp( $virtualUrl)
Get the timestamp of a file with a given virtual URL/storage path.
concatenate(array $srcPaths, $dstPath, $flags=0)
Concatenate a list of temporary files into a target file location.
deleteBatch(array $sourceDestPairs)
Move a group of files to the deletion archive.
resolveVirtualUrl( $url)
Get the backend storage path corresponding to a virtual URL.
if(PHP_SAPI !='cli') $source
static isPathTraversalFree( $path)
Check if a relative path has no directory traversals.
bool $url
Public zone URL.
cleanDir( $dir)
Deletes a directory if empty.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
getFileProps( $virtualUrl)
Get properties of a file with a given virtual URL/storage path.
int $abbrvThreshold
File names over this size will use the short form of thumbnail names.
return true to allow those checks to and false if checking is done use this to change the tables headers temp or archived zone change it to an object instance and return false override the list derivative used the name of the old file when set the default code will be skipped add a value to it if you want to add a cookie that have to vary cache options can modify $query
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
getRootUrl()
Get the public root URL of the repository.
bool $transformVia404
Whether to skip media file transformation on parse and rely on a 404 handler instead.
int $hashLevels
The number of directory levels for hash-based division of files *.
getDeletedHashPath( $key)
Get a relative path for a deletion archive key, e.g.
assertWritableRepo()
Throw an exception if this repo is read-only by design.
cleanupDeletedBatch(array $storageKeys)
Delete files in the deleted directory if they are not referenced in the filearchive table.
canTransformVia404()
Returns true if the repository can transform files via a 404 handler.
bool $fetchDescription
Whether to fetch commons image description pages and display them on the local wiki *.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes two arrays as input, and returns a CGI-style string, e.g.