API: Pretty-printed responses should always use HTTP status 200
[mediawiki.git] / includes / OutputPage.php
blob12df3a5880cb92adb4f2a90aed17bb6fe3cba997
1 <?php
2 /**
3 * Preparation for the final page rendering.
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
20 * @file
23 use MediaWiki\Logger\LoggerFactory;
24 use MediaWiki\Session\SessionManager;
25 use WrappedString\WrappedString;
26 use WrappedString\WrappedStringList;
28 /**
29 * This class should be covered by a general architecture document which does
30 * not exist as of January 2011. This is one of the Core classes and should
31 * be read at least once by any new developers.
33 * This class is used to prepare the final rendering. A skin is then
34 * applied to the output parameters (links, javascript, html, categories ...).
36 * @todo FIXME: Another class handles sending the whole page to the client.
38 * Some comments comes from a pairing session between Zak Greant and Antoine Musso
39 * in November 2010.
41 * @todo document
43 class OutputPage extends ContextSource {
44 /** @var array Should be private. Used with addMeta() which adds "<meta>" */
45 protected $mMetatags = [];
47 /** @var array */
48 protected $mLinktags = [];
50 /** @var bool */
51 protected $mCanonicalUrl = false;
53 /**
54 * @var array Additional stylesheets. Looks like this is for extensions.
55 * Might be replaced by ResourceLoader.
57 protected $mExtStyles = [];
59 /**
60 * @var string Should be private - has getter and setter. Contains
61 * the HTML title */
62 public $mPagetitle = '';
64 /**
65 * @var string Contains all of the "<body>" content. Should be private we
66 * got set/get accessors and the append() method.
68 public $mBodytext = '';
70 /** @var string Stores contents of "<title>" tag */
71 private $mHTMLtitle = '';
73 /**
74 * @var bool Is the displayed content related to the source of the
75 * corresponding wiki article.
77 private $mIsarticle = false;
79 /** @var bool Stores "article flag" toggle. */
80 private $mIsArticleRelated = true;
82 /**
83 * @var bool We have to set isPrintable(). Some pages should
84 * never be printed (ex: redirections).
86 private $mPrintable = false;
88 /**
89 * @var array Contains the page subtitle. Special pages usually have some
90 * links here. Don't confuse with site subtitle added by skins.
92 private $mSubtitle = [];
94 /** @var string */
95 public $mRedirect = '';
97 /** @var int */
98 protected $mStatusCode;
101 * @var string Used for sending cache control.
102 * The whole caching system should probably be moved into its own class.
104 protected $mLastModified = '';
106 /** @var array */
107 protected $mCategoryLinks = [];
109 /** @var array */
110 protected $mCategories = [];
112 /** @var array */
113 protected $mIndicators = [];
115 /** @var array Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page') */
116 private $mLanguageLinks = [];
119 * Used for JavaScript (predates ResourceLoader)
120 * @todo We should split JS / CSS.
121 * mScripts content is inserted as is in "<head>" by Skin. This might
122 * contain either a link to a stylesheet or inline CSS.
124 private $mScripts = '';
126 /** @var string Inline CSS styles. Use addInlineStyle() sparingly */
127 protected $mInlineStyles = '';
130 * @var string Used by skin template.
131 * Example: $tpl->set( 'displaytitle', $out->mPageLinkTitle );
133 public $mPageLinkTitle = '';
135 /** @var array Array of elements in "<head>". Parser might add its own headers! */
136 protected $mHeadItems = [];
138 /** @var array */
139 protected $mModules = [];
141 /** @var array */
142 protected $mModuleScripts = [];
144 /** @var array */
145 protected $mModuleStyles = [];
147 /** @var ResourceLoader */
148 protected $mResourceLoader;
150 /** @var ResourceLoaderClientHtml */
151 private $rlClient;
153 /** @var ResourceLoaderContext */
154 private $rlClientContext;
156 /** @var string */
157 private $rlUserModuleState;
159 /** @var array */
160 private $rlExemptStyleModules;
162 /** @var array */
163 protected $mJsConfigVars = [];
165 /** @var array */
166 protected $mTemplateIds = [];
168 /** @var array */
169 protected $mImageTimeKeys = [];
171 /** @var string */
172 public $mRedirectCode = '';
174 protected $mFeedLinksAppendQuery = null;
176 /** @var array
177 * What level of 'untrustworthiness' is allowed in CSS/JS modules loaded on this page?
178 * @see ResourceLoaderModule::$origin
179 * ResourceLoaderModule::ORIGIN_ALL is assumed unless overridden;
181 protected $mAllowedModules = [
182 ResourceLoaderModule::TYPE_COMBINED => ResourceLoaderModule::ORIGIN_ALL,
185 /** @var bool Whether output is disabled. If this is true, the 'output' method will do nothing. */
186 protected $mDoNothing = false;
188 // Parser related.
190 /** @var int */
191 protected $mContainsNewMagic = 0;
194 * lazy initialised, use parserOptions()
195 * @var ParserOptions
197 protected $mParserOptions = null;
200 * Handles the Atom / RSS links.
201 * We probably only support Atom in 2011.
202 * @see $wgAdvertisedFeedTypes
204 private $mFeedLinks = [];
206 // Gwicke work on squid caching? Roughly from 2003.
207 protected $mEnableClientCache = true;
209 /** @var bool Flag if output should only contain the body of the article. */
210 private $mArticleBodyOnly = false;
212 /** @var bool */
213 protected $mNewSectionLink = false;
215 /** @var bool */
216 protected $mHideNewSectionLink = false;
219 * @var bool Comes from the parser. This was probably made to load CSS/JS
220 * only if we had "<gallery>". Used directly in CategoryPage.php.
221 * Looks like ResourceLoader can replace this.
223 public $mNoGallery = false;
225 /** @var string */
226 private $mPageTitleActionText = '';
228 /** @var int Cache stuff. Looks like mEnableClientCache */
229 protected $mCdnMaxage = 0;
230 /** @var int Upper limit on mCdnMaxage */
231 protected $mCdnMaxageLimit = INF;
234 * @var bool Controls if anti-clickjacking / frame-breaking headers will
235 * be sent. This should be done for pages where edit actions are possible.
236 * Setters: $this->preventClickjacking() and $this->allowClickjacking().
238 protected $mPreventClickjacking = true;
240 /** @var int To include the variable {{REVISIONID}} */
241 private $mRevisionId = null;
243 /** @var string */
244 private $mRevisionTimestamp = null;
246 /** @var array */
247 protected $mFileVersion = null;
250 * @var array An array of stylesheet filenames (relative from skins path),
251 * with options for CSS media, IE conditions, and RTL/LTR direction.
252 * For internal use; add settings in the skin via $this->addStyle()
254 * Style again! This seems like a code duplication since we already have
255 * mStyles. This is what makes Open Source amazing.
257 protected $styles = [];
259 private $mIndexPolicy = 'index';
260 private $mFollowPolicy = 'follow';
261 private $mVaryHeader = [
262 'Accept-Encoding' => [ 'match=gzip' ],
266 * If the current page was reached through a redirect, $mRedirectedFrom contains the Title
267 * of the redirect.
269 * @var Title
271 private $mRedirectedFrom = null;
274 * Additional key => value data
276 private $mProperties = [];
279 * @var string|null ResourceLoader target for load.php links. If null, will be omitted
281 private $mTarget = null;
284 * @var bool Whether parser output should contain table of contents
286 private $mEnableTOC = true;
289 * @var bool Whether parser output should contain section edit links
291 private $mEnableSectionEditLinks = true;
294 * @var string|null The URL to send in a <link> element with rel=copyright
296 private $copyrightUrl;
298 /** @var array Profiling data */
299 private $limitReportData = [];
302 * Constructor for OutputPage. This should not be called directly.
303 * Instead a new RequestContext should be created and it will implicitly create
304 * a OutputPage tied to that context.
305 * @param IContextSource|null $context
307 function __construct( IContextSource $context = null ) {
308 if ( $context === null ) {
309 # Extensions should use `new RequestContext` instead of `new OutputPage` now.
310 wfDeprecated( __METHOD__, '1.18' );
311 } else {
312 $this->setContext( $context );
317 * Redirect to $url rather than displaying the normal page
319 * @param string $url URL
320 * @param string $responsecode HTTP status code
322 public function redirect( $url, $responsecode = '302' ) {
323 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
324 $this->mRedirect = str_replace( "\n", '', $url );
325 $this->mRedirectCode = $responsecode;
329 * Get the URL to redirect to, or an empty string if not redirect URL set
331 * @return string
333 public function getRedirect() {
334 return $this->mRedirect;
338 * Set the copyright URL to send with the output.
339 * Empty string to omit, null to reset.
341 * @since 1.26
343 * @param string|null $url
345 public function setCopyrightUrl( $url ) {
346 $this->copyrightUrl = $url;
350 * Set the HTTP status code to send with the output.
352 * @param int $statusCode
354 public function setStatusCode( $statusCode ) {
355 $this->mStatusCode = $statusCode;
359 * Add a new "<meta>" tag
360 * To add an http-equiv meta tag, precede the name with "http:"
362 * @param string $name Tag name
363 * @param string $val Tag value
365 function addMeta( $name, $val ) {
366 array_push( $this->mMetatags, [ $name, $val ] );
370 * Returns the current <meta> tags
372 * @since 1.25
373 * @return array
375 public function getMetaTags() {
376 return $this->mMetatags;
380 * Add a new \<link\> tag to the page header.
382 * Note: use setCanonicalUrl() for rel=canonical.
384 * @param array $linkarr Associative array of attributes.
386 function addLink( array $linkarr ) {
387 array_push( $this->mLinktags, $linkarr );
391 * Returns the current <link> tags
393 * @since 1.25
394 * @return array
396 public function getLinkTags() {
397 return $this->mLinktags;
401 * Add a new \<link\> with "rel" attribute set to "meta"
403 * @param array $linkarr Associative array mapping attribute names to their
404 * values, both keys and values will be escaped, and the
405 * "rel" attribute will be automatically added
407 function addMetadataLink( array $linkarr ) {
408 $linkarr['rel'] = $this->getMetadataAttribute();
409 $this->addLink( $linkarr );
413 * Set the URL to be used for the <link rel=canonical>. This should be used
414 * in preference to addLink(), to avoid duplicate link tags.
415 * @param string $url
417 function setCanonicalUrl( $url ) {
418 $this->mCanonicalUrl = $url;
422 * Returns the URL to be used for the <link rel=canonical> if
423 * one is set.
425 * @since 1.25
426 * @return bool|string
428 public function getCanonicalUrl() {
429 return $this->mCanonicalUrl;
433 * Get the value of the "rel" attribute for metadata links
435 * @return string
437 public function getMetadataAttribute() {
438 # note: buggy CC software only reads first "meta" link
439 static $haveMeta = false;
440 if ( $haveMeta ) {
441 return 'alternate meta';
442 } else {
443 $haveMeta = true;
444 return 'meta';
449 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
450 * Internal use only. Use OutputPage::addModules() or OutputPage::addJsConfigVars()
451 * if possible.
453 * @param string $script Raw HTML
455 function addScript( $script ) {
456 $this->mScripts .= $script;
460 * Register and add a stylesheet from an extension directory.
462 * @deprecated since 1.27 use addModuleStyles() or addStyle() instead
463 * @param string $url Path to sheet. Provide either a full url (beginning
464 * with 'http', etc) or a relative path from the document root
465 * (beginning with '/'). Otherwise it behaves identically to
466 * addStyle() and draws from the /skins folder.
468 public function addExtensionStyle( $url ) {
469 wfDeprecated( __METHOD__, '1.27' );
470 array_push( $this->mExtStyles, $url );
474 * Get all styles added by extensions
476 * @deprecated since 1.27
477 * @return array
479 function getExtStyle() {
480 wfDeprecated( __METHOD__, '1.27' );
481 return $this->mExtStyles;
485 * Add a JavaScript file out of skins/common, or a given relative path.
486 * Internal use only. Use OutputPage::addModules() if possible.
488 * @param string $file Filename in skins/common or complete on-server path
489 * (/foo/bar.js)
490 * @param string $version Style version of the file. Defaults to $wgStyleVersion
492 public function addScriptFile( $file, $version = null ) {
493 // See if $file parameter is an absolute URL or begins with a slash
494 if ( substr( $file, 0, 1 ) == '/' || preg_match( '#^[a-z]*://#i', $file ) ) {
495 $path = $file;
496 } else {
497 $path = $this->getConfig()->get( 'StylePath' ) . "/common/{$file}";
499 if ( is_null( $version ) ) {
500 $version = $this->getConfig()->get( 'StyleVersion' );
502 $this->addScript( Html::linkedScript( wfAppendQuery( $path, $version ) ) );
506 * Add a self-contained script tag with the given contents
507 * Internal use only. Use OutputPage::addModules() if possible.
509 * @param string $script JavaScript text, no script tags
511 public function addInlineScript( $script ) {
512 $this->mScripts .= Html::inlineScript( $script );
516 * Filter an array of modules to remove insufficiently trustworthy members, and modules
517 * which are no longer registered (eg a page is cached before an extension is disabled)
518 * @param array $modules
519 * @param string|null $position If not null, only return modules with this position
520 * @param string $type
521 * @return array
523 protected function filterModules( array $modules, $position = null,
524 $type = ResourceLoaderModule::TYPE_COMBINED
526 $resourceLoader = $this->getResourceLoader();
527 $filteredModules = [];
528 foreach ( $modules as $val ) {
529 $module = $resourceLoader->getModule( $val );
530 if ( $module instanceof ResourceLoaderModule
531 && $module->getOrigin() <= $this->getAllowedModules( $type )
532 && ( is_null( $position ) || $module->getPosition() == $position )
533 && ( !$this->mTarget || in_array( $this->mTarget, $module->getTargets() ) )
535 $filteredModules[] = $val;
538 return $filteredModules;
542 * Get the list of modules to include on this page
544 * @param bool $filter Whether to filter out insufficiently trustworthy modules
545 * @param string|null $position If not null, only return modules with this position
546 * @param string $param
547 * @return array Array of module names
549 public function getModules( $filter = false, $position = null, $param = 'mModules',
550 $type = ResourceLoaderModule::TYPE_COMBINED
552 $modules = array_values( array_unique( $this->$param ) );
553 return $filter
554 ? $this->filterModules( $modules, $position, $type )
555 : $modules;
559 * Add one or more modules recognized by ResourceLoader. Modules added
560 * through this function will be loaded by ResourceLoader when the
561 * page loads.
563 * @param string|array $modules Module name (string) or array of module names
565 public function addModules( $modules ) {
566 $this->mModules = array_merge( $this->mModules, (array)$modules );
570 * Get the list of module JS to include on this page
572 * @param bool $filter
573 * @param string|null $position
574 * @return array Array of module names
576 public function getModuleScripts( $filter = false, $position = null ) {
577 return $this->getModules( $filter, $position, 'mModuleScripts',
578 ResourceLoaderModule::TYPE_SCRIPTS
583 * Add only JS of one or more modules recognized by ResourceLoader. Module
584 * scripts added through this function will be loaded by ResourceLoader when
585 * the page loads.
587 * @param string|array $modules Module name (string) or array of module names
589 public function addModuleScripts( $modules ) {
590 $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules );
594 * Get the list of module CSS to include on this page
596 * @param bool $filter
597 * @param string|null $position
598 * @return array Array of module names
600 public function getModuleStyles( $filter = false, $position = null ) {
601 return $this->getModules( $filter, $position, 'mModuleStyles',
602 ResourceLoaderModule::TYPE_STYLES
607 * Add only CSS of one or more modules recognized by ResourceLoader.
609 * Module styles added through this function will be added using standard link CSS
610 * tags, rather than as a combined Javascript and CSS package. Thus, they will
611 * load when JavaScript is disabled (unless CSS also happens to be disabled).
613 * @param string|array $modules Module name (string) or array of module names
615 public function addModuleStyles( $modules ) {
616 $this->mModuleStyles = array_merge( $this->mModuleStyles, (array)$modules );
620 * @return null|string ResourceLoader target
622 public function getTarget() {
623 return $this->mTarget;
627 * Sets ResourceLoader target for load.php links. If null, will be omitted
629 * @param string|null $target
631 public function setTarget( $target ) {
632 $this->mTarget = $target;
636 * Get an array of head items
638 * @return array
640 function getHeadItemsArray() {
641 return $this->mHeadItems;
645 * Add or replace a head item to the output
647 * Whenever possible, use more specific options like ResourceLoader modules,
648 * OutputPage::addLink(), OutputPage::addMetaLink() and OutputPage::addFeedLink()
649 * Fallback options for those are: OutputPage::addStyle, OutputPage::addScript(),
650 * OutputPage::addInlineScript() and OutputPage::addInlineStyle()
651 * This would be your very LAST fallback.
653 * @param string $name Item name
654 * @param string $value Raw HTML
656 public function addHeadItem( $name, $value ) {
657 $this->mHeadItems[$name] = $value;
661 * Add one or more head items to the output
663 * @since 1.28
664 * @param string|string[] $value Raw HTML
666 public function addHeadItems( $values ) {
667 $this->mHeadItems = array_merge( $this->mHeadItems, (array)$values );
671 * Check if the header item $name is already set
673 * @param string $name Item name
674 * @return bool
676 public function hasHeadItem( $name ) {
677 return isset( $this->mHeadItems[$name] );
681 * @deprecated since 1.28 Obsolete - wgUseETag experiment was removed.
682 * @param string $tag
684 public function setETag( $tag ) {
688 * Set whether the output should only contain the body of the article,
689 * without any skin, sidebar, etc.
690 * Used e.g. when calling with "action=render".
692 * @param bool $only Whether to output only the body of the article
694 public function setArticleBodyOnly( $only ) {
695 $this->mArticleBodyOnly = $only;
699 * Return whether the output will contain only the body of the article
701 * @return bool
703 public function getArticleBodyOnly() {
704 return $this->mArticleBodyOnly;
708 * Set an additional output property
709 * @since 1.21
711 * @param string $name
712 * @param mixed $value
714 public function setProperty( $name, $value ) {
715 $this->mProperties[$name] = $value;
719 * Get an additional output property
720 * @since 1.21
722 * @param string $name
723 * @return mixed Property value or null if not found
725 public function getProperty( $name ) {
726 if ( isset( $this->mProperties[$name] ) ) {
727 return $this->mProperties[$name];
728 } else {
729 return null;
734 * checkLastModified tells the client to use the client-cached page if
735 * possible. If successful, the OutputPage is disabled so that
736 * any future call to OutputPage->output() have no effect.
738 * Side effect: sets mLastModified for Last-Modified header
740 * @param string $timestamp
742 * @return bool True if cache-ok headers was sent.
744 public function checkLastModified( $timestamp ) {
745 if ( !$timestamp || $timestamp == '19700101000000' ) {
746 wfDebug( __METHOD__ . ": CACHE DISABLED, NO TIMESTAMP\n" );
747 return false;
749 $config = $this->getConfig();
750 if ( !$config->get( 'CachePages' ) ) {
751 wfDebug( __METHOD__ . ": CACHE DISABLED\n" );
752 return false;
755 $timestamp = wfTimestamp( TS_MW, $timestamp );
756 $modifiedTimes = [
757 'page' => $timestamp,
758 'user' => $this->getUser()->getTouched(),
759 'epoch' => $config->get( 'CacheEpoch' )
761 if ( $config->get( 'UseSquid' ) ) {
762 // bug 44570: the core page itself may not change, but resources might
763 $modifiedTimes['sepoch'] = wfTimestamp( TS_MW, time() - $config->get( 'SquidMaxage' ) );
765 Hooks::run( 'OutputPageCheckLastModified', [ &$modifiedTimes, $this ] );
767 $maxModified = max( $modifiedTimes );
768 $this->mLastModified = wfTimestamp( TS_RFC2822, $maxModified );
770 $clientHeader = $this->getRequest()->getHeader( 'If-Modified-Since' );
771 if ( $clientHeader === false ) {
772 wfDebug( __METHOD__ . ": client did not send If-Modified-Since header", 'private' );
773 return false;
776 # IE sends sizes after the date like this:
777 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
778 # this breaks strtotime().
779 $clientHeader = preg_replace( '/;.*$/', '', $clientHeader );
781 MediaWiki\suppressWarnings(); // E_STRICT system time bitching
782 $clientHeaderTime = strtotime( $clientHeader );
783 MediaWiki\restoreWarnings();
784 if ( !$clientHeaderTime ) {
785 wfDebug( __METHOD__
786 . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
787 return false;
789 $clientHeaderTime = wfTimestamp( TS_MW, $clientHeaderTime );
791 # Make debug info
792 $info = '';
793 foreach ( $modifiedTimes as $name => $value ) {
794 if ( $info !== '' ) {
795 $info .= ', ';
797 $info .= "$name=" . wfTimestamp( TS_ISO_8601, $value );
800 wfDebug( __METHOD__ . ": client sent If-Modified-Since: " .
801 wfTimestamp( TS_ISO_8601, $clientHeaderTime ), 'private' );
802 wfDebug( __METHOD__ . ": effective Last-Modified: " .
803 wfTimestamp( TS_ISO_8601, $maxModified ), 'private' );
804 if ( $clientHeaderTime < $maxModified ) {
805 wfDebug( __METHOD__ . ": STALE, $info", 'private' );
806 return false;
809 # Not modified
810 # Give a 304 Not Modified response code and disable body output
811 wfDebug( __METHOD__ . ": NOT MODIFIED, $info", 'private' );
812 ini_set( 'zlib.output_compression', 0 );
813 $this->getRequest()->response()->statusHeader( 304 );
814 $this->sendCacheControl();
815 $this->disable();
817 // Don't output a compressed blob when using ob_gzhandler;
818 // it's technically against HTTP spec and seems to confuse
819 // Firefox when the response gets split over two packets.
820 wfClearOutputBuffers();
822 return true;
826 * Override the last modified timestamp
828 * @param string $timestamp New timestamp, in a format readable by
829 * wfTimestamp()
831 public function setLastModified( $timestamp ) {
832 $this->mLastModified = wfTimestamp( TS_RFC2822, $timestamp );
836 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
838 * @param string $policy The literal string to output as the contents of
839 * the meta tag. Will be parsed according to the spec and output in
840 * standardized form.
841 * @return null
843 public function setRobotPolicy( $policy ) {
844 $policy = Article::formatRobotPolicy( $policy );
846 if ( isset( $policy['index'] ) ) {
847 $this->setIndexPolicy( $policy['index'] );
849 if ( isset( $policy['follow'] ) ) {
850 $this->setFollowPolicy( $policy['follow'] );
855 * Set the index policy for the page, but leave the follow policy un-
856 * touched.
858 * @param string $policy Either 'index' or 'noindex'.
859 * @return null
861 public function setIndexPolicy( $policy ) {
862 $policy = trim( $policy );
863 if ( in_array( $policy, [ 'index', 'noindex' ] ) ) {
864 $this->mIndexPolicy = $policy;
869 * Set the follow policy for the page, but leave the index policy un-
870 * touched.
872 * @param string $policy Either 'follow' or 'nofollow'.
873 * @return null
875 public function setFollowPolicy( $policy ) {
876 $policy = trim( $policy );
877 if ( in_array( $policy, [ 'follow', 'nofollow' ] ) ) {
878 $this->mFollowPolicy = $policy;
883 * Set the new value of the "action text", this will be added to the
884 * "HTML title", separated from it with " - ".
886 * @param string $text New value of the "action text"
888 public function setPageTitleActionText( $text ) {
889 $this->mPageTitleActionText = $text;
893 * Get the value of the "action text"
895 * @return string
897 public function getPageTitleActionText() {
898 return $this->mPageTitleActionText;
902 * "HTML title" means the contents of "<title>".
903 * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
905 * @param string|Message $name
907 public function setHTMLTitle( $name ) {
908 if ( $name instanceof Message ) {
909 $this->mHTMLtitle = $name->setContext( $this->getContext() )->text();
910 } else {
911 $this->mHTMLtitle = $name;
916 * Return the "HTML title", i.e. the content of the "<title>" tag.
918 * @return string
920 public function getHTMLTitle() {
921 return $this->mHTMLtitle;
925 * Set $mRedirectedFrom, the Title of the page which redirected us to the current page.
927 * @param Title $t
929 public function setRedirectedFrom( $t ) {
930 $this->mRedirectedFrom = $t;
934 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML
935 * fragment. This function allows good tags like \<sup\> in the \<h1\> tag,
936 * but not bad tags like \<script\>. This function automatically sets
937 * \<title\> to the same content as \<h1\> but with all tags removed. Bad
938 * tags that were escaped in \<h1\> will still be escaped in \<title\>, and
939 * good tags like \<i\> will be dropped entirely.
941 * @param string|Message $name
943 public function setPageTitle( $name ) {
944 if ( $name instanceof Message ) {
945 $name = $name->setContext( $this->getContext() )->text();
948 # change "<script>foo&bar</script>" to "&lt;script&gt;foo&amp;bar&lt;/script&gt;"
949 # but leave "<i>foobar</i>" alone
950 $nameWithTags = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $name ) );
951 $this->mPagetitle = $nameWithTags;
953 # change "<i>foo&amp;bar</i>" to "foo&bar"
954 $this->setHTMLTitle(
955 $this->msg( 'pagetitle' )->rawParams( Sanitizer::stripAllTags( $nameWithTags ) )
956 ->inContentLanguage()
961 * Return the "page title", i.e. the content of the \<h1\> tag.
963 * @return string
965 public function getPageTitle() {
966 return $this->mPagetitle;
970 * Set the Title object to use
972 * @param Title $t
974 public function setTitle( Title $t ) {
975 $this->getContext()->setTitle( $t );
979 * Replace the subtitle with $str
981 * @param string|Message $str New value of the subtitle. String should be safe HTML.
983 public function setSubtitle( $str ) {
984 $this->clearSubtitle();
985 $this->addSubtitle( $str );
989 * Add $str to the subtitle
991 * @param string|Message $str String or Message to add to the subtitle. String should be safe HTML.
993 public function addSubtitle( $str ) {
994 if ( $str instanceof Message ) {
995 $this->mSubtitle[] = $str->setContext( $this->getContext() )->parse();
996 } else {
997 $this->mSubtitle[] = $str;
1002 * Build message object for a subtitle containing a backlink to a page
1004 * @param Title $title Title to link to
1005 * @param array $query Array of additional parameters to include in the link
1006 * @return Message
1007 * @since 1.25
1009 public static function buildBacklinkSubtitle( Title $title, $query = [] ) {
1010 if ( $title->isRedirect() ) {
1011 $query['redirect'] = 'no';
1013 return wfMessage( 'backlinksubtitle' )
1014 ->rawParams( Linker::link( $title, null, [], $query ) );
1018 * Add a subtitle containing a backlink to a page
1020 * @param Title $title Title to link to
1021 * @param array $query Array of additional parameters to include in the link
1023 public function addBacklinkSubtitle( Title $title, $query = [] ) {
1024 $this->addSubtitle( self::buildBacklinkSubtitle( $title, $query ) );
1028 * Clear the subtitles
1030 public function clearSubtitle() {
1031 $this->mSubtitle = [];
1035 * Get the subtitle
1037 * @return string
1039 public function getSubtitle() {
1040 return implode( "<br />\n\t\t\t\t", $this->mSubtitle );
1044 * Set the page as printable, i.e. it'll be displayed with all
1045 * print styles included
1047 public function setPrintable() {
1048 $this->mPrintable = true;
1052 * Return whether the page is "printable"
1054 * @return bool
1056 public function isPrintable() {
1057 return $this->mPrintable;
1061 * Disable output completely, i.e. calling output() will have no effect
1063 public function disable() {
1064 $this->mDoNothing = true;
1068 * Return whether the output will be completely disabled
1070 * @return bool
1072 public function isDisabled() {
1073 return $this->mDoNothing;
1077 * Show an "add new section" link?
1079 * @return bool
1081 public function showNewSectionLink() {
1082 return $this->mNewSectionLink;
1086 * Forcibly hide the new section link?
1088 * @return bool
1090 public function forceHideNewSectionLink() {
1091 return $this->mHideNewSectionLink;
1095 * Add or remove feed links in the page header
1096 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1097 * for the new version
1098 * @see addFeedLink()
1100 * @param bool $show True: add default feeds, false: remove all feeds
1102 public function setSyndicated( $show = true ) {
1103 if ( $show ) {
1104 $this->setFeedAppendQuery( false );
1105 } else {
1106 $this->mFeedLinks = [];
1111 * Add default feeds to the page header
1112 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1113 * for the new version
1114 * @see addFeedLink()
1116 * @param string $val Query to append to feed links or false to output
1117 * default links
1119 public function setFeedAppendQuery( $val ) {
1120 $this->mFeedLinks = [];
1122 foreach ( $this->getConfig()->get( 'AdvertisedFeedTypes' ) as $type ) {
1123 $query = "feed=$type";
1124 if ( is_string( $val ) ) {
1125 $query .= '&' . $val;
1127 $this->mFeedLinks[$type] = $this->getTitle()->getLocalURL( $query );
1132 * Add a feed link to the page header
1134 * @param string $format Feed type, should be a key of $wgFeedClasses
1135 * @param string $href URL
1137 public function addFeedLink( $format, $href ) {
1138 if ( in_array( $format, $this->getConfig()->get( 'AdvertisedFeedTypes' ) ) ) {
1139 $this->mFeedLinks[$format] = $href;
1144 * Should we output feed links for this page?
1145 * @return bool
1147 public function isSyndicated() {
1148 return count( $this->mFeedLinks ) > 0;
1152 * Return URLs for each supported syndication format for this page.
1153 * @return array Associating format keys with URLs
1155 public function getSyndicationLinks() {
1156 return $this->mFeedLinks;
1160 * Will currently always return null
1162 * @return null
1164 public function getFeedAppendQuery() {
1165 return $this->mFeedLinksAppendQuery;
1169 * Set whether the displayed content is related to the source of the
1170 * corresponding article on the wiki
1171 * Setting true will cause the change "article related" toggle to true
1173 * @param bool $v
1175 public function setArticleFlag( $v ) {
1176 $this->mIsarticle = $v;
1177 if ( $v ) {
1178 $this->mIsArticleRelated = $v;
1183 * Return whether the content displayed page is related to the source of
1184 * the corresponding article on the wiki
1186 * @return bool
1188 public function isArticle() {
1189 return $this->mIsarticle;
1193 * Set whether this page is related an article on the wiki
1194 * Setting false will cause the change of "article flag" toggle to false
1196 * @param bool $v
1198 public function setArticleRelated( $v ) {
1199 $this->mIsArticleRelated = $v;
1200 if ( !$v ) {
1201 $this->mIsarticle = false;
1206 * Return whether this page is related an article on the wiki
1208 * @return bool
1210 public function isArticleRelated() {
1211 return $this->mIsArticleRelated;
1215 * Add new language links
1217 * @param string[] $newLinkArray Array of interwiki-prefixed (non DB key) titles
1218 * (e.g. 'fr:Test page')
1220 public function addLanguageLinks( array $newLinkArray ) {
1221 $this->mLanguageLinks += $newLinkArray;
1225 * Reset the language links and add new language links
1227 * @param string[] $newLinkArray Array of interwiki-prefixed (non DB key) titles
1228 * (e.g. 'fr:Test page')
1230 public function setLanguageLinks( array $newLinkArray ) {
1231 $this->mLanguageLinks = $newLinkArray;
1235 * Get the list of language links
1237 * @return string[] Array of interwiki-prefixed (non DB key) titles (e.g. 'fr:Test page')
1239 public function getLanguageLinks() {
1240 return $this->mLanguageLinks;
1244 * Add an array of categories, with names in the keys
1246 * @param array $categories Mapping category name => sort key
1248 public function addCategoryLinks( array $categories ) {
1249 global $wgContLang;
1251 if ( !is_array( $categories ) || count( $categories ) == 0 ) {
1252 return;
1255 # Add the links to a LinkBatch
1256 $arr = [ NS_CATEGORY => $categories ];
1257 $lb = new LinkBatch;
1258 $lb->setArray( $arr );
1260 # Fetch existence plus the hiddencat property
1261 $dbr = wfGetDB( DB_REPLICA );
1262 $fields = array_merge(
1263 LinkCache::getSelectFields(),
1264 [ 'page_namespace', 'page_title', 'pp_value' ]
1267 $res = $dbr->select( [ 'page', 'page_props' ],
1268 $fields,
1269 $lb->constructSet( 'page', $dbr ),
1270 __METHOD__,
1272 [ 'page_props' => [ 'LEFT JOIN', [
1273 'pp_propname' => 'hiddencat',
1274 'pp_page = page_id'
1275 ] ] ]
1278 # Add the results to the link cache
1279 $lb->addResultToCache( LinkCache::singleton(), $res );
1281 # Set all the values to 'normal'.
1282 $categories = array_fill_keys( array_keys( $categories ), 'normal' );
1284 # Mark hidden categories
1285 foreach ( $res as $row ) {
1286 if ( isset( $row->pp_value ) ) {
1287 $categories[$row->page_title] = 'hidden';
1291 # Add the remaining categories to the skin
1292 if ( Hooks::run(
1293 'OutputPageMakeCategoryLinks',
1294 [ &$this, $categories, &$this->mCategoryLinks ] )
1296 foreach ( $categories as $category => $type ) {
1297 // array keys will cast numeric category names to ints, so cast back to string
1298 $category = (string)$category;
1299 $origcategory = $category;
1300 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
1301 if ( !$title ) {
1302 continue;
1304 $wgContLang->findVariantLink( $category, $title, true );
1305 if ( $category != $origcategory && array_key_exists( $category, $categories ) ) {
1306 continue;
1308 $text = $wgContLang->convertHtml( $title->getText() );
1309 $this->mCategories[] = $title->getText();
1310 $this->mCategoryLinks[$type][] = Linker::link( $title, $text );
1316 * Reset the category links (but not the category list) and add $categories
1318 * @param array $categories Mapping category name => sort key
1320 public function setCategoryLinks( array $categories ) {
1321 $this->mCategoryLinks = [];
1322 $this->addCategoryLinks( $categories );
1326 * Get the list of category links, in a 2-D array with the following format:
1327 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
1328 * hidden categories) and $link a HTML fragment with a link to the category
1329 * page
1331 * @return array
1333 public function getCategoryLinks() {
1334 return $this->mCategoryLinks;
1338 * Get the list of category names this page belongs to
1340 * @return array Array of strings
1342 public function getCategories() {
1343 return $this->mCategories;
1347 * Add an array of indicators, with their identifiers as array
1348 * keys and HTML contents as values.
1350 * In case of duplicate keys, existing values are overwritten.
1352 * @param array $indicators
1353 * @since 1.25
1355 public function setIndicators( array $indicators ) {
1356 $this->mIndicators = $indicators + $this->mIndicators;
1357 // Keep ordered by key
1358 ksort( $this->mIndicators );
1362 * Get the indicators associated with this page.
1364 * The array will be internally ordered by item keys.
1366 * @return array Keys: identifiers, values: HTML contents
1367 * @since 1.25
1369 public function getIndicators() {
1370 return $this->mIndicators;
1374 * Adds help link with an icon via page indicators.
1375 * Link target can be overridden by a local message containing a wikilink:
1376 * the message key is: lowercase action or special page name + '-helppage'.
1377 * @param string $to Target MediaWiki.org page title or encoded URL.
1378 * @param bool $overrideBaseUrl Whether $url is a full URL, to avoid MW.o.
1379 * @since 1.25
1381 public function addHelpLink( $to, $overrideBaseUrl = false ) {
1382 $this->addModuleStyles( 'mediawiki.helplink' );
1383 $text = $this->msg( 'helppage-top-gethelp' )->escaped();
1385 if ( $overrideBaseUrl ) {
1386 $helpUrl = $to;
1387 } else {
1388 $toUrlencoded = wfUrlencode( str_replace( ' ', '_', $to ) );
1389 $helpUrl = "//www.mediawiki.org/wiki/Special:MyLanguage/$toUrlencoded";
1392 $link = Html::rawElement(
1393 'a',
1395 'href' => $helpUrl,
1396 'target' => '_blank',
1397 'class' => 'mw-helplink',
1399 $text
1402 $this->setIndicators( [ 'mw-helplink' => $link ] );
1406 * Do not allow scripts which can be modified by wiki users to load on this page;
1407 * only allow scripts bundled with, or generated by, the software.
1408 * Site-wide styles are controlled by a config setting, since they can be
1409 * used to create a custom skin/theme, but not user-specific ones.
1411 * @todo this should be given a more accurate name
1413 public function disallowUserJs() {
1414 $this->reduceAllowedModules(
1415 ResourceLoaderModule::TYPE_SCRIPTS,
1416 ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL
1419 // Site-wide styles are controlled by a config setting, see bug 71621
1420 // for background on why. User styles are never allowed.
1421 if ( $this->getConfig()->get( 'AllowSiteCSSOnRestrictedPages' ) ) {
1422 $styleOrigin = ResourceLoaderModule::ORIGIN_USER_SITEWIDE;
1423 } else {
1424 $styleOrigin = ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL;
1426 $this->reduceAllowedModules(
1427 ResourceLoaderModule::TYPE_STYLES,
1428 $styleOrigin
1433 * Show what level of JavaScript / CSS untrustworthiness is allowed on this page
1434 * @see ResourceLoaderModule::$origin
1435 * @param string $type ResourceLoaderModule TYPE_ constant
1436 * @return int ResourceLoaderModule ORIGIN_ class constant
1438 public function getAllowedModules( $type ) {
1439 if ( $type == ResourceLoaderModule::TYPE_COMBINED ) {
1440 return min( array_values( $this->mAllowedModules ) );
1441 } else {
1442 return isset( $this->mAllowedModules[$type] )
1443 ? $this->mAllowedModules[$type]
1444 : ResourceLoaderModule::ORIGIN_ALL;
1449 * Limit the highest level of CSS/JS untrustworthiness allowed.
1451 * If passed the same or a higher level than the current level of untrustworthiness set, the
1452 * level will remain unchanged.
1454 * @param string $type
1455 * @param int $level ResourceLoaderModule class constant
1457 public function reduceAllowedModules( $type, $level ) {
1458 $this->mAllowedModules[$type] = min( $this->getAllowedModules( $type ), $level );
1462 * Prepend $text to the body HTML
1464 * @param string $text HTML
1466 public function prependHTML( $text ) {
1467 $this->mBodytext = $text . $this->mBodytext;
1471 * Append $text to the body HTML
1473 * @param string $text HTML
1475 public function addHTML( $text ) {
1476 $this->mBodytext .= $text;
1480 * Shortcut for adding an Html::element via addHTML.
1482 * @since 1.19
1484 * @param string $element
1485 * @param array $attribs
1486 * @param string $contents
1488 public function addElement( $element, array $attribs = [], $contents = '' ) {
1489 $this->addHTML( Html::element( $element, $attribs, $contents ) );
1493 * Clear the body HTML
1495 public function clearHTML() {
1496 $this->mBodytext = '';
1500 * Get the body HTML
1502 * @return string HTML
1504 public function getHTML() {
1505 return $this->mBodytext;
1509 * Get/set the ParserOptions object to use for wikitext parsing
1511 * @param ParserOptions|null $options Either the ParserOption to use or null to only get the
1512 * current ParserOption object
1513 * @return ParserOptions
1515 public function parserOptions( $options = null ) {
1516 if ( $options !== null && !empty( $options->isBogus ) ) {
1517 // Someone is trying to set a bogus pre-$wgUser PO. Check if it has
1518 // been changed somehow, and keep it if so.
1519 $anonPO = ParserOptions::newFromAnon();
1520 $anonPO->setEditSection( false );
1521 if ( !$options->matches( $anonPO ) ) {
1522 wfLogWarning( __METHOD__ . ': Setting a changed bogus ParserOptions: ' . wfGetAllCallers( 5 ) );
1523 $options->isBogus = false;
1527 if ( !$this->mParserOptions ) {
1528 if ( !$this->getContext()->getUser()->isSafeToLoad() ) {
1529 // $wgUser isn't unstubbable yet, so don't try to get a
1530 // ParserOptions for it. And don't cache this ParserOptions
1531 // either.
1532 $po = ParserOptions::newFromAnon();
1533 $po->setEditSection( false );
1534 $po->isBogus = true;
1535 if ( $options !== null ) {
1536 $this->mParserOptions = empty( $options->isBogus ) ? $options : null;
1538 return $po;
1541 $this->mParserOptions = ParserOptions::newFromContext( $this->getContext() );
1542 $this->mParserOptions->setEditSection( false );
1545 if ( $options !== null && !empty( $options->isBogus ) ) {
1546 // They're trying to restore the bogus pre-$wgUser PO. Do the right
1547 // thing.
1548 return wfSetVar( $this->mParserOptions, null, true );
1549 } else {
1550 return wfSetVar( $this->mParserOptions, $options );
1555 * Set the revision ID which will be seen by the wiki text parser
1556 * for things such as embedded {{REVISIONID}} variable use.
1558 * @param int|null $revid An positive integer, or null
1559 * @return mixed Previous value
1561 public function setRevisionId( $revid ) {
1562 $val = is_null( $revid ) ? null : intval( $revid );
1563 return wfSetVar( $this->mRevisionId, $val );
1567 * Get the displayed revision ID
1569 * @return int
1571 public function getRevisionId() {
1572 return $this->mRevisionId;
1576 * Set the timestamp of the revision which will be displayed. This is used
1577 * to avoid a extra DB call in Skin::lastModified().
1579 * @param string|null $timestamp
1580 * @return mixed Previous value
1582 public function setRevisionTimestamp( $timestamp ) {
1583 return wfSetVar( $this->mRevisionTimestamp, $timestamp );
1587 * Get the timestamp of displayed revision.
1588 * This will be null if not filled by setRevisionTimestamp().
1590 * @return string|null
1592 public function getRevisionTimestamp() {
1593 return $this->mRevisionTimestamp;
1597 * Set the displayed file version
1599 * @param File|bool $file
1600 * @return mixed Previous value
1602 public function setFileVersion( $file ) {
1603 $val = null;
1604 if ( $file instanceof File && $file->exists() ) {
1605 $val = [ 'time' => $file->getTimestamp(), 'sha1' => $file->getSha1() ];
1607 return wfSetVar( $this->mFileVersion, $val, true );
1611 * Get the displayed file version
1613 * @return array|null ('time' => MW timestamp, 'sha1' => sha1)
1615 public function getFileVersion() {
1616 return $this->mFileVersion;
1620 * Get the templates used on this page
1622 * @return array (namespace => dbKey => revId)
1623 * @since 1.18
1625 public function getTemplateIds() {
1626 return $this->mTemplateIds;
1630 * Get the files used on this page
1632 * @return array (dbKey => array('time' => MW timestamp or null, 'sha1' => sha1 or ''))
1633 * @since 1.18
1635 public function getFileSearchOptions() {
1636 return $this->mImageTimeKeys;
1640 * Convert wikitext to HTML and add it to the buffer
1641 * Default assumes that the current page title will be used.
1643 * @param string $text
1644 * @param bool $linestart Is this the start of a line?
1645 * @param bool $interface Is this text in the user interface language?
1646 * @throws MWException
1648 public function addWikiText( $text, $linestart = true, $interface = true ) {
1649 $title = $this->getTitle(); // Work around E_STRICT
1650 if ( !$title ) {
1651 throw new MWException( 'Title is null' );
1653 $this->addWikiTextTitle( $text, $title, $linestart, /*tidy*/false, $interface );
1657 * Add wikitext with a custom Title object
1659 * @param string $text Wikitext
1660 * @param Title $title
1661 * @param bool $linestart Is this the start of a line?
1663 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
1664 $this->addWikiTextTitle( $text, $title, $linestart );
1668 * Add wikitext with a custom Title object and tidy enabled.
1670 * @param string $text Wikitext
1671 * @param Title $title
1672 * @param bool $linestart Is this the start of a line?
1674 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
1675 $this->addWikiTextTitle( $text, $title, $linestart, true );
1679 * Add wikitext with tidy enabled
1681 * @param string $text Wikitext
1682 * @param bool $linestart Is this the start of a line?
1684 public function addWikiTextTidy( $text, $linestart = true ) {
1685 $title = $this->getTitle();
1686 $this->addWikiTextTitleTidy( $text, $title, $linestart );
1690 * Add wikitext with a custom Title object
1692 * @param string $text Wikitext
1693 * @param Title $title
1694 * @param bool $linestart Is this the start of a line?
1695 * @param bool $tidy Whether to use tidy
1696 * @param bool $interface Whether it is an interface message
1697 * (for example disables conversion)
1699 public function addWikiTextTitle( $text, Title $title, $linestart,
1700 $tidy = false, $interface = false
1702 global $wgParser;
1704 $popts = $this->parserOptions();
1705 $oldTidy = $popts->setTidy( $tidy );
1706 $popts->setInterfaceMessage( (bool)$interface );
1708 $parserOutput = $wgParser->getFreshParser()->parse(
1709 $text, $title, $popts,
1710 $linestart, true, $this->mRevisionId
1713 $popts->setTidy( $oldTidy );
1715 $this->addParserOutput( $parserOutput );
1719 * Add a ParserOutput object, but without Html.
1721 * @deprecated since 1.24, use addParserOutputMetadata() instead.
1722 * @param ParserOutput $parserOutput
1724 public function addParserOutputNoText( $parserOutput ) {
1725 wfDeprecated( __METHOD__, '1.24' );
1726 $this->addParserOutputMetadata( $parserOutput );
1730 * Add all metadata associated with a ParserOutput object, but without the actual HTML. This
1731 * includes categories, language links, ResourceLoader modules, effects of certain magic words,
1732 * and so on.
1734 * @since 1.24
1735 * @param ParserOutput $parserOutput
1737 public function addParserOutputMetadata( $parserOutput ) {
1738 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
1739 $this->addCategoryLinks( $parserOutput->getCategories() );
1740 $this->setIndicators( $parserOutput->getIndicators() );
1741 $this->mNewSectionLink = $parserOutput->getNewSection();
1742 $this->mHideNewSectionLink = $parserOutput->getHideNewSection();
1744 if ( !$parserOutput->isCacheable() ) {
1745 $this->enableClientCache( false );
1747 $this->mNoGallery = $parserOutput->getNoGallery();
1748 $this->mHeadItems = array_merge( $this->mHeadItems, $parserOutput->getHeadItems() );
1749 $this->addModules( $parserOutput->getModules() );
1750 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1751 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1752 $this->addJsConfigVars( $parserOutput->getJsConfigVars() );
1753 $this->mPreventClickjacking = $this->mPreventClickjacking
1754 || $parserOutput->preventClickjacking();
1756 // Template versioning...
1757 foreach ( (array)$parserOutput->getTemplateIds() as $ns => $dbks ) {
1758 if ( isset( $this->mTemplateIds[$ns] ) ) {
1759 $this->mTemplateIds[$ns] = $dbks + $this->mTemplateIds[$ns];
1760 } else {
1761 $this->mTemplateIds[$ns] = $dbks;
1764 // File versioning...
1765 foreach ( (array)$parserOutput->getFileSearchOptions() as $dbk => $data ) {
1766 $this->mImageTimeKeys[$dbk] = $data;
1769 // Hooks registered in the object
1770 $parserOutputHooks = $this->getConfig()->get( 'ParserOutputHooks' );
1771 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1772 list( $hookName, $data ) = $hookInfo;
1773 if ( isset( $parserOutputHooks[$hookName] ) ) {
1774 call_user_func( $parserOutputHooks[$hookName], $this, $parserOutput, $data );
1778 // Enable OOUI if requested via ParserOutput
1779 if ( $parserOutput->getEnableOOUI() ) {
1780 $this->enableOOUI();
1783 // Include profiling data
1784 if ( !$this->limitReportData ) {
1785 $this->setLimitReportData( $parserOutput->getLimitReportData() );
1788 // Link flags are ignored for now, but may in the future be
1789 // used to mark individual language links.
1790 $linkFlags = [];
1791 Hooks::run( 'LanguageLinks', [ $this->getTitle(), &$this->mLanguageLinks, &$linkFlags ] );
1792 Hooks::run( 'OutputPageParserOutput', [ &$this, $parserOutput ] );
1796 * Add the HTML and enhancements for it (like ResourceLoader modules) associated with a
1797 * ParserOutput object, without any other metadata.
1799 * @since 1.24
1800 * @param ParserOutput $parserOutput
1802 public function addParserOutputContent( $parserOutput ) {
1803 $this->addParserOutputText( $parserOutput );
1805 $this->addModules( $parserOutput->getModules() );
1806 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1807 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1809 $this->addJsConfigVars( $parserOutput->getJsConfigVars() );
1813 * Add the HTML associated with a ParserOutput object, without any metadata.
1815 * @since 1.24
1816 * @param ParserOutput $parserOutput
1818 public function addParserOutputText( $parserOutput ) {
1819 $text = $parserOutput->getText();
1820 Hooks::run( 'OutputPageBeforeHTML', [ &$this, &$text ] );
1821 $this->addHTML( $text );
1825 * Add everything from a ParserOutput object.
1827 * @param ParserOutput $parserOutput
1829 function addParserOutput( $parserOutput ) {
1830 $this->addParserOutputMetadata( $parserOutput );
1831 $parserOutput->setTOCEnabled( $this->mEnableTOC );
1833 // Touch section edit links only if not previously disabled
1834 if ( $parserOutput->getEditSectionTokens() ) {
1835 $parserOutput->setEditSectionTokens( $this->mEnableSectionEditLinks );
1838 $this->addParserOutputText( $parserOutput );
1842 * Add the output of a QuickTemplate to the output buffer
1844 * @param QuickTemplate $template
1846 public function addTemplate( &$template ) {
1847 $this->addHTML( $template->getHTML() );
1851 * Parse wikitext and return the HTML.
1853 * @param string $text
1854 * @param bool $linestart Is this the start of a line?
1855 * @param bool $interface Use interface language ($wgLang instead of
1856 * $wgContLang) while parsing language sensitive magic words like GRAMMAR and PLURAL.
1857 * This also disables LanguageConverter.
1858 * @param Language $language Target language object, will override $interface
1859 * @throws MWException
1860 * @return string HTML
1862 public function parse( $text, $linestart = true, $interface = false, $language = null ) {
1863 global $wgParser;
1865 if ( is_null( $this->getTitle() ) ) {
1866 throw new MWException( 'Empty $mTitle in ' . __METHOD__ );
1869 $popts = $this->parserOptions();
1870 if ( $interface ) {
1871 $popts->setInterfaceMessage( true );
1873 if ( $language !== null ) {
1874 $oldLang = $popts->setTargetLanguage( $language );
1877 $parserOutput = $wgParser->getFreshParser()->parse(
1878 $text, $this->getTitle(), $popts,
1879 $linestart, true, $this->mRevisionId
1882 if ( $interface ) {
1883 $popts->setInterfaceMessage( false );
1885 if ( $language !== null ) {
1886 $popts->setTargetLanguage( $oldLang );
1889 return $parserOutput->getText();
1893 * Parse wikitext, strip paragraphs, and return the HTML.
1895 * @param string $text
1896 * @param bool $linestart Is this the start of a line?
1897 * @param bool $interface Use interface language ($wgLang instead of
1898 * $wgContLang) while parsing language sensitive magic
1899 * words like GRAMMAR and PLURAL
1900 * @return string HTML
1902 public function parseInline( $text, $linestart = true, $interface = false ) {
1903 $parsed = $this->parse( $text, $linestart, $interface );
1904 return Parser::stripOuterParagraph( $parsed );
1908 * @param $maxage
1909 * @deprecated since 1.27 Use setCdnMaxage() instead
1911 public function setSquidMaxage( $maxage ) {
1912 $this->setCdnMaxage( $maxage );
1916 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1918 * @param int $maxage Maximum cache time on the CDN, in seconds.
1920 public function setCdnMaxage( $maxage ) {
1921 $this->mCdnMaxage = min( $maxage, $this->mCdnMaxageLimit );
1925 * Lower the value of the "s-maxage" part of the "Cache-control" HTTP header
1927 * @param int $maxage Maximum cache time on the CDN, in seconds
1928 * @since 1.27
1930 public function lowerCdnMaxage( $maxage ) {
1931 $this->mCdnMaxageLimit = min( $maxage, $this->mCdnMaxageLimit );
1932 $this->setCdnMaxage( $this->mCdnMaxage );
1936 * Get TTL in [$minTTL,$maxTTL] in pass it to lowerCdnMaxage()
1938 * This sets and returns $minTTL if $mtime is false or null. Otherwise,
1939 * the TTL is higher the older the $mtime timestamp is. Essentially, the
1940 * TTL is 90% of the age of the object, subject to the min and max.
1942 * @param string|integer|float|bool|null $mtime Last-Modified timestamp
1943 * @param integer $minTTL Mimimum TTL in seconds [default: 1 minute]
1944 * @param integer $maxTTL Maximum TTL in seconds [default: $wgSquidMaxage]
1945 * @return integer TTL in seconds
1946 * @since 1.28
1948 public function adaptCdnTTL( $mtime, $minTTL = 0, $maxTTL = 0 ) {
1949 $minTTL = $minTTL ?: IExpiringStore::TTL_MINUTE;
1950 $maxTTL = $maxTTL ?: $this->getConfig()->get( 'SquidMaxage' );
1952 if ( $mtime === null || $mtime === false ) {
1953 return $minTTL; // entity does not exist
1956 $age = time() - wfTimestamp( TS_UNIX, $mtime );
1957 $adaptiveTTL = max( .9 * $age, $minTTL );
1958 $adaptiveTTL = min( $adaptiveTTL, $maxTTL );
1960 $this->lowerCdnMaxage( (int)$adaptiveTTL );
1962 return $adaptiveTTL;
1966 * Use enableClientCache(false) to force it to send nocache headers
1968 * @param bool $state
1970 * @return bool
1972 public function enableClientCache( $state ) {
1973 return wfSetVar( $this->mEnableClientCache, $state );
1977 * Get the list of cookies that will influence on the cache
1979 * @return array
1981 function getCacheVaryCookies() {
1982 static $cookies;
1983 if ( $cookies === null ) {
1984 $config = $this->getConfig();
1985 $cookies = array_merge(
1986 SessionManager::singleton()->getVaryCookies(),
1988 'forceHTTPS',
1990 $config->get( 'CacheVaryCookies' )
1992 Hooks::run( 'GetCacheVaryCookies', [ $this, &$cookies ] );
1994 return $cookies;
1998 * Check if the request has a cache-varying cookie header
1999 * If it does, it's very important that we don't allow public caching
2001 * @return bool
2003 function haveCacheVaryCookies() {
2004 $request = $this->getRequest();
2005 foreach ( $this->getCacheVaryCookies() as $cookieName ) {
2006 if ( $request->getCookie( $cookieName, '', '' ) !== '' ) {
2007 wfDebug( __METHOD__ . ": found $cookieName\n" );
2008 return true;
2011 wfDebug( __METHOD__ . ": no cache-varying cookies found\n" );
2012 return false;
2016 * Add an HTTP header that will influence on the cache
2018 * @param string $header Header name
2019 * @param string[]|null $option Options for the Key header. See
2020 * https://datatracker.ietf.org/doc/draft-fielding-http-key/
2021 * for the list of valid options.
2023 public function addVaryHeader( $header, array $option = null ) {
2024 if ( !array_key_exists( $header, $this->mVaryHeader ) ) {
2025 $this->mVaryHeader[$header] = [];
2027 if ( !is_array( $option ) ) {
2028 $option = [];
2030 $this->mVaryHeader[$header] = array_unique( array_merge( $this->mVaryHeader[$header], $option ) );
2034 * Return a Vary: header on which to vary caches. Based on the keys of $mVaryHeader,
2035 * such as Accept-Encoding or Cookie
2037 * @return string
2039 public function getVaryHeader() {
2040 // If we vary on cookies, let's make sure it's always included here too.
2041 if ( $this->getCacheVaryCookies() ) {
2042 $this->addVaryHeader( 'Cookie' );
2045 foreach ( SessionManager::singleton()->getVaryHeaders() as $header => $options ) {
2046 $this->addVaryHeader( $header, $options );
2048 return 'Vary: ' . implode( ', ', array_keys( $this->mVaryHeader ) );
2052 * Get a complete Key header
2054 * @return string
2056 public function getKeyHeader() {
2057 $cvCookies = $this->getCacheVaryCookies();
2059 $cookiesOption = [];
2060 foreach ( $cvCookies as $cookieName ) {
2061 $cookiesOption[] = 'param=' . $cookieName;
2063 $this->addVaryHeader( 'Cookie', $cookiesOption );
2065 foreach ( SessionManager::singleton()->getVaryHeaders() as $header => $options ) {
2066 $this->addVaryHeader( $header, $options );
2069 $headers = [];
2070 foreach ( $this->mVaryHeader as $header => $option ) {
2071 $newheader = $header;
2072 if ( is_array( $option ) && count( $option ) > 0 ) {
2073 $newheader .= ';' . implode( ';', $option );
2075 $headers[] = $newheader;
2077 $key = 'Key: ' . implode( ',', $headers );
2079 return $key;
2083 * T23672: Add Accept-Language to Vary and Key headers
2084 * if there's no 'variant' parameter existed in GET.
2086 * For example:
2087 * /w/index.php?title=Main_page should always be served; but
2088 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
2090 function addAcceptLanguage() {
2091 $title = $this->getTitle();
2092 if ( !$title instanceof Title ) {
2093 return;
2096 $lang = $title->getPageLanguage();
2097 if ( !$this->getRequest()->getCheck( 'variant' ) && $lang->hasVariants() ) {
2098 $variants = $lang->getVariants();
2099 $aloption = [];
2100 foreach ( $variants as $variant ) {
2101 if ( $variant === $lang->getCode() ) {
2102 continue;
2103 } else {
2104 $aloption[] = 'substr=' . $variant;
2106 // IE and some other browsers use BCP 47 standards in
2107 // their Accept-Language header, like "zh-CN" or "zh-Hant".
2108 // We should handle these too.
2109 $variantBCP47 = wfBCP47( $variant );
2110 if ( $variantBCP47 !== $variant ) {
2111 $aloption[] = 'substr=' . $variantBCP47;
2115 $this->addVaryHeader( 'Accept-Language', $aloption );
2120 * Set a flag which will cause an X-Frame-Options header appropriate for
2121 * edit pages to be sent. The header value is controlled by
2122 * $wgEditPageFrameOptions.
2124 * This is the default for special pages. If you display a CSRF-protected
2125 * form on an ordinary view page, then you need to call this function.
2127 * @param bool $enable
2129 public function preventClickjacking( $enable = true ) {
2130 $this->mPreventClickjacking = $enable;
2134 * Turn off frame-breaking. Alias for $this->preventClickjacking(false).
2135 * This can be called from pages which do not contain any CSRF-protected
2136 * HTML form.
2138 public function allowClickjacking() {
2139 $this->mPreventClickjacking = false;
2143 * Get the prevent-clickjacking flag
2145 * @since 1.24
2146 * @return bool
2148 public function getPreventClickjacking() {
2149 return $this->mPreventClickjacking;
2153 * Get the X-Frame-Options header value (without the name part), or false
2154 * if there isn't one. This is used by Skin to determine whether to enable
2155 * JavaScript frame-breaking, for clients that don't support X-Frame-Options.
2157 * @return string
2159 public function getFrameOptions() {
2160 $config = $this->getConfig();
2161 if ( $config->get( 'BreakFrames' ) ) {
2162 return 'DENY';
2163 } elseif ( $this->mPreventClickjacking && $config->get( 'EditPageFrameOptions' ) ) {
2164 return $config->get( 'EditPageFrameOptions' );
2166 return false;
2170 * Send cache control HTTP headers
2172 public function sendCacheControl() {
2173 $response = $this->getRequest()->response();
2174 $config = $this->getConfig();
2176 $this->addVaryHeader( 'Cookie' );
2177 $this->addAcceptLanguage();
2179 # don't serve compressed data to clients who can't handle it
2180 # maintain different caches for logged-in users and non-logged in ones
2181 $response->header( $this->getVaryHeader() );
2183 if ( $config->get( 'UseKeyHeader' ) ) {
2184 $response->header( $this->getKeyHeader() );
2187 if ( $this->mEnableClientCache ) {
2188 if (
2189 $config->get( 'UseSquid' ) &&
2190 !$response->hasCookies() &&
2191 !SessionManager::getGlobalSession()->isPersistent() &&
2192 !$this->isPrintable() &&
2193 $this->mCdnMaxage != 0 &&
2194 !$this->haveCacheVaryCookies()
2196 if ( $config->get( 'UseESI' ) ) {
2197 # We'll purge the proxy cache explicitly, but require end user agents
2198 # to revalidate against the proxy on each visit.
2199 # Surrogate-Control controls our CDN, Cache-Control downstream caches
2200 wfDebug( __METHOD__ .
2201 ": proxy caching with ESI; {$this->mLastModified} **", 'private' );
2202 # start with a shorter timeout for initial testing
2203 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
2204 $response->header(
2205 "Surrogate-Control: max-age={$config->get( 'SquidMaxage' )}" .
2206 "+{$this->mCdnMaxage}, content=\"ESI/1.0\""
2208 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
2209 } else {
2210 # We'll purge the proxy cache for anons explicitly, but require end user agents
2211 # to revalidate against the proxy on each visit.
2212 # IMPORTANT! The CDN needs to replace the Cache-Control header with
2213 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
2214 wfDebug( __METHOD__ .
2215 ": local proxy caching; {$this->mLastModified} **", 'private' );
2216 # start with a shorter timeout for initial testing
2217 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
2218 $response->header( "Cache-Control: " .
2219 "s-maxage={$this->mCdnMaxage}, must-revalidate, max-age=0" );
2221 } else {
2222 # We do want clients to cache if they can, but they *must* check for updates
2223 # on revisiting the page.
2224 wfDebug( __METHOD__ . ": private caching; {$this->mLastModified} **", 'private' );
2225 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
2226 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
2228 if ( $this->mLastModified ) {
2229 $response->header( "Last-Modified: {$this->mLastModified}" );
2231 } else {
2232 wfDebug( __METHOD__ . ": no caching **", 'private' );
2234 # In general, the absence of a last modified header should be enough to prevent
2235 # the client from using its cache. We send a few other things just to make sure.
2236 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
2237 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
2238 $response->header( 'Pragma: no-cache' );
2243 * Finally, all the text has been munged and accumulated into
2244 * the object, let's actually output it:
2246 * @param bool $return Set to true to get the result as a string rather than sending it
2247 * @return string|null
2248 * @throws Exception
2249 * @throws FatalError
2250 * @throws MWException
2252 public function output( $return = false ) {
2253 global $wgContLang;
2255 if ( $this->mDoNothing ) {
2256 return $return ? '' : null;
2259 $response = $this->getRequest()->response();
2260 $config = $this->getConfig();
2262 if ( $this->mRedirect != '' ) {
2263 # Standards require redirect URLs to be absolute
2264 $this->mRedirect = wfExpandUrl( $this->mRedirect, PROTO_CURRENT );
2266 $redirect = $this->mRedirect;
2267 $code = $this->mRedirectCode;
2269 if ( Hooks::run( "BeforePageRedirect", [ $this, &$redirect, &$code ] ) ) {
2270 if ( $code == '301' || $code == '303' ) {
2271 if ( !$config->get( 'DebugRedirects' ) ) {
2272 $response->statusHeader( $code );
2274 $this->mLastModified = wfTimestamp( TS_RFC2822 );
2276 if ( $config->get( 'VaryOnXFP' ) ) {
2277 $this->addVaryHeader( 'X-Forwarded-Proto' );
2279 $this->sendCacheControl();
2281 $response->header( "Content-Type: text/html; charset=utf-8" );
2282 if ( $config->get( 'DebugRedirects' ) ) {
2283 $url = htmlspecialchars( $redirect );
2284 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
2285 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
2286 print "</body>\n</html>\n";
2287 } else {
2288 $response->header( 'Location: ' . $redirect );
2292 return $return ? '' : null;
2293 } elseif ( $this->mStatusCode ) {
2294 $response->statusHeader( $this->mStatusCode );
2297 # Buffer output; final headers may depend on later processing
2298 ob_start();
2300 $response->header( 'Content-type: ' . $config->get( 'MimeType' ) . '; charset=UTF-8' );
2301 $response->header( 'Content-language: ' . $wgContLang->getHtmlCode() );
2303 // Avoid Internet Explorer "compatibility view" in IE 8-10, so that
2304 // jQuery etc. can work correctly.
2305 $response->header( 'X-UA-Compatible: IE=Edge' );
2307 // Prevent framing, if requested
2308 $frameOptions = $this->getFrameOptions();
2309 if ( $frameOptions ) {
2310 $response->header( "X-Frame-Options: $frameOptions" );
2313 if ( $this->mArticleBodyOnly ) {
2314 echo $this->mBodytext;
2315 } else {
2316 $sk = $this->getSkin();
2317 // add skin specific modules
2318 $modules = $sk->getDefaultModules();
2320 // Enforce various default modules for all pages and all skins
2321 $coreModules = [
2322 // Keep this list as small as possible
2323 'site',
2324 'mediawiki.page.startup',
2325 'mediawiki.user',
2328 // Support for high-density display images if enabled
2329 if ( $config->get( 'ResponsiveImages' ) ) {
2330 $coreModules[] = 'mediawiki.hidpi';
2333 $this->addModules( $coreModules );
2334 foreach ( $modules as $group ) {
2335 $this->addModules( $group );
2337 MWDebug::addModules( $this );
2339 // Hook that allows last minute changes to the output page, e.g.
2340 // adding of CSS or Javascript by extensions.
2341 Hooks::run( 'BeforePageDisplay', [ &$this, &$sk ] );
2343 try {
2344 $sk->outputPage();
2345 } catch ( Exception $e ) {
2346 ob_end_clean(); // bug T129657
2347 throw $e;
2351 try {
2352 // This hook allows last minute changes to final overall output by modifying output buffer
2353 Hooks::run( 'AfterFinalPageOutput', [ $this ] );
2354 } catch ( Exception $e ) {
2355 ob_end_clean(); // bug T129657
2356 throw $e;
2359 $this->sendCacheControl();
2361 if ( $return ) {
2362 return ob_get_clean();
2363 } else {
2364 ob_end_flush();
2365 return null;
2370 * Prepare this object to display an error page; disable caching and
2371 * indexing, clear the current text and redirect, set the page's title
2372 * and optionally an custom HTML title (content of the "<title>" tag).
2374 * @param string|Message $pageTitle Will be passed directly to setPageTitle()
2375 * @param string|Message $htmlTitle Will be passed directly to setHTMLTitle();
2376 * optional, if not passed the "<title>" attribute will be
2377 * based on $pageTitle
2379 public function prepareErrorPage( $pageTitle, $htmlTitle = false ) {
2380 $this->setPageTitle( $pageTitle );
2381 if ( $htmlTitle !== false ) {
2382 $this->setHTMLTitle( $htmlTitle );
2384 $this->setRobotPolicy( 'noindex,nofollow' );
2385 $this->setArticleRelated( false );
2386 $this->enableClientCache( false );
2387 $this->mRedirect = '';
2388 $this->clearSubtitle();
2389 $this->clearHTML();
2393 * Output a standard error page
2395 * showErrorPage( 'titlemsg', 'pagetextmsg' );
2396 * showErrorPage( 'titlemsg', 'pagetextmsg', [ 'param1', 'param2' ] );
2397 * showErrorPage( 'titlemsg', $messageObject );
2398 * showErrorPage( $titleMessageObject, $messageObject );
2400 * @param string|Message $title Message key (string) for page title, or a Message object
2401 * @param string|Message $msg Message key (string) for page text, or a Message object
2402 * @param array $params Message parameters; ignored if $msg is a Message object
2404 public function showErrorPage( $title, $msg, $params = [] ) {
2405 if ( !$title instanceof Message ) {
2406 $title = $this->msg( $title );
2409 $this->prepareErrorPage( $title );
2411 if ( $msg instanceof Message ) {
2412 if ( $params !== [] ) {
2413 trigger_error( 'Argument ignored: $params. The message parameters argument '
2414 . 'is discarded when the $msg argument is a Message object instead of '
2415 . 'a string.', E_USER_NOTICE );
2417 $this->addHTML( $msg->parseAsBlock() );
2418 } else {
2419 $this->addWikiMsgArray( $msg, $params );
2422 $this->returnToMain();
2426 * Output a standard permission error page
2428 * @param array $errors Error message keys or [key, param...] arrays
2429 * @param string $action Action that was denied or null if unknown
2431 public function showPermissionsErrorPage( array $errors, $action = null ) {
2432 foreach ( $errors as $key => $error ) {
2433 $errors[$key] = (array)$error;
2436 // For some action (read, edit, create and upload), display a "login to do this action"
2437 // error if all of the following conditions are met:
2438 // 1. the user is not logged in
2439 // 2. the only error is insufficient permissions (i.e. no block or something else)
2440 // 3. the error can be avoided simply by logging in
2441 if ( in_array( $action, [ 'read', 'edit', 'createpage', 'createtalk', 'upload' ] )
2442 && $this->getUser()->isAnon() && count( $errors ) == 1 && isset( $errors[0][0] )
2443 && ( $errors[0][0] == 'badaccess-groups' || $errors[0][0] == 'badaccess-group0' )
2444 && ( User::groupHasPermission( 'user', $action )
2445 || User::groupHasPermission( 'autoconfirmed', $action ) )
2447 $displayReturnto = null;
2449 # Due to bug 32276, if a user does not have read permissions,
2450 # $this->getTitle() will just give Special:Badtitle, which is
2451 # not especially useful as a returnto parameter. Use the title
2452 # from the request instead, if there was one.
2453 $request = $this->getRequest();
2454 $returnto = Title::newFromText( $request->getVal( 'title', '' ) );
2455 if ( $action == 'edit' ) {
2456 $msg = 'whitelistedittext';
2457 $displayReturnto = $returnto;
2458 } elseif ( $action == 'createpage' || $action == 'createtalk' ) {
2459 $msg = 'nocreatetext';
2460 } elseif ( $action == 'upload' ) {
2461 $msg = 'uploadnologintext';
2462 } else { # Read
2463 $msg = 'loginreqpagetext';
2464 $displayReturnto = Title::newMainPage();
2467 $query = [];
2469 if ( $returnto ) {
2470 $query['returnto'] = $returnto->getPrefixedText();
2472 if ( !$request->wasPosted() ) {
2473 $returntoquery = $request->getValues();
2474 unset( $returntoquery['title'] );
2475 unset( $returntoquery['returnto'] );
2476 unset( $returntoquery['returntoquery'] );
2477 $query['returntoquery'] = wfArrayToCgi( $returntoquery );
2480 $loginLink = Linker::linkKnown(
2481 SpecialPage::getTitleFor( 'Userlogin' ),
2482 $this->msg( 'loginreqlink' )->escaped(),
2484 $query
2487 $this->prepareErrorPage( $this->msg( 'loginreqtitle' ) );
2488 $this->addHTML( $this->msg( $msg )->rawParams( $loginLink )->parse() );
2490 # Don't return to a page the user can't read otherwise
2491 # we'll end up in a pointless loop
2492 if ( $displayReturnto && $displayReturnto->userCan( 'read', $this->getUser() ) ) {
2493 $this->returnToMain( null, $displayReturnto );
2495 } else {
2496 $this->prepareErrorPage( $this->msg( 'permissionserrors' ) );
2497 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
2502 * Display an error page indicating that a given version of MediaWiki is
2503 * required to use it
2505 * @param mixed $version The version of MediaWiki needed to use the page
2507 public function versionRequired( $version ) {
2508 $this->prepareErrorPage( $this->msg( 'versionrequired', $version ) );
2510 $this->addWikiMsg( 'versionrequiredtext', $version );
2511 $this->returnToMain();
2515 * Format a list of error messages
2517 * @param array $errors Array of arrays returned by Title::getUserPermissionsErrors
2518 * @param string $action Action that was denied or null if unknown
2519 * @return string The wikitext error-messages, formatted into a list.
2521 public function formatPermissionsErrorMessage( array $errors, $action = null ) {
2522 if ( $action == null ) {
2523 $text = $this->msg( 'permissionserrorstext', count( $errors ) )->plain() . "\n\n";
2524 } else {
2525 $action_desc = $this->msg( "action-$action" )->plain();
2526 $text = $this->msg(
2527 'permissionserrorstext-withaction',
2528 count( $errors ),
2529 $action_desc
2530 )->plain() . "\n\n";
2533 if ( count( $errors ) > 1 ) {
2534 $text .= '<ul class="permissions-errors">' . "\n";
2536 foreach ( $errors as $error ) {
2537 $text .= '<li>';
2538 $text .= call_user_func_array( [ $this, 'msg' ], $error )->plain();
2539 $text .= "</li>\n";
2541 $text .= '</ul>';
2542 } else {
2543 $text .= "<div class=\"permissions-errors\">\n" .
2544 call_user_func_array( [ $this, 'msg' ], reset( $errors ) )->plain() .
2545 "\n</div>";
2548 return $text;
2552 * Display a page stating that the Wiki is in read-only mode.
2553 * Should only be called after wfReadOnly() has returned true.
2555 * Historically, this function was used to show the source of the page that the user
2556 * was trying to edit and _also_ permissions error messages. The relevant code was
2557 * moved into EditPage in 1.19 (r102024 / d83c2a431c2a) and removed here in 1.25.
2559 * @deprecated since 1.25; throw the exception directly
2560 * @throws ReadOnlyError
2562 public function readOnlyPage() {
2563 if ( func_num_args() > 0 ) {
2564 throw new MWException( __METHOD__ . ' no longer accepts arguments since 1.25.' );
2567 throw new ReadOnlyError;
2571 * Turn off regular page output and return an error response
2572 * for when rate limiting has triggered.
2574 * @deprecated since 1.25; throw the exception directly
2576 public function rateLimited() {
2577 wfDeprecated( __METHOD__, '1.25' );
2578 throw new ThrottledError;
2582 * Show a warning about replica DB lag
2584 * If the lag is higher than $wgSlaveLagCritical seconds,
2585 * then the warning is a bit more obvious. If the lag is
2586 * lower than $wgSlaveLagWarning, then no warning is shown.
2588 * @param int $lag Slave lag
2590 public function showLagWarning( $lag ) {
2591 $config = $this->getConfig();
2592 if ( $lag >= $config->get( 'SlaveLagWarning' ) ) {
2593 $lag = floor( $lag ); // floor to avoid nano seconds to display
2594 $message = $lag < $config->get( 'SlaveLagCritical' )
2595 ? 'lag-warn-normal'
2596 : 'lag-warn-high';
2597 $wrap = Html::rawElement( 'div', [ 'class' => "mw-{$message}" ], "\n$1\n" );
2598 $this->wrapWikiMsg( "$wrap\n", [ $message, $this->getLanguage()->formatNum( $lag ) ] );
2602 public function showFatalError( $message ) {
2603 $this->prepareErrorPage( $this->msg( 'internalerror' ) );
2605 $this->addHTML( $message );
2608 public function showUnexpectedValueError( $name, $val ) {
2609 $this->showFatalError( $this->msg( 'unexpected', $name, $val )->text() );
2612 public function showFileCopyError( $old, $new ) {
2613 $this->showFatalError( $this->msg( 'filecopyerror', $old, $new )->text() );
2616 public function showFileRenameError( $old, $new ) {
2617 $this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->text() );
2620 public function showFileDeleteError( $name ) {
2621 $this->showFatalError( $this->msg( 'filedeleteerror', $name )->text() );
2624 public function showFileNotFoundError( $name ) {
2625 $this->showFatalError( $this->msg( 'filenotfound', $name )->text() );
2629 * Add a "return to" link pointing to a specified title
2631 * @param Title $title Title to link
2632 * @param array $query Query string parameters
2633 * @param string $text Text of the link (input is not escaped)
2634 * @param array $options Options array to pass to Linker
2636 public function addReturnTo( $title, array $query = [], $text = null, $options = [] ) {
2637 $link = $this->msg( 'returnto' )->rawParams(
2638 Linker::link( $title, $text, [], $query, $options ) )->escaped();
2639 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2643 * Add a "return to" link pointing to a specified title,
2644 * or the title indicated in the request, or else the main page
2646 * @param mixed $unused
2647 * @param Title|string $returnto Title or String to return to
2648 * @param string $returntoquery Query string for the return to link
2650 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2651 if ( $returnto == null ) {
2652 $returnto = $this->getRequest()->getText( 'returnto' );
2655 if ( $returntoquery == null ) {
2656 $returntoquery = $this->getRequest()->getText( 'returntoquery' );
2659 if ( $returnto === '' ) {
2660 $returnto = Title::newMainPage();
2663 if ( is_object( $returnto ) ) {
2664 $titleObj = $returnto;
2665 } else {
2666 $titleObj = Title::newFromText( $returnto );
2668 if ( !is_object( $titleObj ) ) {
2669 $titleObj = Title::newMainPage();
2672 $this->addReturnTo( $titleObj, wfCgiToArray( $returntoquery ) );
2675 private function getRlClientContext() {
2676 if ( !$this->rlClientContext ) {
2677 $query = ResourceLoader::makeLoaderQuery(
2678 [], // modules; not relevant
2679 $this->getLanguage()->getCode(),
2680 $this->getSkin()->getSkinName(),
2681 $this->getUser()->isLoggedIn() ? $this->getUser()->getName() : null,
2682 null, // version; not relevant
2683 ResourceLoader::inDebugMode(),
2684 null, // only; not relevant
2685 $this->isPrintable(),
2686 $this->getRequest()->getBool( 'handheld' )
2688 $this->rlClientContext = new ResourceLoaderContext(
2689 $this->getResourceLoader(),
2690 new FauxRequest( $query )
2693 return $this->rlClientContext;
2697 * Call this to freeze the module queue and JS config and create a formatter.
2699 * Depending on the Skin, this may get lazy-initialised in either headElement() or
2700 * getBottomScripts(). See SkinTemplate::prepareQuickTemplate(). Calling this too early may
2701 * cause unexpected side-effects since disallowUserJs() may be called at any time to change
2702 * the module filters retroactively. Skins and extension hooks may also add modules until very
2703 * late in the request lifecycle.
2705 * @return ResourceLoaderClientHtml
2707 public function getRlClient() {
2708 if ( !$this->rlClient ) {
2709 $context = $this->getRlClientContext();
2710 $rl = $this->getResourceLoader();
2711 $this->addModules( [
2712 'user.options',
2713 'user.tokens',
2714 ] );
2715 $this->addModuleStyles( [
2716 'site.styles',
2717 'noscript',
2718 'user.styles',
2719 'user.cssprefs',
2720 ] );
2721 $this->getSkin()->setupSkinUserCss( $this );
2723 // Prepare exempt modules for buildExemptModules()
2724 $exemptGroups = [ 'site' => [], 'noscript' => [], 'private' => [], 'user' => [] ];
2725 $exemptStates = [];
2726 $moduleStyles = $this->getModuleStyles( /*filter*/ true );
2728 // Preload getTitleInfo for isKnownEmpty calls below and in ResourceLoaderClientHtml
2729 // Separate user-specific batch for improved cache-hit ratio.
2730 $userBatch = [ 'user.styles', 'user' ];
2731 $siteBatch = array_diff( $moduleStyles, $userBatch );
2732 $dbr = wfGetDB( DB_REPLICA );
2733 ResourceLoaderWikiModule::preloadTitleInfo( $context, $dbr, $siteBatch );
2734 ResourceLoaderWikiModule::preloadTitleInfo( $context, $dbr, $userBatch );
2736 // Filter out modules handled by buildExemptModules()
2737 $moduleStyles = array_filter( $moduleStyles,
2738 function ( $name ) use ( $rl, $context, &$exemptGroups, &$exemptStates ) {
2739 $module = $rl->getModule( $name );
2740 if ( $module ) {
2741 if ( $name === 'user.styles' && $this->isUserCssPreview() ) {
2742 $exemptStates[$name] = 'ready';
2743 // Special case in buildExemptModules()
2744 return false;
2746 $group = $module->getGroup();
2747 if ( isset( $exemptGroups[$group] ) ) {
2748 $exemptStates[$name] = 'ready';
2749 if ( !$module->isKnownEmpty( $context ) ) {
2750 // E.g. Don't output empty <styles>
2751 $exemptGroups[$group][] = $name;
2753 return false;
2756 return true;
2759 $this->rlExemptStyleModules = $exemptGroups;
2761 $isUserModuleFiltered = !$this->filterModules( [ 'user' ] );
2762 // If this page filters out 'user', makeResourceLoaderLink will drop it.
2763 // Avoid indefinite "loading" state or untrue "ready" state (T145368).
2764 if ( !$isUserModuleFiltered ) {
2765 // Manually handled by getBottomScripts()
2766 $userModule = $rl->getModule( 'user' );
2767 $userState = $userModule->isKnownEmpty( $context ) && !$this->isUserJsPreview()
2768 ? 'ready'
2769 : 'loading';
2770 $this->rlUserModuleState = $exemptStates['user'] = $userState;
2773 $rlClient = new ResourceLoaderClientHtml( $context, $this->getTarget() );
2774 $rlClient->setConfig( $this->getJSVars() );
2775 $rlClient->setModules( $this->getModules( /*filter*/ true ) );
2776 $rlClient->setModuleStyles( $moduleStyles );
2777 $rlClient->setModuleScripts( $this->getModuleScripts( /*filter*/ true ) );
2778 $rlClient->setExemptStates( $exemptStates );
2779 $this->rlClient = $rlClient;
2781 return $this->rlClient;
2785 * @param Skin $sk The given Skin
2786 * @param bool $includeStyle Unused
2787 * @return string The doctype, opening "<html>", and head element.
2789 public function headElement( Skin $sk, $includeStyle = true ) {
2790 global $wgContLang;
2792 $userdir = $this->getLanguage()->getDir();
2793 $sitedir = $wgContLang->getDir();
2795 $pieces = [];
2796 $pieces[] = Html::htmlHeader( Sanitizer::mergeAttributes(
2797 $this->getRlClient()->getDocumentAttributes(),
2798 $sk->getHtmlElementAttributes()
2799 ) );
2800 $pieces[] = Html::openElement( 'head' );
2802 if ( $this->getHTMLTitle() == '' ) {
2803 $this->setHTMLTitle( $this->msg( 'pagetitle', $this->getPageTitle() )->inContentLanguage() );
2806 if ( !Html::isXmlMimeType( $this->getConfig()->get( 'MimeType' ) ) ) {
2807 // Add <meta charset="UTF-8">
2808 // This should be before <title> since it defines the charset used by
2809 // text including the text inside <title>.
2810 // The spec recommends defining XHTML5's charset using the XML declaration
2811 // instead of meta.
2812 // Our XML declaration is output by Html::htmlHeader.
2813 // http://www.whatwg.org/html/semantics.html#attr-meta-http-equiv-content-type
2814 // http://www.whatwg.org/html/semantics.html#charset
2815 $pieces[] = Html::element( 'meta', [ 'charset' => 'UTF-8' ] );
2818 $pieces[] = Html::element( 'title', null, $this->getHTMLTitle() );
2819 $pieces[] = $this->getRlClient()->getHeadHtml();
2820 $pieces[] = $this->buildExemptModules();
2821 $pieces = array_merge( $pieces, array_values( $this->getHeadLinksArray() ) );
2822 $pieces = array_merge( $pieces, array_values( $this->mHeadItems ) );
2823 $pieces[] = Html::closeElement( 'head' );
2825 $bodyClasses = [];
2826 $bodyClasses[] = 'mediawiki';
2828 # Classes for LTR/RTL directionality support
2829 $bodyClasses[] = $userdir;
2830 $bodyClasses[] = "sitedir-$sitedir";
2832 if ( $this->getLanguage()->capitalizeAllNouns() ) {
2833 # A <body> class is probably not the best way to do this . . .
2834 $bodyClasses[] = 'capitalize-all-nouns';
2837 // Parser feature migration class
2838 // The idea is that this will eventually be removed, after the wikitext
2839 // which requires it is cleaned up.
2840 $bodyClasses[] = 'mw-hide-empty-elt';
2842 $bodyClasses[] = $sk->getPageClasses( $this->getTitle() );
2843 $bodyClasses[] = 'skin-' . Sanitizer::escapeClass( $sk->getSkinName() );
2844 $bodyClasses[] =
2845 'action-' . Sanitizer::escapeClass( Action::getActionName( $this->getContext() ) );
2847 $bodyAttrs = [];
2848 // While the implode() is not strictly needed, it's used for backwards compatibility
2849 // (this used to be built as a string and hooks likely still expect that).
2850 $bodyAttrs['class'] = implode( ' ', $bodyClasses );
2852 // Allow skins and extensions to add body attributes they need
2853 $sk->addToBodyAttributes( $this, $bodyAttrs );
2854 Hooks::run( 'OutputPageBodyAttributes', [ $this, $sk, &$bodyAttrs ] );
2856 $pieces[] = Html::openElement( 'body', $bodyAttrs );
2858 return self::combineWrappedStrings( $pieces );
2862 * Get a ResourceLoader object associated with this OutputPage
2864 * @return ResourceLoader
2866 public function getResourceLoader() {
2867 if ( is_null( $this->mResourceLoader ) ) {
2868 $this->mResourceLoader = new ResourceLoader(
2869 $this->getConfig(),
2870 LoggerFactory::getInstance( 'resourceloader' )
2873 return $this->mResourceLoader;
2877 * Explicily load or embed modules on a page.
2879 * @param array|string $modules One or more module names
2880 * @param string $only ResourceLoaderModule TYPE_ class constant
2881 * @param array $extraQuery [optional] Array with extra query parameters for the request
2882 * @return string|WrappedStringList HTML
2884 public function makeResourceLoaderLink( $modules, $only, array $extraQuery = [] ) {
2885 // Apply 'target' and 'origin' filters
2886 $modules = $this->filterModules( (array)$modules, null, $only );
2888 return ResourceLoaderClientHtml::makeLoad(
2889 $this->getRlClientContext(),
2890 $modules,
2891 $only,
2892 $extraQuery
2897 * Combine WrappedString chunks and filter out empty ones
2899 * @param array $chunks
2900 * @return string|WrappedStringList HTML
2902 protected static function combineWrappedStrings( array $chunks ) {
2903 // Filter out empty values
2904 $chunks = array_filter( $chunks, 'strlen' );
2905 return WrappedString::join( "\n", $chunks );
2908 private function isUserJsPreview() {
2909 return $this->getConfig()->get( 'AllowUserJs' )
2910 && $this->getTitle()
2911 && $this->getTitle()->isJsSubpage()
2912 && $this->userCanPreview();
2915 private function isUserCssPreview() {
2916 return $this->getConfig()->get( 'AllowUserCss' )
2917 && $this->getTitle()
2918 && $this->getTitle()->isCssSubpage()
2919 && $this->userCanPreview();
2923 * JS stuff to put at the bottom of the `<body>`. These are modules with position 'bottom',
2924 * legacy scripts ($this->mScripts), and user JS.
2926 * @return string|WrappedStringList HTML
2928 public function getBottomScripts() {
2929 $chunks = [];
2930 $chunks[] = $this->getRlClient()->getBodyHtml();
2932 // Legacy non-ResourceLoader scripts
2933 $chunks[] = $this->mScripts;
2935 // Exempt 'user' module
2936 // - May need excludepages for live preview. (T28283)
2937 // - Must use TYPE_COMBINED so its response is handled by mw.loader.implement() which
2938 // ensures execution is scheduled after the "site" module.
2939 // - Don't load if module state is already resolved as "ready".
2940 if ( $this->rlUserModuleState === 'loading' ) {
2941 if ( $this->isUserJsPreview() ) {
2942 $chunks[] = $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_COMBINED,
2943 [ 'excludepage' => $this->getTitle()->getPrefixedDBkey() ]
2945 $chunks[] = ResourceLoader::makeInlineScript(
2946 Xml::encodeJsCall( 'mw.loader.using', [
2947 [ 'user', 'site' ],
2948 new XmlJsCode(
2949 'function () {'
2950 . Xml::encodeJsCall( '$.globalEval', [
2951 $this->getRequest()->getText( 'wpTextbox1' )
2953 . '}'
2957 // FIXME: If the user is previewing, say, ./vector.js, his ./common.js will be loaded
2958 // asynchronously and may arrive *after* the inline script here. So the previewed code
2959 // may execute before ./common.js runs. Normally, ./common.js runs before ./vector.js.
2960 // Similarly, when previewing ./common.js and the user module does arrive first,
2961 // it will arrive without common.js and the inline script runs after.
2962 // Thus running common after the excluded subpage.
2963 } else {
2964 // Load normally
2965 $chunks[] = $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_COMBINED );
2969 if ( $this->limitReportData ) {
2970 $chunks[] = ResourceLoader::makeInlineScript(
2971 ResourceLoader::makeConfigSetScript(
2972 [ 'wgPageParseReport' => $this->limitReportData ],
2973 true
2978 return self::combineWrappedStrings( $chunks );
2982 * Get the javascript config vars to include on this page
2984 * @return array Array of javascript config vars
2985 * @since 1.23
2987 public function getJsConfigVars() {
2988 return $this->mJsConfigVars;
2992 * Add one or more variables to be set in mw.config in JavaScript
2994 * @param string|array $keys Key or array of key/value pairs
2995 * @param mixed $value [optional] Value of the configuration variable
2997 public function addJsConfigVars( $keys, $value = null ) {
2998 if ( is_array( $keys ) ) {
2999 foreach ( $keys as $key => $value ) {
3000 $this->mJsConfigVars[$key] = $value;
3002 return;
3005 $this->mJsConfigVars[$keys] = $value;
3009 * Get an array containing the variables to be set in mw.config in JavaScript.
3011 * Do not add things here which can be evaluated in ResourceLoaderStartUpModule
3012 * - in other words, page-independent/site-wide variables (without state).
3013 * You will only be adding bloat to the html page and causing page caches to
3014 * have to be purged on configuration changes.
3015 * @return array
3017 public function getJSVars() {
3018 global $wgContLang;
3020 $curRevisionId = 0;
3021 $articleId = 0;
3022 $canonicalSpecialPageName = false; # bug 21115
3024 $title = $this->getTitle();
3025 $ns = $title->getNamespace();
3026 $canonicalNamespace = MWNamespace::exists( $ns )
3027 ? MWNamespace::getCanonicalName( $ns )
3028 : $title->getNsText();
3030 $sk = $this->getSkin();
3031 // Get the relevant title so that AJAX features can use the correct page name
3032 // when making API requests from certain special pages (bug 34972).
3033 $relevantTitle = $sk->getRelevantTitle();
3034 $relevantUser = $sk->getRelevantUser();
3036 if ( $ns == NS_SPECIAL ) {
3037 list( $canonicalSpecialPageName, /*...*/ ) =
3038 SpecialPageFactory::resolveAlias( $title->getDBkey() );
3039 } elseif ( $this->canUseWikiPage() ) {
3040 $wikiPage = $this->getWikiPage();
3041 $curRevisionId = $wikiPage->getLatest();
3042 $articleId = $wikiPage->getId();
3045 $lang = $title->getPageViewLanguage();
3047 // Pre-process information
3048 $separatorTransTable = $lang->separatorTransformTable();
3049 $separatorTransTable = $separatorTransTable ? $separatorTransTable : [];
3050 $compactSeparatorTransTable = [
3051 implode( "\t", array_keys( $separatorTransTable ) ),
3052 implode( "\t", $separatorTransTable ),
3054 $digitTransTable = $lang->digitTransformTable();
3055 $digitTransTable = $digitTransTable ? $digitTransTable : [];
3056 $compactDigitTransTable = [
3057 implode( "\t", array_keys( $digitTransTable ) ),
3058 implode( "\t", $digitTransTable ),
3061 $user = $this->getUser();
3063 $vars = [
3064 'wgCanonicalNamespace' => $canonicalNamespace,
3065 'wgCanonicalSpecialPageName' => $canonicalSpecialPageName,
3066 'wgNamespaceNumber' => $title->getNamespace(),
3067 'wgPageName' => $title->getPrefixedDBkey(),
3068 'wgTitle' => $title->getText(),
3069 'wgCurRevisionId' => $curRevisionId,
3070 'wgRevisionId' => (int)$this->getRevisionId(),
3071 'wgArticleId' => $articleId,
3072 'wgIsArticle' => $this->isArticle(),
3073 'wgIsRedirect' => $title->isRedirect(),
3074 'wgAction' => Action::getActionName( $this->getContext() ),
3075 'wgUserName' => $user->isAnon() ? null : $user->getName(),
3076 'wgUserGroups' => $user->getEffectiveGroups(),
3077 'wgCategories' => $this->getCategories(),
3078 'wgBreakFrames' => $this->getFrameOptions() == 'DENY',
3079 'wgPageContentLanguage' => $lang->getCode(),
3080 'wgPageContentModel' => $title->getContentModel(),
3081 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
3082 'wgDigitTransformTable' => $compactDigitTransTable,
3083 'wgDefaultDateFormat' => $lang->getDefaultDateFormat(),
3084 'wgMonthNames' => $lang->getMonthNamesArray(),
3085 'wgMonthNamesShort' => $lang->getMonthAbbreviationsArray(),
3086 'wgRelevantPageName' => $relevantTitle->getPrefixedDBkey(),
3087 'wgRelevantArticleId' => $relevantTitle->getArticleID(),
3088 'wgRequestId' => WebRequest::getRequestId(),
3091 if ( $user->isLoggedIn() ) {
3092 $vars['wgUserId'] = $user->getId();
3093 $vars['wgUserEditCount'] = $user->getEditCount();
3094 $userReg = $user->getRegistration();
3095 $vars['wgUserRegistration'] = $userReg ? wfTimestamp( TS_UNIX, $userReg ) * 1000 : null;
3096 // Get the revision ID of the oldest new message on the user's talk
3097 // page. This can be used for constructing new message alerts on
3098 // the client side.
3099 $vars['wgUserNewMsgRevisionId'] = $user->getNewMessageRevisionId();
3102 if ( $wgContLang->hasVariants() ) {
3103 $vars['wgUserVariant'] = $wgContLang->getPreferredVariant();
3105 // Same test as SkinTemplate
3106 $vars['wgIsProbablyEditable'] = $title->quickUserCan( 'edit', $user )
3107 && ( $title->exists() || $title->quickUserCan( 'create', $user ) );
3109 foreach ( $title->getRestrictionTypes() as $type ) {
3110 $vars['wgRestriction' . ucfirst( $type )] = $title->getRestrictions( $type );
3113 if ( $title->isMainPage() ) {
3114 $vars['wgIsMainPage'] = true;
3117 if ( $this->mRedirectedFrom ) {
3118 $vars['wgRedirectedFrom'] = $this->mRedirectedFrom->getPrefixedDBkey();
3121 if ( $relevantUser ) {
3122 $vars['wgRelevantUserName'] = $relevantUser->getName();
3125 // Allow extensions to add their custom variables to the mw.config map.
3126 // Use the 'ResourceLoaderGetConfigVars' hook if the variable is not
3127 // page-dependant but site-wide (without state).
3128 // Alternatively, you may want to use OutputPage->addJsConfigVars() instead.
3129 Hooks::run( 'MakeGlobalVariablesScript', [ &$vars, $this ] );
3131 // Merge in variables from addJsConfigVars last
3132 return array_merge( $vars, $this->getJsConfigVars() );
3136 * To make it harder for someone to slip a user a fake
3137 * user-JavaScript or user-CSS preview, a random token
3138 * is associated with the login session. If it's not
3139 * passed back with the preview request, we won't render
3140 * the code.
3142 * @return bool
3144 public function userCanPreview() {
3145 $request = $this->getRequest();
3146 if (
3147 $request->getVal( 'action' ) !== 'submit' ||
3148 !$request->getCheck( 'wpPreview' ) ||
3149 !$request->wasPosted()
3151 return false;
3154 $user = $this->getUser();
3156 if ( !$user->isLoggedIn() ) {
3157 // Anons have predictable edit tokens
3158 return false;
3160 if ( !$user->matchEditToken( $request->getVal( 'wpEditToken' ) ) ) {
3161 return false;
3164 $title = $this->getTitle();
3165 if ( !$title->isJsSubpage() && !$title->isCssSubpage() ) {
3166 return false;
3168 if ( !$title->isSubpageOf( $user->getUserPage() ) ) {
3169 // Don't execute another user's CSS or JS on preview (T85855)
3170 return false;
3173 $errors = $title->getUserPermissionsErrors( 'edit', $user );
3174 if ( count( $errors ) !== 0 ) {
3175 return false;
3178 return true;
3182 * @return array Array in format "link name or number => 'link html'".
3184 public function getHeadLinksArray() {
3185 global $wgVersion;
3187 $tags = [];
3188 $config = $this->getConfig();
3190 $canonicalUrl = $this->mCanonicalUrl;
3192 $tags['meta-generator'] = Html::element( 'meta', [
3193 'name' => 'generator',
3194 'content' => "MediaWiki $wgVersion",
3195 ] );
3197 if ( $config->get( 'ReferrerPolicy' ) !== false ) {
3198 $tags['meta-referrer'] = Html::element( 'meta', [
3199 'name' => 'referrer',
3200 'content' => $config->get( 'ReferrerPolicy' )
3201 ] );
3204 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
3205 if ( $p !== 'index,follow' ) {
3206 // http://www.robotstxt.org/wc/meta-user.html
3207 // Only show if it's different from the default robots policy
3208 $tags['meta-robots'] = Html::element( 'meta', [
3209 'name' => 'robots',
3210 'content' => $p,
3211 ] );
3214 foreach ( $this->mMetatags as $tag ) {
3215 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
3216 $a = 'http-equiv';
3217 $tag[0] = substr( $tag[0], 5 );
3218 } else {
3219 $a = 'name';
3221 $tagName = "meta-{$tag[0]}";
3222 if ( isset( $tags[$tagName] ) ) {
3223 $tagName .= $tag[1];
3225 $tags[$tagName] = Html::element( 'meta',
3227 $a => $tag[0],
3228 'content' => $tag[1]
3233 foreach ( $this->mLinktags as $tag ) {
3234 $tags[] = Html::element( 'link', $tag );
3237 # Universal edit button
3238 if ( $config->get( 'UniversalEditButton' ) && $this->isArticleRelated() ) {
3239 $user = $this->getUser();
3240 if ( $this->getTitle()->quickUserCan( 'edit', $user )
3241 && ( $this->getTitle()->exists() ||
3242 $this->getTitle()->quickUserCan( 'create', $user ) )
3244 // Original UniversalEditButton
3245 $msg = $this->msg( 'edit' )->text();
3246 $tags['universal-edit-button'] = Html::element( 'link', [
3247 'rel' => 'alternate',
3248 'type' => 'application/x-wiki',
3249 'title' => $msg,
3250 'href' => $this->getTitle()->getEditURL(),
3251 ] );
3252 // Alternate edit link
3253 $tags['alternative-edit'] = Html::element( 'link', [
3254 'rel' => 'edit',
3255 'title' => $msg,
3256 'href' => $this->getTitle()->getEditURL(),
3257 ] );
3261 # Generally the order of the favicon and apple-touch-icon links
3262 # should not matter, but Konqueror (3.5.9 at least) incorrectly
3263 # uses whichever one appears later in the HTML source. Make sure
3264 # apple-touch-icon is specified first to avoid this.
3265 if ( $config->get( 'AppleTouchIcon' ) !== false ) {
3266 $tags['apple-touch-icon'] = Html::element( 'link', [
3267 'rel' => 'apple-touch-icon',
3268 'href' => $config->get( 'AppleTouchIcon' )
3269 ] );
3272 if ( $config->get( 'Favicon' ) !== false ) {
3273 $tags['favicon'] = Html::element( 'link', [
3274 'rel' => 'shortcut icon',
3275 'href' => $config->get( 'Favicon' )
3276 ] );
3279 # OpenSearch description link
3280 $tags['opensearch'] = Html::element( 'link', [
3281 'rel' => 'search',
3282 'type' => 'application/opensearchdescription+xml',
3283 'href' => wfScript( 'opensearch_desc' ),
3284 'title' => $this->msg( 'opensearch-desc' )->inContentLanguage()->text(),
3285 ] );
3287 if ( $config->get( 'EnableAPI' ) ) {
3288 # Real Simple Discovery link, provides auto-discovery information
3289 # for the MediaWiki API (and potentially additional custom API
3290 # support such as WordPress or Twitter-compatible APIs for a
3291 # blogging extension, etc)
3292 $tags['rsd'] = Html::element( 'link', [
3293 'rel' => 'EditURI',
3294 'type' => 'application/rsd+xml',
3295 // Output a protocol-relative URL here if $wgServer is protocol-relative.
3296 // Whether RSD accepts relative or protocol-relative URLs is completely
3297 // undocumented, though.
3298 'href' => wfExpandUrl( wfAppendQuery(
3299 wfScript( 'api' ),
3300 [ 'action' => 'rsd' ] ),
3301 PROTO_RELATIVE
3303 ] );
3306 # Language variants
3307 if ( !$config->get( 'DisableLangConversion' ) ) {
3308 $lang = $this->getTitle()->getPageLanguage();
3309 if ( $lang->hasVariants() ) {
3310 $variants = $lang->getVariants();
3311 foreach ( $variants as $variant ) {
3312 $tags["variant-$variant"] = Html::element( 'link', [
3313 'rel' => 'alternate',
3314 'hreflang' => wfBCP47( $variant ),
3315 'href' => $this->getTitle()->getLocalURL(
3316 [ 'variant' => $variant ] )
3320 # x-default link per https://support.google.com/webmasters/answer/189077?hl=en
3321 $tags["variant-x-default"] = Html::element( 'link', [
3322 'rel' => 'alternate',
3323 'hreflang' => 'x-default',
3324 'href' => $this->getTitle()->getLocalURL() ] );
3328 # Copyright
3329 if ( $this->copyrightUrl !== null ) {
3330 $copyright = $this->copyrightUrl;
3331 } else {
3332 $copyright = '';
3333 if ( $config->get( 'RightsPage' ) ) {
3334 $copy = Title::newFromText( $config->get( 'RightsPage' ) );
3336 if ( $copy ) {
3337 $copyright = $copy->getLocalURL();
3341 if ( !$copyright && $config->get( 'RightsUrl' ) ) {
3342 $copyright = $config->get( 'RightsUrl' );
3346 if ( $copyright ) {
3347 $tags['copyright'] = Html::element( 'link', [
3348 'rel' => 'copyright',
3349 'href' => $copyright ]
3353 # Feeds
3354 if ( $config->get( 'Feed' ) ) {
3355 $feedLinks = [];
3357 foreach ( $this->getSyndicationLinks() as $format => $link ) {
3358 # Use the page name for the title. In principle, this could
3359 # lead to issues with having the same name for different feeds
3360 # corresponding to the same page, but we can't avoid that at
3361 # this low a level.
3363 $feedLinks[] = $this->feedLink(
3364 $format,
3365 $link,
3366 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
3367 $this->msg(
3368 "page-{$format}-feed", $this->getTitle()->getPrefixedText()
3369 )->text()
3373 # Recent changes feed should appear on every page (except recentchanges,
3374 # that would be redundant). Put it after the per-page feed to avoid
3375 # changing existing behavior. It's still available, probably via a
3376 # menu in your browser. Some sites might have a different feed they'd
3377 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
3378 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
3379 # If so, use it instead.
3380 $sitename = $config->get( 'Sitename' );
3381 if ( $config->get( 'OverrideSiteFeed' ) ) {
3382 foreach ( $config->get( 'OverrideSiteFeed' ) as $type => $feedUrl ) {
3383 // Note, this->feedLink escapes the url.
3384 $feedLinks[] = $this->feedLink(
3385 $type,
3386 $feedUrl,
3387 $this->msg( "site-{$type}-feed", $sitename )->text()
3390 } elseif ( !$this->getTitle()->isSpecial( 'Recentchanges' ) ) {
3391 $rctitle = SpecialPage::getTitleFor( 'Recentchanges' );
3392 foreach ( $config->get( 'AdvertisedFeedTypes' ) as $format ) {
3393 $feedLinks[] = $this->feedLink(
3394 $format,
3395 $rctitle->getLocalURL( [ 'feed' => $format ] ),
3396 # For grep: 'site-rss-feed', 'site-atom-feed'
3397 $this->msg( "site-{$format}-feed", $sitename )->text()
3402 # Allow extensions to change the list pf feeds. This hook is primarily for changing,
3403 # manipulating or removing existing feed tags. If you want to add new feeds, you should
3404 # use OutputPage::addFeedLink() instead.
3405 Hooks::run( 'AfterBuildFeedLinks', [ &$feedLinks ] );
3407 $tags += $feedLinks;
3410 # Canonical URL
3411 if ( $config->get( 'EnableCanonicalServerLink' ) ) {
3412 if ( $canonicalUrl !== false ) {
3413 $canonicalUrl = wfExpandUrl( $canonicalUrl, PROTO_CANONICAL );
3414 } else {
3415 if ( $this->isArticleRelated() ) {
3416 // This affects all requests where "setArticleRelated" is true. This is
3417 // typically all requests that show content (query title, curid, oldid, diff),
3418 // and all wikipage actions (edit, delete, purge, info, history etc.).
3419 // It does not apply to File pages and Special pages.
3420 // 'history' and 'info' actions address page metadata rather than the page
3421 // content itself, so they may not be canonicalized to the view page url.
3422 // TODO: this ought to be better encapsulated in the Action class.
3423 $action = Action::getActionName( $this->getContext() );
3424 if ( in_array( $action, [ 'history', 'info' ] ) ) {
3425 $query = "action={$action}";
3426 } else {
3427 $query = '';
3429 $canonicalUrl = $this->getTitle()->getCanonicalURL( $query );
3430 } else {
3431 $reqUrl = $this->getRequest()->getRequestURL();
3432 $canonicalUrl = wfExpandUrl( $reqUrl, PROTO_CANONICAL );
3436 if ( $canonicalUrl !== false ) {
3437 $tags[] = Html::element( 'link', [
3438 'rel' => 'canonical',
3439 'href' => $canonicalUrl
3440 ] );
3443 return $tags;
3447 * @return string HTML tag links to be put in the header.
3448 * @deprecated since 1.24 Use OutputPage::headElement or if you have to,
3449 * OutputPage::getHeadLinksArray directly.
3451 public function getHeadLinks() {
3452 wfDeprecated( __METHOD__, '1.24' );
3453 return implode( "\n", $this->getHeadLinksArray() );
3457 * Generate a "<link rel/>" for a feed.
3459 * @param string $type Feed type
3460 * @param string $url URL to the feed
3461 * @param string $text Value of the "title" attribute
3462 * @return string HTML fragment
3464 private function feedLink( $type, $url, $text ) {
3465 return Html::element( 'link', [
3466 'rel' => 'alternate',
3467 'type' => "application/$type+xml",
3468 'title' => $text,
3469 'href' => $url ]
3474 * Add a local or specified stylesheet, with the given media options.
3475 * Internal use only. Use OutputPage::addModuleStyles() if possible.
3477 * @param string $style URL to the file
3478 * @param string $media To specify a media type, 'screen', 'printable', 'handheld' or any.
3479 * @param string $condition For IE conditional comments, specifying an IE version
3480 * @param string $dir Set to 'rtl' or 'ltr' for direction-specific sheets
3482 public function addStyle( $style, $media = '', $condition = '', $dir = '' ) {
3483 $options = [];
3484 if ( $media ) {
3485 $options['media'] = $media;
3487 if ( $condition ) {
3488 $options['condition'] = $condition;
3490 if ( $dir ) {
3491 $options['dir'] = $dir;
3493 $this->styles[$style] = $options;
3497 * Adds inline CSS styles
3498 * Internal use only. Use OutputPage::addModuleStyles() if possible.
3500 * @param mixed $style_css Inline CSS
3501 * @param string $flip Set to 'flip' to flip the CSS if needed
3503 public function addInlineStyle( $style_css, $flip = 'noflip' ) {
3504 if ( $flip === 'flip' && $this->getLanguage()->isRTL() ) {
3505 # If wanted, and the interface is right-to-left, flip the CSS
3506 $style_css = CSSJanus::transform( $style_css, true, false );
3508 $this->mInlineStyles .= Html::inlineStyle( $style_css );
3512 * Build exempt modules and legacy non-ResourceLoader styles.
3514 * @return string|WrappedStringList HTML
3516 protected function buildExemptModules() {
3517 global $wgContLang;
3519 $resourceLoader = $this->getResourceLoader();
3520 $chunks = [];
3521 // Things that go after the ResourceLoaderDynamicStyles marker
3522 $append = [];
3524 // Exempt 'user' styles module (may need 'excludepages' for live preview)
3525 if ( $this->isUserCssPreview() ) {
3526 $append[] = $this->makeResourceLoaderLink(
3527 'user.styles',
3528 ResourceLoaderModule::TYPE_STYLES,
3529 [ 'excludepage' => $this->getTitle()->getPrefixedDBkey() ]
3532 // Load the previewed CSS. Janus it if needed.
3533 // User-supplied CSS is assumed to in the wiki's content language.
3534 $previewedCSS = $this->getRequest()->getText( 'wpTextbox1' );
3535 if ( $this->getLanguage()->getDir() !== $wgContLang->getDir() ) {
3536 $previewedCSS = CSSJanus::transform( $previewedCSS, true, false );
3538 $append[] = Html::inlineStyle( $previewedCSS );
3541 // We want site, private and user styles to override dynamically added styles from
3542 // general modules, but we want dynamically added styles to override statically added
3543 // style modules. So the order has to be:
3544 // - page style modules (formatted by ResourceLoaderClientHtml::getHeadHtml())
3545 // - dynamically loaded styles (added by mw.loader before ResourceLoaderDynamicStyles)
3546 // - ResourceLoaderDynamicStyles marker
3547 // - site/private/user styles
3549 // Add legacy styles added through addStyle()/addInlineStyle() here
3550 $chunks[] = implode( '', $this->buildCssLinksArray() ) . $this->mInlineStyles;
3552 $chunks[] = Html::element(
3553 'meta',
3554 [ 'name' => 'ResourceLoaderDynamicStyles', 'content' => '' ]
3557 foreach ( $this->rlExemptStyleModules as $group => $moduleNames ) {
3558 $chunks[] = $this->makeResourceLoaderLink( $moduleNames,
3559 ResourceLoaderModule::TYPE_STYLES
3563 return self::combineWrappedStrings( array_merge( $chunks, $append ) );
3567 * @return array
3569 public function buildCssLinksArray() {
3570 $links = [];
3572 // Add any extension CSS
3573 foreach ( $this->mExtStyles as $url ) {
3574 $this->addStyle( $url );
3576 $this->mExtStyles = [];
3578 foreach ( $this->styles as $file => $options ) {
3579 $link = $this->styleLink( $file, $options );
3580 if ( $link ) {
3581 $links[$file] = $link;
3584 return $links;
3588 * Generate \<link\> tags for stylesheets
3590 * @param string $style URL to the file
3591 * @param array $options Option, can contain 'condition', 'dir', 'media' keys
3592 * @return string HTML fragment
3594 protected function styleLink( $style, array $options ) {
3595 if ( isset( $options['dir'] ) ) {
3596 if ( $this->getLanguage()->getDir() != $options['dir'] ) {
3597 return '';
3601 if ( isset( $options['media'] ) ) {
3602 $media = self::transformCssMedia( $options['media'] );
3603 if ( is_null( $media ) ) {
3604 return '';
3606 } else {
3607 $media = 'all';
3610 if ( substr( $style, 0, 1 ) == '/' ||
3611 substr( $style, 0, 5 ) == 'http:' ||
3612 substr( $style, 0, 6 ) == 'https:' ) {
3613 $url = $style;
3614 } else {
3615 $config = $this->getConfig();
3616 $url = $config->get( 'StylePath' ) . '/' . $style . '?' .
3617 $config->get( 'StyleVersion' );
3620 $link = Html::linkedStyle( $url, $media );
3622 if ( isset( $options['condition'] ) ) {
3623 $condition = htmlspecialchars( $options['condition'] );
3624 $link = "<!--[if $condition]>$link<![endif]-->";
3626 return $link;
3630 * Transform path to web-accessible static resource.
3632 * This is used to add a validation hash as query string.
3633 * This aids various behaviors:
3635 * - Put long Cache-Control max-age headers on responses for improved
3636 * cache performance.
3637 * - Get the correct version of a file as expected by the current page.
3638 * - Instantly get the updated version of a file after deployment.
3640 * Avoid using this for urls included in HTML as otherwise clients may get different
3641 * versions of a resource when navigating the site depending on when the page was cached.
3642 * If changes to the url propagate, this is not a problem (e.g. if the url is in
3643 * an external stylesheet).
3645 * @since 1.27
3646 * @param Config $config
3647 * @param string $path Path-absolute URL to file (from document root, must start with "/")
3648 * @return string URL
3650 public static function transformResourcePath( Config $config, $path ) {
3651 global $IP;
3652 $remotePathPrefix = $config->get( 'ResourceBasePath' );
3653 if ( $remotePathPrefix === '' ) {
3654 // The configured base path is required to be empty string for
3655 // wikis in the domain root
3656 $remotePath = '/';
3657 } else {
3658 $remotePath = $remotePathPrefix;
3660 if ( strpos( $path, $remotePath ) !== 0 ) {
3661 // Path is outside wgResourceBasePath, ignore.
3662 return $path;
3664 $path = RelPath\getRelativePath( $path, $remotePath );
3665 return self::transformFilePath( $remotePathPrefix, $IP, $path );
3669 * Utility method for transformResourceFilePath().
3671 * Caller is responsible for ensuring the file exists. Emits a PHP warning otherwise.
3673 * @since 1.27
3674 * @param string $remotePath URL path prefix that points to $localPath
3675 * @param string $localPath File directory exposed at $remotePath
3676 * @param string $file Path to target file relative to $localPath
3677 * @return string URL
3679 public static function transformFilePath( $remotePathPrefix, $localPath, $file ) {
3680 $hash = md5_file( "$localPath/$file" );
3681 if ( $hash === false ) {
3682 wfLogWarning( __METHOD__ . ": Failed to hash $localPath/$file" );
3683 $hash = '';
3685 return "$remotePathPrefix/$file?" . substr( $hash, 0, 5 );
3689 * Transform "media" attribute based on request parameters
3691 * @param string $media Current value of the "media" attribute
3692 * @return string Modified value of the "media" attribute, or null to skip
3693 * this stylesheet
3695 public static function transformCssMedia( $media ) {
3696 global $wgRequest;
3698 // http://www.w3.org/TR/css3-mediaqueries/#syntax
3699 $screenMediaQueryRegex = '/^(?:only\s+)?screen\b/i';
3701 // Switch in on-screen display for media testing
3702 $switches = [
3703 'printable' => 'print',
3704 'handheld' => 'handheld',
3706 foreach ( $switches as $switch => $targetMedia ) {
3707 if ( $wgRequest->getBool( $switch ) ) {
3708 if ( $media == $targetMedia ) {
3709 $media = '';
3710 } elseif ( preg_match( $screenMediaQueryRegex, $media ) === 1 ) {
3711 /* This regex will not attempt to understand a comma-separated media_query_list
3713 * Example supported values for $media:
3714 * 'screen', 'only screen', 'screen and (min-width: 982px)' ),
3715 * Example NOT supported value for $media:
3716 * '3d-glasses, screen, print and resolution > 90dpi'
3718 * If it's a print request, we never want any kind of screen stylesheets
3719 * If it's a handheld request (currently the only other choice with a switch),
3720 * we don't want simple 'screen' but we might want screen queries that
3721 * have a max-width or something, so we'll pass all others on and let the
3722 * client do the query.
3724 if ( $targetMedia == 'print' || $media == 'screen' ) {
3725 return null;
3731 return $media;
3735 * Add a wikitext-formatted message to the output.
3736 * This is equivalent to:
3738 * $wgOut->addWikiText( wfMessage( ... )->plain() )
3740 public function addWikiMsg( /*...*/ ) {
3741 $args = func_get_args();
3742 $name = array_shift( $args );
3743 $this->addWikiMsgArray( $name, $args );
3747 * Add a wikitext-formatted message to the output.
3748 * Like addWikiMsg() except the parameters are taken as an array
3749 * instead of a variable argument list.
3751 * @param string $name
3752 * @param array $args
3754 public function addWikiMsgArray( $name, $args ) {
3755 $this->addHTML( $this->msg( $name, $args )->parseAsBlock() );
3759 * This function takes a number of message/argument specifications, wraps them in
3760 * some overall structure, and then parses the result and adds it to the output.
3762 * In the $wrap, $1 is replaced with the first message, $2 with the second,
3763 * and so on. The subsequent arguments may be either
3764 * 1) strings, in which case they are message names, or
3765 * 2) arrays, in which case, within each array, the first element is the message
3766 * name, and subsequent elements are the parameters to that message.
3768 * Don't use this for messages that are not in the user's interface language.
3770 * For example:
3772 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>", 'some-error' );
3774 * Is equivalent to:
3776 * $wgOut->addWikiText( "<div class='error'>\n"
3777 * . wfMessage( 'some-error' )->plain() . "\n</div>" );
3779 * The newline after the opening div is needed in some wikitext. See bug 19226.
3781 * @param string $wrap
3783 public function wrapWikiMsg( $wrap /*, ...*/ ) {
3784 $msgSpecs = func_get_args();
3785 array_shift( $msgSpecs );
3786 $msgSpecs = array_values( $msgSpecs );
3787 $s = $wrap;
3788 foreach ( $msgSpecs as $n => $spec ) {
3789 if ( is_array( $spec ) ) {
3790 $args = $spec;
3791 $name = array_shift( $args );
3792 if ( isset( $args['options'] ) ) {
3793 unset( $args['options'] );
3794 wfDeprecated(
3795 'Adding "options" to ' . __METHOD__ . ' is no longer supported',
3796 '1.20'
3799 } else {
3800 $args = [];
3801 $name = $spec;
3803 $s = str_replace( '$' . ( $n + 1 ), $this->msg( $name, $args )->plain(), $s );
3805 $this->addWikiText( $s );
3809 * Enables/disables TOC, doesn't override __NOTOC__
3810 * @param bool $flag
3811 * @since 1.22
3813 public function enableTOC( $flag = true ) {
3814 $this->mEnableTOC = $flag;
3818 * @return bool
3819 * @since 1.22
3821 public function isTOCEnabled() {
3822 return $this->mEnableTOC;
3826 * Enables/disables section edit links, doesn't override __NOEDITSECTION__
3827 * @param bool $flag
3828 * @since 1.23
3830 public function enableSectionEditLinks( $flag = true ) {
3831 $this->mEnableSectionEditLinks = $flag;
3835 * @return bool
3836 * @since 1.23
3838 public function sectionEditLinksEnabled() {
3839 return $this->mEnableSectionEditLinks;
3843 * Helper function to setup the PHP implementation of OOUI to use in this request.
3845 * @since 1.26
3846 * @param String $skinName The Skin name to determine the correct OOUI theme
3847 * @param String $dir Language direction
3849 public static function setupOOUI( $skinName = '', $dir = 'ltr' ) {
3850 $themes = ExtensionRegistry::getInstance()->getAttribute( 'SkinOOUIThemes' );
3851 // Make keys (skin names) lowercase for case-insensitive matching.
3852 $themes = array_change_key_case( $themes, CASE_LOWER );
3853 $theme = isset( $themes[$skinName] ) ? $themes[$skinName] : 'MediaWiki';
3854 // For example, 'OOUI\MediaWikiTheme'.
3855 $themeClass = "OOUI\\{$theme}Theme";
3856 OOUI\Theme::setSingleton( new $themeClass() );
3857 OOUI\Element::setDefaultDir( $dir );
3861 * Add ResourceLoader module styles for OOUI and set up the PHP implementation of it for use with
3862 * MediaWiki and this OutputPage instance.
3864 * @since 1.25
3866 public function enableOOUI() {
3867 self::setupOOUI(
3868 strtolower( $this->getSkin()->getSkinName() ),
3869 $this->getLanguage()->getDir()
3871 $this->addModuleStyles( [
3872 'oojs-ui-core.styles',
3873 'oojs-ui.styles.icons',
3874 'oojs-ui.styles.indicators',
3875 'oojs-ui.styles.textures',
3876 'mediawiki.widgets.styles',
3877 ] );
3881 * @param array $data Data from ParserOutput::getLimitReportData()
3882 * @since 1.28
3884 public function setLimitReportData( array $data ) {
3885 $this->limitReportData = $data;