3 * Helper class for the index.php entry point.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 use MediaWiki\Logger\LoggerFactory
;
24 use Psr\Log\LoggerInterface
;
25 use MediaWiki\MediaWikiServices
;
26 use Wikimedia\Rdbms\ChronologyProtector
;
27 use Wikimedia\Rdbms\LBFactory
;
28 use Wikimedia\Rdbms\DBConnectionError
;
31 * The MediaWiki class is the helper class for the index.php entry point.
45 * @var String Cache what action this request is
50 * @param IContextSource|null $context
52 public function __construct( IContextSource
$context = null ) {
54 $context = RequestContext
::getMain();
57 $this->context
= $context;
58 $this->config
= $context->getConfig();
62 * Parse the request to get the Title object
64 * @throws MalformedTitleException If a title has been provided by the user, but is invalid.
65 * @return Title Title object to be $wgTitle
67 private function parseTitle() {
70 $request = $this->context
->getRequest();
71 $curid = $request->getInt( 'curid' );
72 $title = $request->getVal( 'title' );
73 $action = $request->getVal( 'action' );
75 if ( $request->getCheck( 'search' ) ) {
76 // Compatibility with old search URLs which didn't use Special:Search
77 // Just check for presence here, so blank requests still
78 // show the search page when using ugly URLs (T10054).
79 $ret = SpecialPage
::getTitleFor( 'Search' );
81 // URLs like this are generated by RC, because rc_title isn't always accurate
82 $ret = Title
::newFromID( $curid );
84 $ret = Title
::newFromURL( $title );
85 // Alias NS_MEDIA page URLs to NS_FILE...we only use NS_MEDIA
86 // in wikitext links to tell Parser to make a direct file link
87 if ( !is_null( $ret ) && $ret->getNamespace() == NS_MEDIA
) {
88 $ret = Title
::makeTitle( NS_FILE
, $ret->getDBkey() );
90 // Check variant links so that interwiki links don't have to worry
91 // about the possible different language variants
92 if ( count( $wgContLang->getVariants() ) > 1
93 && !is_null( $ret ) && $ret->getArticleID() == 0
95 $wgContLang->findVariantLink( $title, $ret );
99 // If title is not provided, always allow oldid and diff to set the title.
100 // If title is provided, allow oldid and diff to override the title, unless
101 // we are talking about a special page which might use these parameters for
103 if ( $ret === null ||
!$ret->isSpecialPage() ) {
104 // We can have urls with just ?diff=,?oldid= or even just ?diff=
105 $oldid = $request->getInt( 'oldid' );
106 $oldid = $oldid ?
$oldid : $request->getInt( 'diff' );
107 // Allow oldid to override a changed or missing title
109 $rev = Revision
::newFromId( $oldid );
110 $ret = $rev ?
$rev->getTitle() : $ret;
114 // Use the main page as default title if nothing else has been provided
116 && strval( $title ) === ''
117 && !$request->getCheck( 'curid' )
118 && $action !== 'delete'
120 $ret = Title
::newMainPage();
123 if ( $ret === null ||
( $ret->getDBkey() == '' && !$ret->isExternal() ) ) {
124 // If we get here, we definitely don't have a valid title; throw an exception.
125 // Try to get detailed invalid title exception first, fall back to MalformedTitleException.
126 Title
::newFromTextThrow( $title );
127 throw new MalformedTitleException( 'badtitletext', $title );
134 * Get the Title object that we'll be acting on, as specified in the WebRequest
137 public function getTitle() {
138 if ( !$this->context
->hasTitle() ) {
140 $this->context
->setTitle( $this->parseTitle() );
141 } catch ( MalformedTitleException
$ex ) {
142 $this->context
->setTitle( SpecialPage
::getTitleFor( 'Badtitle' ) );
145 return $this->context
->getTitle();
149 * Returns the name of the action that will be executed.
151 * @return string Action
153 public function getAction() {
154 if ( $this->action
=== null ) {
155 $this->action
= Action
::getActionName( $this->context
);
158 return $this->action
;
162 * Performs the request.
165 * - local interwiki redirects
170 * @throws MWException|PermissionsError|BadTitleError|HttpError
173 private function performRequest() {
176 $request = $this->context
->getRequest();
177 $requestTitle = $title = $this->context
->getTitle();
178 $output = $this->context
->getOutput();
179 $user = $this->context
->getUser();
181 if ( $request->getVal( 'printable' ) === 'yes' ) {
182 $output->setPrintable();
185 $unused = null; // To pass it by reference
186 Hooks
::run( 'BeforeInitialize', [ &$title, &$unused, &$output, &$user, $request, $this ] );
188 // Invalid titles. T23776: The interwikis must redirect even if the page name is empty.
189 if ( is_null( $title ) ||
( $title->getDBkey() == '' && !$title->isExternal() )
190 ||
$title->isSpecial( 'Badtitle' )
192 $this->context
->setTitle( SpecialPage
::getTitleFor( 'Badtitle' ) );
195 } catch ( MalformedTitleException
$ex ) {
196 throw new BadTitleError( $ex );
198 throw new BadTitleError();
201 // Check user's permissions to read this page.
202 // We have to check here to catch special pages etc.
203 // We will check again in Article::view().
204 $permErrors = $title->isSpecial( 'RunJobs' )
205 ?
[] // relies on HMAC key signature alone
206 : $title->getUserPermissionsErrors( 'read', $user );
207 if ( count( $permErrors ) ) {
208 // T34276: allowing the skin to generate output with $wgTitle or
209 // $this->context->title set to the input title would allow anonymous users to
210 // determine whether a page exists, potentially leaking private data. In fact, the
211 // curid and oldid request parameters would allow page titles to be enumerated even
212 // when they are not guessable. So we reset the title to Special:Badtitle before the
213 // permissions error is displayed.
215 // The skin mostly uses $this->context->getTitle() these days, but some extensions
216 // still use $wgTitle.
217 $badTitle = SpecialPage
::getTitleFor( 'Badtitle' );
218 $this->context
->setTitle( $badTitle );
219 $wgTitle = $badTitle;
221 throw new PermissionsError( 'read', $permErrors );
224 // Interwiki redirects
225 if ( $title->isExternal() ) {
226 $rdfrom = $request->getVal( 'rdfrom' );
228 $url = $title->getFullURL( [ 'rdfrom' => $rdfrom ] );
230 $query = $request->getValues();
231 unset( $query['title'] );
232 $url = $title->getFullURL( $query );
234 // Check for a redirect loop
235 if ( !preg_match( '/^' . preg_quote( $this->config
->get( 'Server' ), '/' ) . '/', $url )
238 // 301 so google et al report the target as the actual url.
239 $output->redirect( $url, 301 );
241 $this->context
->setTitle( SpecialPage
::getTitleFor( 'Badtitle' ) );
244 } catch ( MalformedTitleException
$ex ) {
245 throw new BadTitleError( $ex );
247 throw new BadTitleError();
249 // Handle any other redirects.
250 // Redirect loops, titleless URL, $wgUsePathInfo URLs, and URLs with a variant
251 } elseif ( !$this->tryNormaliseRedirect( $title ) ) {
252 // Prevent information leak via Special:MyPage et al (T109724)
253 if ( $title->isSpecialPage() ) {
254 $specialPage = SpecialPageFactory
::getPage( $title->getDBkey() );
255 if ( $specialPage instanceof RedirectSpecialPage
) {
256 $specialPage->setContext( $this->context
);
257 if ( $this->config
->get( 'HideIdentifiableRedirects' )
258 && $specialPage->personallyIdentifiableTarget()
260 list( , $subpage ) = SpecialPageFactory
::resolveAlias( $title->getDBkey() );
261 $target = $specialPage->getRedirect( $subpage );
262 // target can also be true. We let that case fall through to normal processing.
263 if ( $target instanceof Title
) {
264 $query = $specialPage->getRedirectQuery() ?
: [];
265 $request = new DerivativeRequest( $this->context
->getRequest(), $query );
266 $request->setRequestURL( $this->context
->getRequest()->getRequestURL() );
267 $this->context
->setRequest( $request );
268 // Do not varnish cache these. May vary even for anons
269 $this->context
->getOutput()->lowerCdnMaxage( 0 );
270 $this->context
->setTitle( $target );
272 // Reset action type cache. (Special pages have only view)
273 $this->action
= null;
275 $output->addJsConfigVars( [
276 'wgInternalRedirectTargetUrl' => $target->getFullURL( $query ),
278 $output->addModules( 'mediawiki.action.view.redirect' );
284 // Special pages ($title may have changed since if statement above)
285 if ( NS_SPECIAL
== $title->getNamespace() ) {
286 // Actions that need to be made when we have a special pages
287 SpecialPageFactory
::executePath( $title, $this->context
);
289 // ...otherwise treat it as an article view. The article
290 // may still be a wikipage redirect to another article or URL.
291 $article = $this->initializeArticle();
292 if ( is_object( $article ) ) {
293 $this->performAction( $article, $requestTitle );
294 } elseif ( is_string( $article ) ) {
295 $output->redirect( $article );
297 throw new MWException( "Shouldn't happen: MediaWiki::initializeArticle()"
298 . " returned neither an object nor a URL" );
305 * Handle redirects for uncanonical title requests.
310 * - $wgUsePathInfo URLs.
311 * - URLs with a variant.
312 * - Other non-standard URLs (as long as they have no extra query parameters).
315 * - Normalise title values:
316 * /wiki/Foo%20Bar -> /wiki/Foo_Bar
317 * - Normalise empty title:
318 * /wiki/ -> /wiki/Main
319 * /w/index.php?title= -> /wiki/Main
320 * - Don't redirect anything with query parameters other than 'title' or 'action=view'.
322 * @param Title $title
323 * @return bool True if a redirect was set.
326 private function tryNormaliseRedirect( Title
$title ) {
327 $request = $this->context
->getRequest();
328 $output = $this->context
->getOutput();
330 if ( $request->getVal( 'action', 'view' ) != 'view'
331 ||
$request->wasPosted()
332 ||
( $request->getVal( 'title' ) !== null
333 && $title->getPrefixedDBkey() == $request->getVal( 'title' ) )
334 ||
count( $request->getValueNames( [ 'action', 'title' ] ) )
335 ||
!Hooks
::run( 'TestCanonicalRedirect', [ $request, $title, $output ] )
340 if ( $title->isSpecialPage() ) {
341 list( $name, $subpage ) = SpecialPageFactory
::resolveAlias( $title->getDBkey() );
343 $title = SpecialPage
::getTitleFor( $name, $subpage );
346 // Redirect to canonical url, make it a 301 to allow caching
347 $targetUrl = wfExpandUrl( $title->getFullURL(), PROTO_CURRENT
);
348 if ( $targetUrl == $request->getFullRequestURL() ) {
349 $message = "Redirect loop detected!\n\n" .
350 "This means the wiki got confused about what page was " .
351 "requested; this sometimes happens when moving a wiki " .
352 "to a new server or changing the server configuration.\n\n";
354 if ( $this->config
->get( 'UsePathInfo' ) ) {
355 $message .= "The wiki is trying to interpret the page " .
356 "title from the URL path portion (PATH_INFO), which " .
357 "sometimes fails depending on the web server. Try " .
358 "setting \"\$wgUsePathInfo = false;\" in your " .
359 "LocalSettings.php, or check that \$wgArticlePath " .
362 $message .= "Your web server was detected as possibly not " .
363 "supporting URL path components (PATH_INFO) correctly; " .
364 "check your LocalSettings.php for a customized " .
365 "\$wgArticlePath setting and/or toggle \$wgUsePathInfo " .
368 throw new HttpError( 500, $message );
370 $output->setSquidMaxage( 1200 );
371 $output->redirect( $targetUrl, '301' );
376 * Initialize the main Article object for "standard" actions (view, etc)
377 * Create an Article object for the page, following redirects if needed.
379 * @return Article|string An Article, or a string to redirect to another URL
381 private function initializeArticle() {
382 $title = $this->context
->getTitle();
383 if ( $this->context
->canUseWikiPage() ) {
384 // Try to use request context wiki page, as there
385 // is already data from db saved in per process
386 // cache there from this->getAction() call.
387 $page = $this->context
->getWikiPage();
389 // This case should not happen, but just in case.
390 // @TODO: remove this or use an exception
391 $page = WikiPage
::factory( $title );
392 $this->context
->setWikiPage( $page );
393 wfWarn( "RequestContext::canUseWikiPage() returned false" );
396 // Make GUI wrapper for the WikiPage
397 $article = Article
::newFromWikiPage( $page, $this->context
);
399 // Skip some unnecessary code if the content model doesn't support redirects
400 if ( !ContentHandler
::getForTitle( $title )->supportsRedirects() ) {
404 $request = $this->context
->getRequest();
406 // Namespace might change when using redirects
407 // Check for redirects ...
408 $action = $request->getVal( 'action', 'view' );
409 $file = ( $page instanceof WikiFilePage
) ?
$page->getFile() : null;
410 if ( ( $action == 'view' ||
$action == 'render' ) // ... for actions that show content
411 && !$request->getVal( 'oldid' ) // ... and are not old revisions
412 && !$request->getVal( 'diff' ) // ... and not when showing diff
413 && $request->getVal( 'redirect' ) != 'no' // ... unless explicitly told not to
414 // ... and the article is not a non-redirect image page with associated file
415 && !( is_object( $file ) && $file->exists() && !$file->getRedirected() )
417 // Give extensions a change to ignore/handle redirects as needed
418 $ignoreRedirect = $target = false;
420 Hooks
::run( 'InitializeArticleMaybeRedirect',
421 [ &$title, &$request, &$ignoreRedirect, &$target, &$article ] );
422 $page = $article->getPage(); // reflect any hook changes
424 // Follow redirects only for... redirects.
425 // If $target is set, then a hook wanted to redirect.
426 if ( !$ignoreRedirect && ( $target ||
$page->isRedirect() ) ) {
427 // Is the target already set by an extension?
428 $target = $target ?
$target : $page->followRedirect();
429 if ( is_string( $target ) ) {
430 if ( !$this->config
->get( 'DisableHardRedirects' ) ) {
431 // we'll need to redirect
435 if ( is_object( $target ) ) {
436 // Rewrite environment to redirected article
437 $rpage = WikiPage
::factory( $target );
438 $rpage->loadPageData();
439 if ( $rpage->exists() ||
( is_object( $file ) && !$file->isLocal() ) ) {
440 $rarticle = Article
::newFromWikiPage( $rpage, $this->context
);
441 $rarticle->setRedirectedFrom( $title );
443 $article = $rarticle;
444 $this->context
->setTitle( $target );
445 $this->context
->setWikiPage( $article->getPage() );
449 // Article may have been changed by hook
450 $this->context
->setTitle( $article->getTitle() );
451 $this->context
->setWikiPage( $article->getPage() );
459 * Perform one of the "standard" actions
462 * @param Title $requestTitle The original title, before any redirects were applied
464 private function performAction( Page
$page, Title
$requestTitle ) {
465 $request = $this->context
->getRequest();
466 $output = $this->context
->getOutput();
467 $title = $this->context
->getTitle();
468 $user = $this->context
->getUser();
470 if ( !Hooks
::run( 'MediaWikiPerformAction',
471 [ $output, $page, $title, $user, $request, $this ] )
476 $act = $this->getAction();
477 $action = Action
::factory( $act, $page, $this->context
);
479 if ( $action instanceof Action
) {
480 // Narrow DB query expectations for this HTTP request
481 $trxLimits = $this->config
->get( 'TrxProfilerLimits' );
482 $trxProfiler = Profiler
::instance()->getTransactionProfiler();
483 if ( $request->wasPosted() && !$action->doesWrites() ) {
484 $trxProfiler->setExpectations( $trxLimits['POST-nonwrite'], __METHOD__
);
485 $request->markAsSafeRequest();
488 # Let CDN cache things if we can purge them.
489 if ( $this->config
->get( 'UseSquid' ) &&
491 // Use PROTO_INTERNAL because that's what getCdnUrls() uses
492 wfExpandUrl( $request->getRequestURL(), PROTO_INTERNAL
),
493 $requestTitle->getCdnUrls()
496 $output->setCdnMaxage( $this->config
->get( 'SquidMaxage' ) );
502 // NOTE: deprecated hook. Add to $wgActions instead
506 $request->getVal( 'action', 'view' ),
511 $output->setStatusCode( 404 );
512 $output->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
517 * Run the current MediaWiki instance; index.php just calls this
519 public function run() {
521 $this->setDBProfilingAgent();
524 } catch ( ErrorPageError
$e ) {
525 // T64091: while exceptions are convenient to bubble up GUI errors,
526 // they are not internal application faults. As with normal requests, this
527 // should commit, print the output, do deferred updates, jobs, and profiling.
528 $this->doPreOutputCommit();
529 $e->report(); // display the GUI error
531 } catch ( Exception
$e ) {
532 $context = $this->context
;
533 $action = $context->getRequest()->getVal( 'action', 'view' );
535 $e instanceof DBConnectionError
&&
536 $context->hasTitle() &&
537 $context->getTitle()->canExist() &&
538 in_array( $action, [ 'view', 'history' ], true ) &&
539 HTMLFileCache
::useFileCache( $this->context
, HTMLFileCache
::MODE_OUTAGE
)
541 // Try to use any (even stale) file during outages...
542 $cache = new HTMLFileCache( $context->getTitle(), 'view' );
543 if ( $cache->isCached() ) {
544 $cache->loadFromFileCache( $context, HTMLFileCache
::MODE_OUTAGE
);
545 print MWExceptionRenderer
::getHTML( $e );
551 MWExceptionHandler
::handleException( $e );
554 $this->doPostOutputShutdown( 'normal' );
557 private function setDBProfilingAgent() {
558 $services = MediaWikiServices
::getInstance();
559 // Add a comment for easy SHOW PROCESSLIST interpretation
560 $name = $this->context
->getUser()->getName();
561 $services->getDBLoadBalancerFactory()->setAgentName(
562 mb_strlen( $name ) > 15 ?
mb_substr( $name, 0, 15 ) . '...' : $name
567 * @see MediaWiki::preOutputCommit()
568 * @param callable $postCommitWork [default: null]
571 public function doPreOutputCommit( callable
$postCommitWork = null ) {
572 self
::preOutputCommit( $this->context
, $postCommitWork );
576 * This function commits all DB changes as needed before
577 * the user can receive a response (in case commit fails)
579 * @param IContextSource $context
580 * @param callable $postCommitWork [default: null]
583 public static function preOutputCommit(
584 IContextSource
$context, callable
$postCommitWork = null
586 // Either all DBs should commit or none
587 ignore_user_abort( true );
589 $config = $context->getConfig();
590 $request = $context->getRequest();
591 $output = $context->getOutput();
592 $lbFactory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
594 // Commit all changes
595 $lbFactory->commitMasterChanges(
597 // Abort if any transaction was too big
598 [ 'maxWriteDuration' => $config->get( 'MaxUserDBWriteDuration' ) ]
600 wfDebug( __METHOD__
. ': primary transaction round committed' );
602 // Run updates that need to block the user or affect output (this is the last chance)
603 DeferredUpdates
::doUpdates( 'enqueue', DeferredUpdates
::PRESEND
);
604 wfDebug( __METHOD__
. ': pre-send deferred updates completed' );
606 // Decide when clients block on ChronologyProtector DB position writes
607 $urlDomainDistance = (
608 $request->wasPosted() &&
609 $output->getRedirect() &&
610 $lbFactory->hasOrMadeRecentMasterChanges( INF
)
611 ) ? self
::getUrlDomainDistance( $output->getRedirect(), $context ) : false;
613 if ( $urlDomainDistance === 'local' ||
$urlDomainDistance === 'remote' ) {
614 // OutputPage::output() will be fast; $postCommitWork will not be useful for
615 // masking the latency of syncing DB positions accross all datacenters synchronously.
616 // Instead, make use of the RTT time of the client follow redirects.
617 $flags = $lbFactory::SHUTDOWN_CHRONPROT_ASYNC
;
618 $cpPosTime = microtime( true );
619 // Client's next request should see 1+ positions with this DBMasterPos::asOf() time
620 if ( $urlDomainDistance === 'local' ) {
621 // Client will stay on this domain, so set an unobtrusive cookie
622 $expires = time() + ChronologyProtector
::POSITION_TTL
;
623 $options = [ 'prefix' => '' ];
624 $request->response()->setCookie( 'cpPosTime', $cpPosTime, $expires, $options );
626 // Cookies may not work across wiki domains, so use a URL parameter
627 $safeUrl = $lbFactory->appendPreShutdownTimeAsQuery(
628 $output->getRedirect(),
631 $output->redirect( $safeUrl );
634 // OutputPage::output() is fairly slow; run it in $postCommitWork to mask
635 // the latency of syncing DB positions accross all datacenters synchronously
636 $flags = $lbFactory::SHUTDOWN_CHRONPROT_SYNC
;
637 if ( $lbFactory->hasOrMadeRecentMasterChanges( INF
) ) {
638 $cpPosTime = microtime( true );
639 // Set a cookie in case the DB position store cannot sync accross datacenters.
640 // This will at least cover the common case of the user staying on the domain.
641 $expires = time() + ChronologyProtector
::POSITION_TTL
;
642 $options = [ 'prefix' => '' ];
643 $request->response()->setCookie( 'cpPosTime', $cpPosTime, $expires, $options );
646 // Record ChronologyProtector positions for DBs affected in this request at this point
647 $lbFactory->shutdown( $flags, $postCommitWork );
648 wfDebug( __METHOD__
. ': LBFactory shutdown completed' );
650 // Set a cookie to tell all CDN edge nodes to "stick" the user to the DC that handles this
651 // POST request (e.g. the "master" data center). Also have the user briefly bypass CDN so
652 // ChronologyProtector works for cacheable URLs.
653 if ( $request->wasPosted() && $lbFactory->hasOrMadeRecentMasterChanges() ) {
654 $expires = time() +
$config->get( 'DataCenterUpdateStickTTL' );
655 $options = [ 'prefix' => '' ];
656 $request->response()->setCookie( 'UseDC', 'master', $expires, $options );
657 $request->response()->setCookie( 'UseCDNCache', 'false', $expires, $options );
660 // Avoid letting a few seconds of replica DB lag cause a month of stale data. This logic is
661 // also intimately related to the value of $wgCdnReboundPurgeDelay.
662 if ( $lbFactory->laggedReplicaUsed() ) {
663 $maxAge = $config->get( 'CdnMaxageLagged' );
664 $output->lowerCdnMaxage( $maxAge );
665 $request->response()->header( "X-Database-Lagged: true" );
666 wfDebugLog( 'replication', "Lagged DB used; CDN cache TTL limited to $maxAge seconds" );
669 // Avoid long-term cache pollution due to message cache rebuild timeouts (T133069)
670 if ( MessageCache
::singleton()->isDisabled() ) {
671 $maxAge = $config->get( 'CdnMaxageSubstitute' );
672 $output->lowerCdnMaxage( $maxAge );
673 $request->response()->header( "X-Response-Substitute: true" );
679 * @param IContextSource $context
680 * @return string Either "local", "remote" if in the farm, "external" otherwise
682 private static function getUrlDomainDistance( $url, IContextSource
$context ) {
683 static $relevantKeys = [ 'host' => true, 'port' => true ];
685 $infoCandidate = wfParseUrl( $url );
686 if ( $infoCandidate === false ) {
690 $infoCandidate = array_intersect_key( $infoCandidate, $relevantKeys );
691 $clusterHosts = array_merge(
692 // Local wiki host (the most common case)
693 [ $context->getConfig()->get( 'CanonicalServer' ) ],
694 // Any local/remote wiki virtual hosts for this wiki farm
695 $context->getConfig()->get( 'LocalVirtualHosts' )
698 foreach ( $clusterHosts as $i => $clusterHost ) {
699 $parseUrl = wfParseUrl( $clusterHost );
703 $infoHost = array_intersect_key( $parseUrl, $relevantKeys );
704 if ( $infoCandidate === $infoHost ) {
705 return ( $i === 0 ) ?
'local' : 'remote';
713 * This function does work that can be done *after* the
714 * user gets the HTTP response so they don't block on it
716 * This manages deferred updates, job insertion,
717 * final commit, and the logging of profiling data
719 * @param string $mode Use 'fast' to always skip job running
722 public function doPostOutputShutdown( $mode = 'normal' ) {
723 $timing = $this->context
->getTiming();
724 $timing->mark( 'requestShutdown' );
726 // Show visible profiling data if enabled (which cannot be post-send)
727 Profiler
::instance()->logDataPageOutputOnly();
729 $callback = function () use ( $mode ) {
731 $this->restInPeace( $mode );
732 } catch ( Exception
$e ) {
733 MWExceptionHandler
::handleException( $e );
737 // Defer everything else...
738 if ( function_exists( 'register_postsend_function' ) ) {
739 // https://github.com/facebook/hhvm/issues/1230
740 register_postsend_function( $callback );
742 if ( function_exists( 'fastcgi_finish_request' ) ) {
743 fastcgi_finish_request();
745 // Either all DB and deferred updates should happen or none.
746 // The latter should not be cancelled due to client disconnect.
747 ignore_user_abort( true );
754 private function main() {
757 $output = $this->context
->getOutput();
758 $request = $this->context
->getRequest();
760 // Send Ajax requests to the Ajax dispatcher.
761 if ( $this->config
->get( 'UseAjax' ) && $request->getVal( 'action' ) === 'ajax' ) {
762 // Set a dummy title, because $wgTitle == null might break things
763 $title = Title
::makeTitle( NS_SPECIAL
, 'Badtitle/performing an AJAX call in '
766 $this->context
->setTitle( $title );
769 $dispatcher = new AjaxDispatcher( $this->config
);
770 $dispatcher->performAction( $this->context
->getUser() );
775 // Get title from request parameters,
776 // is set on the fly by parseTitle the first time.
777 $title = $this->getTitle();
778 $action = $this->getAction();
781 // Set DB query expectations for this HTTP request
782 $trxLimits = $this->config
->get( 'TrxProfilerLimits' );
783 $trxProfiler = Profiler
::instance()->getTransactionProfiler();
784 $trxProfiler->setLogger( LoggerFactory
::getInstance( 'DBPerformance' ) );
785 if ( $request->hasSafeMethod() ) {
786 $trxProfiler->setExpectations( $trxLimits['GET'], __METHOD__
);
788 $trxProfiler->setExpectations( $trxLimits['POST'], __METHOD__
);
791 // If the user has forceHTTPS set to true, or if the user
792 // is in a group requiring HTTPS, or if they have the HTTPS
793 // preference set, redirect them to HTTPS.
794 // Note: Do this after $wgTitle is setup, otherwise the hooks run from
795 // isLoggedIn() will do all sorts of weird stuff.
797 $request->getProtocol() == 'http' &&
798 // switch to HTTPS only when supported by the server
799 preg_match( '#^https://#', wfExpandUrl( $request->getRequestURL(), PROTO_HTTPS
) ) &&
801 $request->getSession()->shouldForceHTTPS() ||
802 // Check the cookie manually, for paranoia
803 $request->getCookie( 'forceHTTPS', '' ) ||
804 // check for prefixed version that was used for a time in older MW versions
805 $request->getCookie( 'forceHTTPS' ) ||
806 // Avoid checking the user and groups unless it's enabled.
808 $this->context
->getUser()->isLoggedIn()
809 && $this->context
->getUser()->requiresHTTPS()
813 $oldUrl = $request->getFullRequestURL();
814 $redirUrl = preg_replace( '#^http://#', 'https://', $oldUrl );
816 // ATTENTION: This hook is likely to be removed soon due to overall design of the system.
817 if ( Hooks
::run( 'BeforeHttpsRedirect', [ $this->context
, &$redirUrl ] ) ) {
819 if ( $request->wasPosted() ) {
820 // This is weird and we'd hope it almost never happens. This
821 // means that a POST came in via HTTP and policy requires us
822 // redirecting to HTTPS. It's likely such a request is going
823 // to fail due to post data being lost, but let's try anyway
824 // and just log the instance.
826 // @todo FIXME: See if we could issue a 307 or 308 here, need
827 // to see how clients (automated & browser) behave when we do
828 wfDebugLog( 'RedirectedPosts', "Redirected from HTTP to HTTPS: $oldUrl" );
830 // Setup dummy Title, otherwise OutputPage::redirect will fail
831 $title = Title
::newFromText( 'REDIR', NS_MAIN
);
832 $this->context
->setTitle( $title );
833 // Since we only do this redir to change proto, always send a vary header
834 $output->addVaryHeader( 'X-Forwarded-Proto' );
835 $output->redirect( $redirUrl );
842 if ( $title->canExist() && HTMLFileCache
::useFileCache( $this->context
) ) {
843 // Try low-level file cache hit
844 $cache = new HTMLFileCache( $title, $action );
845 if ( $cache->isCacheGood( /* Assume up to date */ ) ) {
846 // Check incoming headers to see if client has this cached
847 $timestamp = $cache->cacheTimestamp();
848 if ( !$output->checkLastModified( $timestamp ) ) {
849 $cache->loadFromFileCache( $this->context
);
851 // Do any stats increment/watchlist stuff, assuming user is viewing the
852 // latest revision (which should always be the case for file cache)
853 $this->context
->getWikiPage()->doViewUpdates( $this->context
->getUser() );
854 // Tell OutputPage that output is taken care of
861 // Actually do the work of the request and build up any output
862 $this->performRequest();
864 // GUI-ify and stash the page output in MediaWiki::doPreOutputCommit() while
865 // ChronologyProtector synchronizes DB positions or slaves accross all datacenters.
867 $outputWork = function () use ( $output, &$buffer ) {
868 if ( $buffer === null ) {
869 $buffer = $output->output( true );
875 // Now commit any transactions, so that unreported errors after
876 // output() don't roll back the whole DB transaction and so that
877 // we avoid having both success and error text in the response
878 $this->doPreOutputCommit( $outputWork );
880 // Now send the actual output
885 * Ends this task peacefully
886 * @param string $mode Use 'fast' to always skip job running
888 public function restInPeace( $mode = 'fast' ) {
889 $lbFactory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
890 // Assure deferred updates are not in the main transaction
891 $lbFactory->commitMasterChanges( __METHOD__
);
893 // Loosen DB query expectations since the HTTP client is unblocked
894 $trxProfiler = Profiler
::instance()->getTransactionProfiler();
895 $trxProfiler->resetExpectations();
896 $trxProfiler->setExpectations(
897 $this->config
->get( 'TrxProfilerLimits' )['PostSend'],
901 // Do any deferred jobs
902 DeferredUpdates
::doUpdates( 'enqueue' );
903 DeferredUpdates
::setImmediateMode( true );
905 // Make sure any lazy jobs are pushed
906 JobQueueGroup
::pushLazyJobs();
908 // Now that everything specific to this request is done,
909 // try to occasionally run jobs (if enabled) from the queues
910 if ( $mode === 'normal' ) {
911 $this->triggerJobs();
914 // Log profiling data, e.g. in the database or UDP
915 wfLogProfilingData();
917 // Commit and close up!
918 $lbFactory->commitMasterChanges( __METHOD__
);
919 $lbFactory->shutdown( LBFactory
::SHUTDOWN_NO_CHRONPROT
);
921 wfDebug( "Request ended normally\n" );
925 * Potentially open a socket and sent an HTTP request back to the server
926 * to run a specified number of jobs. This registers a callback to cleanup
927 * the socket once it's done.
929 public function triggerJobs() {
930 $jobRunRate = $this->config
->get( 'JobRunRate' );
931 if ( $this->getTitle()->isSpecial( 'RunJobs' ) ) {
932 return; // recursion guard
933 } elseif ( $jobRunRate <= 0 ||
wfReadOnly() ) {
937 if ( $jobRunRate < 1 ) {
938 $max = mt_getrandmax();
939 if ( mt_rand( 0, $max ) > $max * $jobRunRate ) {
940 return; // the higher the job run rate, the less likely we return here
944 $n = intval( $jobRunRate );
947 $logger = LoggerFactory
::getInstance( 'runJobs' );
950 if ( $this->config
->get( 'RunJobsAsync' ) ) {
951 // Send an HTTP request to the job RPC entry point if possible
952 $invokedWithSuccess = $this->triggerAsyncJobs( $n, $logger );
953 if ( !$invokedWithSuccess ) {
954 // Fall back to blocking on running the job(s)
955 $logger->warning( "Jobs switched to blocking; Special:RunJobs disabled" );
956 $this->triggerSyncJobs( $n, $logger );
959 $this->triggerSyncJobs( $n, $logger );
961 } catch ( JobQueueError
$e ) {
962 // Do not make the site unavailable (T88312)
963 MWExceptionHandler
::logException( $e );
968 * @param integer $n Number of jobs to try to run
969 * @param LoggerInterface $runJobsLogger
971 private function triggerSyncJobs( $n, LoggerInterface
$runJobsLogger ) {
972 $runner = new JobRunner( $runJobsLogger );
973 $runner->run( [ 'maxJobs' => $n ] );
977 * @param integer $n Number of jobs to try to run
978 * @param LoggerInterface $runJobsLogger
979 * @return bool Success
981 private function triggerAsyncJobs( $n, LoggerInterface
$runJobsLogger ) {
982 // Do not send request if there are probably no jobs
983 $group = JobQueueGroup
::singleton();
984 if ( !$group->queuesHaveJobs( JobQueueGroup
::TYPE_DEFAULT
) ) {
988 $query = [ 'title' => 'Special:RunJobs',
989 'tasks' => 'jobs', 'maxjobs' => $n, 'sigexpiry' => time() +
5 ];
990 $query['signature'] = SpecialRunJobs
::getQuerySignature(
991 $query, $this->config
->get( 'SecretKey' ) );
993 $errno = $errstr = null;
994 $info = wfParseUrl( $this->config
->get( 'CanonicalServer' ) );
995 $host = $info ?
$info['host'] : null;
997 if ( isset( $info['scheme'] ) && $info['scheme'] == 'https' ) {
998 $host = "tls://" . $host;
1001 if ( isset( $info['port'] ) ) {
1002 $port = $info['port'];
1005 MediaWiki\
suppressWarnings();
1006 $sock = $host ?
fsockopen(
1011 // If it takes more than 100ms to connect to ourselves there is a problem...
1014 MediaWiki\restoreWarnings
();
1016 $invokedWithSuccess = true;
1018 $special = SpecialPageFactory
::getPage( 'RunJobs' );
1019 $url = $special->getPageTitle()->getCanonicalURL( $query );
1021 "POST $url HTTP/1.1\r\n" .
1022 "Host: {$info['host']}\r\n" .
1023 "Connection: Close\r\n" .
1024 "Content-Length: 0\r\n\r\n"
1027 $runJobsLogger->info( "Running $n job(s) via '$url'" );
1028 // Send a cron API request to be performed in the background.
1029 // Give up if this takes too long to send (which should be rare).
1030 stream_set_timeout( $sock, 2 );
1031 $bytes = fwrite( $sock, $req );
1032 if ( $bytes !== strlen( $req ) ) {
1033 $invokedWithSuccess = false;
1034 $runJobsLogger->error( "Failed to start cron API (socket write error)" );
1036 // Do not wait for the response (the script should handle client aborts).
1037 // Make sure that we don't close before that script reaches ignore_user_abort().
1038 $start = microtime( true );
1039 $status = fgets( $sock );
1040 $sec = microtime( true ) - $start;
1041 if ( !preg_match( '#^HTTP/\d\.\d 202 #', $status ) ) {
1042 $invokedWithSuccess = false;
1043 $runJobsLogger->error( "Failed to start cron API: received '$status' ($sec)" );
1048 $invokedWithSuccess = false;
1049 $runJobsLogger->error( "Failed to start cron API (socket error $errno): $errstr" );
1052 return $invokedWithSuccess;