24 use Psr\Log\LoggerInterface;
29 use Liuggio\StatsdClient\Sender\SocketSender;
71 $request = $this->context->getRequest();
72 $curid =
$request->getInt(
'curid' );
76 if (
$request->getCheck(
'search' ) ) {
94 && !is_null(
$ret ) &&
$ret->getArticleID() == 0
104 if (
$ret ===
null || !
$ret->isSpecialPage() ) {
106 $oldid =
$request->getInt(
'oldid' );
107 $oldid = $oldid ? $oldid :
$request->getInt(
'diff' );
117 && strval(
$title ) ===
''
124 if (
$ret ===
null || (
$ret->getDBkey() ==
'' && !
$ret->isExternal() ) ) {
139 if ( !$this->context->hasTitle() ) {
141 $this->context->setTitle( $this->
parseTitle() );
146 return $this->context->getTitle();
155 if ( $this->action ===
null ) {
177 $request = $this->context->getRequest();
178 $requestTitle =
$title = $this->context->getTitle();
179 $output = $this->context->getOutput();
180 $user = $this->context->getUser();
182 if (
$request->getVal(
'printable' ) ===
'yes' ) {
191 ||
$title->isSpecial(
'Badtitle' )
205 $permErrors =
$title->isSpecial(
'RunJobs' )
207 :
$title->getUserPermissionsErrors(
'read',
$user );
208 if ( count( $permErrors ) ) {
219 $this->context->setTitle( $badTitle );
226 if (
$title->isExternal() ) {
227 $rdfrom =
$request->getVal(
'rdfrom' );
229 $url =
$title->getFullURL( [
'rdfrom' => $rdfrom ] );
236 if ( !preg_match(
'/^' . preg_quote( $this->config->get(
'Server' ),
'/' ) .
'/', $url )
240 $output->redirect( $url, 301 );
254 if (
$title->isSpecialPage() ) {
257 $specialPage->setContext( $this->context );
258 if ( $this->config->get(
'HideIdentifiableRedirects' )
259 && $specialPage->personallyIdentifiableTarget()
262 $target = $specialPage->getRedirect( $subpage );
264 if ( $target instanceof
Title ) {
265 $query = $specialPage->getRedirectQuery() ?: [];
267 $request->setRequestURL( $this->context->getRequest()->getRequestURL() );
268 $this->context->setRequest(
$request );
270 $this->context->getOutput()->lowerCdnMaxage( 0 );
271 $this->context->setTitle( $target );
274 $this->action =
null;
277 'wgInternalRedirectTargetUrl' => $target->getFullURL(
$query ),
279 $output->addModules(
'mediawiki.action.view.redirect' );
286 if (
$title->isSpecialPage() ) {
295 } elseif ( is_string(
$article ) ) {
298 throw new MWException(
"Shouldn't happen: MediaWiki::initializeArticle()"
299 .
" returned neither an object nor a URL" );
328 $request = $this->context->getRequest();
329 $output = $this->context->getOutput();
331 if (
$request->getVal(
'action',
'view' ) !=
'view'
333 || (
$request->getVal(
'title' ) !==
null
335 || count(
$request->getValueNames( [
'action',
'title' ] ) )
341 if (
$title->isSpecialPage() ) {
349 if ( $targetUrl ==
$request->getFullRequestURL() ) {
350 $message =
"Redirect loop detected!\n\n" .
351 "This means the wiki got confused about what page was " .
352 "requested; this sometimes happens when moving a wiki " .
353 "to a new server or changing the server configuration.\n\n";
355 if ( $this->config->get(
'UsePathInfo' ) ) {
356 $message .=
"The wiki is trying to interpret the page " .
357 "title from the URL path portion (PATH_INFO), which " .
358 "sometimes fails depending on the web server. Try " .
359 "setting \"\$wgUsePathInfo = false;\" in your " .
360 "LocalSettings.php, or check that \$wgArticlePath " .
363 $message .=
"Your web server was detected as possibly not " .
364 "supporting URL path components (PATH_INFO) correctly; " .
365 "check your LocalSettings.php for a customized " .
366 "\$wgArticlePath setting and/or toggle \$wgUsePathInfo " .
372 $output->redirect( $targetUrl,
'301' );
383 $title = $this->context->getTitle();
384 if ( $this->context->canUseWikiPage() ) {
388 $page = $this->context->getWikiPage();
393 $this->context->setWikiPage( $page );
394 wfWarn(
"RequestContext::canUseWikiPage() returned false" );
405 $request = $this->context->getRequest();
410 $file = ( $page instanceof
WikiFilePage ) ? $page->getFile() :
null;
414 &&
$request->getVal(
'redirect' ) !=
'no'
416 && !( is_object( $file ) && $file->exists() && !$file->getRedirected() )
419 $ignoreRedirect = $target =
false;
427 if ( !$ignoreRedirect && ( $target || $page->isRedirect() ) ) {
429 $target = $target ? $target : $page->followRedirect();
430 if ( is_string( $target ) ) {
431 if ( !$this->config->get(
'DisableHardRedirects' ) ) {
436 if ( is_object( $target ) ) {
439 $rpage->loadPageData();
440 if ( $rpage->exists() || ( is_object( $file ) && !$file->isLocal() ) ) {
442 $rarticle->setRedirectedFrom(
$title );
445 $this->context->setTitle( $target );
446 $this->context->setWikiPage(
$article->getPage() );
451 $this->context->setTitle(
$article->getTitle() );
452 $this->context->setWikiPage(
$article->getPage() );
466 $request = $this->context->getRequest();
467 $output = $this->context->getOutput();
468 $title = $this->context->getTitle();
469 $user = $this->context->getUser();
482 $trxLimits = $this->config->get(
'TrxProfilerLimits' );
485 $trxProfiler->setExpectations( $trxLimits[
'POST-nonwrite'], __METHOD__ );
489 # Let CDN cache things if we can purge them.
490 if ( $this->config->get(
'UseSquid' ) &&
497 $output->setCdnMaxage( $this->config->get(
'SquidMaxage' ) );
507 $request->getVal(
'action',
'view' ),
513 $output->showErrorPage(
'nosuchaction',
'nosuchactiontext' );
532 }
catch ( Exception
$e ) {
539 in_array(
$action, [
'view',
'history' ],
true ) &&
544 if (
$cache->isCached() ) {
552 }
catch ( Error
$e ) {
563 $name = $this->context->getUser()->getName();
564 $services->getDBLoadBalancerFactory()->setAgentName(
590 ignore_user_abort(
true );
598 $lbFactory->commitMasterChanges(
601 [
'maxWriteDuration' =>
$config->
get(
'MaxUserDBWriteDuration' ) ]
603 wfDebug( __METHOD__ .
': primary transaction round committed' );
607 wfDebug( __METHOD__ .
': pre-send deferred updates completed' );
614 $flags = $lbFactory::SHUTDOWN_CHRONPROT_SYNC;
615 $strategy =
'cookie+sync';
617 $allowHeaders = !(
$output->isDisabled() || headers_sent() );
618 if (
$output->getRedirect() && $lbFactory->hasOrMadeRecentMasterChanges( INF ) ) {
623 if ( $domainDistance ===
'local' && $allowHeaders ) {
624 $flags = $lbFactory::SHUTDOWN_CHRONPROT_ASYNC;
625 $strategy =
'cookie';
626 } elseif ( $domainDistance ===
'remote' ) {
627 $flags = $lbFactory::SHUTDOWN_CHRONPROT_ASYNC;
628 $strategy =
'cookie+url';
634 $lbFactory->shutdown( $flags, $postCommitWork, $cpIndex );
635 wfDebug( __METHOD__ .
': LBFactory shutdown completed' );
637 if ( $cpIndex > 0 ) {
638 if ( $allowHeaders ) {
639 $expires = time() + ChronologyProtector::POSITION_TTL;
641 $request->response()->setCookie(
'cpPosIndex', $cpIndex, $expires,
$options );
644 if ( $strategy ===
'cookie+url' ) {
645 if (
$output->getRedirect() ) {
646 $safeUrl = $lbFactory->appendShutdownCPIndexAsQuery(
652 $e =
new LogicException(
"No redirect; cannot append cpPosIndex parameter." );
661 if (
$request->wasPosted() && $lbFactory->hasOrMadeRecentMasterChanges() ) {
662 $expires = time() +
$config->
get(
'DataCenterUpdateStickTTL' );
665 $request->response()->setCookie(
'UseCDNCache',
'false', $expires,
$options );
670 if ( $lbFactory->laggedReplicaUsed() ) {
672 $output->lowerCdnMaxage( $maxAge );
673 $request->response()->header(
"X-Database-Lagged: true" );
674 wfDebugLog(
'replication',
"Lagged DB used; CDN cache TTL limited to $maxAge seconds" );
679 $maxAge =
$config->
get(
'CdnMaxageSubstitute' );
680 $output->lowerCdnMaxage( $maxAge );
681 $request->response()->header(
"X-Response-Substitute: true" );
691 if ( $clusterWiki ===
wfWikiID() ) {
693 } elseif ( $clusterWiki !==
false ) {
714 $timing = $this->context->getTiming();
715 $timing->mark(
'requestShutdown' );
718 }
catch ( Exception
$e ) {
726 $blocksHttpClient =
true;
728 $callback =
function ()
use ( $mode, &$blocksHttpClient ) {
731 }
catch ( Exception
$e ) {
737 if ( function_exists(
'register_postsend_function' ) ) {
741 $blocksHttpClient =
false;
743 if ( function_exists(
'fastcgi_finish_request' ) ) {
744 fastcgi_finish_request();
746 $blocksHttpClient =
false;
750 ignore_user_abort(
true );
760 $output = $this->context->getOutput();
761 $request = $this->context->getRequest();
764 if ( $this->config->get(
'UseAjax' ) &&
$request->getVal(
'action' ) ===
'ajax' ) {
769 $this->context->setTitle(
$title );
773 $dispatcher->performAction( $this->context->getUser() );
785 $trxLimits = $this->config->get(
'TrxProfilerLimits' );
787 $trxProfiler->setLogger( LoggerFactory::getInstance(
'DBPerformance' ) );
789 $trxProfiler->setExpectations( $trxLimits[
'GET'], __METHOD__ );
791 $trxProfiler->setExpectations( $trxLimits[
'POST'], __METHOD__ );
801 if (
$cache->isCacheGood( ) ) {
803 $timestamp =
$cache->cacheTimestamp();
804 if ( !
$output->checkLastModified( $timestamp ) ) {
805 $cache->loadFromFileCache( $this->context );
809 $this->context->getWikiPage()->doViewUpdates( $this->context->getUser() );
847 $request = $this->context->getRequest();
850 if (
$request->getProtocol() !==
'http' ) {
854 $force = $this->config->get(
'ForceHTTPS' );
860 throw new RuntimeException(
'$wgForceHTTPS is true but the server is not HTTPS' );
871 return $request->getSession()->shouldForceHTTPS() ||
873 $request->getCookie(
'forceHTTPS',
'' ) ||
876 $this->context->getUser()->isLoggedIn()
877 && $this->context->getUser()->requiresHTTPS()
895 $request = $this->context->getRequest();
896 $oldUrl =
$request->getFullRequestURL();
897 $redirUrl = preg_replace(
'#^http://#',
'https://', $oldUrl );
900 if ( !
Hooks::run(
'BeforeHttpsRedirect', [ $this->context, &$redirUrl ] ) ) {
913 wfDebugLog(
'RedirectedPosts',
"Redirected from HTTP to HTTPS: $oldUrl" );
917 $this->context->setTitle(
$title );
919 $output = $this->context->getOutput();
920 $output->addVaryHeader(
'X-Forwarded-Proto' );
921 $output->redirect( $redirUrl );
932 public function restInPeace( $mode =
'fast', $blocksHttpClient =
true ) {
935 $lbFactory->commitMasterChanges( __METHOD__ );
939 $trxProfiler->resetExpectations();
940 $trxProfiler->setExpectations(
941 $this->context->getRequest()->hasSafeMethod()
942 ? $this->config->get(
'TrxProfilerLimits' )[
'PostSend-GET']
943 : $this->config->get(
'TrxProfilerLimits' )[
'PostSend-POST'],
955 if ( $mode ===
'normal' ) {
963 $lbFactory->commitMasterChanges( __METHOD__ );
966 wfDebug(
"Request ended normally\n" );
982 $statsdServer = explode(
':',
$config->
get(
'StatsdServer' ) );
983 $statsdHost = $statsdServer[0];
984 $statsdPort = isset( $statsdServer[1] ) ? $statsdServer[1] : 8125;
985 $statsdSender =
new SocketSender( $statsdHost, $statsdPort );
987 $statsdClient->setSamplingRates(
$config->
get(
'StatsdSamplingRates' ) );
988 $statsdClient->send( $stats->
getData() );
991 }
catch ( Exception $ex ) {
1003 $jobRunRate = $this->config->get(
'JobRunRate' );
1004 if ( $this->
getTitle()->isSpecial(
'RunJobs' ) ) {
1006 } elseif ( $jobRunRate <= 0 ||
wfReadOnly() ) {
1010 if ( $jobRunRate < 1 ) {
1011 $max = mt_getrandmax();
1012 if ( mt_rand( 0, $max ) > $max * $jobRunRate ) {
1017 $n = intval( $jobRunRate );
1020 $logger = LoggerFactory::getInstance(
'runJobs' );
1023 if ( $this->config->get(
'RunJobsAsync' ) ) {
1026 if ( !$invokedWithSuccess ) {
1028 $logger->warning(
"Jobs switched to blocking; Special:RunJobs disabled" );
1045 $runner =
new JobRunner( $runJobsLogger );
1046 $runner->run( [
'maxJobs' => $n ] );
1061 $query = [
'title' =>
'Special:RunJobs',
1062 'tasks' =>
'jobs',
'maxjobs' => $n,
'sigexpiry' => time() + 5 ];
1064 $query, $this->config->get(
'SecretKey' ) );
1066 $errno = $errstr =
null;
1067 $info =
wfParseUrl( $this->config->get(
'CanonicalServer' ) );
1068 $host = $info ? $info[
'host'] :
null;
1070 if ( isset( $info[
'scheme'] ) && $info[
'scheme'] ==
'https' ) {
1071 $host =
"tls://" . $host;
1074 if ( isset( $info[
'port'] ) ) {
1075 $port = $info[
'port'];
1078 Wikimedia\suppressWarnings();
1079 $sock = $host ? fsockopen(
1087 Wikimedia\restoreWarnings();
1089 $invokedWithSuccess =
true;
1094 "POST $url HTTP/1.1\r\n" .
1095 "Host: {$info['host']}\r\n" .
1096 "Connection: Close\r\n" .
1097 "Content-Length: 0\r\n\r\n"
1100 $runJobsLogger->info(
"Running $n job(s) via '$url'" );
1103 stream_set_timeout( $sock, 2 );
1104 $bytes = fwrite( $sock,
$req );
1105 if ( $bytes !== strlen(
$req ) ) {
1106 $invokedWithSuccess =
false;
1107 $runJobsLogger->error(
"Failed to start cron API (socket write error)" );
1111 $start = microtime(
true );
1113 $sec = microtime(
true ) - $start;
1114 if ( !preg_match(
'#^HTTP/\d\.\d 202 #',
$status ) ) {
1115 $invokedWithSuccess =
false;
1116 $runJobsLogger->error(
"Failed to start cron API: received '$status' ($sec)" );
1121 $invokedWithSuccess =
false;
1122 $runJobsLogger->error(
"Failed to start cron API (socket error $errno): $errstr" );
1125 return $invokedWithSuccess;
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
if(! $wgRequest->checkUrlExtension()) if(isset( $_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !='') if(! $wgEnableAPI) $wgTitle
Actions are things which can be done to pages (edit, delete, rollback, etc).
static factory( $action, Page $page, IContextSource $context=null)
Get an appropriate Action subclass for the given action.
static getActionName(IContextSource $context)
Get the action that will be executed, not necessarily the one passed passed through the "action" requ...
Object-Oriented Ajax functions.
static newFromWikiPage(WikiPage $page, IContextSource $context)
Create an Article object of the appropriate class for the given page.
Show an error page on a badtitle.
static getForTitle(Title $title)
Returns the appropriate ContentHandler singleton for the given title.
static doUpdates( $mode='run', $stage=self::ALL)
Do any deferred updates and clear the list.
static addCallableUpdate( $callable, $stage=self::POSTSEND, $dbw=null)
Add a callable update.
Similar to FauxRequest, but only fakes URL parameters and method (POST or GET) and use the base reque...
An error page which can definitely be safely rendered using the OutputPage.
report()
Output a report about the exception and takes care of formatting.
Page view caching in the file system.
static useFileCache(IContextSource $context, $mode=self::MODE_NORMAL)
Check if pages can be cached for this request/user.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Show an error that looks like an HTTP server error.
static singleton( $domain=false)
Job queue runner utility methods.
static rollbackMasterChangesAndLog( $e)
Roll back any open database transactions and log the stack trace of the exception.
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).
static handleException( $e)
Exception handler which simulates the appropriate catch() handling:
static getHTML( $e)
If $wgShowExceptionDetails is true, return a HTML message with a backtrace to the error,...
static singleton()
Get the signleton instance of this class.
Show an error when a user tries to do something they do not have the necessary permissions for.
static instance()
Singleton.
Shortcut to construct a special page alias.
static getMain()
Get the RequestContext object associated with the main request.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
A statsd client that applies the sampling rate to the data items before sending them.
static executePath(Title &$title, IContextSource &$context, $including=false, LinkRenderer $linkRenderer=null)
Execute a special page path.
static getPage( $name)
Find the object with a given name and return it (or NULL)
static resolveAlias( $alias)
Given a special page name with a possible subpage, return an array where the first element is the spe...
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
static getQuerySignature(array $query, $secretKey)
Represents a title within MediaWiki.
static newFromID( $id, $flags=0)
Create a new Title from an article ID.
static newFromURL( $url)
THIS IS NOT THE FUNCTION YOU WANT.
static newFromTextThrow( $text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid,...
static newMainPage()
Create a new Title for the Main Page.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
getCdnUrls()
Get a list of URLs to purge from the CDN cache when this page changes.
static disableForPostSend()
Disable setters for post-send processing.
Special handling for file pages.
static getWikiFromUrl( $url)
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
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 and the content language as $wgContLang
when a variable name is used in a it is silently declared as a new masking the global
this hook is for auditing only $req
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 $request
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 $output
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
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
namespace and then decline to actually register it file or subcat img or subcat $title
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 $services
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). '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
Allows to change the fields on the form that will be generated $name
this hook is for auditing only RecentChangesLinked and Watchlist $special
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
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
returning false will NOT prevent logging $e
The MIT 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
register_postsend_function( $callback)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
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
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
Interface for configuration instances.
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
MediaWiki adaptation of StatsdDataFactory that provides buffering functionality.
hasData()
Check whether this data factory has any buffered data.
clearData()
Clear all buffered data from the factory.
getData()
Return the buffered data from the factory.
Interface for objects which can provide a MediaWiki context on request.
getConfig()
Get the site configuration.
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
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