Go to the documentation of this file.
151 || !array_key_exists(
'name', $info )
152 || !array_key_exists(
'backend', $info )
155 " requires an array of options having both 'name' and 'backend' keys.\n" );
159 $this->
name = $info[
'name'];
161 $this->backend = $info[
'backend'];
167 $optionalSettings = [
168 'descBaseUrl',
'scriptDirUrl',
'articleUrl',
'fetchDescription',
169 'thumbScriptUrl',
'pathDisclosureProtection',
'descriptionCacheExpiry',
170 'favicon',
'thumbProxyUrl',
'thumbProxySecret',
172 foreach ( $optionalSettings
as $var ) {
173 if ( isset( $info[$var] ) ) {
174 $this->$var = $info[$var];
180 $this->url = $info[
'url'] ??
false;
181 if ( isset( $info[
'thumbUrl'] ) ) {
182 $this->thumbUrl = $info[
'thumbUrl'];
184 $this->thumbUrl = $this->url ?
"{$this->url}/thumb" :
false;
186 $this->hashLevels = $info[
'hashLevels'] ?? 2;
188 $this->transformVia404 = !empty( $info[
'transformVia404'] );
189 $this->abbrvThreshold = $info[
'abbrvThreshold'] ?? 255;
190 $this->isPrivate = !empty( $info[
'isPrivate'] );
192 $this->zones = $info[
'zones'] ?? [];
193 foreach ( [
'public',
'thumb',
'transcoded',
'temp',
'deleted' ]
as $zone ) {
194 if ( !isset( $this->zones[$zone][
'container'] ) ) {
195 $this->zones[$zone][
'container'] =
"{$this->name}-{$zone}";
197 if ( !isset( $this->zones[$zone][
'directory'] ) ) {
198 $this->zones[$zone][
'directory'] =
'';
200 if ( !isset( $this->zones[$zone][
'urlsByExt'] ) ) {
201 $this->zones[$zone][
'urlsByExt'] = [];
226 return $this->backend->getReadOnlyReason();
238 foreach ( (
array)$doZones
as $zone ) {
240 if ( $root ===
null ) {
241 throw new MWException(
"No '$zone' zone defined in the {$this->name} repo." );
255 return substr(
$url, 0, 9 ) ==
'mwrepo://';
268 if ( $suffix !==
false ) {
269 $path .=
'/' . rawurlencode( $suffix );
283 if ( in_array( $zone, [
'public',
'thumb',
'transcoded' ] ) ) {
285 if (
$ext !==
null && isset( $this->zones[$zone][
'urlsByExt'][
$ext] ) ) {
287 return $this->zones[$zone][
'urlsByExt'][
$ext];
288 } elseif ( isset( $this->zones[$zone][
'url'] ) ) {
290 return $this->zones[$zone][
'url'];
302 return "{$this->url}/transcoded";
324 if ( substr(
$url, 0, 9 ) !=
'mwrepo://' ) {
325 throw new MWException( __METHOD__ .
': unknown protocol' );
327 $bits = explode(
'/', substr(
$url, 9 ), 3 );
328 if (
count( $bits ) != 3 ) {
329 throw new MWException( __METHOD__ .
": invalid mwrepo URL: $url" );
331 list( $repo, $zone, $rel ) = $bits;
332 if ( $repo !== $this->
name ) {
333 throw new MWException( __METHOD__ .
": fetching from a foreign repo is not supported" );
337 throw new MWException( __METHOD__ .
": invalid zone: $zone" );
340 return $base .
'/' . rawurldecode( $rel );
350 if ( !isset( $this->zones[$zone] ) ) {
351 return [
null,
null ];
354 return [ $this->zones[$zone][
'container'], $this->zones[$zone][
'directory'] ];
365 if ( $container ===
null ||
$base ===
null ) {
368 $backendName = $this->backend->getName();
373 return "mwstore://$backendName/{$container}{$base}";
393 if ( $this->oldFileFactory ) {
394 return call_user_func( $this->oldFileFactory,
$title, $this,
$time );
399 return call_user_func( $this->fileFactory,
$title, $this );
425 if ( isset(
$options[
'bypassCache'] ) ) {
429 $flags = !empty(
$options[
'latest'] ) ? File::READ_LATEST : 0;
430 # First try the current version of the file to see if it precedes the timestamp
435 $img->load( $flags );
436 if ( $img->exists() && ( !
$time || $img->getTimestamp() ==
$time ) ) {
439 # Now try an old version of the file
440 if (
$time !==
false ) {
443 $img->load( $flags );
444 if ( $img->exists() ) {
447 } elseif ( !empty(
$options[
'private'] ) &&
459 if ( !empty(
$options[
'ignoreRedirect'] ) ) {
464 $img = $this->
newFile( $redir );
468 $img->load( $flags );
469 if ( $img->exists() ) {
470 $img->redirectedFrom(
$title->getDBkey() );
498 foreach ( $items
as $item ) {
499 if ( is_array( $item ) ) {
510 if ( $flags & self::NAME_AND_TIME_ONLY ) {
512 'title' =>
$file->getTitle()->getDBkey(),
513 'timestamp' =>
$file->getTimestamp()
535 # First try to find a matching current version of a file...
536 if ( !$this->fileFactoryKey ) {
539 $img = call_user_func( $this->fileFactoryKey, $sha1, $this,
$time );
540 if ( $img && $img->exists() ) {
543 # Now try to find a matching old version of a file...
544 if (
$time !==
false && $this->oldFileFactoryKey ) {
545 $img = call_user_func( $this->oldFileFactoryKey, $sha1, $this,
$time );
546 if ( $img && $img->exists() ) {
549 } elseif ( !empty(
$options[
'private'] ) &&
585 if (
count( $files ) ) {
650 if ( $this->initialCapital ) {
651 $name = MediaWikiServices::getInstance()->getContentLanguage()->ucfirst(
$name );
688 $parts = explode(
'!', $suffix, 2 );
689 $name = $parts[1] ?? $suffix;
699 if ( $levels == 0 ) {
702 $hash = md5(
$name );
704 for ( $i = 1; $i <= $levels; $i++ ) {
705 $path .= substr( $hash, 0, $i ) .
'/';
738 if ( isset( $this->scriptDirUrl ) ) {
759 if ( !is_null( $this->descBaseUrl ) ) {
760 # "http://example.com/wiki/File:"
761 return $this->descBaseUrl . $encName;
763 if ( !is_null( $this->articleUrl ) ) {
764 # "http://example.com/wiki/$1"
765 # We use "Image:" as the canonical namespace for
766 # compatibility across all MediaWiki versions.
767 return str_replace(
'$1',
768 "Image:$encName", $this->articleUrl );
770 if ( !is_null( $this->scriptDirUrl ) ) {
771 # "http://example.com/w"
772 # We use "Image:" as the canonical namespace for
773 # compatibility across all MediaWiki versions,
774 # and just sort of hope index.php is right. ;)
775 return $this->
makeUrl(
"title=Image:$encName" );
793 if ( !is_null(
$lang ) ) {
796 if ( isset( $this->scriptDirUrl ) ) {
817 if ( isset( $this->scriptDirUrl ) ) {
820 return $this->
makeUrl(
'title=MediaWiki:Filepage.css&action=raw&ctype=text/css' );
839 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
843 if (
$status->successCount == 0 ) {
865 if ( $flags & self::DELETE_SOURCE ) {
866 throw new InvalidArgumentException(
"DELETE_SOURCE not supported in " . __METHOD__ );
874 foreach ( $triplets
as $triplet ) {
875 list( $srcPath, $dstZone, $dstRel ) = $triplet;
877 .
"( \$src='$srcPath', \$dstZone='$dstZone', \$dstRel='$dstRel' )\n"
886 throw new MWException(
'Validation error in $dstRel' );
888 $dstPath =
"$root/$dstRel";
889 $dstDir = dirname( $dstPath );
892 return $this->
newFatal(
'directorycreateerror', $dstDir );
914 $opts = [
'force' =>
true ];
915 if ( $flags & self::SKIP_LOCKING ) {
916 $opts[
'nonLocking'] =
true;
940 if ( is_array(
$path ) ) {
948 $operations[] = [
'op' =>
'delete',
'src' =>
$path ];
951 $opts = [
'force' =>
true ];
952 if ( $flags & self::SKIP_LOCKING ) {
953 $opts[
'nonLocking'] =
true;
955 $status->merge( $this->backend->doOperations( $operations, $opts ) );
998 $status->merge( $this->backend->clean(
999 [
'dir' => $this->resolveToStoragePath( $dir ) ] ) );
1019 foreach ( $triples
as $triple ) {
1020 list( $src, $dst ) = $triple;
1021 if ( $src instanceof
FSFile ) {
1029 if ( !isset( $triple[2] ) ) {
1031 } elseif ( is_string( $triple[2] ) ) {
1033 $headers = [
'Content-Disposition' => $triple[2] ];
1034 } elseif ( is_array( $triple[2] ) && isset( $triple[2][
'headers'] ) ) {
1035 $headers = $triple[2][
'headers'];
1044 'headers' => $headers
1048 $status->merge( $this->backend->doQuickOperations( $operations ) );
1068 'ignoreMissingSource' =>
true
1071 $status->merge( $this->backend->doQuickOperations( $operations ) );
1091 $dstUrlRel = $hashPath . $date .
'!' . rawurlencode( $originalName );
1092 $virtualUrl = $this->
getVirtualUrl(
'temp' ) .
'/' . $dstUrlRel;
1110 if ( substr( $virtualUrl, 0, strlen( $temp ) ) != $temp ) {
1111 wfDebug( __METHOD__ .
": Invalid temp virtual URL\n" );
1116 return $this->
quickPurge( $virtualUrl )->isOK();
1134 foreach ( $srcPaths
as $srcPath ) {
1141 $params = [
'srcs' => $sources,
'dst' => $dstPath ];
1148 if ( $flags & self::DELETE_SOURCE ) {
1183 [ [ $src, $dstRel, $archiveRel,
$options ] ], $flags );
1184 if (
$status->successCount == 0 ) {
1215 $sourceFSFilesToDelete = [];
1217 foreach ( $ntuples
as $ntuple ) {
1218 list( $src, $dstRel, $archiveRel ) = $ntuple;
1219 $srcPath = ( $src instanceof
FSFile ) ? $src->getPath() : $src;
1225 throw new MWException(
'Validation error in $dstRel' );
1228 throw new MWException(
'Validation error in $archiveRel' );
1232 $dstPath =
"$publicRoot/$dstRel";
1233 $archivePath =
"$publicRoot/$archiveRel";
1235 $dstDir = dirname( $dstPath );
1236 $archiveDir = dirname( $archivePath );
1239 return $this->
newFatal(
'directorycreateerror', $dstDir );
1242 return $this->
newFatal(
'directorycreateerror', $archiveDir );
1246 $headers =
$options[
'headers'] ?? [];
1257 'dst' => $archivePath,
1258 'ignoreMissingSource' =>
true
1263 if ( $flags & self::DELETE_SOURCE ) {
1268 'overwrite' =>
true,
1269 'headers' => $headers
1276 'overwrite' =>
true,
1277 'headers' => $headers
1285 'overwrite' =>
true,
1286 'headers' => $headers
1288 if ( $flags & self::DELETE_SOURCE ) {
1289 $sourceFSFilesToDelete[] = $srcPath;
1297 foreach ( $ntuples
as $i => $ntuple ) {
1298 list( , , $archiveRel ) = $ntuple;
1299 $archivePath = $this->
getZonePath(
'public' ) .
"/$archiveRel";
1301 $status->value[$i] =
'archived';
1307 foreach ( $sourceFSFilesToDelete
as $file ) {
1308 Wikimedia\suppressWarnings();
1310 Wikimedia\restoreWarnings();
1328 if ( $this->isPrivate
1329 || $container === $this->zones[
'deleted'][
'container']
1330 || $container === $this->zones[
'temp'][
'container']
1332 # Take all available measures to prevent web accessibility of new deleted
1333 # directories, in case the user has not configured offline storage
1353 $status->merge( $this->backend->clean(
1354 [
'dir' => $this->resolveToStoragePath( $dir ) ] ) );
1378 $paths = array_map( [ $this,
'resolveToStoragePath' ], $files );
1379 $this->backend->preloadFileStat( [
'srcs' => $paths ] );
1382 foreach ( $files
as $key =>
$file ) {
1384 $result[$key] = $this->backend->fileExists( [
'src' =>
$path ] );
1400 public function delete( $srcRel, $archiveRel ) {
1403 return $this->
deleteBatch( [ [ $srcRel, $archiveRel ] ] );
1437 foreach ( $sourceDestPairs
as $pair ) {
1438 list( $srcRel, $archiveRel ) = $pair;
1440 throw new MWException( __METHOD__ .
':Validation error in $srcRel' );
1442 throw new MWException( __METHOD__ .
':Validation error in $archiveRel' );
1446 $srcPath =
"{$publicRoot}/$srcRel";
1449 $archivePath =
"{$deletedRoot}/{$archiveRel}";
1450 $archiveDir = dirname( $archivePath );
1454 return $this->
newFatal(
'directorycreateerror', $archiveDir );
1460 'dst' => $archivePath,
1463 'overwriteSame' =>
true
1470 $opts = [
'force' =>
true ];
1495 if ( strlen( $key ) < 31 ) {
1496 throw new MWException(
"Invalid storage key '$key'." );
1500 $path .= $key[$i] .
'/';
1515 if ( self::isVirtualUrl(
$path ) ) {
1532 return $this->backend->getLocalCopy( [
'src' =>
$path ] );
1546 return $this->backend->getLocalReference( [
'src' =>
$path ] );
1560 $props = $mwProps->getPropsFromPath( $fsFile->getPath(),
true );
1562 $props = $mwProps->newPlaceholderProps();
1577 return $this->backend->getFileTimestamp( [
'src' =>
$path ] );
1589 return $this->backend->getFileSize( [
'src' =>
$path ] );
1601 return $this->backend->getFileSha1Base36( [
'src' =>
$path ] );
1615 $params = [
'src' =>
$path,
'headers' => $headers,
'options' => $optHeaders ];
1618 ob_start(
null, 1048576 );
1619 ob_implicit_flush(
true );
1626 if ( ob_get_status() ) {
1666 $numDirs = 1 << ( $this->hashLevels * 4 );
1669 for ( $flatIndex = 0; $flatIndex < $numDirs; $flatIndex++ ) {
1670 $hexString = sprintf(
"%0{$this->hashLevels}x", $flatIndex );
1671 $path = $publicRoot;
1673 $path .=
'/' . substr( $hexString, 0, $hexPos + 1 );
1675 $iterator = $this->backend->getFileList( [
'dir' =>
$path ] );
1676 foreach ( $iterator
as $name ) {
1678 call_user_func( $callback,
"{$path}/{$name}" );
1690 if ( strval( $filename ) ==
'' ) {
1703 switch ( $this->pathDisclosureProtection ) {
1706 $callback = [ $this,
'passThrough' ];
1709 $callback = [ $this,
'paranoidClean' ];
1806 if ( strlen(
$name ) > $this->abbrvThreshold ) {
1808 $name = (
$ext ==
'' ) ?
'thumbnail' :
"thumbnail.$ext";
1820 return $this->
getName() ==
'local';
1843 $args = func_get_args();
1846 return $this->wanCache->makeKey( ...
$args );
1859 'name' =>
"{$this->name}-temp",
1860 'backend' => $this->backend,
1865 'container' => $this->zones[
'temp'][
'container'],
1866 'directory' => $this->zones[
'temp'][
'directory']
1869 'container' => $this->zones[
'temp'][
'container'],
1870 'directory' => $this->zones[
'temp'][
'directory'] ==
''
1872 : $this->zones[
'temp'][
'directory'] .
'/thumb'
1875 'container' => $this->zones[
'temp'][
'container'],
1876 'directory' => $this->zones[
'temp'][
'directory'] ==
''
1878 : $this->zones[
'temp'][
'directory'] .
'/transcoded'
1881 'hashLevels' => $this->hashLevels,
1920 $optionalSettings = [
1921 'url',
'thumbUrl',
'initialCapital',
'descBaseUrl',
'scriptDirUrl',
'articleUrl',
1922 'fetchDescription',
'descriptionCacheExpiry',
'favicon'
1924 foreach ( $optionalSettings
as $k ) {
1925 if ( isset( $this->$k ) ) {
1926 $ret[$k] = $this->$k;
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
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
doOperations(array $ops, array $opts=[])
This is the main entry point into the backend for write operations.
return true to allow those checks to and false if checking is done & $user
getReadOnlyReason()
Get an explanatory message if this repo is read-only.
initZones( $doZones=[])
Check if a single zone or list of zones is defined for usage.
wfMessageFallback(... $keys)
This function accepts multiple message keys and returns a message instance for the first message whic...
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
passThrough( $param)
Path disclosure protection function.
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.
bool $isPrivate
Whether all zones should be private (e.g.
validateFilename( $filename)
Determine if a relative path is valid, i.e.
getRootDirectory()
Get the public zone root storage directory of the repository.
if(!isset( $args[0])) $lang
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...
streamFile( $virtualUrl, $headers=[])
Attempt to stream a file with the given virtual URL/storage path.
streamFileWithStatus( $virtualUrl, $headers=[], $optHeaders=[])
Attempt to stream a file with the given virtual URL/storage path.
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. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
getTempRepo()
Get a temporary private 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.
string $thumbUrl
The base thumbnail URL.
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.
static extensionFromPath( $path, $case='lowercase')
Get the final extension from a storage or FS path.
static newFatal( $message)
Factory function for fatal errors.
static getHashPathForLevel( $name, $levels)
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.
array $fileFactory
callable Override these in the base class
bool $initialCapital
Equivalent to $wgCapitalLinks (or $wgCapitalLinkOverrides[NS_FILE], determines whether filenames impl...
static normalizeTitle( $title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
publish( $src, $dstRel, $archiveRel, $flags=0, array $options=[])
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
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...
getSharedCacheKey()
Get a key on the primary cache for this repository.
static newEmpty()
Get an instance that wraps EmptyBagOStuff.
freeTemp( $virtualUrl)
Remove a temporary file or mark it for garbage collection.
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
and how to run hooks for an and one after Each event has a name
findFiles(array $items, $flags=0)
Find many files at once.
quickPurge( $path)
Purge a file from the repo.
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
findFileFromKey( $sha1, $options=[])
Find an instance of the file with this key, created at the specified time Returns false if the file d...
newFile( $title, $time=false)
Create a new File object from the local repository.
namespace and then decline to actually register it file or subcat img or subcat $title
enumFiles( $callback)
Call a callback function for every public regular file in the repository.
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.
string $thumbScriptUrl
URL of thumb.php.
findFilesByPrefix( $prefix, $limit)
Return an array of files where the name starts with $prefix.
array $zones
Map of zones to config.
paranoidClean( $param)
Path disclosure protection function.
array $oldFileFactory
callable|bool Override these in the base class
getDescriptionUrl( $name)
Get the URL of an image description page.
getThumbProxySecret()
Get the secret key for the proxied thumb service.
store( $srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
array $fileFactoryKey
callable|bool Override these in the base class
static getInstance( $ts=false)
Get a timestamp instance in GMT.
MimeMagic helper wrapper.
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'...
getThumbProxyUrl()
Get the URL thumb.php requests are being proxied to.
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.
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))
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
fileExists( $file)
Checks existence of a file.
getFileSha1( $virtualUrl)
Get the sha1 (base 36) of a file with a given virtual URL/storage path.
backendSupportsUnicodePaths()
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
getNameFromTitle(Title $title)
Get the name of a file from its title object.
Allows to change the fields on the form that will be generated $name
getDisplayName()
Get the human-readable name of the repo.
findFile( $title, $options=[])
Find an instance of the named file created at the specified time Returns false if the file does not e...
static newGood( $value=null)
Factory function for good results.
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.
Multi-datacenter aware caching interface.
$wgSitename
Name of the site.
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
string $scriptDirUrl
URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g.
string $articleUrl
Equivalent to $wgArticlePath, e.g.
getHashLevels()
Get the number of hash directory levels.
initDirectory( $dir)
Creates a directory with the appropriate zone permissions.
Class representing a non-directory file on the file system.
getBackend()
Get the file backend instance.
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.
string $thumbProxySecret
Secret key to pass as an X-Swift-Secret header to the proxied thumb service.
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...
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
getTempHashPath( $suffix)
Get a relative path including trailing slash, e.g.
string $descBaseUrl
URL of image description pages, 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.
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 just before the function returns a value If you return true
static isPathTraversalFree( $path)
Check if a relative path has no directory traversals.
cleanDir( $dir)
Deletes a directory if empty.
if(!is_readable( $file)) $ext
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
see documentation in includes Linker php for Linker::makeImageLink & $time
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
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.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
bool $transformVia404
Whether to skip media file transformation on parse and rely on a 404 handler instead.
supportsSha1URLs()
Returns whether or not repo supports having originals SHA-1s in the thumb URLs.
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.
string false $url
Public zone URL.
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.
array $oldFileFactoryKey
callable|bool Override these in the base class
string $thumbProxyUrl
URL of where to proxy thumb.php requests to.