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
23 use MediaWiki\Logger\LoggerFactory
;
24 use WrappedString\WrappedString
;
27 * This class should be covered by a general architecture document which does
28 * not exist as of January 2011. This is one of the Core classes and should
29 * be read at least once by any new developers.
31 * This class is used to prepare the final rendering. A skin is then
32 * applied to the output parameters (links, javascript, html, categories ...).
34 * @todo FIXME: Another class handles sending the whole page to the client.
36 * Some comments comes from a pairing session between Zak Greant and Antoine Musso
41 class OutputPage
extends ContextSource
{
42 /** @var array Should be private. Used with addMeta() which adds "<meta>" */
43 protected $mMetatags = array();
46 protected $mLinktags = array();
49 protected $mCanonicalUrl = false;
52 * @var array Additional stylesheets. Looks like this is for extensions.
53 * Might be replaced by ResourceLoader.
55 protected $mExtStyles = array();
58 * @var string Should be private - has getter and setter. Contains
60 public $mPagetitle = '';
63 * @var string Contains all of the "<body>" content. Should be private we
64 * got set/get accessors and the append() method.
66 public $mBodytext = '';
69 * Holds the debug lines that will be output as comments in page source if
70 * $wgDebugComments is enabled. See also $wgShowDebug.
71 * @deprecated since 1.20; use MWDebug class instead.
73 public $mDebugtext = '';
75 /** @var string Stores contents of "<title>" tag */
76 private $mHTMLtitle = '';
79 * @var bool Is the displayed content related to the source of the
80 * corresponding wiki article.
82 private $mIsarticle = false;
84 /** @var bool Stores "article flag" toggle. */
85 private $mIsArticleRelated = true;
88 * @var bool We have to set isPrintable(). Some pages should
89 * never be printed (ex: redirections).
91 private $mPrintable = false;
94 * @var array Contains the page subtitle. Special pages usually have some
95 * links here. Don't confuse with site subtitle added by skins.
97 private $mSubtitle = array();
100 public $mRedirect = '';
103 protected $mStatusCode;
106 * @var string Variable mLastModified and mEtag are used for sending cache control.
107 * The whole caching system should probably be moved into its own class.
109 protected $mLastModified = '';
112 * Contains an HTTP Entity Tags (see RFC 2616 section 3.13) which is used
113 * as a unique identifier for the content. It is later used by the client
114 * to compare its cached version with the server version. Client sends
115 * headers If-Match and If-None-Match containing its locally cached ETAG value.
117 * To get more information, you will have to look at HTTP/1.1 protocol which
118 * is properly described in RFC 2616 : http://tools.ietf.org/html/rfc2616
120 private $mETag = false;
123 protected $mCategoryLinks = array();
126 protected $mCategories = array();
129 protected $mIndicators = array();
131 /** @var array Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page') */
132 private $mLanguageLinks = array();
135 * Used for JavaScript (predates ResourceLoader)
136 * @todo We should split JS / CSS.
137 * mScripts content is inserted as is in "<head>" by Skin. This might
138 * contain either a link to a stylesheet or inline CSS.
140 private $mScripts = '';
142 /** @var string Inline CSS styles. Use addInlineStyle() sparingly */
143 protected $mInlineStyles = '';
146 * @var string Used by skin template.
147 * Example: $tpl->set( 'displaytitle', $out->mPageLinkTitle );
149 public $mPageLinkTitle = '';
151 /** @var array Array of elements in "<head>". Parser might add its own headers! */
152 protected $mHeadItems = array();
155 protected $mModules = array();
158 protected $mModuleScripts = array();
161 protected $mModuleStyles = array();
163 /** @var ResourceLoader */
164 protected $mResourceLoader;
167 protected $mJsConfigVars = array();
170 protected $mTemplateIds = array();
173 protected $mImageTimeKeys = array();
176 public $mRedirectCode = '';
178 protected $mFeedLinksAppendQuery = null;
181 * What level of 'untrustworthiness' is allowed in CSS/JS modules loaded on this page?
182 * @see ResourceLoaderModule::$origin
183 * ResourceLoaderModule::ORIGIN_ALL is assumed unless overridden;
185 protected $mAllowedModules = array(
186 ResourceLoaderModule
::TYPE_COMBINED
=> ResourceLoaderModule
::ORIGIN_ALL
,
189 /** @var bool Whether output is disabled. If this is true, the 'output' method will do nothing. */
190 protected $mDoNothing = false;
195 protected $mContainsNewMagic = 0;
198 * lazy initialised, use parserOptions()
201 protected $mParserOptions = null;
204 * Handles the Atom / RSS links.
205 * We probably only support Atom in 2011.
206 * @see $wgAdvertisedFeedTypes
208 private $mFeedLinks = array();
210 // Gwicke work on squid caching? Roughly from 2003.
211 protected $mEnableClientCache = true;
213 /** @var bool Flag if output should only contain the body of the article. */
214 private $mArticleBodyOnly = false;
217 protected $mNewSectionLink = false;
220 protected $mHideNewSectionLink = false;
223 * @var bool Comes from the parser. This was probably made to load CSS/JS
224 * only if we had "<gallery>". Used directly in CategoryPage.php.
225 * Looks like ResourceLoader can replace this.
227 public $mNoGallery = false;
230 private $mPageTitleActionText = '';
233 private $mParseWarnings = array();
235 /** @var int Cache stuff. Looks like mEnableClientCache */
236 protected $mCdnMaxage = 0;
237 /** @var int Upper limit on mCdnMaxage */
238 protected $mCdnMaxageLimit = INF
;
241 * @var bool Controls if anti-clickjacking / frame-breaking headers will
242 * be sent. This should be done for pages where edit actions are possible.
243 * Setters: $this->preventClickjacking() and $this->allowClickjacking().
245 protected $mPreventClickjacking = true;
247 /** @var int To include the variable {{REVISIONID}} */
248 private $mRevisionId = null;
251 private $mRevisionTimestamp = null;
254 protected $mFileVersion = null;
257 * @var array An array of stylesheet filenames (relative from skins path),
258 * with options for CSS media, IE conditions, and RTL/LTR direction.
259 * For internal use; add settings in the skin via $this->addStyle()
261 * Style again! This seems like a code duplication since we already have
262 * mStyles. This is what makes Open Source amazing.
264 protected $styles = array();
267 * Whether jQuery is already handled.
269 protected $mJQueryDone = false;
271 private $mIndexPolicy = 'index';
272 private $mFollowPolicy = 'follow';
273 private $mVaryHeader = array(
274 'Accept-Encoding' => array( 'match=gzip' ),
278 * If the current page was reached through a redirect, $mRedirectedFrom contains the Title
283 private $mRedirectedFrom = null;
286 * Additional key => value data
288 private $mProperties = array();
291 * @var string|null ResourceLoader target for load.php links. If null, will be omitted
293 private $mTarget = null;
296 * @var bool Whether parser output should contain table of contents
298 private $mEnableTOC = true;
301 * @var bool Whether parser output should contain section edit links
303 private $mEnableSectionEditLinks = true;
306 * @var string|null The URL to send in a <link> element with rel=copyright
308 private $copyrightUrl;
311 * Constructor for OutputPage. This should not be called directly.
312 * Instead a new RequestContext should be created and it will implicitly create
313 * a OutputPage tied to that context.
314 * @param IContextSource|null $context
316 function __construct( IContextSource
$context = null ) {
317 if ( $context === null ) {
318 # Extensions should use `new RequestContext` instead of `new OutputPage` now.
319 wfDeprecated( __METHOD__
, '1.18' );
321 $this->setContext( $context );
326 * Redirect to $url rather than displaying the normal page
328 * @param string $url URL
329 * @param string $responsecode HTTP status code
331 public function redirect( $url, $responsecode = '302' ) {
332 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
333 $this->mRedirect
= str_replace( "\n", '', $url );
334 $this->mRedirectCode
= $responsecode;
338 * Get the URL to redirect to, or an empty string if not redirect URL set
342 public function getRedirect() {
343 return $this->mRedirect
;
347 * Set the copyright URL to send with the output.
348 * Empty string to omit, null to reset.
352 * @param string|null $url
354 public function setCopyrightUrl( $url ) {
355 $this->copyrightUrl
= $url;
359 * Set the HTTP status code to send with the output.
361 * @param int $statusCode
363 public function setStatusCode( $statusCode ) {
364 $this->mStatusCode
= $statusCode;
368 * Add a new "<meta>" tag
369 * To add an http-equiv meta tag, precede the name with "http:"
371 * @param string $name Tag name
372 * @param string $val Tag value
374 function addMeta( $name, $val ) {
375 array_push( $this->mMetatags
, array( $name, $val ) );
379 * Returns the current <meta> tags
384 public function getMetaTags() {
385 return $this->mMetatags
;
389 * Add a new \<link\> tag to the page header.
391 * Note: use setCanonicalUrl() for rel=canonical.
393 * @param array $linkarr Associative array of attributes.
395 function addLink( array $linkarr ) {
396 array_push( $this->mLinktags
, $linkarr );
400 * Returns the current <link> tags
405 public function getLinkTags() {
406 return $this->mLinktags
;
410 * Add a new \<link\> with "rel" attribute set to "meta"
412 * @param array $linkarr Associative array mapping attribute names to their
413 * values, both keys and values will be escaped, and the
414 * "rel" attribute will be automatically added
416 function addMetadataLink( array $linkarr ) {
417 $linkarr['rel'] = $this->getMetadataAttribute();
418 $this->addLink( $linkarr );
422 * Set the URL to be used for the <link rel=canonical>. This should be used
423 * in preference to addLink(), to avoid duplicate link tags.
426 function setCanonicalUrl( $url ) {
427 $this->mCanonicalUrl
= $url;
431 * Returns the URL to be used for the <link rel=canonical> if
435 * @return bool|string
437 public function getCanonicalUrl() {
438 return $this->mCanonicalUrl
;
442 * Get the value of the "rel" attribute for metadata links
446 public function getMetadataAttribute() {
447 # note: buggy CC software only reads first "meta" link
448 static $haveMeta = false;
450 return 'alternate meta';
458 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
459 * Internal use only. Use OutputPage::addModules() or OutputPage::addJsConfigVars()
462 * @param string $script Raw HTML
464 function addScript( $script ) {
465 $this->mScripts
.= $script . "\n";
469 * Register and add a stylesheet from an extension directory.
471 * @deprecated since 1.27 use addModuleStyles() or addStyle() instead
472 * @param string $url Path to sheet. Provide either a full url (beginning
473 * with 'http', etc) or a relative path from the document root
474 * (beginning with '/'). Otherwise it behaves identically to
475 * addStyle() and draws from the /skins folder.
477 public function addExtensionStyle( $url ) {
478 wfDeprecated( __METHOD__
, '1.27' );
479 array_push( $this->mExtStyles
, $url );
483 * Get all styles added by extensions
485 * @deprecated since 1.27
488 function getExtStyle() {
489 wfDeprecated( __METHOD__
, '1.27' );
490 return $this->mExtStyles
;
494 * Add a JavaScript file out of skins/common, or a given relative path.
495 * Internal use only. Use OutputPage::addModules() if possible.
497 * @param string $file Filename in skins/common or complete on-server path
499 * @param string $version Style version of the file. Defaults to $wgStyleVersion
501 public function addScriptFile( $file, $version = null ) {
502 // See if $file parameter is an absolute URL or begins with a slash
503 if ( substr( $file, 0, 1 ) == '/' ||
preg_match( '#^[a-z]*://#i', $file ) ) {
506 $path = $this->getConfig()->get( 'StylePath' ) . "/common/{$file}";
508 if ( is_null( $version ) ) {
509 $version = $this->getConfig()->get( 'StyleVersion' );
511 $this->addScript( Html
::linkedScript( wfAppendQuery( $path, $version ) ) );
515 * Add a self-contained script tag with the given contents
516 * Internal use only. Use OutputPage::addModules() if possible.
518 * @param string $script JavaScript text, no "<script>" tags
520 public function addInlineScript( $script ) {
521 $this->mScripts
.= Html
::inlineScript( "\n$script\n" ) . "\n";
525 * Get all registered JS and CSS tags for the header.
528 * @deprecated since 1.24 Use OutputPage::headElement to build the full header.
530 function getScript() {
531 wfDeprecated( __METHOD__
, '1.24' );
532 return $this->mScripts
. $this->getHeadItems();
536 * Filter an array of modules to remove insufficiently trustworthy members, and modules
537 * which are no longer registered (eg a page is cached before an extension is disabled)
538 * @param array $modules
539 * @param string|null $position If not null, only return modules with this position
540 * @param string $type
543 protected function filterModules( array $modules, $position = null,
544 $type = ResourceLoaderModule
::TYPE_COMBINED
546 $resourceLoader = $this->getResourceLoader();
547 $filteredModules = array();
548 foreach ( $modules as $val ) {
549 $module = $resourceLoader->getModule( $val );
550 if ( $module instanceof ResourceLoaderModule
551 && $module->getOrigin() <= $this->getAllowedModules( $type )
552 && ( is_null( $position ) ||
$module->getPosition() == $position )
553 && ( !$this->mTarget ||
in_array( $this->mTarget
, $module->getTargets() ) )
555 $filteredModules[] = $val;
558 return $filteredModules;
562 * Get the list of modules to include on this page
564 * @param bool $filter Whether to filter out insufficiently trustworthy modules
565 * @param string|null $position If not null, only return modules with this position
566 * @param string $param
567 * @return array Array of module names
569 public function getModules( $filter = false, $position = null, $param = 'mModules' ) {
570 $modules = array_values( array_unique( $this->$param ) );
572 ?
$this->filterModules( $modules, $position )
577 * Add one or more modules recognized by ResourceLoader. Modules added
578 * through this function will be loaded by ResourceLoader when the
581 * @param string|array $modules Module name (string) or array of module names
583 public function addModules( $modules ) {
584 $this->mModules
= array_merge( $this->mModules
, (array)$modules );
588 * Get the list of module JS to include on this page
590 * @param bool $filter
591 * @param string|null $position
593 * @return array Array of module names
595 public function getModuleScripts( $filter = false, $position = null ) {
596 return $this->getModules( $filter, $position, 'mModuleScripts' );
600 * Add only JS of one or more modules recognized by ResourceLoader. Module
601 * scripts added through this function will be loaded by ResourceLoader when
604 * @param string|array $modules Module name (string) or array of module names
606 public function addModuleScripts( $modules ) {
607 $this->mModuleScripts
= array_merge( $this->mModuleScripts
, (array)$modules );
611 * Get the list of module CSS to include on this page
613 * @param bool $filter
614 * @param string|null $position
616 * @return array Array of module names
618 public function getModuleStyles( $filter = false, $position = null ) {
619 return $this->getModules( $filter, $position, 'mModuleStyles' );
623 * Add only CSS of one or more modules recognized by ResourceLoader.
625 * Module styles added through this function will be added using standard link CSS
626 * tags, rather than as a combined Javascript and CSS package. Thus, they will
627 * load when JavaScript is disabled (unless CSS also happens to be disabled).
629 * @param string|array $modules Module name (string) or array of module names
631 public function addModuleStyles( $modules ) {
632 $this->mModuleStyles
= array_merge( $this->mModuleStyles
, (array)$modules );
636 * Get the list of module messages to include on this page
638 * @deprecated since 1.26 Obsolete
639 * @param bool $filter
640 * @param string|null $position
641 * @return array Array of module names
643 public function getModuleMessages( $filter = false, $position = null ) {
644 wfDeprecated( __METHOD__
, '1.26' );
649 * Load messages of one or more ResourceLoader modules.
651 * @deprecated since 1.26 Use addModules() instead
652 * @param string|array $modules Module name (string) or array of module names
654 public function addModuleMessages( $modules ) {
655 wfDeprecated( __METHOD__
, '1.26' );
659 * @return null|string ResourceLoader target
661 public function getTarget() {
662 return $this->mTarget
;
666 * Sets ResourceLoader target for load.php links. If null, will be omitted
668 * @param string|null $target
670 public function setTarget( $target ) {
671 $this->mTarget
= $target;
675 * Get an array of head items
679 function getHeadItemsArray() {
680 return $this->mHeadItems
;
684 * Get all header items in a string
687 * @deprecated since 1.24 Use OutputPage::headElement or
688 * if absolutely necessary use OutputPage::getHeadItemsArray
690 function getHeadItems() {
691 wfDeprecated( __METHOD__
, '1.24' );
693 foreach ( $this->mHeadItems
as $item ) {
700 * Add or replace an header item to the output
702 * Whenever possible, use more specific options like ResourceLoader modules,
703 * OutputPage::addLink(), OutputPage::addMetaLink() and OutputPage::addFeedLink()
704 * Fallback options for those are: OutputPage::addStyle, OutputPage::addScript(),
705 * OutputPage::addInlineScript() and OutputPage::addInlineStyle()
706 * This would be your very LAST fallback.
708 * @param string $name Item name
709 * @param string $value Raw HTML
711 public function addHeadItem( $name, $value ) {
712 $this->mHeadItems
[$name] = $value;
716 * Check if the header item $name is already set
718 * @param string $name Item name
721 public function hasHeadItem( $name ) {
722 return isset( $this->mHeadItems
[$name] );
726 * Set the value of the ETag HTTP header, only used if $wgUseETag is true
728 * @param string $tag Value of "ETag" header
730 function setETag( $tag ) {
735 * Set whether the output should only contain the body of the article,
736 * without any skin, sidebar, etc.
737 * Used e.g. when calling with "action=render".
739 * @param bool $only Whether to output only the body of the article
741 public function setArticleBodyOnly( $only ) {
742 $this->mArticleBodyOnly
= $only;
746 * Return whether the output will contain only the body of the article
750 public function getArticleBodyOnly() {
751 return $this->mArticleBodyOnly
;
755 * Set an additional output property
758 * @param string $name
759 * @param mixed $value
761 public function setProperty( $name, $value ) {
762 $this->mProperties
[$name] = $value;
766 * Get an additional output property
769 * @param string $name
770 * @return mixed Property value or null if not found
772 public function getProperty( $name ) {
773 if ( isset( $this->mProperties
[$name] ) ) {
774 return $this->mProperties
[$name];
781 * checkLastModified tells the client to use the client-cached page if
782 * possible. If successful, the OutputPage is disabled so that
783 * any future call to OutputPage->output() have no effect.
785 * Side effect: sets mLastModified for Last-Modified header
787 * @param string $timestamp
789 * @return bool True if cache-ok headers was sent.
791 public function checkLastModified( $timestamp ) {
792 if ( !$timestamp ||
$timestamp == '19700101000000' ) {
793 wfDebug( __METHOD__
. ": CACHE DISABLED, NO TIMESTAMP\n" );
796 $config = $this->getConfig();
797 if ( !$config->get( 'CachePages' ) ) {
798 wfDebug( __METHOD__
. ": CACHE DISABLED\n" );
802 $timestamp = wfTimestamp( TS_MW
, $timestamp );
803 $modifiedTimes = array(
804 'page' => $timestamp,
805 'user' => $this->getUser()->getTouched(),
806 'epoch' => $config->get( 'CacheEpoch' )
808 if ( $config->get( 'UseSquid' ) ) {
809 // bug 44570: the core page itself may not change, but resources might
810 $modifiedTimes['sepoch'] = wfTimestamp( TS_MW
, time() - $config->get( 'SquidMaxage' ) );
812 Hooks
::run( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
814 $maxModified = max( $modifiedTimes );
815 $this->mLastModified
= wfTimestamp( TS_RFC2822
, $maxModified );
817 $clientHeader = $this->getRequest()->getHeader( 'If-Modified-Since' );
818 if ( $clientHeader === false ) {
819 wfDebug( __METHOD__
. ": client did not send If-Modified-Since header", 'private' );
823 # IE sends sizes after the date like this:
824 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
825 # this breaks strtotime().
826 $clientHeader = preg_replace( '/;.*$/', '', $clientHeader );
828 MediaWiki\
suppressWarnings(); // E_STRICT system time bitching
829 $clientHeaderTime = strtotime( $clientHeader );
830 MediaWiki\restoreWarnings
();
831 if ( !$clientHeaderTime ) {
833 . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
836 $clientHeaderTime = wfTimestamp( TS_MW
, $clientHeaderTime );
840 foreach ( $modifiedTimes as $name => $value ) {
841 if ( $info !== '' ) {
844 $info .= "$name=" . wfTimestamp( TS_ISO_8601
, $value );
847 wfDebug( __METHOD__
. ": client sent If-Modified-Since: " .
848 wfTimestamp( TS_ISO_8601
, $clientHeaderTime ), 'private' );
849 wfDebug( __METHOD__
. ": effective Last-Modified: " .
850 wfTimestamp( TS_ISO_8601
, $maxModified ), 'private' );
851 if ( $clientHeaderTime < $maxModified ) {
852 wfDebug( __METHOD__
. ": STALE, $info", 'private' );
857 # Give a 304 Not Modified response code and disable body output
858 wfDebug( __METHOD__
. ": NOT MODIFIED, $info", 'private' );
859 ini_set( 'zlib.output_compression', 0 );
860 $this->getRequest()->response()->statusHeader( 304 );
861 $this->sendCacheControl();
864 // Don't output a compressed blob when using ob_gzhandler;
865 // it's technically against HTTP spec and seems to confuse
866 // Firefox when the response gets split over two packets.
867 wfClearOutputBuffers();
873 * Override the last modified timestamp
875 * @param string $timestamp New timestamp, in a format readable by
878 public function setLastModified( $timestamp ) {
879 $this->mLastModified
= wfTimestamp( TS_RFC2822
, $timestamp );
883 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
885 * @param string $policy The literal string to output as the contents of
886 * the meta tag. Will be parsed according to the spec and output in
890 public function setRobotPolicy( $policy ) {
891 $policy = Article
::formatRobotPolicy( $policy );
893 if ( isset( $policy['index'] ) ) {
894 $this->setIndexPolicy( $policy['index'] );
896 if ( isset( $policy['follow'] ) ) {
897 $this->setFollowPolicy( $policy['follow'] );
902 * Set the index policy for the page, but leave the follow policy un-
905 * @param string $policy Either 'index' or 'noindex'.
908 public function setIndexPolicy( $policy ) {
909 $policy = trim( $policy );
910 if ( in_array( $policy, array( 'index', 'noindex' ) ) ) {
911 $this->mIndexPolicy
= $policy;
916 * Set the follow policy for the page, but leave the index policy un-
919 * @param string $policy Either 'follow' or 'nofollow'.
922 public function setFollowPolicy( $policy ) {
923 $policy = trim( $policy );
924 if ( in_array( $policy, array( 'follow', 'nofollow' ) ) ) {
925 $this->mFollowPolicy
= $policy;
930 * Set the new value of the "action text", this will be added to the
931 * "HTML title", separated from it with " - ".
933 * @param string $text New value of the "action text"
935 public function setPageTitleActionText( $text ) {
936 $this->mPageTitleActionText
= $text;
940 * Get the value of the "action text"
944 public function getPageTitleActionText() {
945 return $this->mPageTitleActionText
;
949 * "HTML title" means the contents of "<title>".
950 * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
952 * @param string|Message $name
954 public function setHTMLTitle( $name ) {
955 if ( $name instanceof Message
) {
956 $this->mHTMLtitle
= $name->setContext( $this->getContext() )->text();
958 $this->mHTMLtitle
= $name;
963 * Return the "HTML title", i.e. the content of the "<title>" tag.
967 public function getHTMLTitle() {
968 return $this->mHTMLtitle
;
972 * Set $mRedirectedFrom, the Title of the page which redirected us to the current page.
976 public function setRedirectedFrom( $t ) {
977 $this->mRedirectedFrom
= $t;
981 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML
982 * fragment. This function allows good tags like \<sup\> in the \<h1\> tag,
983 * but not bad tags like \<script\>. This function automatically sets
984 * \<title\> to the same content as \<h1\> but with all tags removed. Bad
985 * tags that were escaped in \<h1\> will still be escaped in \<title\>, and
986 * good tags like \<i\> will be dropped entirely.
988 * @param string|Message $name
990 public function setPageTitle( $name ) {
991 if ( $name instanceof Message
) {
992 $name = $name->setContext( $this->getContext() )->text();
995 # change "<script>foo&bar</script>" to "<script>foo&bar</script>"
996 # but leave "<i>foobar</i>" alone
997 $nameWithTags = Sanitizer
::normalizeCharReferences( Sanitizer
::removeHTMLtags( $name ) );
998 $this->mPagetitle
= $nameWithTags;
1000 # change "<i>foo&bar</i>" to "foo&bar"
1001 $this->setHTMLTitle(
1002 $this->msg( 'pagetitle' )->rawParams( Sanitizer
::stripAllTags( $nameWithTags ) )
1003 ->inContentLanguage()
1008 * Return the "page title", i.e. the content of the \<h1\> tag.
1012 public function getPageTitle() {
1013 return $this->mPagetitle
;
1017 * Set the Title object to use
1021 public function setTitle( Title
$t ) {
1022 $this->getContext()->setTitle( $t );
1026 * Replace the subtitle with $str
1028 * @param string|Message $str New value of the subtitle. String should be safe HTML.
1030 public function setSubtitle( $str ) {
1031 $this->clearSubtitle();
1032 $this->addSubtitle( $str );
1036 * Add $str to the subtitle
1038 * @param string|Message $str String or Message to add to the subtitle. String should be safe HTML.
1040 public function addSubtitle( $str ) {
1041 if ( $str instanceof Message
) {
1042 $this->mSubtitle
[] = $str->setContext( $this->getContext() )->parse();
1044 $this->mSubtitle
[] = $str;
1049 * Build message object for a subtitle containing a backlink to a page
1051 * @param Title $title Title to link to
1052 * @param array $query Array of additional parameters to include in the link
1056 public static function buildBacklinkSubtitle( Title
$title, $query = array() ) {
1057 if ( $title->isRedirect() ) {
1058 $query['redirect'] = 'no';
1060 return wfMessage( 'backlinksubtitle' )
1061 ->rawParams( Linker
::link( $title, null, array(), $query ) );
1065 * Add a subtitle containing a backlink to a page
1067 * @param Title $title Title to link to
1068 * @param array $query Array of additional parameters to include in the link
1070 public function addBacklinkSubtitle( Title
$title, $query = array() ) {
1071 $this->addSubtitle( self
::buildBacklinkSubtitle( $title, $query ) );
1075 * Clear the subtitles
1077 public function clearSubtitle() {
1078 $this->mSubtitle
= array();
1086 public function getSubtitle() {
1087 return implode( "<br />\n\t\t\t\t", $this->mSubtitle
);
1091 * Set the page as printable, i.e. it'll be displayed with all
1092 * print styles included
1094 public function setPrintable() {
1095 $this->mPrintable
= true;
1099 * Return whether the page is "printable"
1103 public function isPrintable() {
1104 return $this->mPrintable
;
1108 * Disable output completely, i.e. calling output() will have no effect
1110 public function disable() {
1111 $this->mDoNothing
= true;
1115 * Return whether the output will be completely disabled
1119 public function isDisabled() {
1120 return $this->mDoNothing
;
1124 * Show an "add new section" link?
1128 public function showNewSectionLink() {
1129 return $this->mNewSectionLink
;
1133 * Forcibly hide the new section link?
1137 public function forceHideNewSectionLink() {
1138 return $this->mHideNewSectionLink
;
1142 * Add or remove feed links in the page header
1143 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1144 * for the new version
1145 * @see addFeedLink()
1147 * @param bool $show True: add default feeds, false: remove all feeds
1149 public function setSyndicated( $show = true ) {
1151 $this->setFeedAppendQuery( false );
1153 $this->mFeedLinks
= array();
1158 * Add default feeds to the page header
1159 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1160 * for the new version
1161 * @see addFeedLink()
1163 * @param string $val Query to append to feed links or false to output
1166 public function setFeedAppendQuery( $val ) {
1167 $this->mFeedLinks
= array();
1169 foreach ( $this->getConfig()->get( 'AdvertisedFeedTypes' ) as $type ) {
1170 $query = "feed=$type";
1171 if ( is_string( $val ) ) {
1172 $query .= '&' . $val;
1174 $this->mFeedLinks
[$type] = $this->getTitle()->getLocalURL( $query );
1179 * Add a feed link to the page header
1181 * @param string $format Feed type, should be a key of $wgFeedClasses
1182 * @param string $href URL
1184 public function addFeedLink( $format, $href ) {
1185 if ( in_array( $format, $this->getConfig()->get( 'AdvertisedFeedTypes' ) ) ) {
1186 $this->mFeedLinks
[$format] = $href;
1191 * Should we output feed links for this page?
1194 public function isSyndicated() {
1195 return count( $this->mFeedLinks
) > 0;
1199 * Return URLs for each supported syndication format for this page.
1200 * @return array Associating format keys with URLs
1202 public function getSyndicationLinks() {
1203 return $this->mFeedLinks
;
1207 * Will currently always return null
1211 public function getFeedAppendQuery() {
1212 return $this->mFeedLinksAppendQuery
;
1216 * Set whether the displayed content is related to the source of the
1217 * corresponding article on the wiki
1218 * Setting true will cause the change "article related" toggle to true
1222 public function setArticleFlag( $v ) {
1223 $this->mIsarticle
= $v;
1225 $this->mIsArticleRelated
= $v;
1230 * Return whether the content displayed page is related to the source of
1231 * the corresponding article on the wiki
1235 public function isArticle() {
1236 return $this->mIsarticle
;
1240 * Set whether this page is related an article on the wiki
1241 * Setting false will cause the change of "article flag" toggle to false
1245 public function setArticleRelated( $v ) {
1246 $this->mIsArticleRelated
= $v;
1248 $this->mIsarticle
= false;
1253 * Return whether this page is related an article on the wiki
1257 public function isArticleRelated() {
1258 return $this->mIsArticleRelated
;
1262 * Add new language links
1264 * @param array $newLinkArray Associative array mapping language code to the page
1267 public function addLanguageLinks( array $newLinkArray ) {
1268 $this->mLanguageLinks +
= $newLinkArray;
1272 * Reset the language links and add new language links
1274 * @param array $newLinkArray Associative array mapping language code to the page
1277 public function setLanguageLinks( array $newLinkArray ) {
1278 $this->mLanguageLinks
= $newLinkArray;
1282 * Get the list of language links
1284 * @return array Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
1286 public function getLanguageLinks() {
1287 return $this->mLanguageLinks
;
1291 * Add an array of categories, with names in the keys
1293 * @param array $categories Mapping category name => sort key
1295 public function addCategoryLinks( array $categories ) {
1298 if ( !is_array( $categories ) ||
count( $categories ) == 0 ) {
1302 # Add the links to a LinkBatch
1303 $arr = array( NS_CATEGORY
=> $categories );
1304 $lb = new LinkBatch
;
1305 $lb->setArray( $arr );
1307 # Fetch existence plus the hiddencat property
1308 $dbr = wfGetDB( DB_SLAVE
);
1309 $fields = array( 'page_id', 'page_namespace', 'page_title', 'page_len',
1310 'page_is_redirect', 'page_latest', 'pp_value' );
1312 if ( $this->getConfig()->get( 'ContentHandlerUseDB' ) ) {
1313 $fields[] = 'page_content_model';
1316 $res = $dbr->select( array( 'page', 'page_props' ),
1318 $lb->constructSet( 'page', $dbr ),
1321 array( 'page_props' => array( 'LEFT JOIN', array(
1322 'pp_propname' => 'hiddencat',
1327 # Add the results to the link cache
1328 $lb->addResultToCache( LinkCache
::singleton(), $res );
1330 # Set all the values to 'normal'.
1331 $categories = array_fill_keys( array_keys( $categories ), 'normal' );
1333 # Mark hidden categories
1334 foreach ( $res as $row ) {
1335 if ( isset( $row->pp_value
) ) {
1336 $categories[$row->page_title
] = 'hidden';
1340 # Add the remaining categories to the skin
1342 'OutputPageMakeCategoryLinks',
1343 array( &$this, $categories, &$this->mCategoryLinks
) )
1345 foreach ( $categories as $category => $type ) {
1346 // array keys will cast numeric category names to ints, so cast back to string
1347 $category = (string)$category;
1348 $origcategory = $category;
1349 $title = Title
::makeTitleSafe( NS_CATEGORY
, $category );
1353 $wgContLang->findVariantLink( $category, $title, true );
1354 if ( $category != $origcategory && array_key_exists( $category, $categories ) ) {
1357 $text = $wgContLang->convertHtml( $title->getText() );
1358 $this->mCategories
[] = $title->getText();
1359 $this->mCategoryLinks
[$type][] = Linker
::link( $title, $text );
1365 * Reset the category links (but not the category list) and add $categories
1367 * @param array $categories Mapping category name => sort key
1369 public function setCategoryLinks( array $categories ) {
1370 $this->mCategoryLinks
= array();
1371 $this->addCategoryLinks( $categories );
1375 * Get the list of category links, in a 2-D array with the following format:
1376 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
1377 * hidden categories) and $link a HTML fragment with a link to the category
1382 public function getCategoryLinks() {
1383 return $this->mCategoryLinks
;
1387 * Get the list of category names this page belongs to
1389 * @return array Array of strings
1391 public function getCategories() {
1392 return $this->mCategories
;
1396 * Add an array of indicators, with their identifiers as array
1397 * keys and HTML contents as values.
1399 * In case of duplicate keys, existing values are overwritten.
1401 * @param array $indicators
1404 public function setIndicators( array $indicators ) {
1405 $this->mIndicators
= $indicators +
$this->mIndicators
;
1406 // Keep ordered by key
1407 ksort( $this->mIndicators
);
1411 * Get the indicators associated with this page.
1413 * The array will be internally ordered by item keys.
1415 * @return array Keys: identifiers, values: HTML contents
1418 public function getIndicators() {
1419 return $this->mIndicators
;
1423 * Adds help link with an icon via page indicators.
1424 * Link target can be overridden by a local message containing a wikilink:
1425 * the message key is: lowercase action or special page name + '-helppage'.
1426 * @param string $to Target MediaWiki.org page title or encoded URL.
1427 * @param bool $overrideBaseUrl Whether $url is a full URL, to avoid MW.o.
1430 public function addHelpLink( $to, $overrideBaseUrl = false ) {
1431 $this->addModuleStyles( 'mediawiki.helplink' );
1432 $text = $this->msg( 'helppage-top-gethelp' )->escaped();
1434 if ( $overrideBaseUrl ) {
1437 $toUrlencoded = wfUrlencode( str_replace( ' ', '_', $to ) );
1438 $helpUrl = "//www.mediawiki.org/wiki/Special:MyLanguage/$toUrlencoded";
1441 $link = Html
::rawElement(
1445 'target' => '_blank',
1446 'class' => 'mw-helplink',
1451 $this->setIndicators( array( 'mw-helplink' => $link ) );
1455 * Do not allow scripts which can be modified by wiki users to load on this page;
1456 * only allow scripts bundled with, or generated by, the software.
1457 * Site-wide styles are controlled by a config setting, since they can be
1458 * used to create a custom skin/theme, but not user-specific ones.
1460 * @todo this should be given a more accurate name
1462 public function disallowUserJs() {
1463 $this->reduceAllowedModules(
1464 ResourceLoaderModule
::TYPE_SCRIPTS
,
1465 ResourceLoaderModule
::ORIGIN_CORE_INDIVIDUAL
1468 // Site-wide styles are controlled by a config setting, see bug 71621
1469 // for background on why. User styles are never allowed.
1470 if ( $this->getConfig()->get( 'AllowSiteCSSOnRestrictedPages' ) ) {
1471 $styleOrigin = ResourceLoaderModule
::ORIGIN_USER_SITEWIDE
;
1473 $styleOrigin = ResourceLoaderModule
::ORIGIN_CORE_INDIVIDUAL
;
1475 $this->reduceAllowedModules(
1476 ResourceLoaderModule
::TYPE_STYLES
,
1482 * Show what level of JavaScript / CSS untrustworthiness is allowed on this page
1483 * @see ResourceLoaderModule::$origin
1484 * @param string $type ResourceLoaderModule TYPE_ constant
1485 * @return int ResourceLoaderModule ORIGIN_ class constant
1487 public function getAllowedModules( $type ) {
1488 if ( $type == ResourceLoaderModule
::TYPE_COMBINED
) {
1489 return min( array_values( $this->mAllowedModules
) );
1491 return isset( $this->mAllowedModules
[$type] )
1492 ?
$this->mAllowedModules
[$type]
1493 : ResourceLoaderModule
::ORIGIN_ALL
;
1498 * Set the highest level of CSS/JS untrustworthiness allowed
1500 * @deprecated since 1.24 Raising level of allowed untrusted content is no longer supported.
1501 * Use reduceAllowedModules() instead
1502 * @param string $type ResourceLoaderModule TYPE_ constant
1503 * @param int $level ResourceLoaderModule class constant
1505 public function setAllowedModules( $type, $level ) {
1506 wfDeprecated( __METHOD__
, '1.24' );
1507 $this->reduceAllowedModules( $type, $level );
1511 * Limit the highest level of CSS/JS untrustworthiness allowed.
1513 * If passed the same or a higher level than the current level of untrustworthiness set, the
1514 * level will remain unchanged.
1516 * @param string $type
1517 * @param int $level ResourceLoaderModule class constant
1519 public function reduceAllowedModules( $type, $level ) {
1520 $this->mAllowedModules
[$type] = min( $this->getAllowedModules( $type ), $level );
1524 * Prepend $text to the body HTML
1526 * @param string $text HTML
1528 public function prependHTML( $text ) {
1529 $this->mBodytext
= $text . $this->mBodytext
;
1533 * Append $text to the body HTML
1535 * @param string $text HTML
1537 public function addHTML( $text ) {
1538 $this->mBodytext
.= $text;
1542 * Shortcut for adding an Html::element via addHTML.
1546 * @param string $element
1547 * @param array $attribs
1548 * @param string $contents
1550 public function addElement( $element, array $attribs = array(), $contents = '' ) {
1551 $this->addHTML( Html
::element( $element, $attribs, $contents ) );
1555 * Clear the body HTML
1557 public function clearHTML() {
1558 $this->mBodytext
= '';
1564 * @return string HTML
1566 public function getHTML() {
1567 return $this->mBodytext
;
1571 * Get/set the ParserOptions object to use for wikitext parsing
1573 * @param ParserOptions|null $options Either the ParserOption to use or null to only get the
1574 * current ParserOption object
1575 * @return ParserOptions
1577 public function parserOptions( $options = null ) {
1578 if ( !$this->mParserOptions
) {
1579 $this->mParserOptions
= ParserOptions
::newFromContext( $this->getContext() );
1580 $this->mParserOptions
->setEditSection( false );
1582 return wfSetVar( $this->mParserOptions
, $options );
1586 * Set the revision ID which will be seen by the wiki text parser
1587 * for things such as embedded {{REVISIONID}} variable use.
1589 * @param int|null $revid An positive integer, or null
1590 * @return mixed Previous value
1592 public function setRevisionId( $revid ) {
1593 $val = is_null( $revid ) ?
null : intval( $revid );
1594 return wfSetVar( $this->mRevisionId
, $val );
1598 * Get the displayed revision ID
1602 public function getRevisionId() {
1603 return $this->mRevisionId
;
1607 * Set the timestamp of the revision which will be displayed. This is used
1608 * to avoid a extra DB call in Skin::lastModified().
1610 * @param string|null $timestamp
1611 * @return mixed Previous value
1613 public function setRevisionTimestamp( $timestamp ) {
1614 return wfSetVar( $this->mRevisionTimestamp
, $timestamp );
1618 * Get the timestamp of displayed revision.
1619 * This will be null if not filled by setRevisionTimestamp().
1621 * @return string|null
1623 public function getRevisionTimestamp() {
1624 return $this->mRevisionTimestamp
;
1628 * Set the displayed file version
1630 * @param File|bool $file
1631 * @return mixed Previous value
1633 public function setFileVersion( $file ) {
1635 if ( $file instanceof File
&& $file->exists() ) {
1636 $val = array( 'time' => $file->getTimestamp(), 'sha1' => $file->getSha1() );
1638 return wfSetVar( $this->mFileVersion
, $val, true );
1642 * Get the displayed file version
1644 * @return array|null ('time' => MW timestamp, 'sha1' => sha1)
1646 public function getFileVersion() {
1647 return $this->mFileVersion
;
1651 * Get the templates used on this page
1653 * @return array (namespace => dbKey => revId)
1656 public function getTemplateIds() {
1657 return $this->mTemplateIds
;
1661 * Get the files used on this page
1663 * @return array (dbKey => array('time' => MW timestamp or null, 'sha1' => sha1 or ''))
1666 public function getFileSearchOptions() {
1667 return $this->mImageTimeKeys
;
1671 * Convert wikitext to HTML and add it to the buffer
1672 * Default assumes that the current page title will be used.
1674 * @param string $text
1675 * @param bool $linestart Is this the start of a line?
1676 * @param bool $interface Is this text in the user interface language?
1677 * @throws MWException
1679 public function addWikiText( $text, $linestart = true, $interface = true ) {
1680 $title = $this->getTitle(); // Work around E_STRICT
1682 throw new MWException( 'Title is null' );
1684 $this->addWikiTextTitle( $text, $title, $linestart, /*tidy*/false, $interface );
1688 * Add wikitext with a custom Title object
1690 * @param string $text Wikitext
1691 * @param Title $title
1692 * @param bool $linestart Is this the start of a line?
1694 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
1695 $this->addWikiTextTitle( $text, $title, $linestart );
1699 * Add wikitext with a custom Title object and tidy enabled.
1701 * @param string $text Wikitext
1702 * @param Title $title
1703 * @param bool $linestart Is this the start of a line?
1705 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
1706 $this->addWikiTextTitle( $text, $title, $linestart, true );
1710 * Add wikitext with tidy enabled
1712 * @param string $text Wikitext
1713 * @param bool $linestart Is this the start of a line?
1715 public function addWikiTextTidy( $text, $linestart = true ) {
1716 $title = $this->getTitle();
1717 $this->addWikiTextTitleTidy( $text, $title, $linestart );
1721 * Add wikitext with a custom Title object
1723 * @param string $text Wikitext
1724 * @param Title $title
1725 * @param bool $linestart Is this the start of a line?
1726 * @param bool $tidy Whether to use tidy
1727 * @param bool $interface Whether it is an interface message
1728 * (for example disables conversion)
1730 public function addWikiTextTitle( $text, Title
$title, $linestart,
1731 $tidy = false, $interface = false
1735 $popts = $this->parserOptions();
1736 $oldTidy = $popts->setTidy( $tidy );
1737 $popts->setInterfaceMessage( (bool)$interface );
1739 $parserOutput = $wgParser->getFreshParser()->parse(
1740 $text, $title, $popts,
1741 $linestart, true, $this->mRevisionId
1744 $popts->setTidy( $oldTidy );
1746 $this->addParserOutput( $parserOutput );
1751 * Add a ParserOutput object, but without Html.
1753 * @deprecated since 1.24, use addParserOutputMetadata() instead.
1754 * @param ParserOutput $parserOutput
1756 public function addParserOutputNoText( $parserOutput ) {
1757 wfDeprecated( __METHOD__
, '1.24' );
1758 $this->addParserOutputMetadata( $parserOutput );
1762 * Add all metadata associated with a ParserOutput object, but without the actual HTML. This
1763 * includes categories, language links, ResourceLoader modules, effects of certain magic words,
1767 * @param ParserOutput $parserOutput
1769 public function addParserOutputMetadata( $parserOutput ) {
1770 $this->mLanguageLinks +
= $parserOutput->getLanguageLinks();
1771 $this->addCategoryLinks( $parserOutput->getCategories() );
1772 $this->setIndicators( $parserOutput->getIndicators() );
1773 $this->mNewSectionLink
= $parserOutput->getNewSection();
1774 $this->mHideNewSectionLink
= $parserOutput->getHideNewSection();
1776 $this->mParseWarnings
= $parserOutput->getWarnings();
1777 if ( !$parserOutput->isCacheable() ) {
1778 $this->enableClientCache( false );
1780 $this->mNoGallery
= $parserOutput->getNoGallery();
1781 $this->mHeadItems
= array_merge( $this->mHeadItems
, $parserOutput->getHeadItems() );
1782 $this->addModules( $parserOutput->getModules() );
1783 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1784 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1785 $this->addJsConfigVars( $parserOutput->getJsConfigVars() );
1786 $this->mPreventClickjacking
= $this->mPreventClickjacking
1787 ||
$parserOutput->preventClickjacking();
1789 // Template versioning...
1790 foreach ( (array)$parserOutput->getTemplateIds() as $ns => $dbks ) {
1791 if ( isset( $this->mTemplateIds
[$ns] ) ) {
1792 $this->mTemplateIds
[$ns] = $dbks +
$this->mTemplateIds
[$ns];
1794 $this->mTemplateIds
[$ns] = $dbks;
1797 // File versioning...
1798 foreach ( (array)$parserOutput->getFileSearchOptions() as $dbk => $data ) {
1799 $this->mImageTimeKeys
[$dbk] = $data;
1802 // Hooks registered in the object
1803 $parserOutputHooks = $this->getConfig()->get( 'ParserOutputHooks' );
1804 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1805 list( $hookName, $data ) = $hookInfo;
1806 if ( isset( $parserOutputHooks[$hookName] ) ) {
1807 call_user_func( $parserOutputHooks[$hookName], $this, $parserOutput, $data );
1811 // enable OOUI if requested via ParserOutput
1812 if ( $parserOutput->getEnableOOUI() ) {
1813 $this->enableOOUI();
1816 // Link flags are ignored for now, but may in the future be
1817 // used to mark individual language links.
1818 $linkFlags = array();
1819 Hooks
::run( 'LanguageLinks', array( $this->getTitle(), &$this->mLanguageLinks
, &$linkFlags ) );
1820 Hooks
::run( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
1824 * Add the HTML and enhancements for it (like ResourceLoader modules) associated with a
1825 * ParserOutput object, without any other metadata.
1828 * @param ParserOutput $parserOutput
1830 public function addParserOutputContent( $parserOutput ) {
1831 $this->addParserOutputText( $parserOutput );
1833 $this->addModules( $parserOutput->getModules() );
1834 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1835 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1837 $this->addJsConfigVars( $parserOutput->getJsConfigVars() );
1841 * Add the HTML associated with a ParserOutput object, without any metadata.
1844 * @param ParserOutput $parserOutput
1846 public function addParserOutputText( $parserOutput ) {
1847 $text = $parserOutput->getText();
1848 Hooks
::run( 'OutputPageBeforeHTML', array( &$this, &$text ) );
1849 $this->addHTML( $text );
1853 * Add everything from a ParserOutput object.
1855 * @param ParserOutput $parserOutput
1857 function addParserOutput( $parserOutput ) {
1858 $this->addParserOutputMetadata( $parserOutput );
1859 $parserOutput->setTOCEnabled( $this->mEnableTOC
);
1861 // Touch section edit links only if not previously disabled
1862 if ( $parserOutput->getEditSectionTokens() ) {
1863 $parserOutput->setEditSectionTokens( $this->mEnableSectionEditLinks
);
1866 $this->addParserOutputText( $parserOutput );
1870 * Add the output of a QuickTemplate to the output buffer
1872 * @param QuickTemplate $template
1874 public function addTemplate( &$template ) {
1875 $this->addHTML( $template->getHTML() );
1879 * Parse wikitext and return the HTML.
1881 * @param string $text
1882 * @param bool $linestart Is this the start of a line?
1883 * @param bool $interface Use interface language ($wgLang instead of
1884 * $wgContLang) while parsing language sensitive magic words like GRAMMAR and PLURAL.
1885 * This also disables LanguageConverter.
1886 * @param Language $language Target language object, will override $interface
1887 * @throws MWException
1888 * @return string HTML
1890 public function parse( $text, $linestart = true, $interface = false, $language = null ) {
1893 if ( is_null( $this->getTitle() ) ) {
1894 throw new MWException( 'Empty $mTitle in ' . __METHOD__
);
1897 $popts = $this->parserOptions();
1899 $popts->setInterfaceMessage( true );
1901 if ( $language !== null ) {
1902 $oldLang = $popts->setTargetLanguage( $language );
1905 $parserOutput = $wgParser->getFreshParser()->parse(
1906 $text, $this->getTitle(), $popts,
1907 $linestart, true, $this->mRevisionId
1911 $popts->setInterfaceMessage( false );
1913 if ( $language !== null ) {
1914 $popts->setTargetLanguage( $oldLang );
1917 return $parserOutput->getText();
1921 * Parse wikitext, strip paragraphs, and return the HTML.
1923 * @param string $text
1924 * @param bool $linestart Is this the start of a line?
1925 * @param bool $interface Use interface language ($wgLang instead of
1926 * $wgContLang) while parsing language sensitive magic
1927 * words like GRAMMAR and PLURAL
1928 * @return string HTML
1930 public function parseInline( $text, $linestart = true, $interface = false ) {
1931 $parsed = $this->parse( $text, $linestart, $interface );
1932 return Parser
::stripOuterParagraph( $parsed );
1937 * @deprecated since 1.27 Use setCdnMaxage() instead
1939 public function setSquidMaxage( $maxage ) {
1940 $this->setCdnMaxage( $maxage );
1944 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1946 * @param int $maxage Maximum cache time on the CDN, in seconds.
1948 public function setCdnMaxage( $maxage ) {
1949 $this->mCdnMaxage
= min( $maxage, $this->mCdnMaxageLimit
);
1953 * Lower the value of the "s-maxage" part of the "Cache-control" HTTP header
1955 * @param int $maxage Maximum cache time on the CDN, in seconds
1958 public function lowerCdnMaxage( $maxage ) {
1959 $this->mCdnMaxageLimit
= min( $maxage, $this->mCdnMaxageLimit
);
1960 $this->setCdnMaxage( $this->mCdnMaxage
);
1964 * Use enableClientCache(false) to force it to send nocache headers
1966 * @param bool $state
1970 public function enableClientCache( $state ) {
1971 return wfSetVar( $this->mEnableClientCache
, $state );
1975 * Get the list of cookies that will influence on the cache
1979 function getCacheVaryCookies() {
1981 if ( $cookies === null ) {
1982 $config = $this->getConfig();
1983 $cookies = array_merge(
1985 $config->get( 'CookiePrefix' ) . 'Token',
1986 $config->get( 'CookiePrefix' ) . 'LoggedOut',
1990 $config->get( 'CacheVaryCookies' )
1992 Hooks
::run( 'GetCacheVaryCookies', array( $this, &$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
2003 function haveCacheVaryCookies() {
2004 $request = $this->getRequest();
2005 foreach ( $this->getCacheVaryCookies() as $cookieName ) {
2006 if ( $request->getCookie( $cookieName, '', '' ) !== '' ) {
2007 wfDebug( __METHOD__
. ": found $cookieName\n" );
2011 wfDebug( __METHOD__
. ": no cache-varying cookies found\n" );
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] = array();
2027 if ( !is_array( $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
2039 public function getVaryHeader() {
2040 return 'Vary: ' . join( ', ', array_keys( $this->mVaryHeader
) );
2044 * Get a complete Key header
2048 public function getKeyHeader() {
2049 $cvCookies = $this->getCacheVaryCookies();
2051 $cookiesOption = array();
2052 foreach ( $cvCookies as $cookieName ) {
2053 $cookiesOption[] = 'param=' . $cookieName;
2055 $this->addVaryHeader( 'Cookie', $cookiesOption );
2058 foreach ( $this->mVaryHeader
as $header => $option ) {
2059 $newheader = $header;
2060 if ( is_array( $option ) && count( $option ) > 0 ) {
2061 $newheader .= ';' . implode( ';', $option );
2063 $headers[] = $newheader;
2065 $key = 'Key: ' . implode( ',', $headers );
2071 * T23672: Add Accept-Language to Vary and Key headers
2072 * if there's no 'variant' parameter existed in GET.
2075 * /w/index.php?title=Main_page should always be served; but
2076 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
2078 function addAcceptLanguage() {
2079 $title = $this->getTitle();
2080 if ( !$title instanceof Title
) {
2084 $lang = $title->getPageLanguage();
2085 if ( !$this->getRequest()->getCheck( 'variant' ) && $lang->hasVariants() ) {
2086 $variants = $lang->getVariants();
2087 $aloption = array();
2088 foreach ( $variants as $variant ) {
2089 if ( $variant === $lang->getCode() ) {
2092 $aloption[] = 'substr=' . $variant;
2094 // IE and some other browsers use BCP 47 standards in
2095 // their Accept-Language header, like "zh-CN" or "zh-Hant".
2096 // We should handle these too.
2097 $variantBCP47 = wfBCP47( $variant );
2098 if ( $variantBCP47 !== $variant ) {
2099 $aloption[] = 'substr=' . $variantBCP47;
2103 $this->addVaryHeader( 'Accept-Language', $aloption );
2108 * Set a flag which will cause an X-Frame-Options header appropriate for
2109 * edit pages to be sent. The header value is controlled by
2110 * $wgEditPageFrameOptions.
2112 * This is the default for special pages. If you display a CSRF-protected
2113 * form on an ordinary view page, then you need to call this function.
2115 * @param bool $enable
2117 public function preventClickjacking( $enable = true ) {
2118 $this->mPreventClickjacking
= $enable;
2122 * Turn off frame-breaking. Alias for $this->preventClickjacking(false).
2123 * This can be called from pages which do not contain any CSRF-protected
2126 public function allowClickjacking() {
2127 $this->mPreventClickjacking
= false;
2131 * Get the prevent-clickjacking flag
2136 public function getPreventClickjacking() {
2137 return $this->mPreventClickjacking
;
2141 * Get the X-Frame-Options header value (without the name part), or false
2142 * if there isn't one. This is used by Skin to determine whether to enable
2143 * JavaScript frame-breaking, for clients that don't support X-Frame-Options.
2147 public function getFrameOptions() {
2148 $config = $this->getConfig();
2149 if ( $config->get( 'BreakFrames' ) ) {
2151 } elseif ( $this->mPreventClickjacking
&& $config->get( 'EditPageFrameOptions' ) ) {
2152 return $config->get( 'EditPageFrameOptions' );
2158 * Send cache control HTTP headers
2160 public function sendCacheControl() {
2161 $response = $this->getRequest()->response();
2162 $config = $this->getConfig();
2163 if ( $config->get( 'UseETag' ) && $this->mETag
) {
2164 $response->header( "ETag: $this->mETag" );
2167 $this->addVaryHeader( 'Cookie' );
2168 $this->addAcceptLanguage();
2170 # don't serve compressed data to clients who can't handle it
2171 # maintain different caches for logged-in users and non-logged in ones
2172 $response->header( $this->getVaryHeader() );
2174 if ( $config->get( 'UseKeyHeader' ) ) {
2175 $response->header( $this->getKeyHeader() );
2178 if ( $this->mEnableClientCache
) {
2180 $config->get( 'UseSquid' ) && session_id() == '' && !$this->isPrintable() &&
2181 $this->mCdnMaxage
!= 0 && !$this->haveCacheVaryCookies()
2183 if ( $config->get( 'UseESI' ) ) {
2184 # We'll purge the proxy cache explicitly, but require end user agents
2185 # to revalidate against the proxy on each visit.
2186 # Surrogate-Control controls our CDN, Cache-Control downstream caches
2187 wfDebug( __METHOD__
. ": proxy caching with ESI; {$this->mLastModified} **", 'private' );
2188 # start with a shorter timeout for initial testing
2189 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
2190 $response->header( 'Surrogate-Control: max-age=' . $config->get( 'SquidMaxage' )
2191 . '+' . $this->mCdnMaxage
. ', content="ESI/1.0"' );
2192 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
2194 # We'll purge the proxy cache for anons explicitly, but require end user agents
2195 # to revalidate against the proxy on each visit.
2196 # IMPORTANT! The CDN needs to replace the Cache-Control header with
2197 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
2198 wfDebug( __METHOD__
. ": local proxy caching; {$this->mLastModified} **", 'private' );
2199 # start with a shorter timeout for initial testing
2200 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
2201 $response->header( 'Cache-Control: s-maxage=' . $this->mCdnMaxage
2202 . ', must-revalidate, max-age=0' );
2205 # We do want clients to cache if they can, but they *must* check for updates
2206 # on revisiting the page.
2207 wfDebug( __METHOD__
. ": private caching; {$this->mLastModified} **", 'private' );
2208 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
2209 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
2211 if ( $this->mLastModified
) {
2212 $response->header( "Last-Modified: {$this->mLastModified}" );
2215 wfDebug( __METHOD__
. ": no caching **", 'private' );
2217 # In general, the absence of a last modified header should be enough to prevent
2218 # the client from using its cache. We send a few other things just to make sure.
2219 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
2220 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
2221 $response->header( 'Pragma: no-cache' );
2226 * Finally, all the text has been munged and accumulated into
2227 * the object, let's actually output it:
2229 public function output() {
2230 if ( $this->mDoNothing
) {
2234 $response = $this->getRequest()->response();
2235 $config = $this->getConfig();
2237 if ( $this->mRedirect
!= '' ) {
2238 # Standards require redirect URLs to be absolute
2239 $this->mRedirect
= wfExpandUrl( $this->mRedirect
, PROTO_CURRENT
);
2241 $redirect = $this->mRedirect
;
2242 $code = $this->mRedirectCode
;
2244 if ( Hooks
::run( "BeforePageRedirect", array( $this, &$redirect, &$code ) ) ) {
2245 if ( $code == '301' ||
$code == '303' ) {
2246 if ( !$config->get( 'DebugRedirects' ) ) {
2247 $response->statusHeader( $code );
2249 $this->mLastModified
= wfTimestamp( TS_RFC2822
);
2251 if ( $config->get( 'VaryOnXFP' ) ) {
2252 $this->addVaryHeader( 'X-Forwarded-Proto' );
2254 $this->sendCacheControl();
2256 $response->header( "Content-Type: text/html; charset=utf-8" );
2257 if ( $config->get( 'DebugRedirects' ) ) {
2258 $url = htmlspecialchars( $redirect );
2259 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
2260 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
2261 print "</body>\n</html>\n";
2263 $response->header( 'Location: ' . $redirect );
2268 } elseif ( $this->mStatusCode
) {
2269 $response->statusHeader( $this->mStatusCode
);
2272 # Buffer output; final headers may depend on later processing
2275 $response->header( 'Content-type: ' . $config->get( 'MimeType' ) . '; charset=UTF-8' );
2276 $response->header( 'Content-language: ' . $config->get( 'LanguageCode' ) );
2278 // Avoid Internet Explorer "compatibility view" in IE 8-10, so that
2279 // jQuery etc. can work correctly.
2280 $response->header( 'X-UA-Compatible: IE=Edge' );
2282 // Prevent framing, if requested
2283 $frameOptions = $this->getFrameOptions();
2284 if ( $frameOptions ) {
2285 $response->header( "X-Frame-Options: $frameOptions" );
2288 if ( $this->mArticleBodyOnly
) {
2289 echo $this->mBodytext
;
2291 $sk = $this->getSkin();
2292 // add skin specific modules
2293 $modules = $sk->getDefaultModules();
2295 // Enforce various default modules for all skins
2296 $coreModules = array(
2297 // Keep this list as small as possible
2299 'mediawiki.page.startup',
2303 // Support for high-density display images if enabled
2304 if ( $config->get( 'ResponsiveImages' ) ) {
2305 $coreModules[] = 'mediawiki.hidpi';
2308 $this->addModules( $coreModules );
2309 foreach ( $modules as $group ) {
2310 $this->addModules( $group );
2312 MWDebug
::addModules( $this );
2314 // Hook that allows last minute changes to the output page, e.g.
2315 // adding of CSS or Javascript by extensions.
2316 Hooks
::run( 'BeforePageDisplay', array( &$this, &$sk ) );
2321 // This hook allows last minute changes to final overall output by modifying output buffer
2322 Hooks
::run( 'AfterFinalPageOutput', array( $this ) );
2324 $this->sendCacheControl();
2331 * Actually output something with print.
2333 * @param string $ins The string to output
2334 * @deprecated since 1.22 Use echo yourself.
2336 public function out( $ins ) {
2337 wfDeprecated( __METHOD__
, '1.22' );
2342 * Prepare this object to display an error page; disable caching and
2343 * indexing, clear the current text and redirect, set the page's title
2344 * and optionally an custom HTML title (content of the "<title>" tag).
2346 * @param string|Message $pageTitle Will be passed directly to setPageTitle()
2347 * @param string|Message $htmlTitle Will be passed directly to setHTMLTitle();
2348 * optional, if not passed the "<title>" attribute will be
2349 * based on $pageTitle
2351 public function prepareErrorPage( $pageTitle, $htmlTitle = false ) {
2352 $this->setPageTitle( $pageTitle );
2353 if ( $htmlTitle !== false ) {
2354 $this->setHTMLTitle( $htmlTitle );
2356 $this->setRobotPolicy( 'noindex,nofollow' );
2357 $this->setArticleRelated( false );
2358 $this->enableClientCache( false );
2359 $this->mRedirect
= '';
2360 $this->clearSubtitle();
2365 * Output a standard error page
2367 * showErrorPage( 'titlemsg', 'pagetextmsg' );
2368 * showErrorPage( 'titlemsg', 'pagetextmsg', array( 'param1', 'param2' ) );
2369 * showErrorPage( 'titlemsg', $messageObject );
2370 * showErrorPage( $titleMessageObject, $messageObject );
2372 * @param string|Message $title Message key (string) for page title, or a Message object
2373 * @param string|Message $msg Message key (string) for page text, or a Message object
2374 * @param array $params Message parameters; ignored if $msg is a Message object
2376 public function showErrorPage( $title, $msg, $params = array() ) {
2377 if ( !$title instanceof Message
) {
2378 $title = $this->msg( $title );
2381 $this->prepareErrorPage( $title );
2383 if ( $msg instanceof Message
) {
2384 if ( $params !== array() ) {
2385 trigger_error( 'Argument ignored: $params. The message parameters argument '
2386 . 'is discarded when the $msg argument is a Message object instead of '
2387 . 'a string.', E_USER_NOTICE
);
2389 $this->addHTML( $msg->parseAsBlock() );
2391 $this->addWikiMsgArray( $msg, $params );
2394 $this->returnToMain();
2398 * Output a standard permission error page
2400 * @param array $errors Error message keys
2401 * @param string $action Action that was denied or null if unknown
2403 public function showPermissionsErrorPage( array $errors, $action = null ) {
2404 // For some action (read, edit, create and upload), display a "login to do this action"
2405 // error if all of the following conditions are met:
2406 // 1. the user is not logged in
2407 // 2. the only error is insufficient permissions (i.e. no block or something else)
2408 // 3. the error can be avoided simply by logging in
2409 if ( in_array( $action, array( 'read', 'edit', 'createpage', 'createtalk', 'upload' ) )
2410 && $this->getUser()->isAnon() && count( $errors ) == 1 && isset( $errors[0][0] )
2411 && ( $errors[0][0] == 'badaccess-groups' ||
$errors[0][0] == 'badaccess-group0' )
2412 && ( User
::groupHasPermission( 'user', $action )
2413 || User
::groupHasPermission( 'autoconfirmed', $action ) )
2415 $displayReturnto = null;
2417 # Due to bug 32276, if a user does not have read permissions,
2418 # $this->getTitle() will just give Special:Badtitle, which is
2419 # not especially useful as a returnto parameter. Use the title
2420 # from the request instead, if there was one.
2421 $request = $this->getRequest();
2422 $returnto = Title
::newFromText( $request->getVal( 'title', '' ) );
2423 if ( $action == 'edit' ) {
2424 $msg = 'whitelistedittext';
2425 $displayReturnto = $returnto;
2426 } elseif ( $action == 'createpage' ||
$action == 'createtalk' ) {
2427 $msg = 'nocreatetext';
2428 } elseif ( $action == 'upload' ) {
2429 $msg = 'uploadnologintext';
2431 $msg = 'loginreqpagetext';
2432 $displayReturnto = Title
::newMainPage();
2438 $query['returnto'] = $returnto->getPrefixedText();
2440 if ( !$request->wasPosted() ) {
2441 $returntoquery = $request->getValues();
2442 unset( $returntoquery['title'] );
2443 unset( $returntoquery['returnto'] );
2444 unset( $returntoquery['returntoquery'] );
2445 $query['returntoquery'] = wfArrayToCgi( $returntoquery );
2448 $loginLink = Linker
::linkKnown(
2449 SpecialPage
::getTitleFor( 'Userlogin' ),
2450 $this->msg( 'loginreqlink' )->escaped(),
2455 $this->prepareErrorPage( $this->msg( 'loginreqtitle' ) );
2456 $this->addHTML( $this->msg( $msg )->rawParams( $loginLink )->parse() );
2458 # Don't return to a page the user can't read otherwise
2459 # we'll end up in a pointless loop
2460 if ( $displayReturnto && $displayReturnto->userCan( 'read', $this->getUser() ) ) {
2461 $this->returnToMain( null, $displayReturnto );
2464 $this->prepareErrorPage( $this->msg( 'permissionserrors' ) );
2465 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
2470 * Display an error page indicating that a given version of MediaWiki is
2471 * required to use it
2473 * @param mixed $version The version of MediaWiki needed to use the page
2475 public function versionRequired( $version ) {
2476 $this->prepareErrorPage( $this->msg( 'versionrequired', $version ) );
2478 $this->addWikiMsg( 'versionrequiredtext', $version );
2479 $this->returnToMain();
2483 * Format a list of error messages
2485 * @param array $errors Array of arrays returned by Title::getUserPermissionsErrors
2486 * @param string $action Action that was denied or null if unknown
2487 * @return string The wikitext error-messages, formatted into a list.
2489 public function formatPermissionsErrorMessage( array $errors, $action = null ) {
2490 if ( $action == null ) {
2491 $text = $this->msg( 'permissionserrorstext', count( $errors ) )->plain() . "\n\n";
2493 $action_desc = $this->msg( "action-$action" )->plain();
2495 'permissionserrorstext-withaction',
2498 )->plain() . "\n\n";
2501 if ( count( $errors ) > 1 ) {
2502 $text .= '<ul class="permissions-errors">' . "\n";
2504 foreach ( $errors as $error ) {
2506 $text .= call_user_func_array( array( $this, 'msg' ), $error )->plain();
2511 $text .= "<div class=\"permissions-errors\">\n" .
2512 call_user_func_array( array( $this, 'msg' ), reset( $errors ) )->plain() .
2520 * Display a page stating that the Wiki is in read-only mode.
2521 * Should only be called after wfReadOnly() has returned true.
2523 * Historically, this function was used to show the source of the page that the user
2524 * was trying to edit and _also_ permissions error messages. The relevant code was
2525 * moved into EditPage in 1.19 (r102024 / d83c2a431c2a) and removed here in 1.25.
2527 * @deprecated since 1.25; throw the exception directly
2528 * @throws ReadOnlyError
2530 public function readOnlyPage() {
2531 if ( func_num_args() > 0 ) {
2532 throw new MWException( __METHOD__
. ' no longer accepts arguments since 1.25.' );
2535 throw new ReadOnlyError
;
2539 * Turn off regular page output and return an error response
2540 * for when rate limiting has triggered.
2542 * @deprecated since 1.25; throw the exception directly
2544 public function rateLimited() {
2545 wfDeprecated( __METHOD__
, '1.25' );
2546 throw new ThrottledError
;
2550 * Show a warning about slave lag
2552 * If the lag is higher than $wgSlaveLagCritical seconds,
2553 * then the warning is a bit more obvious. If the lag is
2554 * lower than $wgSlaveLagWarning, then no warning is shown.
2556 * @param int $lag Slave lag
2558 public function showLagWarning( $lag ) {
2559 $config = $this->getConfig();
2560 if ( $lag >= $config->get( 'SlaveLagWarning' ) ) {
2561 $message = $lag < $config->get( 'SlaveLagCritical' )
2564 $wrap = Html
::rawElement( 'div', array( 'class' => "mw-{$message}" ), "\n$1\n" );
2565 $this->wrapWikiMsg( "$wrap\n", array( $message, $this->getLanguage()->formatNum( $lag ) ) );
2569 public function showFatalError( $message ) {
2570 $this->prepareErrorPage( $this->msg( 'internalerror' ) );
2572 $this->addHTML( $message );
2575 public function showUnexpectedValueError( $name, $val ) {
2576 $this->showFatalError( $this->msg( 'unexpected', $name, $val )->text() );
2579 public function showFileCopyError( $old, $new ) {
2580 $this->showFatalError( $this->msg( 'filecopyerror', $old, $new )->text() );
2583 public function showFileRenameError( $old, $new ) {
2584 $this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->text() );
2587 public function showFileDeleteError( $name ) {
2588 $this->showFatalError( $this->msg( 'filedeleteerror', $name )->text() );
2591 public function showFileNotFoundError( $name ) {
2592 $this->showFatalError( $this->msg( 'filenotfound', $name )->text() );
2596 * Add a "return to" link pointing to a specified title
2598 * @param Title $title Title to link
2599 * @param array $query Query string parameters
2600 * @param string $text Text of the link (input is not escaped)
2601 * @param array $options Options array to pass to Linker
2603 public function addReturnTo( $title, array $query = array(), $text = null, $options = array() ) {
2604 $link = $this->msg( 'returnto' )->rawParams(
2605 Linker
::link( $title, $text, array(), $query, $options ) )->escaped();
2606 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2610 * Add a "return to" link pointing to a specified title,
2611 * or the title indicated in the request, or else the main page
2613 * @param mixed $unused
2614 * @param Title|string $returnto Title or String to return to
2615 * @param string $returntoquery Query string for the return to link
2617 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2618 if ( $returnto == null ) {
2619 $returnto = $this->getRequest()->getText( 'returnto' );
2622 if ( $returntoquery == null ) {
2623 $returntoquery = $this->getRequest()->getText( 'returntoquery' );
2626 if ( $returnto === '' ) {
2627 $returnto = Title
::newMainPage();
2630 if ( is_object( $returnto ) ) {
2631 $titleObj = $returnto;
2633 $titleObj = Title
::newFromText( $returnto );
2635 if ( !is_object( $titleObj ) ) {
2636 $titleObj = Title
::newMainPage();
2639 $this->addReturnTo( $titleObj, wfCgiToArray( $returntoquery ) );
2643 * @param Skin $sk The given Skin
2644 * @param bool $includeStyle Unused
2645 * @return string The doctype, opening "<html>", and head element.
2647 public function headElement( Skin
$sk, $includeStyle = true ) {
2650 $userdir = $this->getLanguage()->getDir();
2651 $sitedir = $wgContLang->getDir();
2653 $ret = Html
::htmlHeader( $sk->getHtmlElementAttributes() );
2655 if ( $this->getHTMLTitle() == '' ) {
2656 $this->setHTMLTitle( $this->msg( 'pagetitle', $this->getPageTitle() )->inContentLanguage() );
2659 $openHead = Html
::openElement( 'head' );
2661 # Don't bother with the newline if $head == ''
2662 $ret .= "$openHead\n";
2665 if ( !Html
::isXmlMimeType( $this->getConfig()->get( 'MimeType' ) ) ) {
2666 // Add <meta charset="UTF-8">
2667 // This should be before <title> since it defines the charset used by
2668 // text including the text inside <title>.
2669 // The spec recommends defining XHTML5's charset using the XML declaration
2671 // Our XML declaration is output by Html::htmlHeader.
2672 // http://www.whatwg.org/html/semantics.html#attr-meta-http-equiv-content-type
2673 // http://www.whatwg.org/html/semantics.html#charset
2674 $ret .= Html
::element( 'meta', array( 'charset' => 'UTF-8' ) ) . "\n";
2677 $ret .= Html
::element( 'title', null, $this->getHTMLTitle() ) . "\n";
2678 $ret .= $this->getInlineHeadScripts() . "\n";
2679 $ret .= $this->buildCssLinks() . "\n";
2680 $ret .= $this->getExternalHeadScripts() . "\n";
2682 foreach ( $this->getHeadLinksArray() as $item ) {
2683 $ret .= $item . "\n";
2686 foreach ( $this->mHeadItems
as $item ) {
2687 $ret .= $item . "\n";
2690 $closeHead = Html
::closeElement( 'head' );
2692 $ret .= "$closeHead\n";
2695 $bodyClasses = array();
2696 $bodyClasses[] = 'mediawiki';
2698 # Classes for LTR/RTL directionality support
2699 $bodyClasses[] = $userdir;
2700 $bodyClasses[] = "sitedir-$sitedir";
2702 if ( $this->getLanguage()->capitalizeAllNouns() ) {
2703 # A <body> class is probably not the best way to do this . . .
2704 $bodyClasses[] = 'capitalize-all-nouns';
2707 $bodyClasses[] = $sk->getPageClasses( $this->getTitle() );
2708 $bodyClasses[] = 'skin-' . Sanitizer
::escapeClass( $sk->getSkinName() );
2710 'action-' . Sanitizer
::escapeClass( Action
::getActionName( $this->getContext() ) );
2712 $bodyAttrs = array();
2713 // While the implode() is not strictly needed, it's used for backwards compatibility
2714 // (this used to be built as a string and hooks likely still expect that).
2715 $bodyAttrs['class'] = implode( ' ', $bodyClasses );
2717 // Allow skins and extensions to add body attributes they need
2718 $sk->addToBodyAttributes( $this, $bodyAttrs );
2719 Hooks
::run( 'OutputPageBodyAttributes', array( $this, $sk, &$bodyAttrs ) );
2721 $ret .= Html
::openElement( 'body', $bodyAttrs ) . "\n";
2727 * Get a ResourceLoader object associated with this OutputPage
2729 * @return ResourceLoader
2731 public function getResourceLoader() {
2732 if ( is_null( $this->mResourceLoader
) ) {
2733 $this->mResourceLoader
= new ResourceLoader(
2735 LoggerFactory
::getInstance( 'resourceloader' )
2738 return $this->mResourceLoader
;
2742 * Construct neccecary html and loader preset states to load modules on a page.
2744 * Use getHtmlFromLoaderLinks() to convert this array to HTML.
2746 * @param array|string $modules One or more module names
2747 * @param string $only ResourceLoaderModule TYPE_ class constant
2748 * @param array $extraQuery [optional] Array with extra query parameters for the request
2749 * @return array A list of HTML strings and array of client loader preset states
2751 public function makeResourceLoaderLink( $modules, $only, array $extraQuery = array() ) {
2752 $modules = (array)$modules;
2755 // List of html strings
2757 // Associative array of module names and their states
2758 'states' => array(),
2761 if ( !count( $modules ) ) {
2765 if ( count( $modules ) > 1 ) {
2766 // Remove duplicate module requests
2767 $modules = array_unique( $modules );
2768 // Sort module names so requests are more uniform
2771 if ( ResourceLoader
::inDebugMode() ) {
2772 // Recursively call us for every item
2773 foreach ( $modules as $name ) {
2774 $link = $this->makeResourceLoaderLink( $name, $only, $extraQuery );
2775 $links['html'] = array_merge( $links['html'], $link['html'] );
2776 $links['states'] +
= $link['states'];
2782 if ( !is_null( $this->mTarget
) ) {
2783 $extraQuery['target'] = $this->mTarget
;
2786 // Create keyed-by-source and then keyed-by-group list of module objects from modules list
2787 $sortedModules = array();
2788 $resourceLoader = $this->getResourceLoader();
2789 foreach ( $modules as $name ) {
2790 $module = $resourceLoader->getModule( $name );
2791 # Check that we're allowed to include this module on this page
2793 ||
( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule
::TYPE_SCRIPTS
)
2794 && $only == ResourceLoaderModule
::TYPE_SCRIPTS
)
2795 ||
( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule
::TYPE_STYLES
)
2796 && $only == ResourceLoaderModule
::TYPE_STYLES
)
2797 ||
( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule
::TYPE_COMBINED
)
2798 && $only == ResourceLoaderModule
::TYPE_COMBINED
)
2799 ||
( $this->mTarget
&& !in_array( $this->mTarget
, $module->getTargets() ) )
2804 $sortedModules[$module->getSource()][$module->getGroup()][$name] = $module;
2807 foreach ( $sortedModules as $source => $groups ) {
2808 foreach ( $groups as $group => $grpModules ) {
2809 // Special handling for user-specific groups
2811 if ( ( $group === 'user' ||
$group === 'private' ) && $this->getUser()->isLoggedIn() ) {
2812 $user = $this->getUser()->getName();
2815 // Create a fake request based on the one we are about to make so modules return
2816 // correct timestamp and emptiness data
2817 $query = ResourceLoader
::makeLoaderQuery(
2818 array(), // modules; not determined yet
2819 $this->getLanguage()->getCode(),
2820 $this->getSkin()->getSkinName(),
2822 null, // version; not determined yet
2823 ResourceLoader
::inDebugMode(),
2824 $only === ResourceLoaderModule
::TYPE_COMBINED ?
null : $only,
2825 $this->isPrintable(),
2826 $this->getRequest()->getBool( 'handheld' ),
2829 $context = new ResourceLoaderContext( $resourceLoader, new FauxRequest( $query ) );
2831 // Extract modules that know they're empty and see if we have one or more
2834 foreach ( $grpModules as $key => $module ) {
2835 // Inline empty modules: since they're empty, just mark them as 'ready' (bug 46857)
2836 // If we're only getting the styles, we don't need to do anything for empty modules.
2837 if ( $module->isKnownEmpty( $context ) ) {
2838 unset( $grpModules[$key] );
2839 if ( $only !== ResourceLoaderModule
::TYPE_STYLES
) {
2840 $links['states'][$key] = 'ready';
2844 $isRaw |
= $module->isRaw();
2847 // If there are no non-empty modules, skip this group
2848 if ( count( $grpModules ) === 0 ) {
2852 // Inline private modules. These can't be loaded through load.php for security
2853 // reasons, see bug 34907. Note that these modules should be loaded from
2854 // getExternalHeadScripts() before the first loader call. Otherwise other modules can't
2855 // properly use them as dependencies (bug 30914)
2856 if ( $group === 'private' ) {
2857 if ( $only == ResourceLoaderModule
::TYPE_STYLES
) {
2858 $links['html'][] = Html
::inlineStyle(
2859 $resourceLoader->makeModuleResponse( $context, $grpModules )
2862 $links['html'][] = ResourceLoader
::makeInlineScript(
2863 $resourceLoader->makeModuleResponse( $context, $grpModules )
2869 // Special handling for the user group; because users might change their stuff
2870 // on-wiki like user pages, or user preferences; we need to find the highest
2871 // timestamp of these user-changeable modules so we can ensure cache misses on change
2872 // This should NOT be done for the site group (bug 27564) because anons get that too
2873 // and we shouldn't be putting timestamps in CDN-cached HTML
2875 if ( $group === 'user' ) {
2876 $query['version'] = $resourceLoader->getCombinedVersion( $context, array_keys( $grpModules ) );
2879 $query['modules'] = ResourceLoader
::makePackedModulesString( array_keys( $grpModules ) );
2880 $moduleContext = new ResourceLoaderContext( $resourceLoader, new FauxRequest( $query ) );
2881 $url = $resourceLoader->createLoaderURL( $source, $moduleContext, $extraQuery );
2883 // Automatically select style/script elements
2884 if ( $only === ResourceLoaderModule
::TYPE_STYLES
) {
2885 $link = Html
::linkedStyle( $url );
2887 if ( $context->getRaw() ||
$isRaw ) {
2888 // Startup module can't load itself, needs to use <script> instead of mw.loader.load
2889 $link = Html
::element( 'script', array(
2890 // In SpecialJavaScriptTest, QUnit must load synchronous
2891 'async' => !isset( $extraQuery['sync'] ),
2895 $link = ResourceLoader
::makeInlineScript(
2896 Xml
::encodeJsCall( 'mw.loader.load', array( $url ) )
2900 // For modules requested directly in the html via <script> or mw.loader.load
2901 // tell mw.loader they are being loading to prevent duplicate requests.
2902 foreach ( $grpModules as $key => $module ) {
2903 // Don't output state=loading for the startup module.
2904 if ( $key !== 'startup' ) {
2905 $links['states'][$key] = 'loading';
2910 if ( $group == 'noscript' ) {
2911 $links['html'][] = Html
::rawElement( 'noscript', array(), $link );
2913 $links['html'][] = $link;
2922 * Build html output from an array of links from makeResourceLoaderLink.
2923 * @param array $links
2924 * @return string HTML
2926 protected static function getHtmlFromLoaderLinks( array $links ) {
2929 foreach ( $links as $link ) {
2930 if ( !is_array( $link ) ) {
2933 $html = array_merge( $html, $link['html'] );
2934 $states +
= $link['states'];
2937 // Filter out empty values
2938 $html = array_filter( $html, 'strlen' );
2940 if ( count( $states ) ) {
2941 array_unshift( $html, ResourceLoader
::makeInlineScript(
2942 ResourceLoader
::makeLoaderStateScript( $states )
2946 return WrappedString
::join( "\n", $html );
2950 * JS stuff to put in the "<head>". This is the startup module, config
2951 * vars and modules marked with position 'top'
2953 * @return string HTML fragment
2955 function getHeadScripts() {
2956 return $this->getInlineHeadScripts() . "\n" . $this->getExternalHeadScripts();
2960 * <script src="..."> tags for "<head>". This is the startup module
2961 * and other modules marked with position 'top'.
2963 * @return string HTML fragment
2965 function getExternalHeadScripts() {
2968 // Startup - this provides the client with the module
2969 // manifest and loads jquery and mediawiki base modules
2970 $links[] = $this->makeResourceLoaderLink( 'startup', ResourceLoaderModule
::TYPE_SCRIPTS
);
2972 return self
::getHtmlFromLoaderLinks( $links );
2976 * <script>...</script> tags to put in "<head>".
2978 * @return string HTML fragment
2980 function getInlineHeadScripts() {
2983 // Client profile classes for <html>. Allows for easy hiding/showing of UI components.
2984 // Must be done synchronously on every page to avoid flashes of wrong content.
2985 // Note: This class distinguishes MediaWiki-supported JavaScript from the rest.
2986 // The "rest" includes browsers that support JavaScript but not supported by our runtime.
2987 // For the performance benefit of the majority, this is added unconditionally here and is
2988 // then fixed up by the startup module for unsupported browsers.
2989 $links[] = Html
::inlineScript(
2990 'document.documentElement.className = document.documentElement.className'
2991 . '.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );'
2994 // Load config before anything else
2995 $links[] = ResourceLoader
::makeInlineScript(
2996 ResourceLoader
::makeConfigSetScript( $this->getJSVars() )
2999 // Load embeddable private modules before any loader links
3000 // This needs to be TYPE_COMBINED so these modules are properly wrapped
3001 // in mw.loader.implement() calls and deferred until mw.user is available
3002 $embedScripts = array( 'user.options' );
3003 $links[] = $this->makeResourceLoaderLink(
3005 ResourceLoaderModule
::TYPE_COMBINED
3007 // Separate user.tokens as otherwise caching will be allowed (T84960)
3008 $links[] = $this->makeResourceLoaderLink(
3010 ResourceLoaderModule
::TYPE_COMBINED
3013 // Modules requests - let the client calculate dependencies and batch requests as it likes
3014 // Only load modules that have marked themselves for loading at the top
3015 $modules = $this->getModules( true, 'top' );
3017 $links[] = ResourceLoader
::makeInlineScript(
3018 Xml
::encodeJsCall( 'mw.loader.load', array( $modules ) )
3022 // "Scripts only" modules marked for top inclusion
3023 $links[] = $this->makeResourceLoaderLink(
3024 $this->getModuleScripts( true, 'top' ),
3025 ResourceLoaderModule
::TYPE_SCRIPTS
3028 return self
::getHtmlFromLoaderLinks( $links );
3032 * JS stuff to put at the 'bottom', which goes at the bottom of the `<body>`.
3033 * These are modules marked with position 'bottom', legacy scripts ($this->mScripts),
3034 * site JS, and user JS.
3036 * @param bool $unused Previously used to let this method change its output based
3037 * on whether it was called by getExternalHeadScripts() or getBottomScripts().
3040 function getScriptsForBottomQueue( $unused = null ) {
3041 // Scripts "only" requests marked for bottom inclusion
3042 // If we're in the <head>, use load() calls rather than <script src="..."> tags
3045 $links[] = $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'bottom' ),
3046 ResourceLoaderModule
::TYPE_SCRIPTS
3049 // Modules requests - let the client calculate dependencies and batch requests as it likes
3050 // Only load modules that have marked themselves for loading at the bottom
3051 $modules = $this->getModules( true, 'bottom' );
3053 $links[] = ResourceLoader
::makeInlineScript(
3054 Xml
::encodeJsCall( 'mw.loader.load', array( $modules ) )
3059 $links[] = $this->mScripts
;
3061 // Add user JS if enabled
3062 // This must use TYPE_COMBINED instead of only=scripts so that its request is handled by
3063 // mw.loader.implement() which ensures that execution is scheduled after the "site" module.
3064 if ( $this->getConfig()->get( 'AllowUserJs' )
3065 && $this->getUser()->isLoggedIn()
3066 && $this->getTitle()
3067 && $this->getTitle()->isJsSubpage()
3068 && $this->userCanPreview()
3070 // We're on a preview of a JS subpage. Exclude this page from the user module (T28283)
3071 // and include the draft contents as a raw script instead.
3072 $links[] = $this->makeResourceLoaderLink( 'user', ResourceLoaderModule
::TYPE_COMBINED
,
3073 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
3075 // Load the previewed JS
3076 $links[] = ResourceLoader
::makeInlineScript(
3077 Xml
::encodeJsCall( 'mw.loader.using', array(
3078 array( 'user', 'site' ),
3081 . Xml
::encodeJsCall( '$.globalEval', array(
3082 $this->getRequest()->getText( 'wpTextbox1' )
3089 // FIXME: If the user is previewing, say, ./vector.js, his ./common.js will be loaded
3090 // asynchronously and may arrive *after* the inline script here. So the previewed code
3091 // may execute before ./common.js runs. Normally, ./common.js runs before ./vector.js.
3092 // Similarly, when previewing ./common.js and the user module does arrive first,
3093 // it will arrive without common.js and the inline script runs after.
3094 // Thus running common after the excluded subpage.
3096 // Include the user module normally, i.e., raw to avoid it being wrapped in a closure.
3097 $links[] = $this->makeResourceLoaderLink( 'user', ResourceLoaderModule
::TYPE_COMBINED
);
3100 // Group JS is only enabled if site JS is enabled.
3101 $links[] = $this->makeResourceLoaderLink(
3103 ResourceLoaderModule
::TYPE_COMBINED
3106 return self
::getHtmlFromLoaderLinks( $links );
3110 * JS stuff to put at the bottom of the "<body>"
3113 function getBottomScripts() {
3114 return $this->getScriptsForBottomQueue();
3118 * Get the javascript config vars to include on this page
3120 * @return array Array of javascript config vars
3123 public function getJsConfigVars() {
3124 return $this->mJsConfigVars
;
3128 * Add one or more variables to be set in mw.config in JavaScript
3130 * @param string|array $keys Key or array of key/value pairs
3131 * @param mixed $value [optional] Value of the configuration variable
3133 public function addJsConfigVars( $keys, $value = null ) {
3134 if ( is_array( $keys ) ) {
3135 foreach ( $keys as $key => $value ) {
3136 $this->mJsConfigVars
[$key] = $value;
3141 $this->mJsConfigVars
[$keys] = $value;
3145 * Get an array containing the variables to be set in mw.config in JavaScript.
3147 * Do not add things here which can be evaluated in ResourceLoaderStartUpModule
3148 * - in other words, page-independent/site-wide variables (without state).
3149 * You will only be adding bloat to the html page and causing page caches to
3150 * have to be purged on configuration changes.
3153 public function getJSVars() {
3158 $canonicalSpecialPageName = false; # bug 21115
3160 $title = $this->getTitle();
3161 $ns = $title->getNamespace();
3162 $canonicalNamespace = MWNamespace
::exists( $ns )
3163 ? MWNamespace
::getCanonicalName( $ns )
3164 : $title->getNsText();
3166 $sk = $this->getSkin();
3167 // Get the relevant title so that AJAX features can use the correct page name
3168 // when making API requests from certain special pages (bug 34972).
3169 $relevantTitle = $sk->getRelevantTitle();
3170 $relevantUser = $sk->getRelevantUser();
3172 if ( $ns == NS_SPECIAL
) {
3173 list( $canonicalSpecialPageName, /*...*/ ) =
3174 SpecialPageFactory
::resolveAlias( $title->getDBkey() );
3175 } elseif ( $this->canUseWikiPage() ) {
3176 $wikiPage = $this->getWikiPage();
3177 $curRevisionId = $wikiPage->getLatest();
3178 $articleId = $wikiPage->getId();
3181 $lang = $title->getPageLanguage();
3183 // Pre-process information
3184 $separatorTransTable = $lang->separatorTransformTable();
3185 $separatorTransTable = $separatorTransTable ?
$separatorTransTable : array();
3186 $compactSeparatorTransTable = array(
3187 implode( "\t", array_keys( $separatorTransTable ) ),
3188 implode( "\t", $separatorTransTable ),
3190 $digitTransTable = $lang->digitTransformTable();
3191 $digitTransTable = $digitTransTable ?
$digitTransTable : array();
3192 $compactDigitTransTable = array(
3193 implode( "\t", array_keys( $digitTransTable ) ),
3194 implode( "\t", $digitTransTable ),
3197 $user = $this->getUser();
3200 'wgCanonicalNamespace' => $canonicalNamespace,
3201 'wgCanonicalSpecialPageName' => $canonicalSpecialPageName,
3202 'wgNamespaceNumber' => $title->getNamespace(),
3203 'wgPageName' => $title->getPrefixedDBkey(),
3204 'wgTitle' => $title->getText(),
3205 'wgCurRevisionId' => $curRevisionId,
3206 'wgRevisionId' => (int)$this->getRevisionId(),
3207 'wgArticleId' => $articleId,
3208 'wgIsArticle' => $this->isArticle(),
3209 'wgIsRedirect' => $title->isRedirect(),
3210 'wgAction' => Action
::getActionName( $this->getContext() ),
3211 'wgUserName' => $user->isAnon() ?
null : $user->getName(),
3212 'wgUserGroups' => $user->getEffectiveGroups(),
3213 'wgCategories' => $this->getCategories(),
3214 'wgBreakFrames' => $this->getFrameOptions() == 'DENY',
3215 'wgPageContentLanguage' => $lang->getCode(),
3216 'wgPageContentModel' => $title->getContentModel(),
3217 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
3218 'wgDigitTransformTable' => $compactDigitTransTable,
3219 'wgDefaultDateFormat' => $lang->getDefaultDateFormat(),
3220 'wgMonthNames' => $lang->getMonthNamesArray(),
3221 'wgMonthNamesShort' => $lang->getMonthAbbreviationsArray(),
3222 'wgRelevantPageName' => $relevantTitle->getPrefixedDBkey(),
3223 'wgRelevantArticleId' => $relevantTitle->getArticleId(),
3226 if ( $user->isLoggedIn() ) {
3227 $vars['wgUserId'] = $user->getId();
3228 $vars['wgUserEditCount'] = $user->getEditCount();
3229 $userReg = wfTimestampOrNull( TS_UNIX
, $user->getRegistration() );
3230 $vars['wgUserRegistration'] = $userReg !== null ?
( $userReg * 1000 ) : null;
3231 // Get the revision ID of the oldest new message on the user's talk
3232 // page. This can be used for constructing new message alerts on
3234 $vars['wgUserNewMsgRevisionId'] = $user->getNewMessageRevisionId();
3237 if ( $wgContLang->hasVariants() ) {
3238 $vars['wgUserVariant'] = $wgContLang->getPreferredVariant();
3240 // Same test as SkinTemplate
3241 $vars['wgIsProbablyEditable'] = $title->quickUserCan( 'edit', $user )
3242 && ( $title->exists() ||
$title->quickUserCan( 'create', $user ) );
3244 foreach ( $title->getRestrictionTypes() as $type ) {
3245 $vars['wgRestriction' . ucfirst( $type )] = $title->getRestrictions( $type );
3248 if ( $title->isMainPage() ) {
3249 $vars['wgIsMainPage'] = true;
3252 if ( $this->mRedirectedFrom
) {
3253 $vars['wgRedirectedFrom'] = $this->mRedirectedFrom
->getPrefixedDBkey();
3256 if ( $relevantUser ) {
3257 $vars['wgRelevantUserName'] = $relevantUser->getName();
3260 // Allow extensions to add their custom variables to the mw.config map.
3261 // Use the 'ResourceLoaderGetConfigVars' hook if the variable is not
3262 // page-dependant but site-wide (without state).
3263 // Alternatively, you may want to use OutputPage->addJsConfigVars() instead.
3264 Hooks
::run( 'MakeGlobalVariablesScript', array( &$vars, $this ) );
3266 // Merge in variables from addJsConfigVars last
3267 return array_merge( $vars, $this->getJsConfigVars() );
3271 * To make it harder for someone to slip a user a fake
3272 * user-JavaScript or user-CSS preview, a random token
3273 * is associated with the login session. If it's not
3274 * passed back with the preview request, we won't render
3279 public function userCanPreview() {
3280 $request = $this->getRequest();
3282 $request->getVal( 'action' ) !== 'submit' ||
3283 !$request->getCheck( 'wpPreview' ) ||
3284 !$request->wasPosted()
3289 $user = $this->getUser();
3290 if ( !$user->matchEditToken( $request->getVal( 'wpEditToken' ) ) ) {
3294 $title = $this->getTitle();
3295 if ( !$title->isJsSubpage() && !$title->isCssSubpage() ) {
3298 if ( !$title->isSubpageOf( $user->getUserPage() ) ) {
3299 // Don't execute another user's CSS or JS on preview (T85855)
3303 $errors = $title->getUserPermissionsErrors( 'edit', $user );
3304 if ( count( $errors ) !== 0 ) {
3312 * @return array Array in format "link name or number => 'link html'".
3314 public function getHeadLinksArray() {
3318 $config = $this->getConfig();
3320 $canonicalUrl = $this->mCanonicalUrl
;
3322 $tags['meta-generator'] = Html
::element( 'meta', array(
3323 'name' => 'generator',
3324 'content' => "MediaWiki $wgVersion",
3327 if ( $config->get( 'ReferrerPolicy' ) !== false ) {
3328 $tags['meta-referrer'] = Html
::element( 'meta', array(
3329 'name' => 'referrer',
3330 'content' => $config->get( 'ReferrerPolicy' )
3334 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
3335 if ( $p !== 'index,follow' ) {
3336 // http://www.robotstxt.org/wc/meta-user.html
3337 // Only show if it's different from the default robots policy
3338 $tags['meta-robots'] = Html
::element( 'meta', array(
3344 foreach ( $this->mMetatags
as $tag ) {
3345 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
3347 $tag[0] = substr( $tag[0], 5 );
3351 $tagName = "meta-{$tag[0]}";
3352 if ( isset( $tags[$tagName] ) ) {
3353 $tagName .= $tag[1];
3355 $tags[$tagName] = Html
::element( 'meta',
3358 'content' => $tag[1]
3363 foreach ( $this->mLinktags
as $tag ) {
3364 $tags[] = Html
::element( 'link', $tag );
3367 # Universal edit button
3368 if ( $config->get( 'UniversalEditButton' ) && $this->isArticleRelated() ) {
3369 $user = $this->getUser();
3370 if ( $this->getTitle()->quickUserCan( 'edit', $user )
3371 && ( $this->getTitle()->exists() ||
3372 $this->getTitle()->quickUserCan( 'create', $user ) )
3374 // Original UniversalEditButton
3375 $msg = $this->msg( 'edit' )->text();
3376 $tags['universal-edit-button'] = Html
::element( 'link', array(
3377 'rel' => 'alternate',
3378 'type' => 'application/x-wiki',
3380 'href' => $this->getTitle()->getEditURL(),
3382 // Alternate edit link
3383 $tags['alternative-edit'] = Html
::element( 'link', array(
3386 'href' => $this->getTitle()->getEditURL(),
3391 # Generally the order of the favicon and apple-touch-icon links
3392 # should not matter, but Konqueror (3.5.9 at least) incorrectly
3393 # uses whichever one appears later in the HTML source. Make sure
3394 # apple-touch-icon is specified first to avoid this.
3395 if ( $config->get( 'AppleTouchIcon' ) !== false ) {
3396 $tags['apple-touch-icon'] = Html
::element( 'link', array(
3397 'rel' => 'apple-touch-icon',
3398 'href' => $config->get( 'AppleTouchIcon' )
3402 if ( $config->get( 'Favicon' ) !== false ) {
3403 $tags['favicon'] = Html
::element( 'link', array(
3404 'rel' => 'shortcut icon',
3405 'href' => $config->get( 'Favicon' )
3409 # OpenSearch description link
3410 $tags['opensearch'] = Html
::element( 'link', array(
3412 'type' => 'application/opensearchdescription+xml',
3413 'href' => wfScript( 'opensearch_desc' ),
3414 'title' => $this->msg( 'opensearch-desc' )->inContentLanguage()->text(),
3417 if ( $config->get( 'EnableAPI' ) ) {
3418 # Real Simple Discovery link, provides auto-discovery information
3419 # for the MediaWiki API (and potentially additional custom API
3420 # support such as WordPress or Twitter-compatible APIs for a
3421 # blogging extension, etc)
3422 $tags['rsd'] = Html
::element( 'link', array(
3424 'type' => 'application/rsd+xml',
3425 // Output a protocol-relative URL here if $wgServer is protocol-relative.
3426 // Whether RSD accepts relative or protocol-relative URLs is completely
3427 // undocumented, though.
3428 'href' => wfExpandUrl( wfAppendQuery(
3430 array( 'action' => 'rsd' ) ),
3437 if ( !$config->get( 'DisableLangConversion' ) ) {
3438 $lang = $this->getTitle()->getPageLanguage();
3439 if ( $lang->hasVariants() ) {
3440 $variants = $lang->getVariants();
3441 foreach ( $variants as $variant ) {
3442 $tags["variant-$variant"] = Html
::element( 'link', array(
3443 'rel' => 'alternate',
3444 'hreflang' => wfBCP47( $variant ),
3445 'href' => $this->getTitle()->getLocalURL(
3446 array( 'variant' => $variant ) )
3450 # x-default link per https://support.google.com/webmasters/answer/189077?hl=en
3451 $tags["variant-x-default"] = Html
::element( 'link', array(
3452 'rel' => 'alternate',
3453 'hreflang' => 'x-default',
3454 'href' => $this->getTitle()->getLocalURL() ) );
3459 if ( $this->copyrightUrl
!== null ) {
3460 $copyright = $this->copyrightUrl
;
3463 if ( $config->get( 'RightsPage' ) ) {
3464 $copy = Title
::newFromText( $config->get( 'RightsPage' ) );
3467 $copyright = $copy->getLocalURL();
3471 if ( !$copyright && $config->get( 'RightsUrl' ) ) {
3472 $copyright = $config->get( 'RightsUrl' );
3477 $tags['copyright'] = Html
::element( 'link', array(
3478 'rel' => 'copyright',
3479 'href' => $copyright )
3484 if ( $config->get( 'Feed' ) ) {
3485 $feedLinks = array();
3487 foreach ( $this->getSyndicationLinks() as $format => $link ) {
3488 # Use the page name for the title. In principle, this could
3489 # lead to issues with having the same name for different feeds
3490 # corresponding to the same page, but we can't avoid that at
3493 $feedLinks[] = $this->feedLink(
3496 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
3498 "page-{$format}-feed", $this->getTitle()->getPrefixedText()
3503 # Recent changes feed should appear on every page (except recentchanges,
3504 # that would be redundant). Put it after the per-page feed to avoid
3505 # changing existing behavior. It's still available, probably via a
3506 # menu in your browser. Some sites might have a different feed they'd
3507 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
3508 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
3509 # If so, use it instead.
3510 $sitename = $config->get( 'Sitename' );
3511 if ( $config->get( 'OverrideSiteFeed' ) ) {
3512 foreach ( $config->get( 'OverrideSiteFeed' ) as $type => $feedUrl ) {
3513 // Note, this->feedLink escapes the url.
3514 $feedLinks[] = $this->feedLink(
3517 $this->msg( "site-{$type}-feed", $sitename )->text()
3520 } elseif ( !$this->getTitle()->isSpecial( 'Recentchanges' ) ) {
3521 $rctitle = SpecialPage
::getTitleFor( 'Recentchanges' );
3522 foreach ( $config->get( 'AdvertisedFeedTypes' ) as $format ) {
3523 $feedLinks[] = $this->feedLink(
3525 $rctitle->getLocalURL( array( 'feed' => $format ) ),
3526 # For grep: 'site-rss-feed', 'site-atom-feed'
3527 $this->msg( "site-{$format}-feed", $sitename )->text()
3532 # Allow extensions to change the list pf feeds. This hook is primarily for changing,
3533 # manipulating or removing existing feed tags. If you want to add new feeds, you should
3534 # use OutputPage::addFeedLink() instead.
3535 Hooks
::run( 'AfterBuildFeedLinks', array( &$feedLinks ) );
3537 $tags +
= $feedLinks;
3541 if ( $config->get( 'EnableCanonicalServerLink' ) ) {
3542 if ( $canonicalUrl !== false ) {
3543 $canonicalUrl = wfExpandUrl( $canonicalUrl, PROTO_CANONICAL
);
3545 if ( $this->isArticleRelated() ) {
3546 // This affects all requests where "setArticleRelated" is true. This is
3547 // typically all requests that show content (query title, curid, oldid, diff),
3548 // and all wikipage actions (edit, delete, purge, info, history etc.).
3549 // It does not apply to File pages and Special pages.
3550 // 'history' and 'info' actions address page metadata rather than the page
3551 // content itself, so they may not be canonicalized to the view page url.
3552 // TODO: this ought to be better encapsulated in the Action class.
3553 $action = Action
::getActionName( $this->getContext() );
3554 if ( in_array( $action, array( 'history', 'info' ) ) ) {
3555 $query = "action={$action}";
3559 $canonicalUrl = $this->getTitle()->getCanonicalURL( $query );
3561 $reqUrl = $this->getRequest()->getRequestURL();
3562 $canonicalUrl = wfExpandUrl( $reqUrl, PROTO_CANONICAL
);
3566 if ( $canonicalUrl !== false ) {
3567 $tags[] = Html
::element( 'link', array(
3568 'rel' => 'canonical',
3569 'href' => $canonicalUrl
3577 * @return string HTML tag links to be put in the header.
3578 * @deprecated since 1.24 Use OutputPage::headElement or if you have to,
3579 * OutputPage::getHeadLinksArray directly.
3581 public function getHeadLinks() {
3582 wfDeprecated( __METHOD__
, '1.24' );
3583 return implode( "\n", $this->getHeadLinksArray() );
3587 * Generate a "<link rel/>" for a feed.
3589 * @param string $type Feed type
3590 * @param string $url URL to the feed
3591 * @param string $text Value of the "title" attribute
3592 * @return string HTML fragment
3594 private function feedLink( $type, $url, $text ) {
3595 return Html
::element( 'link', array(
3596 'rel' => 'alternate',
3597 'type' => "application/$type+xml",
3604 * Add a local or specified stylesheet, with the given media options.
3605 * Internal use only. Use OutputPage::addModuleStyles() if possible.
3607 * @param string $style URL to the file
3608 * @param string $media To specify a media type, 'screen', 'printable', 'handheld' or any.
3609 * @param string $condition For IE conditional comments, specifying an IE version
3610 * @param string $dir Set to 'rtl' or 'ltr' for direction-specific sheets
3612 public function addStyle( $style, $media = '', $condition = '', $dir = '' ) {
3614 // Even though we expect the media type to be lowercase, but here we
3615 // force it to lowercase to be safe.
3617 $options['media'] = $media;
3620 $options['condition'] = $condition;
3623 $options['dir'] = $dir;
3625 $this->styles
[$style] = $options;
3629 * Adds inline CSS styles
3630 * Internal use only. Use OutputPage::addModuleStyles() if possible.
3632 * @param mixed $style_css Inline CSS
3633 * @param string $flip Set to 'flip' to flip the CSS if needed
3635 public function addInlineStyle( $style_css, $flip = 'noflip' ) {
3636 if ( $flip === 'flip' && $this->getLanguage()->isRTL() ) {
3637 # If wanted, and the interface is right-to-left, flip the CSS
3638 $style_css = CSSJanus
::transform( $style_css, true, false );
3640 $this->mInlineStyles
.= Html
::inlineStyle( $style_css ) . "\n";
3644 * Build a set of "<link>" elements for the stylesheets specified in the $this->styles array.
3645 * These will be applied to various media & IE conditionals.
3649 public function buildCssLinks() {
3652 $this->getSkin()->setupSkinUserCss( $this );
3654 // Add ResourceLoader styles
3655 // Split the styles into these groups
3660 'private' => array(),
3661 'noscript' => array()
3664 $otherTags = array(); // Tags to append after the normal <link> tags
3665 $resourceLoader = $this->getResourceLoader();
3667 $moduleStyles = $this->getModuleStyles();
3669 // Per-site custom styles
3670 $moduleStyles[] = 'site';
3671 $moduleStyles[] = 'noscript';
3672 $moduleStyles[] = 'user.groups';
3674 // Per-user custom styles
3675 if ( $this->getConfig()->get( 'AllowUserCss' ) && $this->getTitle()->isCssSubpage()
3676 && $this->userCanPreview()
3678 // We're on a preview of a CSS subpage
3679 // Exclude this page from the user module in case it's in there (bug 26283)
3680 $link = $this->makeResourceLoaderLink( 'user', ResourceLoaderModule
::TYPE_STYLES
,
3681 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
3683 $otherTags = array_merge( $otherTags, $link['html'] );
3685 // Load the previewed CSS
3686 // If needed, Janus it first. This is user-supplied CSS, so it's
3687 // assumed to be right for the content language directionality.
3688 $previewedCSS = $this->getRequest()->getText( 'wpTextbox1' );
3689 if ( $this->getLanguage()->getDir() !== $wgContLang->getDir() ) {
3690 $previewedCSS = CSSJanus
::transform( $previewedCSS, true, false );
3692 $otherTags[] = Html
::inlineStyle( $previewedCSS ) . "\n";
3694 // Load the user styles normally
3695 $moduleStyles[] = 'user';
3698 // Per-user preference styles
3699 $moduleStyles[] = 'user.cssprefs';
3701 foreach ( $moduleStyles as $name ) {
3702 $module = $resourceLoader->getModule( $name );
3706 if ( $name === 'site' ) {
3707 // HACK: The site module shouldn't be fragmented with a cache group and
3708 // http request. But in order to ensure its styles are separated and after the
3709 // ResourceLoaderDynamicStyles marker, pretend it is in a group called 'site'.
3710 // The scripts remain ungrouped and rides the bottom queue.
3711 $styles['site'][] = $name;
3714 $group = $module->getGroup();
3715 // Modules in groups other than the ones needing special treatment
3716 // (see $styles assignment)
3717 // will be placed in the "other" style category.
3718 $styles[isset( $styles[$group] ) ?
$group : 'other'][] = $name;
3721 // We want site, private and user styles to override dynamically added
3722 // styles from modules, but we want dynamically added styles to override
3723 // statically added styles from other modules. So the order has to be
3724 // other, dynamic, site, private, user. Add statically added styles for
3726 $links[] = $this->makeResourceLoaderLink(
3728 ResourceLoaderModule
::TYPE_STYLES
3730 // Add normal styles added through addStyle()/addInlineStyle() here
3731 $links[] = implode( "\n", $this->buildCssLinksArray() ) . $this->mInlineStyles
;
3732 // Add marker tag to mark the place where the client-side
3733 // loader should inject dynamic styles
3734 // We use a <meta> tag with a made-up name for this because that's valid HTML
3735 $links[] = Html
::element(
3737 array( 'name' => 'ResourceLoaderDynamicStyles', 'content' => '' )
3740 // Add site-specific and user-specific styles
3741 // 'private' at present only contains user.options, so put that before 'user'
3742 // Any future private modules will likely have a similar user-specific character
3743 foreach ( array( 'site', 'noscript', 'private', 'user' ) as $group ) {
3744 $links[] = $this->makeResourceLoaderLink( $styles[$group],
3745 ResourceLoaderModule
::TYPE_STYLES
3749 // Add stuff in $otherTags (previewed user CSS if applicable)
3750 return self
::getHtmlFromLoaderLinks( $links ) . implode( '', $otherTags );
3756 public function buildCssLinksArray() {
3759 // Add any extension CSS
3760 foreach ( $this->mExtStyles
as $url ) {
3761 $this->addStyle( $url );
3763 $this->mExtStyles
= array();
3765 foreach ( $this->styles
as $file => $options ) {
3766 $link = $this->styleLink( $file, $options );
3768 $links[$file] = $link;
3775 * Generate \<link\> tags for stylesheets
3777 * @param string $style URL to the file
3778 * @param array $options Option, can contain 'condition', 'dir', 'media' keys
3779 * @return string HTML fragment
3781 protected function styleLink( $style, array $options ) {
3782 if ( isset( $options['dir'] ) ) {
3783 if ( $this->getLanguage()->getDir() != $options['dir'] ) {
3788 if ( isset( $options['media'] ) ) {
3789 $media = self
::transformCssMedia( $options['media'] );
3790 if ( is_null( $media ) ) {
3797 if ( substr( $style, 0, 1 ) == '/' ||
3798 substr( $style, 0, 5 ) == 'http:' ||
3799 substr( $style, 0, 6 ) == 'https:' ) {
3802 $config = $this->getConfig();
3803 $url = $config->get( 'StylePath' ) . '/' . $style . '?' .
3804 $config->get( 'StyleVersion' );
3807 $link = Html
::linkedStyle( $url, $media );
3809 if ( isset( $options['condition'] ) ) {
3810 $condition = htmlspecialchars( $options['condition'] );
3811 $link = "<!--[if $condition]>$link<![endif]-->";
3817 * Transform "media" attribute based on request parameters
3819 * @param string $media Current value of the "media" attribute
3820 * @return string Modified value of the "media" attribute, or null to skip
3823 public static function transformCssMedia( $media ) {
3826 // http://www.w3.org/TR/css3-mediaqueries/#syntax
3827 $screenMediaQueryRegex = '/^(?:only\s+)?screen\b/i';
3829 // Switch in on-screen display for media testing
3831 'printable' => 'print',
3832 'handheld' => 'handheld',
3834 foreach ( $switches as $switch => $targetMedia ) {
3835 if ( $wgRequest->getBool( $switch ) ) {
3836 if ( $media == $targetMedia ) {
3838 } elseif ( preg_match( $screenMediaQueryRegex, $media ) === 1 ) {
3839 /* This regex will not attempt to understand a comma-separated media_query_list
3841 * Example supported values for $media:
3842 * 'screen', 'only screen', 'screen and (min-width: 982px)' ),
3843 * Example NOT supported value for $media:
3844 * '3d-glasses, screen, print and resolution > 90dpi'
3846 * If it's a print request, we never want any kind of screen stylesheets
3847 * If it's a handheld request (currently the only other choice with a switch),
3848 * we don't want simple 'screen' but we might want screen queries that
3849 * have a max-width or something, so we'll pass all others on and let the
3850 * client do the query.
3852 if ( $targetMedia == 'print' ||
$media == 'screen' ) {
3863 * Add a wikitext-formatted message to the output.
3864 * This is equivalent to:
3866 * $wgOut->addWikiText( wfMessage( ... )->plain() )
3868 public function addWikiMsg( /*...*/ ) {
3869 $args = func_get_args();
3870 $name = array_shift( $args );
3871 $this->addWikiMsgArray( $name, $args );
3875 * Add a wikitext-formatted message to the output.
3876 * Like addWikiMsg() except the parameters are taken as an array
3877 * instead of a variable argument list.
3879 * @param string $name
3880 * @param array $args
3882 public function addWikiMsgArray( $name, $args ) {
3883 $this->addHTML( $this->msg( $name, $args )->parseAsBlock() );
3887 * This function takes a number of message/argument specifications, wraps them in
3888 * some overall structure, and then parses the result and adds it to the output.
3890 * In the $wrap, $1 is replaced with the first message, $2 with the second,
3891 * and so on. The subsequent arguments may be either
3892 * 1) strings, in which case they are message names, or
3893 * 2) arrays, in which case, within each array, the first element is the message
3894 * name, and subsequent elements are the parameters to that message.
3896 * Don't use this for messages that are not in the user's interface language.
3900 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>", 'some-error' );
3904 * $wgOut->addWikiText( "<div class='error'>\n"
3905 * . wfMessage( 'some-error' )->plain() . "\n</div>" );
3907 * The newline after the opening div is needed in some wikitext. See bug 19226.
3909 * @param string $wrap
3911 public function wrapWikiMsg( $wrap /*, ...*/ ) {
3912 $msgSpecs = func_get_args();
3913 array_shift( $msgSpecs );
3914 $msgSpecs = array_values( $msgSpecs );
3916 foreach ( $msgSpecs as $n => $spec ) {
3917 if ( is_array( $spec ) ) {
3919 $name = array_shift( $args );
3920 if ( isset( $args['options'] ) ) {
3921 unset( $args['options'] );
3923 'Adding "options" to ' . __METHOD__
. ' is no longer supported',
3931 $s = str_replace( '$' . ( $n +
1 ), $this->msg( $name, $args )->plain(), $s );
3933 $this->addWikiText( $s );
3937 * Enables/disables TOC, doesn't override __NOTOC__
3941 public function enableTOC( $flag = true ) {
3942 $this->mEnableTOC
= $flag;
3949 public function isTOCEnabled() {
3950 return $this->mEnableTOC
;
3954 * Enables/disables section edit links, doesn't override __NOEDITSECTION__
3958 public function enableSectionEditLinks( $flag = true ) {
3959 $this->mEnableSectionEditLinks
= $flag;
3966 public function sectionEditLinksEnabled() {
3967 return $this->mEnableSectionEditLinks
;
3971 * Helper function to setup the PHP implementation of OOUI to use in this request.
3974 * @param String $skinName The Skin name to determine the correct OOUI theme
3975 * @param String $dir Language direction
3977 public static function setupOOUI( $skinName = '', $dir = 'ltr' ) {
3978 $themes = ExtensionRegistry
::getInstance()->getAttribute( 'SkinOOUIThemes' );
3979 // Make keys (skin names) lowercase for case-insensitive matching.
3980 $themes = array_change_key_case( $themes, CASE_LOWER
);
3981 $theme = isset( $themes[$skinName] ) ?
$themes[$skinName] : 'MediaWiki';
3982 // For example, 'OOUI\MediaWikiTheme'.
3983 $themeClass = "OOUI\\{$theme}Theme";
3984 OOUI\Theme
::setSingleton( new $themeClass() );
3985 OOUI\Element
::setDefaultDir( $dir );
3989 * Add ResourceLoader module styles for OOUI and set up the PHP implementation of it for use with
3990 * MediaWiki and this OutputPage instance.
3994 public function enableOOUI() {
3996 strtolower( $this->getSkin()->getSkinName() ),
3997 $this->getLanguage()->getDir()
3999 $this->addModuleStyles( array(
4001 'oojs-ui.styles.icons',
4002 'oojs-ui.styles.indicators',
4003 'oojs-ui.styles.textures',
4004 'mediawiki.widgets.styles',