revert r113117 per CR
[mediawiki.git] / includes / OutputPage.php
blob6c6c06b52930f31e299aac56981f9172c47b994a
1 <?php
2 if ( !defined( 'MEDIAWIKI' ) ) {
3 die( 1 );
6 /**
7 * This class should be covered by a general architecture document which does
8 * not exist as of January 2011. This is one of the Core classes and should
9 * be read at least once by any new developers.
11 * This class is used to prepare the final rendering. A skin is then
12 * applied to the output parameters (links, javascript, html, categories ...).
14 * @todo FIXME: Another class handles sending the whole page to the client.
16 * Some comments comes from a pairing session between Zak Greant and Antoine Musso
17 * in November 2010.
19 * @todo document
21 class OutputPage extends ContextSource {
22 /// Should be private. Used with addMeta() which adds <meta>
23 var $mMetatags = array();
25 /// <meta keyworkds="stuff"> most of the time the first 10 links to an article
26 var $mKeywords = array();
28 var $mLinktags = array();
30 /// Additional stylesheets. Looks like this is for extensions. Might be replaced by resource loader.
31 var $mExtStyles = array();
33 /// Should be private - has getter and setter. Contains the HTML title
34 var $mPagetitle = '';
36 /// Contains all of the <body> content. Should be private we got set/get accessors and the append() method.
37 var $mBodytext = '';
39 /**
40 * Holds the debug lines that will be output as comments in page source if
41 * $wgDebugComments is enabled. See also $wgShowDebug.
42 * TODO: make a getter method for this
44 public $mDebugtext = ''; // TODO: we might want to replace it by wfDebug() wfDebugLog()
46 /// Should be private. Stores contents of <title> tag
47 var $mHTMLtitle = '';
49 /// Should be private. Is the displayed content related to the source of the corresponding wiki article.
50 var $mIsarticle = false;
52 /**
53 * Should be private. Has get/set methods properly documented.
54 * Stores "article flag" toggle.
56 var $mIsArticleRelated = true;
58 /**
59 * Should be private. We have to set isPrintable(). Some pages should
60 * never be printed (ex: redirections).
62 var $mPrintable = false;
64 /**
65 * Should be private. We have set/get/append methods.
67 * Contains the page subtitle. Special pages usually have some links here.
68 * Don't confuse with site subtitle added by skins.
70 private $mSubtitle = array();
72 var $mRedirect = '';
73 var $mStatusCode;
75 /**
76 * mLastModified and mEtag are used for sending cache control.
77 * The whole caching system should probably be moved into its own class.
79 var $mLastModified = '';
81 /**
82 * Should be private. No getter but used in sendCacheControl();
83 * Contains an HTTP Entity Tags (see RFC 2616 section 3.13) which is used
84 * as a unique identifier for the content. It is later used by the client
85 * to compare its cached version with the server version. Client sends
86 * headers If-Match and If-None-Match containing its locally cached ETAG value.
88 * To get more information, you will have to look at HTTP/1.1 protocol which
89 * is properly described in RFC 2616 : http://tools.ietf.org/html/rfc2616
91 var $mETag = false;
93 var $mCategoryLinks = array();
94 var $mCategories = array();
96 /// Should be private. Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
97 var $mLanguageLinks = array();
99 /**
100 * Should be private. Used for JavaScript (pre resource loader)
101 * We should split js / css.
102 * mScripts content is inserted as is in <head> by Skin. This might contains
103 * either a link to a stylesheet or inline css.
105 var $mScripts = '';
108 * Inline CSS styles. Use addInlineStyle() sparsingly
110 var $mInlineStyles = '';
113 var $mLinkColours;
116 * Used by skin template.
117 * Example: $tpl->set( 'displaytitle', $out->mPageLinkTitle );
119 var $mPageLinkTitle = '';
121 /// Array of elements in <head>. Parser might add its own headers!
122 var $mHeadItems = array();
124 // @todo FIXME: Next variables probably comes from the resource loader
125 var $mModules = array(), $mModuleScripts = array(), $mModuleStyles = array(), $mModuleMessages = array();
126 var $mResourceLoader;
127 var $mJsConfigVars = array();
129 /** @todo FIXME: Is this still used ?*/
130 var $mInlineMsg = array();
132 var $mTemplateIds = array();
133 var $mImageTimeKeys = array();
135 var $mRedirectCode = '';
137 var $mFeedLinksAppendQuery = null;
139 # What level of 'untrustworthiness' is allowed in CSS/JS modules loaded on this page?
140 # @see ResourceLoaderModule::$origin
141 # ResourceLoaderModule::ORIGIN_ALL is assumed unless overridden;
142 protected $mAllowedModules = array(
143 ResourceLoaderModule::TYPE_COMBINED => ResourceLoaderModule::ORIGIN_ALL,
147 * @EasterEgg I just love the name for this self documenting variable.
148 * @todo document
150 var $mDoNothing = false;
152 // Parser related.
153 var $mContainsOldMagic = 0, $mContainsNewMagic = 0;
156 * lazy initialised, use parserOptions()
157 * @var ParserOptions
159 protected $mParserOptions = null;
162 * Handles the atom / rss links.
163 * We probably only support atom in 2011.
164 * Looks like a private variable.
165 * @see $wgAdvertisedFeedTypes
167 var $mFeedLinks = array();
169 // Gwicke work on squid caching? Roughly from 2003.
170 var $mEnableClientCache = true;
173 * Flag if output should only contain the body of the article.
174 * Should be private.
176 var $mArticleBodyOnly = false;
178 var $mNewSectionLink = false;
179 var $mHideNewSectionLink = false;
182 * Comes from the parser. This was probably made to load CSS/JS only
183 * if we had <gallery>. Used directly in CategoryPage.php
184 * Looks like resource loader can replace this.
186 var $mNoGallery = false;
188 // should be private.
189 var $mPageTitleActionText = '';
190 var $mParseWarnings = array();
192 // Cache stuff. Looks like mEnableClientCache
193 var $mSquidMaxage = 0;
195 // @todo document
196 var $mPreventClickjacking = true;
198 /// should be private. To include the variable {{REVISIONID}}
199 var $mRevisionId = null;
200 private $mRevisionTimestamp = null;
202 var $mFileVersion = null;
205 * An array of stylesheet filenames (relative from skins path), with options
206 * for CSS media, IE conditions, and RTL/LTR direction.
207 * For internal use; add settings in the skin via $this->addStyle()
209 * Style again! This seems like a code duplication since we already have
210 * mStyles. This is what makes OpenSource amazing.
212 var $styles = array();
215 * Whether jQuery is already handled.
217 protected $mJQueryDone = false;
219 private $mIndexPolicy = 'index';
220 private $mFollowPolicy = 'follow';
221 private $mVaryHeader = array(
222 'Accept-Encoding' => array( 'list-contains=gzip' ),
223 'Cookie' => null
227 * If the current page was reached through a redirect, $mRedirectedFrom contains the Title
228 * of the redirect.
230 * @var Title
232 private $mRedirectedFrom = null;
235 * Constructor for OutputPage. This should not be called directly.
236 * Instead a new RequestContext should be created and it will implicitly create
237 * a OutputPage tied to that context.
239 function __construct( IContextSource $context = null ) {
240 if ( $context === null ) {
241 # Extensions should use `new RequestContext` instead of `new OutputPage` now.
242 wfDeprecated( __METHOD__ );
243 } else {
244 $this->setContext( $context );
249 * Redirect to $url rather than displaying the normal page
251 * @param $url String: URL
252 * @param $responsecode String: HTTP status code
254 public function redirect( $url, $responsecode = '302' ) {
255 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
256 $this->mRedirect = str_replace( "\n", '', $url );
257 $this->mRedirectCode = $responsecode;
261 * Get the URL to redirect to, or an empty string if not redirect URL set
263 * @return String
265 public function getRedirect() {
266 return $this->mRedirect;
270 * Set the HTTP status code to send with the output.
272 * @param $statusCode Integer
274 public function setStatusCode( $statusCode ) {
275 $this->mStatusCode = $statusCode;
279 * Add a new <meta> tag
280 * To add an http-equiv meta tag, precede the name with "http:"
282 * @param $name String tag name
283 * @param $val String tag value
285 function addMeta( $name, $val ) {
286 array_push( $this->mMetatags, array( $name, $val ) );
290 * Add a keyword or a list of keywords in the page header
292 * @param $text String or array of strings
294 function addKeyword( $text ) {
295 if( is_array( $text ) ) {
296 $this->mKeywords = array_merge( $this->mKeywords, $text );
297 } else {
298 array_push( $this->mKeywords, $text );
303 * Add a new \<link\> tag to the page header
305 * @param $linkarr Array: associative array of attributes.
307 function addLink( $linkarr ) {
308 array_push( $this->mLinktags, $linkarr );
312 * Add a new \<link\> with "rel" attribute set to "meta"
314 * @param $linkarr Array: associative array mapping attribute names to their
315 * values, both keys and values will be escaped, and the
316 * "rel" attribute will be automatically added
318 function addMetadataLink( $linkarr ) {
319 $linkarr['rel'] = $this->getMetadataAttribute();
320 $this->addLink( $linkarr );
324 * Get the value of the "rel" attribute for metadata links
326 * @return String
328 public function getMetadataAttribute() {
329 # note: buggy CC software only reads first "meta" link
330 static $haveMeta = false;
331 if ( $haveMeta ) {
332 return 'alternate meta';
333 } else {
334 $haveMeta = true;
335 return 'meta';
340 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
342 * @param $script String: raw HTML
344 function addScript( $script ) {
345 $this->mScripts .= $script . "\n";
349 * Register and add a stylesheet from an extension directory.
351 * @param $url String path to sheet. Provide either a full url (beginning
352 * with 'http', etc) or a relative path from the document root
353 * (beginning with '/'). Otherwise it behaves identically to
354 * addStyle() and draws from the /skins folder.
356 public function addExtensionStyle( $url ) {
357 array_push( $this->mExtStyles, $url );
361 * Get all styles added by extensions
363 * @return Array
365 function getExtStyle() {
366 return $this->mExtStyles;
370 * Add a JavaScript file out of skins/common, or a given relative path.
372 * @param $file String: filename in skins/common or complete on-server path
373 * (/foo/bar.js)
374 * @param $version String: style version of the file. Defaults to $wgStyleVersion
376 public function addScriptFile( $file, $version = null ) {
377 global $wgStylePath, $wgStyleVersion;
378 // See if $file parameter is an absolute URL or begins with a slash
379 if( substr( $file, 0, 1 ) == '/' || preg_match( '#^[a-z]*://#i', $file ) ) {
380 $path = $file;
381 } else {
382 $path = "{$wgStylePath}/common/{$file}";
384 if ( is_null( $version ) )
385 $version = $wgStyleVersion;
386 $this->addScript( Html::linkedScript( wfAppendQuery( $path, $version ) ) );
390 * Add a self-contained script tag with the given contents
392 * @param $script String: JavaScript text, no <script> tags
394 public function addInlineScript( $script ) {
395 $this->mScripts .= Html::inlineScript( "\n$script\n" ) . "\n";
399 * Get all registered JS and CSS tags for the header.
401 * @return String
403 function getScript() {
404 return $this->mScripts . $this->getHeadItems();
408 * Filter an array of modules to remove insufficiently trustworthy members, and modules
409 * which are no longer registered (eg a page is cached before an extension is disabled)
410 * @param $modules Array
411 * @param $position String if not null, only return modules with this position
412 * @param $type string
413 * @return Array
415 protected function filterModules( $modules, $position = null, $type = ResourceLoaderModule::TYPE_COMBINED ){
416 $resourceLoader = $this->getResourceLoader();
417 $filteredModules = array();
418 foreach( $modules as $val ){
419 $module = $resourceLoader->getModule( $val );
420 if( $module instanceof ResourceLoaderModule
421 && $module->getOrigin() <= $this->getAllowedModules( $type )
422 && ( is_null( $position ) || $module->getPosition() == $position ) )
424 $filteredModules[] = $val;
427 return $filteredModules;
431 * Get the list of modules to include on this page
433 * @param $filter Bool whether to filter out insufficiently trustworthy modules
434 * @param $position String if not null, only return modules with this position
435 * @param $param string
436 * @return Array of module names
438 public function getModules( $filter = false, $position = null, $param = 'mModules' ) {
439 $modules = array_values( array_unique( $this->$param ) );
440 return $filter
441 ? $this->filterModules( $modules, $position )
442 : $modules;
446 * Add one or more modules recognized by the resource loader. Modules added
447 * through this function will be loaded by the resource loader when the
448 * page loads.
450 * @param $modules Mixed: module name (string) or array of module names
452 public function addModules( $modules ) {
453 $this->mModules = array_merge( $this->mModules, (array)$modules );
457 * Get the list of module JS to include on this page
459 * @param $filter
460 * @param $position
462 * @return array of module names
464 public function getModuleScripts( $filter = false, $position = null ) {
465 return $this->getModules( $filter, $position, 'mModuleScripts' );
469 * Add only JS of one or more modules recognized by the resource loader. Module
470 * scripts added through this function will be loaded by the resource loader when
471 * the page loads.
473 * @param $modules Mixed: module name (string) or array of module names
475 public function addModuleScripts( $modules ) {
476 $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules );
480 * Get the list of module CSS to include on this page
482 * @param $filter
483 * @param $position
485 * @return Array of module names
487 public function getModuleStyles( $filter = false, $position = null ) {
488 return $this->getModules( $filter, $position, 'mModuleStyles' );
492 * Add only CSS of one or more modules recognized by the resource loader. Module
493 * styles added through this function will be loaded by the resource loader when
494 * the page loads.
496 * @param $modules Mixed: module name (string) or array of module names
498 public function addModuleStyles( $modules ) {
499 $this->mModuleStyles = array_merge( $this->mModuleStyles, (array)$modules );
503 * Get the list of module messages to include on this page
505 * @param $filter
506 * @param $position
508 * @return Array of module names
510 public function getModuleMessages( $filter = false, $position = null ) {
511 return $this->getModules( $filter, $position, 'mModuleMessages' );
515 * Add only messages of one or more modules recognized by the resource loader.
516 * Module messages added through this function will be loaded by the resource
517 * loader when the page loads.
519 * @param $modules Mixed: module name (string) or array of module names
521 public function addModuleMessages( $modules ) {
522 $this->mModuleMessages = array_merge( $this->mModuleMessages, (array)$modules );
526 * Get an array of head items
528 * @return Array
530 function getHeadItemsArray() {
531 return $this->mHeadItems;
535 * Get all header items in a string
537 * @return String
539 function getHeadItems() {
540 $s = '';
541 foreach ( $this->mHeadItems as $item ) {
542 $s .= $item;
544 return $s;
548 * Add or replace an header item to the output
550 * @param $name String: item name
551 * @param $value String: raw HTML
553 public function addHeadItem( $name, $value ) {
554 $this->mHeadItems[$name] = $value;
558 * Check if the header item $name is already set
560 * @param $name String: item name
561 * @return Boolean
563 public function hasHeadItem( $name ) {
564 return isset( $this->mHeadItems[$name] );
568 * Set the value of the ETag HTTP header, only used if $wgUseETag is true
570 * @param $tag String: value of "ETag" header
572 function setETag( $tag ) {
573 $this->mETag = $tag;
577 * Set whether the output should only contain the body of the article,
578 * without any skin, sidebar, etc.
579 * Used e.g. when calling with "action=render".
581 * @param $only Boolean: whether to output only the body of the article
583 public function setArticleBodyOnly( $only ) {
584 $this->mArticleBodyOnly = $only;
588 * Return whether the output will contain only the body of the article
590 * @return Boolean
592 public function getArticleBodyOnly() {
593 return $this->mArticleBodyOnly;
597 * checkLastModified tells the client to use the client-cached page if
598 * possible. If sucessful, the OutputPage is disabled so that
599 * any future call to OutputPage->output() have no effect.
601 * Side effect: sets mLastModified for Last-Modified header
603 * @param $timestamp string
605 * @return Boolean: true iff cache-ok headers was sent.
607 public function checkLastModified( $timestamp ) {
608 global $wgCachePages, $wgCacheEpoch;
610 if ( !$timestamp || $timestamp == '19700101000000' ) {
611 wfDebug( __METHOD__ . ": CACHE DISABLED, NO TIMESTAMP\n" );
612 return false;
614 if( !$wgCachePages ) {
615 wfDebug( __METHOD__ . ": CACHE DISABLED\n", false );
616 return false;
618 if( $this->getUser()->getOption( 'nocache' ) ) {
619 wfDebug( __METHOD__ . ": USER DISABLED CACHE\n", false );
620 return false;
623 $timestamp = wfTimestamp( TS_MW, $timestamp );
624 $modifiedTimes = array(
625 'page' => $timestamp,
626 'user' => $this->getUser()->getTouched(),
627 'epoch' => $wgCacheEpoch
629 wfRunHooks( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
631 $maxModified = max( $modifiedTimes );
632 $this->mLastModified = wfTimestamp( TS_RFC2822, $maxModified );
634 if( empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
635 wfDebug( __METHOD__ . ": client did not send If-Modified-Since header\n", false );
636 return false;
639 # Make debug info
640 $info = '';
641 foreach ( $modifiedTimes as $name => $value ) {
642 if ( $info !== '' ) {
643 $info .= ', ';
645 $info .= "$name=" . wfTimestamp( TS_ISO_8601, $value );
648 # IE sends sizes after the date like this:
649 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
650 # this breaks strtotime().
651 $clientHeader = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
653 wfSuppressWarnings(); // E_STRICT system time bitching
654 $clientHeaderTime = strtotime( $clientHeader );
655 wfRestoreWarnings();
656 if ( !$clientHeaderTime ) {
657 wfDebug( __METHOD__ . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
658 return false;
660 $clientHeaderTime = wfTimestamp( TS_MW, $clientHeaderTime );
662 wfDebug( __METHOD__ . ": client sent If-Modified-Since: " .
663 wfTimestamp( TS_ISO_8601, $clientHeaderTime ) . "\n", false );
664 wfDebug( __METHOD__ . ": effective Last-Modified: " .
665 wfTimestamp( TS_ISO_8601, $maxModified ) . "\n", false );
666 if( $clientHeaderTime < $maxModified ) {
667 wfDebug( __METHOD__ . ": STALE, $info\n", false );
668 return false;
671 # Not modified
672 # Give a 304 response code and disable body output
673 wfDebug( __METHOD__ . ": NOT MODIFIED, $info\n", false );
674 ini_set( 'zlib.output_compression', 0 );
675 $this->getRequest()->response()->header( "HTTP/1.1 304 Not Modified" );
676 $this->sendCacheControl();
677 $this->disable();
679 // Don't output a compressed blob when using ob_gzhandler;
680 // it's technically against HTTP spec and seems to confuse
681 // Firefox when the response gets split over two packets.
682 wfClearOutputBuffers();
684 return true;
688 * Override the last modified timestamp
690 * @param $timestamp String: new timestamp, in a format readable by
691 * wfTimestamp()
693 public function setLastModified( $timestamp ) {
694 $this->mLastModified = wfTimestamp( TS_RFC2822, $timestamp );
698 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
700 * @param $policy String: the literal string to output as the contents of
701 * the meta tag. Will be parsed according to the spec and output in
702 * standardized form.
703 * @return null
705 public function setRobotPolicy( $policy ) {
706 $policy = Article::formatRobotPolicy( $policy );
708 if( isset( $policy['index'] ) ) {
709 $this->setIndexPolicy( $policy['index'] );
711 if( isset( $policy['follow'] ) ) {
712 $this->setFollowPolicy( $policy['follow'] );
717 * Set the index policy for the page, but leave the follow policy un-
718 * touched.
720 * @param $policy string Either 'index' or 'noindex'.
721 * @return null
723 public function setIndexPolicy( $policy ) {
724 $policy = trim( $policy );
725 if( in_array( $policy, array( 'index', 'noindex' ) ) ) {
726 $this->mIndexPolicy = $policy;
731 * Set the follow policy for the page, but leave the index policy un-
732 * touched.
734 * @param $policy String: either 'follow' or 'nofollow'.
735 * @return null
737 public function setFollowPolicy( $policy ) {
738 $policy = trim( $policy );
739 if( in_array( $policy, array( 'follow', 'nofollow' ) ) ) {
740 $this->mFollowPolicy = $policy;
745 * Set the new value of the "action text", this will be added to the
746 * "HTML title", separated from it with " - ".
748 * @param $text String: new value of the "action text"
750 public function setPageTitleActionText( $text ) {
751 $this->mPageTitleActionText = $text;
755 * Get the value of the "action text"
757 * @return String
759 public function getPageTitleActionText() {
760 if ( isset( $this->mPageTitleActionText ) ) {
761 return $this->mPageTitleActionText;
766 * "HTML title" means the contents of <title>.
767 * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
769 * @param $name string
771 public function setHTMLTitle( $name ) {
772 if ( $name instanceof Message ) {
773 $this->mHTMLtitle = $name->setContext( $this->getContext() )->text();
774 } else {
775 $this->mHTMLtitle = $name;
780 * Return the "HTML title", i.e. the content of the <title> tag.
782 * @return String
784 public function getHTMLTitle() {
785 return $this->mHTMLtitle;
789 * Set $mRedirectedFrom, the Title of the page which redirected us to the current page.
791 * param @t Title
793 public function setRedirectedFrom( $t ) {
794 $this->mRedirectedFrom = $t;
798 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML fragment.
799 * This function allows good tags like \<sup\> in the \<h1\> tag, but not bad tags like \<script\>.
800 * This function automatically sets \<title\> to the same content as \<h1\> but with all tags removed.
801 * Bad tags that were escaped in \<h1\> will still be escaped in \<title\>, and good tags like \<i\> will be dropped entirely.
803 * @param $name string|Message
805 public function setPageTitle( $name ) {
806 if ( $name instanceof Message ) {
807 $name = $name->setContext( $this->getContext() )->text();
810 # change "<script>foo&bar</script>" to "&lt;script&gt;foo&amp;bar&lt;/script&gt;"
811 # but leave "<i>foobar</i>" alone
812 $nameWithTags = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $name ) );
813 $this->mPagetitle = $nameWithTags;
815 # change "<i>foo&amp;bar</i>" to "foo&bar"
816 $this->setHTMLTitle( $this->msg( 'pagetitle' )->rawParams( Sanitizer::stripAllTags( $nameWithTags ) ) );
820 * Return the "page title", i.e. the content of the \<h1\> tag.
822 * @return String
824 public function getPageTitle() {
825 return $this->mPagetitle;
829 * Set the Title object to use
831 * @param $t Title object
833 public function setTitle( Title $t ) {
834 $this->getContext()->setTitle( $t );
839 * Replace the subtile with $str
841 * @param $str String|Message: new value of the subtitle
843 public function setSubtitle( $str ) {
844 $this->clearSubtitle();
845 $this->addSubtitle( $str );
849 * Add $str to the subtitle
851 * @deprecated in 1.19; use addSubtitle() instead
852 * @param $str String|Message to add to the subtitle
854 public function appendSubtitle( $str ) {
855 $this->addSubtitle( $str );
859 * Add $str to the subtitle
861 * @param $str String|Message to add to the subtitle
863 public function addSubtitle( $str ) {
864 if ( $str instanceof Message ) {
865 $this->mSubtitle[] = $str->setContext( $this->getContext() )->parse();
866 } else {
867 $this->mSubtitle[] = $str;
872 * Add a subtitle containing a backlink to a page
874 * @param $title Title to link to
876 public function addBacklinkSubtitle( Title $title ) {
877 $query = array();
878 if ( $title->isRedirect() ) {
879 $query['redirect'] = 'no';
881 $this->addSubtitle( $this->msg( 'backlinksubtitle' )->rawParams( Linker::link( $title, null, array(), $query ) ) );
885 * Clear the subtitles
887 public function clearSubtitle() {
888 $this->mSubtitle = array();
892 * Get the subtitle
894 * @return String
896 public function getSubtitle() {
897 return implode( "<br />\n\t\t\t\t", $this->mSubtitle );
901 * Set the page as printable, i.e. it'll be displayed with with all
902 * print styles included
904 public function setPrintable() {
905 $this->mPrintable = true;
909 * Return whether the page is "printable"
911 * @return Boolean
913 public function isPrintable() {
914 return $this->mPrintable;
918 * Disable output completely, i.e. calling output() will have no effect
920 public function disable() {
921 $this->mDoNothing = true;
925 * Return whether the output will be completely disabled
927 * @return Boolean
929 public function isDisabled() {
930 return $this->mDoNothing;
934 * Show an "add new section" link?
936 * @return Boolean
938 public function showNewSectionLink() {
939 return $this->mNewSectionLink;
943 * Forcibly hide the new section link?
945 * @return Boolean
947 public function forceHideNewSectionLink() {
948 return $this->mHideNewSectionLink;
952 * Add or remove feed links in the page header
953 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
954 * for the new version
955 * @see addFeedLink()
957 * @param $show Boolean: true: add default feeds, false: remove all feeds
959 public function setSyndicated( $show = true ) {
960 if ( $show ) {
961 $this->setFeedAppendQuery( false );
962 } else {
963 $this->mFeedLinks = array();
968 * Add default feeds to the page header
969 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
970 * for the new version
971 * @see addFeedLink()
973 * @param $val String: query to append to feed links or false to output
974 * default links
976 public function setFeedAppendQuery( $val ) {
977 global $wgAdvertisedFeedTypes;
979 $this->mFeedLinks = array();
981 foreach ( $wgAdvertisedFeedTypes as $type ) {
982 $query = "feed=$type";
983 if ( is_string( $val ) ) {
984 $query .= '&' . $val;
986 $this->mFeedLinks[$type] = $this->getTitle()->getLocalURL( $query );
991 * Add a feed link to the page header
993 * @param $format String: feed type, should be a key of $wgFeedClasses
994 * @param $href String: URL
996 public function addFeedLink( $format, $href ) {
997 global $wgAdvertisedFeedTypes;
999 if ( in_array( $format, $wgAdvertisedFeedTypes ) ) {
1000 $this->mFeedLinks[$format] = $href;
1005 * Should we output feed links for this page?
1006 * @return Boolean
1008 public function isSyndicated() {
1009 return count( $this->mFeedLinks ) > 0;
1013 * Return URLs for each supported syndication format for this page.
1014 * @return array associating format keys with URLs
1016 public function getSyndicationLinks() {
1017 return $this->mFeedLinks;
1021 * Will currently always return null
1023 * @return null
1025 public function getFeedAppendQuery() {
1026 return $this->mFeedLinksAppendQuery;
1030 * Set whether the displayed content is related to the source of the
1031 * corresponding article on the wiki
1032 * Setting true will cause the change "article related" toggle to true
1034 * @param $v Boolean
1036 public function setArticleFlag( $v ) {
1037 $this->mIsarticle = $v;
1038 if ( $v ) {
1039 $this->mIsArticleRelated = $v;
1044 * Return whether the content displayed page is related to the source of
1045 * the corresponding article on the wiki
1047 * @return Boolean
1049 public function isArticle() {
1050 return $this->mIsarticle;
1054 * Set whether this page is related an article on the wiki
1055 * Setting false will cause the change of "article flag" toggle to false
1057 * @param $v Boolean
1059 public function setArticleRelated( $v ) {
1060 $this->mIsArticleRelated = $v;
1061 if ( !$v ) {
1062 $this->mIsarticle = false;
1067 * Return whether this page is related an article on the wiki
1069 * @return Boolean
1071 public function isArticleRelated() {
1072 return $this->mIsArticleRelated;
1076 * Add new language links
1078 * @param $newLinkArray array Associative array mapping language code to the page
1079 * name
1081 public function addLanguageLinks( $newLinkArray ) {
1082 $this->mLanguageLinks += $newLinkArray;
1086 * Reset the language links and add new language links
1088 * @param $newLinkArray array Associative array mapping language code to the page
1089 * name
1091 public function setLanguageLinks( $newLinkArray ) {
1092 $this->mLanguageLinks = $newLinkArray;
1096 * Get the list of language links
1098 * @return Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
1100 public function getLanguageLinks() {
1101 return $this->mLanguageLinks;
1105 * Add an array of categories, with names in the keys
1107 * @param $categories Array mapping category name => sort key
1109 public function addCategoryLinks( $categories ) {
1110 global $wgContLang;
1112 if ( !is_array( $categories ) || count( $categories ) == 0 ) {
1113 return;
1116 # Add the links to a LinkBatch
1117 $arr = array( NS_CATEGORY => $categories );
1118 $lb = new LinkBatch;
1119 $lb->setArray( $arr );
1121 # Fetch existence plus the hiddencat property
1122 $dbr = wfGetDB( DB_SLAVE );
1123 $res = $dbr->select( array( 'page', 'page_props' ),
1124 array( 'page_id', 'page_namespace', 'page_title', 'page_len', 'page_is_redirect', 'page_latest', 'pp_value' ),
1125 $lb->constructSet( 'page', $dbr ),
1126 __METHOD__,
1127 array(),
1128 array( 'page_props' => array( 'LEFT JOIN', array( 'pp_propname' => 'hiddencat', 'pp_page = page_id' ) ) )
1131 # Add the results to the link cache
1132 $lb->addResultToCache( LinkCache::singleton(), $res );
1134 # Set all the values to 'normal'. This can be done with array_fill_keys in PHP 5.2.0+
1135 $categories = array_combine(
1136 array_keys( $categories ),
1137 array_fill( 0, count( $categories ), 'normal' )
1140 # Mark hidden categories
1141 foreach ( $res as $row ) {
1142 if ( isset( $row->pp_value ) ) {
1143 $categories[$row->page_title] = 'hidden';
1147 # Add the remaining categories to the skin
1148 if ( wfRunHooks( 'OutputPageMakeCategoryLinks', array( &$this, $categories, &$this->mCategoryLinks ) ) ) {
1149 foreach ( $categories as $category => $type ) {
1150 $origcategory = $category;
1151 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
1152 $wgContLang->findVariantLink( $category, $title, true );
1153 if ( $category != $origcategory ) {
1154 if ( array_key_exists( $category, $categories ) ) {
1155 continue;
1158 $text = $wgContLang->convertHtml( $title->getText() );
1159 $this->mCategories[] = $title->getText();
1160 $this->mCategoryLinks[$type][] = Linker::link( $title, $text );
1166 * Reset the category links (but not the category list) and add $categories
1168 * @param $categories Array mapping category name => sort key
1170 public function setCategoryLinks( $categories ) {
1171 $this->mCategoryLinks = array();
1172 $this->addCategoryLinks( $categories );
1176 * Get the list of category links, in a 2-D array with the following format:
1177 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
1178 * hidden categories) and $link a HTML fragment with a link to the category
1179 * page
1181 * @return Array
1183 public function getCategoryLinks() {
1184 return $this->mCategoryLinks;
1188 * Get the list of category names this page belongs to
1190 * @return Array of strings
1192 public function getCategories() {
1193 return $this->mCategories;
1197 * Do not allow scripts which can be modified by wiki users to load on this page;
1198 * only allow scripts bundled with, or generated by, the software.
1200 public function disallowUserJs() {
1201 $this->reduceAllowedModules(
1202 ResourceLoaderModule::TYPE_SCRIPTS,
1203 ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL
1208 * Return whether user JavaScript is allowed for this page
1209 * @deprecated since 1.18 Load modules with ResourceLoader, and origin and
1210 * trustworthiness is identified and enforced automagically.
1211 * Will be removed in 1.20.
1212 * @return Boolean
1214 public function isUserJsAllowed() {
1215 wfDeprecated( __METHOD__, '1.18' );
1216 return $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS ) >= ResourceLoaderModule::ORIGIN_USER_INDIVIDUAL;
1220 * Show what level of JavaScript / CSS untrustworthiness is allowed on this page
1221 * @see ResourceLoaderModule::$origin
1222 * @param $type String ResourceLoaderModule TYPE_ constant
1223 * @return Int ResourceLoaderModule ORIGIN_ class constant
1225 public function getAllowedModules( $type ){
1226 if( $type == ResourceLoaderModule::TYPE_COMBINED ){
1227 return min( array_values( $this->mAllowedModules ) );
1228 } else {
1229 return isset( $this->mAllowedModules[$type] )
1230 ? $this->mAllowedModules[$type]
1231 : ResourceLoaderModule::ORIGIN_ALL;
1236 * Set the highest level of CSS/JS untrustworthiness allowed
1237 * @param $type String ResourceLoaderModule TYPE_ constant
1238 * @param $level Int ResourceLoaderModule class constant
1240 public function setAllowedModules( $type, $level ){
1241 $this->mAllowedModules[$type] = $level;
1245 * As for setAllowedModules(), but don't inadvertantly make the page more accessible
1246 * @param $type String
1247 * @param $level Int ResourceLoaderModule class constant
1249 public function reduceAllowedModules( $type, $level ){
1250 $this->mAllowedModules[$type] = min( $this->getAllowedModules($type), $level );
1254 * Prepend $text to the body HTML
1256 * @param $text String: HTML
1258 public function prependHTML( $text ) {
1259 $this->mBodytext = $text . $this->mBodytext;
1263 * Append $text to the body HTML
1265 * @param $text String: HTML
1267 public function addHTML( $text ) {
1268 $this->mBodytext .= $text;
1272 * Shortcut for adding an Html::element via addHTML.
1274 * @since 1.19
1276 * @param $element string
1277 * @param $attribs array
1278 * @param $contents string
1280 public function addElement( $element, $attribs = array(), $contents = '' ) {
1281 $this->addHTML( Html::element( $element, $attribs, $contents ) );
1285 * Clear the body HTML
1287 public function clearHTML() {
1288 $this->mBodytext = '';
1292 * Get the body HTML
1294 * @return String: HTML
1296 public function getHTML() {
1297 return $this->mBodytext;
1301 * Add $text to the debug output
1303 * @param $text String: debug text
1305 public function debug( $text ) {
1306 $this->mDebugtext .= $text;
1310 * Get/set the ParserOptions object to use for wikitext parsing
1312 * @param $options ParserOptions|null either the ParserOption to use or null to only get the
1313 * current ParserOption object
1314 * @return ParserOptions object
1316 public function parserOptions( $options = null ) {
1317 if ( !$this->mParserOptions ) {
1318 $this->mParserOptions = ParserOptions::newFromContext( $this->getContext() );
1319 $this->mParserOptions->setEditSection( false );
1321 return wfSetVar( $this->mParserOptions, $options );
1325 * Set the revision ID which will be seen by the wiki text parser
1326 * for things such as embedded {{REVISIONID}} variable use.
1328 * @param $revid Mixed: an positive integer, or null
1329 * @return Mixed: previous value
1331 public function setRevisionId( $revid ) {
1332 $val = is_null( $revid ) ? null : intval( $revid );
1333 return wfSetVar( $this->mRevisionId, $val );
1337 * Get the displayed revision ID
1339 * @return Integer
1341 public function getRevisionId() {
1342 return $this->mRevisionId;
1346 * Set the timestamp of the revision which will be displayed. This is used
1347 * to avoid a extra DB call in Skin::lastModified().
1349 * @param $revid Mixed: string, or null
1350 * @return Mixed: previous value
1352 public function setRevisionTimestamp( $timestmap ) {
1353 return wfSetVar( $this->mRevisionTimestamp, $timestmap );
1357 * Get the timestamp of displayed revision.
1358 * This will be null if not filled by setRevisionTimestamp().
1360 * @return String or null
1362 public function getRevisionTimestamp() {
1363 return $this->mRevisionTimestamp;
1367 * Set the displayed file version
1369 * @param $file File|bool
1370 * @return Mixed: previous value
1372 public function setFileVersion( $file ) {
1373 $val = null;
1374 if ( $file instanceof File && $file->exists() ) {
1375 $val = array( 'time' => $file->getTimestamp(), 'sha1' => $file->getSha1() );
1377 return wfSetVar( $this->mFileVersion, $val, true );
1381 * Get the displayed file version
1383 * @return Array|null ('time' => MW timestamp, 'sha1' => sha1)
1385 public function getFileVersion() {
1386 return $this->mFileVersion;
1390 * Get the templates used on this page
1392 * @return Array (namespace => dbKey => revId)
1393 * @since 1.18
1395 public function getTemplateIds() {
1396 return $this->mTemplateIds;
1400 * Get the files used on this page
1402 * @return Array (dbKey => array('time' => MW timestamp or null, 'sha1' => sha1 or ''))
1403 * @since 1.18
1405 public function getFileSearchOptions() {
1406 return $this->mImageTimeKeys;
1410 * Convert wikitext to HTML and add it to the buffer
1411 * Default assumes that the current page title will be used.
1413 * @param $text String
1414 * @param $linestart Boolean: is this the start of a line?
1415 * @param $interface Boolean: is this text in the user interface language?
1417 public function addWikiText( $text, $linestart = true, $interface = true ) {
1418 $title = $this->getTitle(); // Work arround E_STRICT
1419 $this->addWikiTextTitle( $text, $title, $linestart, /*tidy*/false, $interface );
1423 * Add wikitext with a custom Title object
1425 * @param $text String: wikitext
1426 * @param $title Title object
1427 * @param $linestart Boolean: is this the start of a line?
1429 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
1430 $this->addWikiTextTitle( $text, $title, $linestart );
1434 * Add wikitext with a custom Title object and tidy enabled.
1436 * @param $text String: wikitext
1437 * @param $title Title object
1438 * @param $linestart Boolean: is this the start of a line?
1440 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
1441 $this->addWikiTextTitle( $text, $title, $linestart, true );
1445 * Add wikitext with tidy enabled
1447 * @param $text String: wikitext
1448 * @param $linestart Boolean: is this the start of a line?
1450 public function addWikiTextTidy( $text, $linestart = true ) {
1451 $title = $this->getTitle();
1452 $this->addWikiTextTitleTidy( $text, $title, $linestart );
1456 * Add wikitext with a custom Title object
1458 * @param $text String: wikitext
1459 * @param $title Title object
1460 * @param $linestart Boolean: is this the start of a line?
1461 * @param $tidy Boolean: whether to use tidy
1462 * @param $interface Boolean: whether it is an interface message
1463 * (for example disables conversion)
1465 public function addWikiTextTitle( $text, &$title, $linestart, $tidy = false, $interface = false ) {
1466 global $wgParser;
1468 wfProfileIn( __METHOD__ );
1470 $popts = $this->parserOptions();
1471 $oldTidy = $popts->setTidy( $tidy );
1472 $popts->setInterfaceMessage( (bool) $interface );
1474 $parserOutput = $wgParser->parse(
1475 $text, $title, $popts,
1476 $linestart, true, $this->mRevisionId
1479 $popts->setTidy( $oldTidy );
1481 $this->addParserOutput( $parserOutput );
1483 wfProfileOut( __METHOD__ );
1487 * Add a ParserOutput object, but without Html
1489 * @param $parserOutput ParserOutput object
1491 public function addParserOutputNoText( &$parserOutput ) {
1492 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
1493 $this->addCategoryLinks( $parserOutput->getCategories() );
1494 $this->mNewSectionLink = $parserOutput->getNewSection();
1495 $this->mHideNewSectionLink = $parserOutput->getHideNewSection();
1497 $this->mParseWarnings = $parserOutput->getWarnings();
1498 if ( !$parserOutput->isCacheable() ) {
1499 $this->enableClientCache( false );
1501 $this->mNoGallery = $parserOutput->getNoGallery();
1502 $this->mHeadItems = array_merge( $this->mHeadItems, $parserOutput->getHeadItems() );
1503 $this->addModules( $parserOutput->getModules() );
1504 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1505 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1506 $this->addModuleMessages( $parserOutput->getModuleMessages() );
1508 // Template versioning...
1509 foreach ( (array)$parserOutput->getTemplateIds() as $ns => $dbks ) {
1510 if ( isset( $this->mTemplateIds[$ns] ) ) {
1511 $this->mTemplateIds[$ns] = $dbks + $this->mTemplateIds[$ns];
1512 } else {
1513 $this->mTemplateIds[$ns] = $dbks;
1516 // File versioning...
1517 foreach ( (array)$parserOutput->getFileSearchOptions() as $dbk => $data ) {
1518 $this->mImageTimeKeys[$dbk] = $data;
1521 // Hooks registered in the object
1522 global $wgParserOutputHooks;
1523 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1524 list( $hookName, $data ) = $hookInfo;
1525 if ( isset( $wgParserOutputHooks[$hookName] ) ) {
1526 call_user_func( $wgParserOutputHooks[$hookName], $this, $parserOutput, $data );
1530 wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
1534 * Add a ParserOutput object
1536 * @param $parserOutput ParserOutput
1538 function addParserOutput( &$parserOutput ) {
1539 $this->addParserOutputNoText( $parserOutput );
1540 $text = $parserOutput->getText();
1541 wfRunHooks( 'OutputPageBeforeHTML', array( &$this, &$text ) );
1542 $this->addHTML( $text );
1547 * Add the output of a QuickTemplate to the output buffer
1549 * @param $template QuickTemplate
1551 public function addTemplate( &$template ) {
1552 ob_start();
1553 $template->execute();
1554 $this->addHTML( ob_get_contents() );
1555 ob_end_clean();
1559 * Parse wikitext and return the HTML.
1561 * @param $text String
1562 * @param $linestart Boolean: is this the start of a line?
1563 * @param $interface Boolean: use interface language ($wgLang instead of
1564 * $wgContLang) while parsing language sensitive magic
1565 * words like GRAMMAR and PLURAL. This also disables
1566 * LanguageConverter.
1567 * @param $language Language object: target language object, will override
1568 * $interface
1569 * @return String: HTML
1571 public function parse( $text, $linestart = true, $interface = false, $language = null ) {
1572 global $wgParser;
1574 if( is_null( $this->getTitle() ) ) {
1575 throw new MWException( 'Empty $mTitle in ' . __METHOD__ );
1578 $popts = $this->parserOptions();
1579 if ( $interface ) {
1580 $popts->setInterfaceMessage( true );
1582 if ( $language !== null ) {
1583 $oldLang = $popts->setTargetLanguage( $language );
1586 $parserOutput = $wgParser->parse(
1587 $text, $this->getTitle(), $popts,
1588 $linestart, true, $this->mRevisionId
1591 if ( $interface ) {
1592 $popts->setInterfaceMessage( false );
1594 if ( $language !== null ) {
1595 $popts->setTargetLanguage( $oldLang );
1598 return $parserOutput->getText();
1602 * Parse wikitext, strip paragraphs, and return the HTML.
1604 * @param $text String
1605 * @param $linestart Boolean: is this the start of a line?
1606 * @param $interface Boolean: use interface language ($wgLang instead of
1607 * $wgContLang) while parsing language sensitive magic
1608 * words like GRAMMAR and PLURAL
1609 * @return String: HTML
1611 public function parseInline( $text, $linestart = true, $interface = false ) {
1612 $parsed = $this->parse( $text, $linestart, $interface );
1614 $m = array();
1615 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?/sU', $parsed, $m ) ) {
1616 $parsed = $m[1];
1619 return $parsed;
1623 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1625 * @param $maxage Integer: maximum cache time on the Squid, in seconds.
1627 public function setSquidMaxage( $maxage ) {
1628 $this->mSquidMaxage = $maxage;
1632 * Use enableClientCache(false) to force it to send nocache headers
1634 * @param $state bool
1636 * @return bool
1638 public function enableClientCache( $state ) {
1639 return wfSetVar( $this->mEnableClientCache, $state );
1643 * Get the list of cookies that will influence on the cache
1645 * @return Array
1647 function getCacheVaryCookies() {
1648 global $wgCookiePrefix, $wgCacheVaryCookies;
1649 static $cookies;
1650 if ( $cookies === null ) {
1651 $cookies = array_merge(
1652 array(
1653 "{$wgCookiePrefix}Token",
1654 "{$wgCookiePrefix}LoggedOut",
1655 session_name()
1657 $wgCacheVaryCookies
1659 wfRunHooks( 'GetCacheVaryCookies', array( $this, &$cookies ) );
1661 return $cookies;
1665 * Return whether this page is not cacheable because "useskin" or "uselang"
1666 * URL parameters were passed.
1668 * @return Boolean
1670 function uncacheableBecauseRequestVars() {
1671 $request = $this->getRequest();
1672 return $request->getText( 'useskin', false ) === false
1673 && $request->getText( 'uselang', false ) === false;
1677 * Check if the request has a cache-varying cookie header
1678 * If it does, it's very important that we don't allow public caching
1680 * @return Boolean
1682 function haveCacheVaryCookies() {
1683 $cookieHeader = $this->getRequest()->getHeader( 'cookie' );
1684 if ( $cookieHeader === false ) {
1685 return false;
1687 $cvCookies = $this->getCacheVaryCookies();
1688 foreach ( $cvCookies as $cookieName ) {
1689 # Check for a simple string match, like the way squid does it
1690 if ( strpos( $cookieHeader, $cookieName ) !== false ) {
1691 wfDebug( __METHOD__ . ": found $cookieName\n" );
1692 return true;
1695 wfDebug( __METHOD__ . ": no cache-varying cookies found\n" );
1696 return false;
1700 * Add an HTTP header that will influence on the cache
1702 * @param $header String: header name
1703 * @param $option Array|null
1704 * @todo FIXME: Document the $option parameter; it appears to be for
1705 * X-Vary-Options but what format is acceptable?
1707 public function addVaryHeader( $header, $option = null ) {
1708 if ( !array_key_exists( $header, $this->mVaryHeader ) ) {
1709 $this->mVaryHeader[$header] = (array)$option;
1710 } elseif( is_array( $option ) ) {
1711 if( is_array( $this->mVaryHeader[$header] ) ) {
1712 $this->mVaryHeader[$header] = array_merge( $this->mVaryHeader[$header], $option );
1713 } else {
1714 $this->mVaryHeader[$header] = $option;
1717 $this->mVaryHeader[$header] = array_unique( (array)$this->mVaryHeader[$header] );
1721 * Get a complete X-Vary-Options header
1723 * @return String
1725 public function getXVO() {
1726 $cvCookies = $this->getCacheVaryCookies();
1728 $cookiesOption = array();
1729 foreach ( $cvCookies as $cookieName ) {
1730 $cookiesOption[] = 'string-contains=' . $cookieName;
1732 $this->addVaryHeader( 'Cookie', $cookiesOption );
1734 $headers = array();
1735 foreach( $this->mVaryHeader as $header => $option ) {
1736 $newheader = $header;
1737 if( is_array( $option ) ) {
1738 $newheader .= ';' . implode( ';', $option );
1740 $headers[] = $newheader;
1742 $xvo = 'X-Vary-Options: ' . implode( ',', $headers );
1744 return $xvo;
1748 * bug 21672: Add Accept-Language to Vary and XVO headers
1749 * if there's no 'variant' parameter existed in GET.
1751 * For example:
1752 * /w/index.php?title=Main_page should always be served; but
1753 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
1755 function addAcceptLanguage() {
1756 $lang = $this->getTitle()->getPageLanguage();
1757 if( !$this->getRequest()->getCheck( 'variant' ) && $lang->hasVariants() ) {
1758 $variants = $lang->getVariants();
1759 $aloption = array();
1760 foreach ( $variants as $variant ) {
1761 if( $variant === $lang->getCode() ) {
1762 continue;
1763 } else {
1764 $aloption[] = 'string-contains=' . $variant;
1766 // IE and some other browsers use another form of language code
1767 // in their Accept-Language header, like "zh-CN" or "zh-TW".
1768 // We should handle these too.
1769 $ievariant = explode( '-', $variant );
1770 if ( count( $ievariant ) == 2 ) {
1771 $ievariant[1] = strtoupper( $ievariant[1] );
1772 $ievariant = implode( '-', $ievariant );
1773 $aloption[] = 'string-contains=' . $ievariant;
1777 $this->addVaryHeader( 'Accept-Language', $aloption );
1782 * Set a flag which will cause an X-Frame-Options header appropriate for
1783 * edit pages to be sent. The header value is controlled by
1784 * $wgEditPageFrameOptions.
1786 * This is the default for special pages. If you display a CSRF-protected
1787 * form on an ordinary view page, then you need to call this function.
1789 * @param $enable bool
1791 public function preventClickjacking( $enable = true ) {
1792 $this->mPreventClickjacking = $enable;
1796 * Turn off frame-breaking. Alias for $this->preventClickjacking(false).
1797 * This can be called from pages which do not contain any CSRF-protected
1798 * HTML form.
1800 public function allowClickjacking() {
1801 $this->mPreventClickjacking = false;
1805 * Get the X-Frame-Options header value (without the name part), or false
1806 * if there isn't one. This is used by Skin to determine whether to enable
1807 * JavaScript frame-breaking, for clients that don't support X-Frame-Options.
1809 * @return string
1811 public function getFrameOptions() {
1812 global $wgBreakFrames, $wgEditPageFrameOptions;
1813 if ( $wgBreakFrames ) {
1814 return 'DENY';
1815 } elseif ( $this->mPreventClickjacking && $wgEditPageFrameOptions ) {
1816 return $wgEditPageFrameOptions;
1818 return false;
1822 * Send cache control HTTP headers
1824 public function sendCacheControl() {
1825 global $wgUseSquid, $wgUseESI, $wgUseETag, $wgSquidMaxage, $wgUseXVO;
1827 $response = $this->getRequest()->response();
1828 if ( $wgUseETag && $this->mETag ) {
1829 $response->header( "ETag: $this->mETag" );
1832 $this->addAcceptLanguage();
1834 # don't serve compressed data to clients who can't handle it
1835 # maintain different caches for logged-in users and non-logged in ones
1836 $response->header( 'Vary: ' . join( ', ', array_keys( $this->mVaryHeader ) ) );
1838 if ( $wgUseXVO ) {
1839 # Add an X-Vary-Options header for Squid with Wikimedia patches
1840 $response->header( $this->getXVO() );
1843 if( !$this->uncacheableBecauseRequestVars() && $this->mEnableClientCache ) {
1845 $wgUseSquid && session_id() == '' && !$this->isPrintable() &&
1846 $this->mSquidMaxage != 0 && !$this->haveCacheVaryCookies()
1849 if ( $wgUseESI ) {
1850 # We'll purge the proxy cache explicitly, but require end user agents
1851 # to revalidate against the proxy on each visit.
1852 # Surrogate-Control controls our Squid, Cache-Control downstream caches
1853 wfDebug( __METHOD__ . ": proxy caching with ESI; {$this->mLastModified} **\n", false );
1854 # start with a shorter timeout for initial testing
1855 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
1856 $response->header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
1857 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
1858 } else {
1859 # We'll purge the proxy cache for anons explicitly, but require end user agents
1860 # to revalidate against the proxy on each visit.
1861 # IMPORTANT! The Squid needs to replace the Cache-Control header with
1862 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
1863 wfDebug( __METHOD__ . ": local proxy caching; {$this->mLastModified} **\n", false );
1864 # start with a shorter timeout for initial testing
1865 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
1866 $response->header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
1868 } else {
1869 # We do want clients to cache if they can, but they *must* check for updates
1870 # on revisiting the page.
1871 wfDebug( __METHOD__ . ": private caching; {$this->mLastModified} **\n", false );
1872 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1873 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
1875 if($this->mLastModified) {
1876 $response->header( "Last-Modified: {$this->mLastModified}" );
1878 } else {
1879 wfDebug( __METHOD__ . ": no caching **\n", false );
1881 # In general, the absence of a last modified header should be enough to prevent
1882 # the client from using its cache. We send a few other things just to make sure.
1883 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1884 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1885 $response->header( 'Pragma: no-cache' );
1890 * Get the message associed with the HTTP response code $code
1892 * @param $code Integer: status code
1893 * @return String or null: message or null if $code is not in the list of
1894 * messages
1896 * @deprecated since 1.18 Use HttpStatus::getMessage() instead.
1898 public static function getStatusMessage( $code ) {
1899 wfDeprecated( __METHOD__ );
1900 return HttpStatus::getMessage( $code );
1904 * Finally, all the text has been munged and accumulated into
1905 * the object, let's actually output it:
1907 public function output() {
1908 global $wgLanguageCode, $wgDebugRedirects, $wgMimeType, $wgVaryOnXFP;
1910 if( $this->mDoNothing ) {
1911 return;
1914 wfProfileIn( __METHOD__ );
1916 $response = $this->getRequest()->response();
1918 if ( $this->mRedirect != '' ) {
1919 # Standards require redirect URLs to be absolute
1920 $this->mRedirect = wfExpandUrl( $this->mRedirect, PROTO_CURRENT );
1922 $redirect = $this->mRedirect;
1923 $code = $this->mRedirectCode;
1925 if( wfRunHooks( "BeforePageRedirect", array( $this, &$redirect, &$code ) ) ) {
1926 if( $code == '301' || $code == '303' ) {
1927 if( !$wgDebugRedirects ) {
1928 $message = HttpStatus::getMessage( $code );
1929 $response->header( "HTTP/1.1 $code $message" );
1931 $this->mLastModified = wfTimestamp( TS_RFC2822 );
1933 if ( $wgVaryOnXFP ) {
1934 $this->addVaryHeader( 'X-Forwarded-Proto' );
1936 $this->sendCacheControl();
1938 $response->header( "Content-Type: text/html; charset=utf-8" );
1939 if( $wgDebugRedirects ) {
1940 $url = htmlspecialchars( $redirect );
1941 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
1942 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
1943 print "</body>\n</html>\n";
1944 } else {
1945 $response->header( 'Location: ' . $redirect );
1949 wfProfileOut( __METHOD__ );
1950 return;
1951 } elseif ( $this->mStatusCode ) {
1952 $message = HttpStatus::getMessage( $this->mStatusCode );
1953 if ( $message ) {
1954 $response->header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $message );
1958 # Buffer output; final headers may depend on later processing
1959 ob_start();
1961 $response->header( "Content-type: $wgMimeType; charset=UTF-8" );
1962 $response->header( 'Content-language: ' . $wgLanguageCode );
1964 // Prevent framing, if requested
1965 $frameOptions = $this->getFrameOptions();
1966 if ( $frameOptions ) {
1967 $response->header( "X-Frame-Options: $frameOptions" );
1970 if ( $this->mArticleBodyOnly ) {
1971 $this->out( $this->mBodytext );
1972 } else {
1973 $this->addDefaultModules();
1975 $sk = $this->getSkin();
1977 // Hook that allows last minute changes to the output page, e.g.
1978 // adding of CSS or Javascript by extensions.
1979 wfRunHooks( 'BeforePageDisplay', array( &$this, &$sk ) );
1981 wfProfileIn( 'Output-skin' );
1982 $sk->outputPage();
1983 wfProfileOut( 'Output-skin' );
1986 $this->sendCacheControl();
1987 ob_end_flush();
1988 wfProfileOut( __METHOD__ );
1992 * Actually output something with print().
1994 * @param $ins String: the string to output
1996 public function out( $ins ) {
1997 print $ins;
2001 * Produce a "user is blocked" page.
2002 * @deprecated since 1.18
2004 function blockedPage() {
2005 throw new UserBlockedError( $this->getUser()->mBlock );
2009 * Prepare this object to display an error page; disable caching and
2010 * indexing, clear the current text and redirect, set the page's title
2011 * and optionally an custom HTML title (content of the <title> tag).
2013 * @param $pageTitle String|Message will be passed directly to setPageTitle()
2014 * @param $htmlTitle String|Message will be passed directly to setHTMLTitle();
2015 * optional, if not passed the <title> attribute will be
2016 * based on $pageTitle
2018 public function prepareErrorPage( $pageTitle, $htmlTitle = false ) {
2019 if ( $this->getTitle() ) {
2020 $this->mDebugtext .= 'Original title: ' . $this->getTitle()->getPrefixedText() . "\n";
2023 $this->setPageTitle( $pageTitle );
2024 if ( $htmlTitle !== false ) {
2025 $this->setHTMLTitle( $htmlTitle );
2027 $this->setRobotPolicy( 'noindex,nofollow' );
2028 $this->setArticleRelated( false );
2029 $this->enableClientCache( false );
2030 $this->mRedirect = '';
2031 $this->clearSubtitle();
2032 $this->clearHTML();
2036 * Output a standard error page
2038 * showErrorPage( 'titlemsg', 'pagetextmsg', array( 'param1', 'param2' ) );
2039 * showErrorPage( 'titlemsg', $messageObject );
2041 * @param $title String: message key for page title
2042 * @param $msg Mixed: message key (string) for page text, or a Message object
2043 * @param $params Array: message parameters; ignored if $msg is a Message object
2045 public function showErrorPage( $title, $msg, $params = array() ) {
2046 $this->prepareErrorPage( $this->msg( $title ), $this->msg( 'errorpagetitle' ) );
2048 if ( $msg instanceof Message ){
2049 $this->addHTML( $msg->parse() );
2050 } else {
2051 $this->addWikiMsgArray( $msg, $params );
2054 $this->returnToMain();
2058 * Output a standard permission error page
2060 * @param $errors Array: error message keys
2061 * @param $action String: action that was denied or null if unknown
2063 public function showPermissionsErrorPage( $errors, $action = null ) {
2064 global $wgGroupPermissions;
2066 // For some action (read, edit, create and upload), display a "login to do this action"
2067 // error if all of the following conditions are met:
2068 // 1. the user is not logged in
2069 // 2. the only error is insufficient permissions (i.e. no block or something else)
2070 // 3. the error can be avoided simply by logging in
2071 if ( in_array( $action, array( 'read', 'edit', 'createpage', 'createtalk', 'upload' ) )
2072 && $this->getUser()->isAnon() && count( $errors ) == 1 && isset( $errors[0][0] )
2073 && ( $errors[0][0] == 'badaccess-groups' || $errors[0][0] == 'badaccess-group0' )
2074 && ( ( isset( $wgGroupPermissions['user'][$action] ) && $wgGroupPermissions['user'][$action] )
2075 || ( isset( $wgGroupPermissions['autoconfirmed'][$action] ) && $wgGroupPermissions['autoconfirmed'][$action] ) )
2077 $displayReturnto = null;
2079 # Due to bug 32276, if a user does not have read permissions,
2080 # $this->getTitle() will just give Special:Badtitle, which is
2081 # not especially useful as a returnto parameter. Use the title
2082 # from the request instead, if there was one.
2083 $request = $this->getRequest();
2084 $returnto = Title::newFromURL( $request->getVal( 'title', '' ) );
2085 if ( $action == 'edit' ) {
2086 $msg = 'whitelistedittext';
2087 $displayReturnto = $returnto;
2088 } elseif ( $action == 'createpage' || $action == 'createtalk' ) {
2089 $msg = 'nocreatetext';
2090 } elseif ( $action == 'upload' ) {
2091 $msg = 'uploadnologintext';
2092 } else { # Read
2093 $msg = 'loginreqpagetext';
2094 $displayReturnto = Title::newMainPage();
2097 $query = array();
2099 if ( $returnto ) {
2100 $query['returnto'] = $returnto->getPrefixedText();
2102 if ( !$request->wasPosted() ) {
2103 $returntoquery = $request->getValues();
2104 unset( $returntoquery['title'] );
2105 unset( $returntoquery['returnto'] );
2106 unset( $returntoquery['returntoquery'] );
2107 $query['returntoquery'] = wfArrayToCGI( $returntoquery );
2110 $loginLink = Linker::linkKnown(
2111 SpecialPage::getTitleFor( 'Userlogin' ),
2112 $this->msg( 'loginreqlink' )->escaped(),
2113 array(),
2114 $query
2117 $this->prepareErrorPage( $this->msg( 'loginreqtitle' ) );
2118 $this->addHTML( $this->msg( $msg )->rawParams( $loginLink )->parse() );
2120 # Don't return to a page the user can't read otherwise
2121 # we'll end up in a pointless loop
2122 if ( $displayReturnto && $displayReturnto->userCan( 'read', $this->getUser() ) ) {
2123 $this->returnToMain( null, $displayReturnto );
2125 } else {
2126 $this->prepareErrorPage( $this->msg( 'permissionserrors' ) );
2127 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
2132 * Display an error page indicating that a given version of MediaWiki is
2133 * required to use it
2135 * @param $version Mixed: the version of MediaWiki needed to use the page
2137 public function versionRequired( $version ) {
2138 $this->prepareErrorPage( $this->msg( 'versionrequired', $version ) );
2140 $this->addWikiMsg( 'versionrequiredtext', $version );
2141 $this->returnToMain();
2145 * Display an error page noting that a given permission bit is required.
2146 * @deprecated since 1.18, just throw the exception directly
2147 * @param $permission String: key required
2149 public function permissionRequired( $permission ) {
2150 throw new PermissionsError( $permission );
2154 * Produce the stock "please login to use the wiki" page
2156 * @deprecated in 1.19; throw the exception directly
2158 public function loginToUse() {
2159 throw new PermissionsError( 'read' );
2163 * Format a list of error messages
2165 * @param $errors Array of arrays returned by Title::getUserPermissionsErrors
2166 * @param $action String: action that was denied or null if unknown
2167 * @return String: the wikitext error-messages, formatted into a list.
2169 public function formatPermissionsErrorMessage( $errors, $action = null ) {
2170 if ( $action == null ) {
2171 $text = $this->msg( 'permissionserrorstext', count( $errors ) )->plain() . "\n\n";
2172 } else {
2173 $action_desc = $this->msg( "action-$action" )->plain();
2174 $text = $this->msg(
2175 'permissionserrorstext-withaction',
2176 count( $errors ),
2177 $action_desc
2178 )->plain() . "\n\n";
2181 if ( count( $errors ) > 1 ) {
2182 $text .= '<ul class="permissions-errors">' . "\n";
2184 foreach( $errors as $error ) {
2185 $text .= '<li>';
2186 $text .= call_user_func_array( array( $this, 'msg' ), $error )->plain();
2187 $text .= "</li>\n";
2189 $text .= '</ul>';
2190 } else {
2191 $text .= "<div class=\"permissions-errors\">\n" .
2192 call_user_func_array( array( $this, 'msg' ), reset( $errors ) )->plain() .
2193 "\n</div>";
2196 return $text;
2200 * Display a page stating that the Wiki is in read-only mode,
2201 * and optionally show the source of the page that the user
2202 * was trying to edit. Should only be called (for this
2203 * purpose) after wfReadOnly() has returned true.
2205 * For historical reasons, this function is _also_ used to
2206 * show the error message when a user tries to edit a page
2207 * they are not allowed to edit. (Unless it's because they're
2208 * blocked, then we show blockedPage() instead.) In this
2209 * case, the second parameter should be set to true and a list
2210 * of reasons supplied as the third parameter.
2212 * @todo Needs to be split into multiple functions.
2214 * @param $source String: source code to show (or null).
2215 * @param $protected Boolean: is this a permissions error?
2216 * @param $reasons Array: list of reasons for this error, as returned by Title::getUserPermissionsErrors().
2217 * @param $action String: action that was denied or null if unknown
2219 public function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
2220 $this->setRobotPolicy( 'noindex,nofollow' );
2221 $this->setArticleRelated( false );
2223 // If no reason is given, just supply a default "I can't let you do
2224 // that, Dave" message. Should only occur if called by legacy code.
2225 if ( $protected && empty( $reasons ) ) {
2226 $reasons[] = array( 'badaccess-group0' );
2229 if ( !empty( $reasons ) ) {
2230 // Permissions error
2231 if( $source ) {
2232 $this->setPageTitle( $this->msg( 'viewsource-title', $this->getTitle()->getPrefixedText() ) );
2233 $this->addBacklinkSubtitle( $this->getTitle() );
2234 } else {
2235 $this->setPageTitle( $this->msg( 'badaccess' ) );
2237 $this->addWikiText( $this->formatPermissionsErrorMessage( $reasons, $action ) );
2238 } else {
2239 // Wiki is read only
2240 throw new ReadOnlyError;
2243 // Show source, if supplied
2244 if( is_string( $source ) ) {
2245 $this->addWikiMsg( 'viewsourcetext' );
2247 $pageLang = $this->getTitle()->getPageLanguage();
2248 $params = array(
2249 'id' => 'wpTextbox1',
2250 'name' => 'wpTextbox1',
2251 'cols' => $this->getUser()->getOption( 'cols' ),
2252 'rows' => $this->getUser()->getOption( 'rows' ),
2253 'readonly' => 'readonly',
2254 'lang' => $pageLang->getHtmlCode(),
2255 'dir' => $pageLang->getDir(),
2257 $this->addHTML( Html::element( 'textarea', $params, $source ) );
2259 // Show templates used by this article
2260 $templates = Linker::formatTemplates( $this->getTitle()->getTemplateLinksFrom() );
2261 $this->addHTML( "<div class='templatesUsed'>
2262 $templates
2263 </div>
2264 " );
2267 # If the title doesn't exist, it's fairly pointless to print a return
2268 # link to it. After all, you just tried editing it and couldn't, so
2269 # what's there to do there?
2270 if( $this->getTitle()->exists() ) {
2271 $this->returnToMain( null, $this->getTitle() );
2276 * Turn off regular page output and return an error reponse
2277 * for when rate limiting has triggered.
2279 public function rateLimited() {
2280 throw new ThrottledError;
2284 * Show a warning about slave lag
2286 * If the lag is higher than $wgSlaveLagCritical seconds,
2287 * then the warning is a bit more obvious. If the lag is
2288 * lower than $wgSlaveLagWarning, then no warning is shown.
2290 * @param $lag Integer: slave lag
2292 public function showLagWarning( $lag ) {
2293 global $wgSlaveLagWarning, $wgSlaveLagCritical;
2294 if( $lag >= $wgSlaveLagWarning ) {
2295 $message = $lag < $wgSlaveLagCritical
2296 ? 'lag-warn-normal'
2297 : 'lag-warn-high';
2298 $wrap = Html::rawElement( 'div', array( 'class' => "mw-{$message}" ), "\n$1\n" );
2299 $this->wrapWikiMsg( "$wrap\n", array( $message, $this->getLanguage()->formatNum( $lag ) ) );
2303 public function showFatalError( $message ) {
2304 $this->prepareErrorPage( $this->msg( 'internalerror' ) );
2306 $this->addHTML( $message );
2309 public function showUnexpectedValueError( $name, $val ) {
2310 $this->showFatalError( $this->msg( 'unexpected', $name, $val )->text() );
2313 public function showFileCopyError( $old, $new ) {
2314 $this->showFatalError( $this->msg( 'filecopyerror', $old, $new )->text() );
2317 public function showFileRenameError( $old, $new ) {
2318 $this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->text() );
2321 public function showFileDeleteError( $name ) {
2322 $this->showFatalError( $this->msg( 'filedeleteerror', $name )->text() );
2325 public function showFileNotFoundError( $name ) {
2326 $this->showFatalError( $this->msg( 'filenotfound', $name )->text() );
2330 * Add a "return to" link pointing to a specified title
2332 * @param $title Title to link
2333 * @param $query String query string
2334 * @param $text String text of the link (input is not escaped)
2336 public function addReturnTo( $title, $query = array(), $text = null ) {
2337 $this->addLink( array( 'rel' => 'next', 'href' => $title->getFullURL() ) );
2338 $link = $this->msg( 'returnto' )->rawParams(
2339 Linker::link( $title, $text, array(), $query ) )->escaped();
2340 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2344 * Add a "return to" link pointing to a specified title,
2345 * or the title indicated in the request, or else the main page
2347 * @param $unused
2348 * @param $returnto Title or String to return to
2349 * @param $returntoquery String: query string for the return to link
2351 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2352 if ( $returnto == null ) {
2353 $returnto = $this->getRequest()->getText( 'returnto' );
2356 if ( $returntoquery == null ) {
2357 $returntoquery = $this->getRequest()->getText( 'returntoquery' );
2360 if ( $returnto === '' ) {
2361 $returnto = Title::newMainPage();
2364 if ( is_object( $returnto ) ) {
2365 $titleObj = $returnto;
2366 } else {
2367 $titleObj = Title::newFromText( $returnto );
2369 if ( !is_object( $titleObj ) ) {
2370 $titleObj = Title::newMainPage();
2373 $this->addReturnTo( $titleObj, $returntoquery );
2377 * @param $sk Skin The given Skin
2378 * @param $includeStyle Boolean: unused
2379 * @return String: The doctype, opening <html>, and head element.
2381 public function headElement( Skin $sk, $includeStyle = true ) {
2382 global $wgContLang;
2384 $userdir = $this->getLanguage()->getDir();
2385 $sitedir = $wgContLang->getDir();
2387 if ( $sk->commonPrintStylesheet() ) {
2388 $this->addModuleStyles( 'mediawiki.legacy.wikiprintable' );
2391 $ret = Html::htmlHeader( array( 'lang' => $this->getLanguage()->getHtmlCode(), 'dir' => $userdir, 'class' => 'client-nojs' ) );
2393 if ( $this->getHTMLTitle() == '' ) {
2394 $this->setHTMLTitle( $this->msg( 'pagetitle', $this->getPageTitle() ) );
2397 $openHead = Html::openElement( 'head' );
2398 if ( $openHead ) {
2399 # Don't bother with the newline if $head == ''
2400 $ret .= "$openHead\n";
2403 $ret .= Html::element( 'title', null, $this->getHTMLTitle() ) . "\n";
2405 $ret .= implode( "\n", array(
2406 $this->getHeadLinks( null, true ),
2407 $this->buildCssLinks(),
2408 $this->getHeadScripts(),
2409 $this->getHeadItems()
2410 ) );
2412 $closeHead = Html::closeElement( 'head' );
2413 if ( $closeHead ) {
2414 $ret .= "$closeHead\n";
2417 $bodyAttrs = array();
2419 # Classes for LTR/RTL directionality support
2420 $bodyAttrs['class'] = "mediawiki $userdir sitedir-$sitedir";
2422 if ( $this->getLanguage()->capitalizeAllNouns() ) {
2423 # A <body> class is probably not the best way to do this . . .
2424 $bodyAttrs['class'] .= ' capitalize-all-nouns';
2426 $bodyAttrs['class'] .= ' ' . $sk->getPageClasses( $this->getTitle() );
2427 $bodyAttrs['class'] .= ' skin-' . Sanitizer::escapeClass( $sk->getSkinName() );
2428 $bodyAttrs['class'] .= ' action-' . Sanitizer::escapeClass( Action::getActionName( $this->getContext() ) );
2430 $sk->addToBodyAttributes( $this, $bodyAttrs ); // Allow skins to add body attributes they need
2431 wfRunHooks( 'OutputPageBodyAttributes', array( $this, $sk, &$bodyAttrs ) );
2433 $ret .= Html::openElement( 'body', $bodyAttrs ) . "\n";
2435 return $ret;
2439 * Add the default ResourceLoader modules to this object
2441 private function addDefaultModules() {
2442 global $wgIncludeLegacyJavaScript, $wgPreloadJavaScriptMwUtil, $wgUseAjax,
2443 $wgAjaxWatch, $wgEnableMWSuggest;
2445 // Add base resources
2446 $this->addModules( array(
2447 'mediawiki.user',
2448 'mediawiki.page.startup',
2449 'mediawiki.page.ready',
2450 ) );
2451 if ( $wgIncludeLegacyJavaScript ){
2452 $this->addModules( 'mediawiki.legacy.wikibits' );
2455 if ( $wgPreloadJavaScriptMwUtil ) {
2456 $this->addModules( 'mediawiki.util' );
2459 MWDebug::addModules( $this );
2461 // Add various resources if required
2462 if ( $wgUseAjax ) {
2463 $this->addModules( 'mediawiki.legacy.ajax' );
2465 wfRunHooks( 'AjaxAddScript', array( &$this ) );
2467 if( $wgAjaxWatch && $this->getUser()->isLoggedIn() ) {
2468 $this->addModules( 'mediawiki.action.watch.ajax' );
2471 if ( $wgEnableMWSuggest && !$this->getUser()->getOption( 'disablesuggest', false ) ) {
2472 $this->addModules( 'mediawiki.legacy.mwsuggest' );
2476 if ( $this->getUser()->getBoolOption( 'editsectiononrightclick' ) ) {
2477 $this->addModules( 'mediawiki.action.view.rightClickEdit' );
2480 # Crazy edit-on-double-click stuff
2481 if ( $this->isArticle() && $this->getUser()->getOption( 'editondblclick' ) ) {
2482 $this->addModules( 'mediawiki.action.view.dblClickEdit' );
2487 * Get a ResourceLoader object associated with this OutputPage
2489 * @return ResourceLoader
2491 public function getResourceLoader() {
2492 if ( is_null( $this->mResourceLoader ) ) {
2493 $this->mResourceLoader = new ResourceLoader();
2495 return $this->mResourceLoader;
2499 * TODO: Document
2500 * @param $modules Array/string with the module name(s)
2501 * @param $only String ResourceLoaderModule TYPE_ class constant
2502 * @param $useESI boolean
2503 * @param $extraQuery Array with extra query parameters to add to each request. array( param => value )
2504 * @param $loadCall boolean If true, output an (asynchronous) mw.loader.load() call rather than a <script src="..."> tag
2505 * @return string html <script> and <style> tags
2507 protected function makeResourceLoaderLink( $modules, $only, $useESI = false, array $extraQuery = array(), $loadCall = false ) {
2508 global $wgResourceLoaderUseESI, $wgResourceLoaderInlinePrivateModules;
2510 if ( !count( $modules ) ) {
2511 return '';
2514 if ( count( $modules ) > 1 ) {
2515 // Remove duplicate module requests
2516 $modules = array_unique( (array) $modules );
2517 // Sort module names so requests are more uniform
2518 sort( $modules );
2520 if ( ResourceLoader::inDebugMode() ) {
2521 // Recursively call us for every item
2522 $links = '';
2523 foreach ( $modules as $name ) {
2524 $links .= $this->makeResourceLoaderLink( $name, $only, $useESI );
2526 return $links;
2530 // Create keyed-by-group list of module objects from modules list
2531 $groups = array();
2532 $resourceLoader = $this->getResourceLoader();
2533 foreach ( (array) $modules as $name ) {
2534 $module = $resourceLoader->getModule( $name );
2535 # Check that we're allowed to include this module on this page
2536 if ( !$module
2537 || ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS )
2538 && $only == ResourceLoaderModule::TYPE_SCRIPTS )
2539 || ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_STYLES )
2540 && $only == ResourceLoaderModule::TYPE_STYLES )
2543 continue;
2546 $group = $module->getGroup();
2547 if ( !isset( $groups[$group] ) ) {
2548 $groups[$group] = array();
2550 $groups[$group][$name] = $module;
2553 $links = '';
2554 foreach ( $groups as $group => $modules ) {
2555 // Special handling for user-specific groups
2556 $user = null;
2557 if ( ( $group === 'user' || $group === 'private' ) && $this->getUser()->isLoggedIn() ) {
2558 $user = $this->getUser()->getName();
2561 // Create a fake request based on the one we are about to make so modules return
2562 // correct timestamp and emptiness data
2563 $query = ResourceLoader::makeLoaderQuery(
2564 array(), // modules; not determined yet
2565 $this->getLanguage()->getCode(),
2566 $this->getSkin()->getSkinName(),
2567 $user,
2568 null, // version; not determined yet
2569 ResourceLoader::inDebugMode(),
2570 $only === ResourceLoaderModule::TYPE_COMBINED ? null : $only,
2571 $this->isPrintable(),
2572 $this->getRequest()->getBool( 'handheld' ),
2573 $extraQuery
2575 $context = new ResourceLoaderContext( $resourceLoader, new FauxRequest( $query ) );
2576 // Drop modules that know they're empty
2577 foreach ( $modules as $key => $module ) {
2578 if ( $module->isKnownEmpty( $context ) ) {
2579 unset( $modules[$key] );
2582 // If there are no modules left, skip this group
2583 if ( $modules === array() ) {
2584 continue;
2587 // Support inlining of private modules if configured as such. Note that these
2588 // modules should be loaded from getHeadScripts() before the first loader call.
2589 // Otherwise other modules can't properly use them as dependencies (bug 30914)
2590 if ( $group === 'private' && $wgResourceLoaderInlinePrivateModules ) {
2591 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2592 $links .= Html::inlineStyle(
2593 $resourceLoader->makeModuleResponse( $context, $modules )
2595 } else {
2596 $links .= Html::inlineScript(
2597 ResourceLoader::makeLoaderConditionalScript(
2598 $resourceLoader->makeModuleResponse( $context, $modules )
2602 $links .= "\n";
2603 continue;
2605 // Special handling for the user group; because users might change their stuff
2606 // on-wiki like user pages, or user preferences; we need to find the highest
2607 // timestamp of these user-changable modules so we can ensure cache misses on change
2608 // This should NOT be done for the site group (bug 27564) because anons get that too
2609 // and we shouldn't be putting timestamps in Squid-cached HTML
2610 $version = null;
2611 if ( $group === 'user' ) {
2612 // Get the maximum timestamp
2613 $timestamp = 1;
2614 foreach ( $modules as $module ) {
2615 $timestamp = max( $timestamp, $module->getModifiedTime( $context ) );
2617 // Add a version parameter so cache will break when things change
2618 $version = wfTimestamp( TS_ISO_8601_BASIC, $timestamp );
2621 $url = ResourceLoader::makeLoaderURL(
2622 array_keys( $modules ),
2623 $this->getLanguage()->getCode(),
2624 $this->getSkin()->getSkinName(),
2625 $user,
2626 $version,
2627 ResourceLoader::inDebugMode(),
2628 $only === ResourceLoaderModule::TYPE_COMBINED ? null : $only,
2629 $this->isPrintable(),
2630 $this->getRequest()->getBool( 'handheld' ),
2631 $extraQuery
2633 if ( $useESI && $wgResourceLoaderUseESI ) {
2634 $esi = Xml::element( 'esi:include', array( 'src' => $url ) );
2635 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2636 $link = Html::inlineStyle( $esi );
2637 } else {
2638 $link = Html::inlineScript( $esi );
2640 } else {
2641 // Automatically select style/script elements
2642 if ( $only === ResourceLoaderModule::TYPE_STYLES ) {
2643 $link = Html::linkedStyle( $url );
2644 } else if ( $loadCall ) {
2645 $link = Html::inlineScript(
2646 ResourceLoader::makeLoaderConditionalScript(
2647 Xml::encodeJsCall( 'mw.loader.load', array( $url, 'text/javascript', true ) )
2650 } else {
2651 $link = Html::linkedScript( $url );
2655 if( $group == 'noscript' ){
2656 $links .= Html::rawElement( 'noscript', array(), $link ) . "\n";
2657 } else {
2658 $links .= $link . "\n";
2661 return $links;
2665 * JS stuff to put in the <head>. This is the startup module, config
2666 * vars and modules marked with position 'top'
2668 * @return String: HTML fragment
2670 function getHeadScripts() {
2671 global $wgResourceLoaderExperimentalAsyncLoading;
2673 // Startup - this will immediately load jquery and mediawiki modules
2674 $scripts = $this->makeResourceLoaderLink( 'startup', ResourceLoaderModule::TYPE_SCRIPTS, true );
2676 // Load config before anything else
2677 $scripts .= Html::inlineScript(
2678 ResourceLoader::makeLoaderConditionalScript(
2679 ResourceLoader::makeConfigSetScript( $this->getJSVars() )
2683 // Load embeddable private modules before any loader links
2684 // This needs to be TYPE_COMBINED so these modules are properly wrapped
2685 // in mw.loader.implement() calls and deferred until mw.user is available
2686 $embedScripts = array( 'user.options', 'user.tokens' );
2687 $scripts .= $this->makeResourceLoaderLink( $embedScripts, ResourceLoaderModule::TYPE_COMBINED );
2689 // Script and Messages "only" requests marked for top inclusion
2690 // Messages should go first
2691 $scripts .= $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'top' ), ResourceLoaderModule::TYPE_MESSAGES );
2692 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'top' ), ResourceLoaderModule::TYPE_SCRIPTS );
2694 // Modules requests - let the client calculate dependencies and batch requests as it likes
2695 // Only load modules that have marked themselves for loading at the top
2696 $modules = $this->getModules( true, 'top' );
2697 if ( $modules ) {
2698 $scripts .= Html::inlineScript(
2699 ResourceLoader::makeLoaderConditionalScript(
2700 Xml::encodeJsCall( 'mw.loader.load', array( $modules ) )
2705 if ( $wgResourceLoaderExperimentalAsyncLoading ) {
2706 $scripts .= $this->getScriptsForBottomQueue( true );
2709 return $scripts;
2713 * JS stuff to put at the 'bottom', which can either be the bottom of the <body>
2714 * or the bottom of the <head> depending on $wgResourceLoaderExperimentalAsyncLoading:
2715 * modules marked with position 'bottom', legacy scripts ($this->mScripts),
2716 * user preferences, site JS and user JS
2718 * @param $inHead boolean If true, this HTML goes into the <head>, if false it goes into the <body>
2719 * @return string
2721 function getScriptsForBottomQueue( $inHead ) {
2722 global $wgUseSiteJs, $wgAllowUserJs;
2724 // Script and Messages "only" requests marked for bottom inclusion
2725 // If we're in the <head>, use load() calls rather than <script src="..."> tags
2726 // Messages should go first
2727 $scripts = $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'bottom' ),
2728 ResourceLoaderModule::TYPE_MESSAGES, /* $useESI = */ false, /* $extraQuery = */ array(),
2729 /* $loadCall = */ $inHead
2731 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'bottom' ),
2732 ResourceLoaderModule::TYPE_SCRIPTS, /* $useESI = */ false, /* $extraQuery = */ array(),
2733 /* $loadCall = */ $inHead
2736 // Modules requests - let the client calculate dependencies and batch requests as it likes
2737 // Only load modules that have marked themselves for loading at the bottom
2738 $modules = $this->getModules( true, 'bottom' );
2739 if ( $modules ) {
2740 $scripts .= Html::inlineScript(
2741 ResourceLoader::makeLoaderConditionalScript(
2742 Xml::encodeJsCall( 'mw.loader.load', array( $modules, null, true ) )
2747 // Legacy Scripts
2748 $scripts .= "\n" . $this->mScripts;
2750 $userScripts = array();
2752 // Add site JS if enabled
2753 if ( $wgUseSiteJs ) {
2754 $scripts .= $this->makeResourceLoaderLink( 'site', ResourceLoaderModule::TYPE_SCRIPTS,
2755 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2757 if( $this->getUser()->isLoggedIn() ){
2758 $userScripts[] = 'user.groups';
2762 // Add user JS if enabled
2763 if ( $wgAllowUserJs && $this->getUser()->isLoggedIn() ) {
2764 if( $this->getTitle() && $this->getTitle()->isJsSubpage() && $this->userCanPreview() ) {
2765 # XXX: additional security check/prompt?
2766 // We're on a preview of a JS subpage
2767 // Exclude this page from the user module in case it's in there (bug 26283)
2768 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS, false,
2769 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() ), $inHead
2771 // Load the previewed JS
2772 $scripts .= Html::inlineScript( "\n" . $this->getRequest()->getText( 'wpTextbox1' ) . "\n" ) . "\n";
2773 } else {
2774 // Include the user module normally
2775 // We can't do $userScripts[] = 'user'; because the user module would end up
2776 // being wrapped in a closure, so load it raw like 'site'
2777 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS,
2778 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2782 $scripts .= $this->makeResourceLoaderLink( $userScripts, ResourceLoaderModule::TYPE_COMBINED,
2783 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2786 return $scripts;
2790 * JS stuff to put at the bottom of the <body>
2791 * @return string
2793 function getBottomScripts() {
2794 global $wgResourceLoaderExperimentalAsyncLoading;
2795 if ( !$wgResourceLoaderExperimentalAsyncLoading ) {
2796 return $this->getScriptsForBottomQueue( false );
2797 } else {
2798 return '';
2803 * Add one or more variables to be set in mw.config in JavaScript.
2805 * @param $key {String|Array} Key or array of key/value pars.
2806 * @param $value {Mixed} [optional] Value of the configuration variable.
2808 public function addJsConfigVars( $keys, $value = null ) {
2809 if ( is_array( $keys ) ) {
2810 foreach ( $keys as $key => $value ) {
2811 $this->mJsConfigVars[$key] = $value;
2813 return;
2816 $this->mJsConfigVars[$keys] = $value;
2821 * Get an array containing the variables to be set in mw.config in JavaScript.
2823 * DO NOT CALL THIS FROM OUTSIDE OF THIS CLASS OR Skin::makeGlobalVariablesScript().
2824 * This is only public until that function is removed. You have been warned.
2826 * Do not add things here which can be evaluated in ResourceLoaderStartupScript
2827 * - in other words, page-independent/site-wide variables (without state).
2828 * You will only be adding bloat to the html page and causing page caches to
2829 * have to be purged on configuration changes.
2830 * @return array
2832 public function getJSVars() {
2833 global $wgUseAjax, $wgEnableMWSuggest;
2835 $latestRevID = 0;
2836 $pageID = 0;
2837 $canonicalName = false; # bug 21115
2839 $title = $this->getTitle();
2840 $ns = $title->getNamespace();
2841 $nsname = MWNamespace::exists( $ns ) ? MWNamespace::getCanonicalName( $ns ) : $title->getNsText();
2843 if ( $ns == NS_SPECIAL ) {
2844 list( $canonicalName, /*...*/ ) = SpecialPageFactory::resolveAlias( $title->getDBkey() );
2845 } elseif ( $this->canUseWikiPage() ) {
2846 $wikiPage = $this->getWikiPage();
2847 $latestRevID = $wikiPage->getLatest();
2848 $pageID = $wikiPage->getId();
2851 $lang = $title->getPageLanguage();
2853 // Pre-process information
2854 $separatorTransTable = $lang->separatorTransformTable();
2855 $separatorTransTable = $separatorTransTable ? $separatorTransTable : array();
2856 $compactSeparatorTransTable = array(
2857 implode( "\t", array_keys( $separatorTransTable ) ),
2858 implode( "\t", $separatorTransTable ),
2860 $digitTransTable = $lang->digitTransformTable();
2861 $digitTransTable = $digitTransTable ? $digitTransTable : array();
2862 $compactDigitTransTable = array(
2863 implode( "\t", array_keys( $digitTransTable ) ),
2864 implode( "\t", $digitTransTable ),
2867 $vars = array(
2868 'wgCanonicalNamespace' => $nsname,
2869 'wgCanonicalSpecialPageName' => $canonicalName,
2870 'wgNamespaceNumber' => $title->getNamespace(),
2871 'wgPageName' => $title->getPrefixedDBKey(),
2872 'wgTitle' => $title->getText(),
2873 'wgCurRevisionId' => $latestRevID,
2874 'wgArticleId' => $pageID,
2875 'wgIsArticle' => $this->isArticle(),
2876 'wgAction' => Action::getActionName( $this->getContext() ),
2877 'wgUserName' => $this->getUser()->isAnon() ? null : $this->getUser()->getName(),
2878 'wgUserGroups' => $this->getUser()->getEffectiveGroups(),
2879 'wgCategories' => $this->getCategories(),
2880 'wgBreakFrames' => $this->getFrameOptions() == 'DENY',
2881 'wgPageContentLanguage' => $lang->getCode(),
2882 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
2883 'wgDigitTransformTable' => $compactDigitTransTable,
2885 if ( $lang->hasVariants() ) {
2886 $vars['wgUserVariant'] = $lang->getPreferredVariant();
2888 foreach ( $title->getRestrictionTypes() as $type ) {
2889 $vars['wgRestriction' . ucfirst( $type )] = $title->getRestrictions( $type );
2891 if ( $wgUseAjax && $wgEnableMWSuggest && !$this->getUser()->getOption( 'disablesuggest', false ) ) {
2892 $vars['wgSearchNamespaces'] = SearchEngine::userNamespaces( $this->getUser() );
2894 if ( $title->isMainPage() ) {
2895 $vars['wgIsMainPage'] = true;
2897 if ( $this->mRedirectedFrom ) {
2898 $vars['wgRedirectedFrom'] = $this->mRedirectedFrom->getPrefixedDBKey();
2901 // Allow extensions to add their custom variables to the mw.config map.
2902 // Use the 'ResourceLoaderGetConfigVars' hook if the variable is not
2903 // page-dependant but site-wide (without state).
2904 // Alternatively, you may want to use OutputPage->addJsConfigVars() instead.
2905 wfRunHooks( 'MakeGlobalVariablesScript', array( &$vars, $this ) );
2907 // Merge in variables from addJsConfigVars last
2908 return array_merge( $vars, $this->mJsConfigVars );
2912 * To make it harder for someone to slip a user a fake
2913 * user-JavaScript or user-CSS preview, a random token
2914 * is associated with the login session. If it's not
2915 * passed back with the preview request, we won't render
2916 * the code.
2918 * @return bool
2920 public function userCanPreview() {
2921 if ( $this->getRequest()->getVal( 'action' ) != 'submit'
2922 || !$this->getRequest()->wasPosted()
2923 || !$this->getUser()->matchEditToken(
2924 $this->getRequest()->getVal( 'wpEditToken' ) )
2926 return false;
2928 if ( !$this->getTitle()->isJsSubpage() && !$this->getTitle()->isCssSubpage() ) {
2929 return false;
2932 return !count( $this->getTitle()->getUserPermissionsErrors( 'edit', $this->getUser() ) );
2936 * @param $unused
2937 * @param $addContentType bool
2939 * @return string HTML tag links to be put in the header.
2941 public function getHeadLinks( $unused = null, $addContentType = false ) {
2942 global $wgUniversalEditButton, $wgFavicon, $wgAppleTouchIcon, $wgEnableAPI,
2943 $wgSitename, $wgVersion, $wgHtml5, $wgMimeType,
2944 $wgFeed, $wgOverrideSiteFeed, $wgAdvertisedFeedTypes,
2945 $wgDisableLangConversion, $wgCanonicalLanguageLinks,
2946 $wgRightsPage, $wgRightsUrl;
2948 $tags = array();
2950 if ( $addContentType ) {
2951 if ( $wgHtml5 ) {
2952 # More succinct than <meta http-equiv=Content-Type>, has the
2953 # same effect
2954 $tags[] = Html::element( 'meta', array( 'charset' => 'UTF-8' ) );
2955 } else {
2956 $tags[] = Html::element( 'meta', array(
2957 'http-equiv' => 'Content-Type',
2958 'content' => "$wgMimeType; charset=UTF-8"
2959 ) );
2960 $tags[] = Html::element( 'meta', array( // bug 15835
2961 'http-equiv' => 'Content-Style-Type',
2962 'content' => 'text/css'
2963 ) );
2967 $tags[] = Html::element( 'meta', array(
2968 'name' => 'generator',
2969 'content' => "MediaWiki $wgVersion",
2970 ) );
2972 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
2973 if( $p !== 'index,follow' ) {
2974 // http://www.robotstxt.org/wc/meta-user.html
2975 // Only show if it's different from the default robots policy
2976 $tags[] = Html::element( 'meta', array(
2977 'name' => 'robots',
2978 'content' => $p,
2979 ) );
2982 if ( count( $this->mKeywords ) > 0 ) {
2983 $strip = array(
2984 "/<.*?" . ">/" => '',
2985 "/_/" => ' '
2987 $tags[] = Html::element( 'meta', array(
2988 'name' => 'keywords',
2989 'content' => preg_replace(
2990 array_keys( $strip ),
2991 array_values( $strip ),
2992 implode( ',', $this->mKeywords )
2994 ) );
2997 foreach ( $this->mMetatags as $tag ) {
2998 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
2999 $a = 'http-equiv';
3000 $tag[0] = substr( $tag[0], 5 );
3001 } else {
3002 $a = 'name';
3004 $tags[] = Html::element( 'meta',
3005 array(
3006 $a => $tag[0],
3007 'content' => $tag[1]
3012 foreach ( $this->mLinktags as $tag ) {
3013 $tags[] = Html::element( 'link', $tag );
3016 # Universal edit button
3017 if ( $wgUniversalEditButton && $this->isArticleRelated() ) {
3018 $user = $this->getUser();
3019 if ( $this->getTitle()->quickUserCan( 'edit', $user )
3020 && ( $this->getTitle()->exists() || $this->getTitle()->quickUserCan( 'create', $user ) ) ) {
3021 // Original UniversalEditButton
3022 $msg = $this->msg( 'edit' )->text();
3023 $tags[] = Html::element( 'link', array(
3024 'rel' => 'alternate',
3025 'type' => 'application/x-wiki',
3026 'title' => $msg,
3027 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
3028 ) );
3029 // Alternate edit link
3030 $tags[] = Html::element( 'link', array(
3031 'rel' => 'edit',
3032 'title' => $msg,
3033 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
3034 ) );
3038 # Generally the order of the favicon and apple-touch-icon links
3039 # should not matter, but Konqueror (3.5.9 at least) incorrectly
3040 # uses whichever one appears later in the HTML source. Make sure
3041 # apple-touch-icon is specified first to avoid this.
3042 if ( $wgAppleTouchIcon !== false ) {
3043 $tags[] = Html::element( 'link', array( 'rel' => 'apple-touch-icon', 'href' => $wgAppleTouchIcon ) );
3046 if ( $wgFavicon !== false ) {
3047 $tags[] = Html::element( 'link', array( 'rel' => 'shortcut icon', 'href' => $wgFavicon ) );
3050 # OpenSearch description link
3051 $tags[] = Html::element( 'link', array(
3052 'rel' => 'search',
3053 'type' => 'application/opensearchdescription+xml',
3054 'href' => wfScript( 'opensearch_desc' ),
3055 'title' => $this->msg( 'opensearch-desc' )->inContentLanguage()->text(),
3056 ) );
3058 if ( $wgEnableAPI ) {
3059 # Real Simple Discovery link, provides auto-discovery information
3060 # for the MediaWiki API (and potentially additional custom API
3061 # support such as WordPress or Twitter-compatible APIs for a
3062 # blogging extension, etc)
3063 $tags[] = Html::element( 'link', array(
3064 'rel' => 'EditURI',
3065 'type' => 'application/rsd+xml',
3066 // Output a protocol-relative URL here if $wgServer is protocol-relative
3067 // Whether RSD accepts relative or protocol-relative URLs is completely undocumented, though
3068 'href' => wfExpandUrl( wfAppendQuery( wfScript( 'api' ), array( 'action' => 'rsd' ) ), PROTO_RELATIVE ),
3069 ) );
3073 # Language variants
3074 if ( !$wgDisableLangConversion && $wgCanonicalLanguageLinks ) {
3075 $lang = $this->getTitle()->getPageLanguage();
3076 if ( $lang->hasVariants() ) {
3078 $urlvar = $lang->getURLVariant();
3080 if ( !$urlvar ) {
3081 $variants = $lang->getVariants();
3082 foreach ( $variants as $_v ) {
3083 $tags[] = Html::element( 'link', array(
3084 'rel' => 'alternate',
3085 'hreflang' => $_v,
3086 'href' => $this->getTitle()->getLocalURL( array( 'variant' => $_v ) ) )
3089 } else {
3090 $tags[] = Html::element( 'link', array(
3091 'rel' => 'canonical',
3092 'href' => $this->getTitle()->getCanonicalUrl()
3093 ) );
3098 # Copyright
3099 $copyright = '';
3100 if ( $wgRightsPage ) {
3101 $copy = Title::newFromText( $wgRightsPage );
3103 if ( $copy ) {
3104 $copyright = $copy->getLocalURL();
3108 if ( !$copyright && $wgRightsUrl ) {
3109 $copyright = $wgRightsUrl;
3112 if ( $copyright ) {
3113 $tags[] = Html::element( 'link', array(
3114 'rel' => 'copyright',
3115 'href' => $copyright )
3119 # Feeds
3120 if ( $wgFeed ) {
3121 foreach( $this->getSyndicationLinks() as $format => $link ) {
3122 # Use the page name for the title. In principle, this could
3123 # lead to issues with having the same name for different feeds
3124 # corresponding to the same page, but we can't avoid that at
3125 # this low a level.
3127 $tags[] = $this->feedLink(
3128 $format,
3129 $link,
3130 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
3131 $this->msg( "page-{$format}-feed", $this->getTitle()->getPrefixedText() )->text()
3135 # Recent changes feed should appear on every page (except recentchanges,
3136 # that would be redundant). Put it after the per-page feed to avoid
3137 # changing existing behavior. It's still available, probably via a
3138 # menu in your browser. Some sites might have a different feed they'd
3139 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
3140 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
3141 # If so, use it instead.
3142 if ( $wgOverrideSiteFeed ) {
3143 foreach ( $wgOverrideSiteFeed as $type => $feedUrl ) {
3144 // Note, this->feedLink escapes the url.
3145 $tags[] = $this->feedLink(
3146 $type,
3147 $feedUrl,
3148 $this->msg( "site-{$type}-feed", $wgSitename )->text()
3151 } elseif ( !$this->getTitle()->isSpecial( 'Recentchanges' ) ) {
3152 $rctitle = SpecialPage::getTitleFor( 'Recentchanges' );
3153 foreach ( $wgAdvertisedFeedTypes as $format ) {
3154 $tags[] = $this->feedLink(
3155 $format,
3156 $rctitle->getLocalURL( "feed={$format}" ),
3157 $this->msg( "site-{$format}-feed", $wgSitename )->text() # For grep: 'site-rss-feed', 'site-atom-feed'.
3162 return implode( "\n", $tags );
3166 * Generate a <link rel/> for a feed.
3168 * @param $type String: feed type
3169 * @param $url String: URL to the feed
3170 * @param $text String: value of the "title" attribute
3171 * @return String: HTML fragment
3173 private function feedLink( $type, $url, $text ) {
3174 return Html::element( 'link', array(
3175 'rel' => 'alternate',
3176 'type' => "application/$type+xml",
3177 'title' => $text,
3178 'href' => $url )
3183 * Add a local or specified stylesheet, with the given media options.
3184 * Meant primarily for internal use...
3186 * @param $style String: URL to the file
3187 * @param $media String: to specify a media type, 'screen', 'printable', 'handheld' or any.
3188 * @param $condition String: for IE conditional comments, specifying an IE version
3189 * @param $dir String: set to 'rtl' or 'ltr' for direction-specific sheets
3191 public function addStyle( $style, $media = '', $condition = '', $dir = '' ) {
3192 $options = array();
3193 // Even though we expect the media type to be lowercase, but here we
3194 // force it to lowercase to be safe.
3195 if( $media ) {
3196 $options['media'] = $media;
3198 if( $condition ) {
3199 $options['condition'] = $condition;
3201 if( $dir ) {
3202 $options['dir'] = $dir;
3204 $this->styles[$style] = $options;
3208 * Adds inline CSS styles
3209 * @param $style_css Mixed: inline CSS
3210 * @param $flip String: Set to 'flip' to flip the CSS if needed
3212 public function addInlineStyle( $style_css, $flip = 'noflip' ) {
3213 if( $flip === 'flip' && $this->getLanguage()->isRTL() ) {
3214 # If wanted, and the interface is right-to-left, flip the CSS
3215 $style_css = CSSJanus::transform( $style_css, true, false );
3217 $this->mInlineStyles .= Html::inlineStyle( $style_css );
3221 * Build a set of <link>s for the stylesheets specified in the $this->styles array.
3222 * These will be applied to various media & IE conditionals.
3224 * @return string
3226 public function buildCssLinks() {
3227 global $wgUseSiteCss, $wgAllowUserCss, $wgAllowUserCssPrefs,
3228 $wgLang, $wgContLang;
3230 $this->getSkin()->setupSkinUserCss( $this );
3232 // Add ResourceLoader styles
3233 // Split the styles into four groups
3234 $styles = array( 'other' => array(), 'user' => array(), 'site' => array(), 'private' => array(), 'noscript' => array() );
3235 $otherTags = ''; // Tags to append after the normal <link> tags
3236 $resourceLoader = $this->getResourceLoader();
3238 $moduleStyles = $this->getModuleStyles();
3240 // Per-site custom styles
3241 if ( $wgUseSiteCss ) {
3242 $moduleStyles[] = 'site';
3243 $moduleStyles[] = 'noscript';
3244 if( $this->getUser()->isLoggedIn() ){
3245 $moduleStyles[] = 'user.groups';
3249 // Per-user custom styles
3250 if ( $wgAllowUserCss ) {
3251 if ( $this->getTitle()->isCssSubpage() && $this->userCanPreview() ) {
3252 // We're on a preview of a CSS subpage
3253 // Exclude this page from the user module in case it's in there (bug 26283)
3254 $otherTags .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_STYLES, false,
3255 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
3258 // Load the previewed CSS
3259 // If needed, Janus it first. This is user-supplied CSS, so it's
3260 // assumed to be right for the content language directionality.
3261 $previewedCSS = $this->getRequest()->getText( 'wpTextbox1' );
3262 if ( $wgLang->getDir() !== $wgContLang->getDir() ) {
3263 $previewedCSS = CSSJanus::transform( $previewedCSS, true, false );
3265 $otherTags .= Html::inlineStyle( $previewedCSS );
3266 } else {
3267 // Load the user styles normally
3268 $moduleStyles[] = 'user';
3272 // Per-user preference styles
3273 if ( $wgAllowUserCssPrefs ) {
3274 $moduleStyles[] = 'user.cssprefs';
3277 foreach ( $moduleStyles as $name ) {
3278 $module = $resourceLoader->getModule( $name );
3279 if ( !$module ) {
3280 continue;
3282 $group = $module->getGroup();
3283 // Modules in groups named "other" or anything different than "user", "site" or "private"
3284 // will be placed in the "other" group
3285 $styles[isset( $styles[$group] ) ? $group : 'other'][] = $name;
3288 // We want site, private and user styles to override dynamically added styles from modules, but we want
3289 // dynamically added styles to override statically added styles from other modules. So the order
3290 // has to be other, dynamic, site, private, user
3291 // Add statically added styles for other modules
3292 $ret = $this->makeResourceLoaderLink( $styles['other'], ResourceLoaderModule::TYPE_STYLES );
3293 // Add normal styles added through addStyle()/addInlineStyle() here
3294 $ret .= implode( "\n", $this->buildCssLinksArray() ) . $this->mInlineStyles;
3295 // Add marker tag to mark the place where the client-side loader should inject dynamic styles
3296 // We use a <meta> tag with a made-up name for this because that's valid HTML
3297 $ret .= Html::element( 'meta', array( 'name' => 'ResourceLoaderDynamicStyles', 'content' => '' ) ) . "\n";
3299 // Add site, private and user styles
3300 // 'private' at present only contains user.options, so put that before 'user'
3301 // Any future private modules will likely have a similar user-specific character
3302 foreach ( array( 'site', 'noscript', 'private', 'user' ) as $group ) {
3303 $ret .= $this->makeResourceLoaderLink( $styles[$group],
3304 ResourceLoaderModule::TYPE_STYLES
3308 // Add stuff in $otherTags (previewed user CSS if applicable)
3309 $ret .= $otherTags;
3310 return $ret;
3314 * @return Array
3316 public function buildCssLinksArray() {
3317 $links = array();
3319 // Add any extension CSS
3320 foreach ( $this->mExtStyles as $url ) {
3321 $this->addStyle( $url );
3323 $this->mExtStyles = array();
3325 foreach( $this->styles as $file => $options ) {
3326 $link = $this->styleLink( $file, $options );
3327 if( $link ) {
3328 $links[$file] = $link;
3331 return $links;
3335 * Generate \<link\> tags for stylesheets
3337 * @param $style String: URL to the file
3338 * @param $options Array: option, can contain 'condition', 'dir', 'media'
3339 * keys
3340 * @return String: HTML fragment
3342 protected function styleLink( $style, $options ) {
3343 if( isset( $options['dir'] ) ) {
3344 if( $this->getLanguage()->getDir() != $options['dir'] ) {
3345 return '';
3349 if( isset( $options['media'] ) ) {
3350 $media = self::transformCssMedia( $options['media'] );
3351 if( is_null( $media ) ) {
3352 return '';
3354 } else {
3355 $media = 'all';
3358 if( substr( $style, 0, 1 ) == '/' ||
3359 substr( $style, 0, 5 ) == 'http:' ||
3360 substr( $style, 0, 6 ) == 'https:' ) {
3361 $url = $style;
3362 } else {
3363 global $wgStylePath, $wgStyleVersion;
3364 $url = $wgStylePath . '/' . $style . '?' . $wgStyleVersion;
3367 $link = Html::linkedStyle( $url, $media );
3369 if( isset( $options['condition'] ) ) {
3370 $condition = htmlspecialchars( $options['condition'] );
3371 $link = "<!--[if $condition]>$link<![endif]-->";
3373 return $link;
3377 * Transform "media" attribute based on request parameters
3379 * @param $media String: current value of the "media" attribute
3380 * @return String: modified value of the "media" attribute
3382 public static function transformCssMedia( $media ) {
3383 global $wgRequest, $wgHandheldForIPhone;
3385 // Switch in on-screen display for media testing
3386 $switches = array(
3387 'printable' => 'print',
3388 'handheld' => 'handheld',
3390 foreach( $switches as $switch => $targetMedia ) {
3391 if( $wgRequest->getBool( $switch ) ) {
3392 if( $media == $targetMedia ) {
3393 $media = '';
3394 } elseif( $media == 'screen' ) {
3395 return null;
3400 // Expand longer media queries as iPhone doesn't grok 'handheld'
3401 if( $wgHandheldForIPhone ) {
3402 $mediaAliases = array(
3403 'screen' => 'screen and (min-device-width: 481px)',
3404 'handheld' => 'handheld, only screen and (max-device-width: 480px)',
3407 if( isset( $mediaAliases[$media] ) ) {
3408 $media = $mediaAliases[$media];
3412 return $media;
3416 * Add a wikitext-formatted message to the output.
3417 * This is equivalent to:
3419 * $wgOut->addWikiText( wfMsgNoTrans( ... ) )
3421 public function addWikiMsg( /*...*/ ) {
3422 $args = func_get_args();
3423 $name = array_shift( $args );
3424 $this->addWikiMsgArray( $name, $args );
3428 * Add a wikitext-formatted message to the output.
3429 * Like addWikiMsg() except the parameters are taken as an array
3430 * instead of a variable argument list.
3432 * @param $name string
3433 * @param $args array
3435 public function addWikiMsgArray( $name, $args ) {
3436 $this->addWikiText( $this->msg( $name, $args )->plain() );
3440 * This function takes a number of message/argument specifications, wraps them in
3441 * some overall structure, and then parses the result and adds it to the output.
3443 * In the $wrap, $1 is replaced with the first message, $2 with the second, and so
3444 * on. The subsequent arguments may either be strings, in which case they are the
3445 * message names, or arrays, in which case the first element is the message name,
3446 * and subsequent elements are the parameters to that message.
3448 * The special named parameter 'options' in a message specification array is passed
3449 * through to the $options parameter of wfMsgExt().
3451 * Don't use this for messages that are not in users interface language.
3453 * For example:
3455 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>", 'some-error' );
3457 * Is equivalent to:
3459 * $wgOut->addWikiText( "<div class='error'>\n" . wfMsgNoTrans( 'some-error' ) . "\n</div>" );
3461 * The newline after opening div is needed in some wikitext. See bug 19226.
3463 * @param $wrap string
3465 public function wrapWikiMsg( $wrap /*, ...*/ ) {
3466 $msgSpecs = func_get_args();
3467 array_shift( $msgSpecs );
3468 $msgSpecs = array_values( $msgSpecs );
3469 $s = $wrap;
3470 foreach ( $msgSpecs as $n => $spec ) {
3471 $options = array();
3472 if ( is_array( $spec ) ) {
3473 $args = $spec;
3474 $name = array_shift( $args );
3475 if ( isset( $args['options'] ) ) {
3476 $options = $args['options'];
3477 unset( $args['options'] );
3479 } else {
3480 $args = array();
3481 $name = $spec;
3483 $s = str_replace( '$' . ( $n + 1 ), wfMsgExt( $name, $options, $args ), $s );
3485 $this->addWikiText( $s );
3489 * Include jQuery core. Use this to avoid loading it multiple times
3490 * before we get a usable script loader.
3492 * @param $modules Array: list of jQuery modules which should be loaded
3493 * @return Array: the list of modules which were not loaded.
3494 * @since 1.16
3495 * @deprecated since 1.17
3497 public function includeJQuery( $modules = array() ) {
3498 return array();