Pass OutputPage instance to MakeGlobalVariablesScript. Allows extensions to getTitle...
[mediawiki.git] / includes / OutputPage.php
bloba45a3ad5478a0b29b1a15b686ddedf0b8ece97fa
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 Ashar Voultoiz
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 var $mSubtitle = '';
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;
128 /** @todo FIXME: Is this still used ?*/
129 var $mInlineMsg = array();
131 var $mTemplateIds = array();
132 var $mImageTimeKeys = array();
134 var $mRedirectCode = '';
136 var $mFeedLinksAppendQuery = null;
138 # What level of 'untrustworthiness' is allowed in CSS/JS modules loaded on this page?
139 # @see ResourceLoaderModule::$origin
140 # ResourceLoaderModule::ORIGIN_ALL is assumed unless overridden;
141 protected $mAllowedModules = array(
142 ResourceLoaderModule::TYPE_COMBINED => ResourceLoaderModule::ORIGIN_ALL,
146 * @EasterEgg I just love the name for this self documenting variable.
147 * @todo document
149 var $mDoNothing = false;
151 // Parser related.
152 var $mContainsOldMagic = 0, $mContainsNewMagic = 0;
154 /// lazy initialised, use parserOptions()
155 protected $mParserOptions = null;
158 * Handles the atom / rss links.
159 * We probably only support atom in 2011.
160 * Looks like a private variable.
161 * @see $wgAdvertisedFeedTypes
163 var $mFeedLinks = array();
165 // Gwicke work on squid caching? Roughly from 2003.
166 var $mEnableClientCache = true;
169 * Flag if output should only contain the body of the article.
170 * Should be private.
172 var $mArticleBodyOnly = false;
174 var $mNewSectionLink = false;
175 var $mHideNewSectionLink = false;
178 * Comes from the parser. This was probably made to load CSS/JS only
179 * if we had <gallery>. Used directly in CategoryPage.php
180 * Looks like resource loader can replace this.
182 var $mNoGallery = false;
184 // should be private.
185 var $mPageTitleActionText = '';
186 var $mParseWarnings = array();
188 // Cache stuff. Looks like mEnableClientCache
189 var $mSquidMaxage = 0;
191 // @todo document
192 var $mPreventClickjacking = true;
194 /// should be private. To include the variable {{REVISIONID}}
195 var $mRevisionId = null;
197 var $mFileVersion = null;
200 * An array of stylesheet filenames (relative from skins path), with options
201 * for CSS media, IE conditions, and RTL/LTR direction.
202 * For internal use; add settings in the skin via $this->addStyle()
204 * Style again! This seems like a code duplication since we already have
205 * mStyles. This is what makes OpenSource amazing.
207 var $styles = array();
210 * Whether jQuery is already handled.
212 protected $mJQueryDone = false;
214 private $mIndexPolicy = 'index';
215 private $mFollowPolicy = 'follow';
216 private $mVaryHeader = array(
217 'Accept-Encoding' => array( 'list-contains=gzip' ),
218 'Cookie' => null
222 * Constructor for OutputPage. This should not be called directly.
223 * Instead a new RequestContext should be created and it will implicitly create
224 * a OutputPage tied to that context.
226 function __construct( RequestContext $context = null ) {
227 if ( $context === null ) {
228 # Extensions should use `new RequestContext` instead of `new OutputPage` now.
229 wfDeprecated( __METHOD__ );
230 } else {
231 $this->setContext( $context );
236 * Redirect to $url rather than displaying the normal page
238 * @param $url String: URL
239 * @param $responsecode String: HTTP status code
241 public function redirect( $url, $responsecode = '302' ) {
242 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
243 $this->mRedirect = str_replace( "\n", '', $url );
244 $this->mRedirectCode = $responsecode;
248 * Get the URL to redirect to, or an empty string if not redirect URL set
250 * @return String
252 public function getRedirect() {
253 return $this->mRedirect;
257 * Set the HTTP status code to send with the output.
259 * @param $statusCode Integer
261 public function setStatusCode( $statusCode ) {
262 $this->mStatusCode = $statusCode;
266 * Add a new <meta> tag
267 * To add an http-equiv meta tag, precede the name with "http:"
269 * @param $name String tag name
270 * @param $val String tag value
272 function addMeta( $name, $val ) {
273 array_push( $this->mMetatags, array( $name, $val ) );
277 * Add a keyword or a list of keywords in the page header
279 * @param $text String or array of strings
281 function addKeyword( $text ) {
282 if( is_array( $text ) ) {
283 $this->mKeywords = array_merge( $this->mKeywords, $text );
284 } else {
285 array_push( $this->mKeywords, $text );
290 * Add a new \<link\> tag to the page header
292 * @param $linkarr Array: associative array of attributes.
294 function addLink( $linkarr ) {
295 array_push( $this->mLinktags, $linkarr );
299 * Add a new \<link\> with "rel" attribute set to "meta"
301 * @param $linkarr Array: associative array mapping attribute names to their
302 * values, both keys and values will be escaped, and the
303 * "rel" attribute will be automatically added
305 function addMetadataLink( $linkarr ) {
306 $linkarr['rel'] = $this->getMetadataAttribute();
307 $this->addLink( $linkarr );
311 * Get the value of the "rel" attribute for metadata links
313 * @return String
315 public function getMetadataAttribute() {
316 # note: buggy CC software only reads first "meta" link
317 static $haveMeta = false;
318 if ( $haveMeta ) {
319 return 'alternate meta';
320 } else {
321 $haveMeta = true;
322 return 'meta';
327 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
329 * @param $script String: raw HTML
331 function addScript( $script ) {
332 $this->mScripts .= $script . "\n";
336 * Register and add a stylesheet from an extension directory.
338 * @param $url String path to sheet. Provide either a full url (beginning
339 * with 'http', etc) or a relative path from the document root
340 * (beginning with '/'). Otherwise it behaves identically to
341 * addStyle() and draws from the /skins folder.
343 public function addExtensionStyle( $url ) {
344 array_push( $this->mExtStyles, $url );
348 * Get all styles added by extensions
350 * @return Array
352 function getExtStyle() {
353 return $this->mExtStyles;
357 * Add a JavaScript file out of skins/common, or a given relative path.
359 * @param $file String: filename in skins/common or complete on-server path
360 * (/foo/bar.js)
361 * @param $version String: style version of the file. Defaults to $wgStyleVersion
363 public function addScriptFile( $file, $version = null ) {
364 global $wgStylePath, $wgStyleVersion;
365 // See if $file parameter is an absolute URL or begins with a slash
366 if( substr( $file, 0, 1 ) == '/' || preg_match( '#^[a-z]*://#i', $file ) ) {
367 $path = $file;
368 } else {
369 $path = "{$wgStylePath}/common/{$file}";
371 if ( is_null( $version ) )
372 $version = $wgStyleVersion;
373 $this->addScript( Html::linkedScript( wfAppendQuery( $path, $version ) ) );
377 * Add a self-contained script tag with the given contents
379 * @param $script String: JavaScript text, no <script> tags
381 public function addInlineScript( $script ) {
382 $this->mScripts .= Html::inlineScript( "\n$script\n" ) . "\n";
386 * Get all registered JS and CSS tags for the header.
388 * @return String
390 function getScript() {
391 return $this->mScripts . $this->getHeadItems();
395 * Filter an array of modules to remove insufficiently trustworthy members, and modules
396 * which are no longer registered (eg a page is cached before an extension is disabled)
397 * @param $modules Array
398 * @param $position String if not null, only return modules with this position
399 * @param $type string
400 * @return Array
402 protected function filterModules( $modules, $position = null, $type = ResourceLoaderModule::TYPE_COMBINED ){
403 $resourceLoader = $this->getResourceLoader();
404 $filteredModules = array();
405 foreach( $modules as $val ){
406 $module = $resourceLoader->getModule( $val );
407 if( $module instanceof ResourceLoaderModule
408 && $module->getOrigin() <= $this->getAllowedModules( $type )
409 && ( is_null( $position ) || $module->getPosition() == $position ) )
411 $filteredModules[] = $val;
414 return $filteredModules;
418 * Get the list of modules to include on this page
420 * @param $filter Bool whether to filter out insufficiently trustworthy modules
421 * @param $position String if not null, only return modules with this position
422 * @param $param string
423 * @return Array of module names
425 public function getModules( $filter = false, $position = null, $param = 'mModules' ) {
426 $modules = array_values( array_unique( $this->$param ) );
427 return $filter
428 ? $this->filterModules( $modules, $position )
429 : $modules;
433 * Add one or more modules recognized by the resource loader. Modules added
434 * through this function will be loaded by the resource loader when the
435 * page loads.
437 * @param $modules Mixed: module name (string) or array of module names
439 public function addModules( $modules ) {
440 $this->mModules = array_merge( $this->mModules, (array)$modules );
444 * Get the list of module JS to include on this page
446 * @param $filter
447 * @param $position
449 * @return array of module names
451 public function getModuleScripts( $filter = false, $position = null ) {
452 return $this->getModules( $filter, $position, 'mModuleScripts' );
456 * Add only JS of one or more modules recognized by the resource loader. Module
457 * scripts added through this function will be loaded by the resource loader when
458 * the page loads.
460 * @param $modules Mixed: module name (string) or array of module names
462 public function addModuleScripts( $modules ) {
463 $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules );
467 * Get the list of module CSS to include on this page
469 * @param $filter
470 * @param $position
472 * @return Array of module names
474 public function getModuleStyles( $filter = false, $position = null ) {
475 return $this->getModules( $filter, $position, 'mModuleStyles' );
479 * Add only CSS of one or more modules recognized by the resource loader. Module
480 * styles added through this function will be loaded by the resource loader when
481 * the page loads.
483 * @param $modules Mixed: module name (string) or array of module names
485 public function addModuleStyles( $modules ) {
486 $this->mModuleStyles = array_merge( $this->mModuleStyles, (array)$modules );
490 * Get the list of module messages to include on this page
492 * @param $filter
493 * @param $position
495 * @return Array of module names
497 public function getModuleMessages( $filter = false, $position = null ) {
498 return $this->getModules( $filter, $position, 'mModuleMessages' );
502 * Add only messages of one or more modules recognized by the resource loader.
503 * Module messages added through this function will be loaded by the resource
504 * loader when the page loads.
506 * @param $modules Mixed: module name (string) or array of module names
508 public function addModuleMessages( $modules ) {
509 $this->mModuleMessages = array_merge( $this->mModuleMessages, (array)$modules );
513 * Get an array of head items
515 * @return Array
517 function getHeadItemsArray() {
518 return $this->mHeadItems;
522 * Get all header items in a string
524 * @return String
526 function getHeadItems() {
527 $s = '';
528 foreach ( $this->mHeadItems as $item ) {
529 $s .= $item;
531 return $s;
535 * Add or replace an header item to the output
537 * @param $name String: item name
538 * @param $value String: raw HTML
540 public function addHeadItem( $name, $value ) {
541 $this->mHeadItems[$name] = $value;
545 * Check if the header item $name is already set
547 * @param $name String: item name
548 * @return Boolean
550 public function hasHeadItem( $name ) {
551 return isset( $this->mHeadItems[$name] );
555 * Set the value of the ETag HTTP header, only used if $wgUseETag is true
557 * @param $tag String: value of "ETag" header
559 function setETag( $tag ) {
560 $this->mETag = $tag;
564 * Set whether the output should only contain the body of the article,
565 * without any skin, sidebar, etc.
566 * Used e.g. when calling with "action=render".
568 * @param $only Boolean: whether to output only the body of the article
570 public function setArticleBodyOnly( $only ) {
571 $this->mArticleBodyOnly = $only;
575 * Return whether the output will contain only the body of the article
577 * @return Boolean
579 public function getArticleBodyOnly() {
580 return $this->mArticleBodyOnly;
584 * checkLastModified tells the client to use the client-cached page if
585 * possible. If sucessful, the OutputPage is disabled so that
586 * any future call to OutputPage->output() have no effect.
588 * Side effect: sets mLastModified for Last-Modified header
590 * @param $timestamp string
592 * @return Boolean: true iff cache-ok headers was sent.
594 public function checkLastModified( $timestamp ) {
595 global $wgCachePages, $wgCacheEpoch;
597 if ( !$timestamp || $timestamp == '19700101000000' ) {
598 wfDebug( __METHOD__ . ": CACHE DISABLED, NO TIMESTAMP\n" );
599 return false;
601 if( !$wgCachePages ) {
602 wfDebug( __METHOD__ . ": CACHE DISABLED\n", false );
603 return false;
605 if( $this->getUser()->getOption( 'nocache' ) ) {
606 wfDebug( __METHOD__ . ": USER DISABLED CACHE\n", false );
607 return false;
610 $timestamp = wfTimestamp( TS_MW, $timestamp );
611 $modifiedTimes = array(
612 'page' => $timestamp,
613 'user' => $this->getUser()->getTouched(),
614 'epoch' => $wgCacheEpoch
616 wfRunHooks( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
618 $maxModified = max( $modifiedTimes );
619 $this->mLastModified = wfTimestamp( TS_RFC2822, $maxModified );
621 if( empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
622 wfDebug( __METHOD__ . ": client did not send If-Modified-Since header\n", false );
623 return false;
626 # Make debug info
627 $info = '';
628 foreach ( $modifiedTimes as $name => $value ) {
629 if ( $info !== '' ) {
630 $info .= ', ';
632 $info .= "$name=" . wfTimestamp( TS_ISO_8601, $value );
635 # IE sends sizes after the date like this:
636 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
637 # this breaks strtotime().
638 $clientHeader = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
640 wfSuppressWarnings(); // E_STRICT system time bitching
641 $clientHeaderTime = strtotime( $clientHeader );
642 wfRestoreWarnings();
643 if ( !$clientHeaderTime ) {
644 wfDebug( __METHOD__ . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
645 return false;
647 $clientHeaderTime = wfTimestamp( TS_MW, $clientHeaderTime );
649 wfDebug( __METHOD__ . ": client sent If-Modified-Since: " .
650 wfTimestamp( TS_ISO_8601, $clientHeaderTime ) . "\n", false );
651 wfDebug( __METHOD__ . ": effective Last-Modified: " .
652 wfTimestamp( TS_ISO_8601, $maxModified ) . "\n", false );
653 if( $clientHeaderTime < $maxModified ) {
654 wfDebug( __METHOD__ . ": STALE, $info\n", false );
655 return false;
658 # Not modified
659 # Give a 304 response code and disable body output
660 wfDebug( __METHOD__ . ": NOT MODIFIED, $info\n", false );
661 ini_set( 'zlib.output_compression', 0 );
662 $this->getRequest()->response()->header( "HTTP/1.1 304 Not Modified" );
663 $this->sendCacheControl();
664 $this->disable();
666 // Don't output a compressed blob when using ob_gzhandler;
667 // it's technically against HTTP spec and seems to confuse
668 // Firefox when the response gets split over two packets.
669 wfClearOutputBuffers();
671 return true;
675 * Override the last modified timestamp
677 * @param $timestamp String: new timestamp, in a format readable by
678 * wfTimestamp()
680 public function setLastModified( $timestamp ) {
681 $this->mLastModified = wfTimestamp( TS_RFC2822, $timestamp );
685 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
687 * @param $policy String: the literal string to output as the contents of
688 * the meta tag. Will be parsed according to the spec and output in
689 * standardized form.
690 * @return null
692 public function setRobotPolicy( $policy ) {
693 $policy = Article::formatRobotPolicy( $policy );
695 if( isset( $policy['index'] ) ) {
696 $this->setIndexPolicy( $policy['index'] );
698 if( isset( $policy['follow'] ) ) {
699 $this->setFollowPolicy( $policy['follow'] );
704 * Set the index policy for the page, but leave the follow policy un-
705 * touched.
707 * @param $policy string Either 'index' or 'noindex'.
708 * @return null
710 public function setIndexPolicy( $policy ) {
711 $policy = trim( $policy );
712 if( in_array( $policy, array( 'index', 'noindex' ) ) ) {
713 $this->mIndexPolicy = $policy;
718 * Set the follow policy for the page, but leave the index policy un-
719 * touched.
721 * @param $policy String: either 'follow' or 'nofollow'.
722 * @return null
724 public function setFollowPolicy( $policy ) {
725 $policy = trim( $policy );
726 if( in_array( $policy, array( 'follow', 'nofollow' ) ) ) {
727 $this->mFollowPolicy = $policy;
732 * Set the new value of the "action text", this will be added to the
733 * "HTML title", separated from it with " - ".
735 * @param $text String: new value of the "action text"
737 public function setPageTitleActionText( $text ) {
738 $this->mPageTitleActionText = $text;
742 * Get the value of the "action text"
744 * @return String
746 public function getPageTitleActionText() {
747 if ( isset( $this->mPageTitleActionText ) ) {
748 return $this->mPageTitleActionText;
753 * "HTML title" means the contents of <title>.
754 * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
756 * @param $name string
758 public function setHTMLTitle( $name ) {
759 $this->mHTMLtitle = $name;
763 * Return the "HTML title", i.e. the content of the <title> tag.
765 * @return String
767 public function getHTMLTitle() {
768 return $this->mHTMLtitle;
772 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML fragment.
773 * This function allows good tags like \<sup\> in the \<h1\> tag, but not bad tags like \<script\>.
774 * This function automatically sets \<title\> to the same content as \<h1\> but with all tags removed.
775 * Bad tags that were escaped in \<h1\> will still be escaped in \<title\>, and good tags like \<i\> will be dropped entirely.
777 * @param $name string
779 public function setPageTitle( $name ) {
780 # change "<script>foo&bar</script>" to "&lt;script&gt;foo&amp;bar&lt;/script&gt;"
781 # but leave "<i>foobar</i>" alone
782 $nameWithTags = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $name ) );
783 $this->mPagetitle = $nameWithTags;
785 # change "<i>foo&amp;bar</i>" to "foo&bar"
786 $this->setHTMLTitle( wfMsg( 'pagetitle', Sanitizer::stripAllTags( $nameWithTags ) ) );
790 * Return the "page title", i.e. the content of the \<h1\> tag.
792 * @return String
794 public function getPageTitle() {
795 return $this->mPagetitle;
799 * Set the Title object to use
801 * @param $t Title object
803 public function setTitle( Title $t ) {
804 $this->getContext()->setTitle( $t );
809 * Replace the subtile with $str
811 * @param $str String: new value of the subtitle
813 public function setSubtitle( $str ) {
814 $this->mSubtitle = /*$this->parse(*/ $str /*)*/; // @bug 2514
818 * Add $str to the subtitle
820 * @param $str String to add to the subtitle
822 public function appendSubtitle( $str ) {
823 $this->mSubtitle .= /*$this->parse(*/ $str /*)*/; // @bug 2514
827 * Get the subtitle
829 * @return String
831 public function getSubtitle() {
832 return $this->mSubtitle;
836 * Set the page as printable, i.e. it'll be displayed with with all
837 * print styles included
839 public function setPrintable() {
840 $this->mPrintable = true;
844 * Return whether the page is "printable"
846 * @return Boolean
848 public function isPrintable() {
849 return $this->mPrintable;
853 * Disable output completely, i.e. calling output() will have no effect
855 public function disable() {
856 $this->mDoNothing = true;
860 * Return whether the output will be completely disabled
862 * @return Boolean
864 public function isDisabled() {
865 return $this->mDoNothing;
869 * Show an "add new section" link?
871 * @return Boolean
873 public function showNewSectionLink() {
874 return $this->mNewSectionLink;
878 * Forcibly hide the new section link?
880 * @return Boolean
882 public function forceHideNewSectionLink() {
883 return $this->mHideNewSectionLink;
887 * Add or remove feed links in the page header
888 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
889 * for the new version
890 * @see addFeedLink()
892 * @param $show Boolean: true: add default feeds, false: remove all feeds
894 public function setSyndicated( $show = true ) {
895 if ( $show ) {
896 $this->setFeedAppendQuery( false );
897 } else {
898 $this->mFeedLinks = array();
903 * Add default feeds to the page header
904 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
905 * for the new version
906 * @see addFeedLink()
908 * @param $val String: query to append to feed links or false to output
909 * default links
911 public function setFeedAppendQuery( $val ) {
912 global $wgAdvertisedFeedTypes;
914 $this->mFeedLinks = array();
916 foreach ( $wgAdvertisedFeedTypes as $type ) {
917 $query = "feed=$type";
918 if ( is_string( $val ) ) {
919 $query .= '&' . $val;
921 $this->mFeedLinks[$type] = $this->getTitle()->getLocalURL( $query );
926 * Add a feed link to the page header
928 * @param $format String: feed type, should be a key of $wgFeedClasses
929 * @param $href String: URL
931 public function addFeedLink( $format, $href ) {
932 global $wgAdvertisedFeedTypes;
934 if ( in_array( $format, $wgAdvertisedFeedTypes ) ) {
935 $this->mFeedLinks[$format] = $href;
940 * Should we output feed links for this page?
941 * @return Boolean
943 public function isSyndicated() {
944 return count( $this->mFeedLinks ) > 0;
948 * Return URLs for each supported syndication format for this page.
949 * @return array associating format keys with URLs
951 public function getSyndicationLinks() {
952 return $this->mFeedLinks;
956 * Will currently always return null
958 * @return null
960 public function getFeedAppendQuery() {
961 return $this->mFeedLinksAppendQuery;
965 * Set whether the displayed content is related to the source of the
966 * corresponding article on the wiki
967 * Setting true will cause the change "article related" toggle to true
969 * @param $v Boolean
971 public function setArticleFlag( $v ) {
972 $this->mIsarticle = $v;
973 if ( $v ) {
974 $this->mIsArticleRelated = $v;
979 * Return whether the content displayed page is related to the source of
980 * the corresponding article on the wiki
982 * @return Boolean
984 public function isArticle() {
985 return $this->mIsarticle;
989 * Set whether this page is related an article on the wiki
990 * Setting false will cause the change of "article flag" toggle to false
992 * @param $v Boolean
994 public function setArticleRelated( $v ) {
995 $this->mIsArticleRelated = $v;
996 if ( !$v ) {
997 $this->mIsarticle = false;
1002 * Return whether this page is related an article on the wiki
1004 * @return Boolean
1006 public function isArticleRelated() {
1007 return $this->mIsArticleRelated;
1011 * Add new language links
1013 * @param $newLinkArray Associative array mapping language code to the page
1014 * name
1016 public function addLanguageLinks( $newLinkArray ) {
1017 $this->mLanguageLinks += $newLinkArray;
1021 * Reset the language links and add new language links
1023 * @param $newLinkArray Associative array mapping language code to the page
1024 * name
1026 public function setLanguageLinks( $newLinkArray ) {
1027 $this->mLanguageLinks = $newLinkArray;
1031 * Get the list of language links
1033 * @return Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
1035 public function getLanguageLinks() {
1036 return $this->mLanguageLinks;
1040 * Add an array of categories, with names in the keys
1042 * @param $categories Array mapping category name => sort key
1044 public function addCategoryLinks( $categories ) {
1045 global $wgContLang;
1047 if ( !is_array( $categories ) || count( $categories ) == 0 ) {
1048 return;
1051 # Add the links to a LinkBatch
1052 $arr = array( NS_CATEGORY => $categories );
1053 $lb = new LinkBatch;
1054 $lb->setArray( $arr );
1056 # Fetch existence plus the hiddencat property
1057 $dbr = wfGetDB( DB_SLAVE );
1058 $res = $dbr->select( array( 'page', 'page_props' ),
1059 array( 'page_id', 'page_namespace', 'page_title', 'page_len', 'page_is_redirect', 'page_latest', 'pp_value' ),
1060 $lb->constructSet( 'page', $dbr ),
1061 __METHOD__,
1062 array(),
1063 array( 'page_props' => array( 'LEFT JOIN', array( 'pp_propname' => 'hiddencat', 'pp_page = page_id' ) ) )
1066 # Add the results to the link cache
1067 $lb->addResultToCache( LinkCache::singleton(), $res );
1069 # Set all the values to 'normal'. This can be done with array_fill_keys in PHP 5.2.0+
1070 $categories = array_combine(
1071 array_keys( $categories ),
1072 array_fill( 0, count( $categories ), 'normal' )
1075 # Mark hidden categories
1076 foreach ( $res as $row ) {
1077 if ( isset( $row->pp_value ) ) {
1078 $categories[$row->page_title] = 'hidden';
1082 # Add the remaining categories to the skin
1083 if ( wfRunHooks( 'OutputPageMakeCategoryLinks', array( &$this, $categories, &$this->mCategoryLinks ) ) ) {
1084 foreach ( $categories as $category => $type ) {
1085 $origcategory = $category;
1086 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
1087 $wgContLang->findVariantLink( $category, $title, true );
1088 if ( $category != $origcategory ) {
1089 if ( array_key_exists( $category, $categories ) ) {
1090 continue;
1093 $text = $wgContLang->convertHtml( $title->getText() );
1094 $this->mCategories[] = $title->getText();
1095 $this->mCategoryLinks[$type][] = Linker::link( $title, $text );
1101 * Reset the category links (but not the category list) and add $categories
1103 * @param $categories Array mapping category name => sort key
1105 public function setCategoryLinks( $categories ) {
1106 $this->mCategoryLinks = array();
1107 $this->addCategoryLinks( $categories );
1111 * Get the list of category links, in a 2-D array with the following format:
1112 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
1113 * hidden categories) and $link a HTML fragment with a link to the category
1114 * page
1116 * @return Array
1118 public function getCategoryLinks() {
1119 return $this->mCategoryLinks;
1123 * Get the list of category names this page belongs to
1125 * @return Array of strings
1127 public function getCategories() {
1128 return $this->mCategories;
1132 * Do not allow scripts which can be modified by wiki users to load on this page;
1133 * only allow scripts bundled with, or generated by, the software.
1135 public function disallowUserJs() {
1136 $this->reduceAllowedModules(
1137 ResourceLoaderModule::TYPE_SCRIPTS,
1138 ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL
1143 * Return whether user JavaScript is allowed for this page
1144 * @deprecated since 1.18 Load modules with ResourceLoader, and origin and
1145 * trustworthiness is identified and enforced automagically.
1146 * @return Boolean
1148 public function isUserJsAllowed() {
1149 return $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS ) >= ResourceLoaderModule::ORIGIN_USER_INDIVIDUAL;
1153 * Show what level of JavaScript / CSS untrustworthiness is allowed on this page
1154 * @see ResourceLoaderModule::$origin
1155 * @param $type String ResourceLoaderModule TYPE_ constant
1156 * @return Int ResourceLoaderModule ORIGIN_ class constant
1158 public function getAllowedModules( $type ){
1159 if( $type == ResourceLoaderModule::TYPE_COMBINED ){
1160 return min( array_values( $this->mAllowedModules ) );
1161 } else {
1162 return isset( $this->mAllowedModules[$type] )
1163 ? $this->mAllowedModules[$type]
1164 : ResourceLoaderModule::ORIGIN_ALL;
1169 * Set the highest level of CSS/JS untrustworthiness allowed
1170 * @param $type String ResourceLoaderModule TYPE_ constant
1171 * @param $level Int ResourceLoaderModule class constant
1173 public function setAllowedModules( $type, $level ){
1174 $this->mAllowedModules[$type] = $level;
1178 * As for setAllowedModules(), but don't inadvertantly make the page more accessible
1179 * @param $type String
1180 * @param $level Int ResourceLoaderModule class constant
1182 public function reduceAllowedModules( $type, $level ){
1183 $this->mAllowedModules[$type] = min( $this->getAllowedModules($type), $level );
1187 * Prepend $text to the body HTML
1189 * @param $text String: HTML
1191 public function prependHTML( $text ) {
1192 $this->mBodytext = $text . $this->mBodytext;
1196 * Append $text to the body HTML
1198 * @param $text String: HTML
1200 public function addHTML( $text ) {
1201 $this->mBodytext .= $text;
1205 * Clear the body HTML
1207 public function clearHTML() {
1208 $this->mBodytext = '';
1212 * Get the body HTML
1214 * @return String: HTML
1216 public function getHTML() {
1217 return $this->mBodytext;
1221 * Add $text to the debug output
1223 * @param $text String: debug text
1225 public function debug( $text ) {
1226 $this->mDebugtext .= $text;
1230 * Get/set the ParserOptions object to use for wikitext parsing
1232 * @param $options either the ParserOption to use or null to only get the
1233 * current ParserOption object
1234 * @return ParserOptions object
1236 public function parserOptions( $options = null ) {
1237 if ( !$this->mParserOptions ) {
1238 $this->mParserOptions = new ParserOptions;
1239 $this->mParserOptions->setEditSection( false );
1241 return wfSetVar( $this->mParserOptions, $options );
1245 * Set the revision ID which will be seen by the wiki text parser
1246 * for things such as embedded {{REVISIONID}} variable use.
1248 * @param $revid Mixed: an positive integer, or null
1249 * @return Mixed: previous value
1251 public function setRevisionId( $revid ) {
1252 $val = is_null( $revid ) ? null : intval( $revid );
1253 return wfSetVar( $this->mRevisionId, $val );
1257 * Get the displayed revision ID
1259 * @return Integer
1261 public function getRevisionId() {
1262 return $this->mRevisionId;
1266 * Set the displayed file version
1268 * @param $file File|false
1269 * @return Mixed: previous value
1271 public function setFileVersion( $file ) {
1272 $val = null;
1273 if ( $file instanceof File && $file->exists() ) {
1274 $val = array( 'time' => $file->getTimestamp(), 'sha1' => $file->getSha1() );
1276 return wfSetVar( $this->mFileVersion, $val, true );
1280 * Get the displayed file version
1282 * @return Array|null ('time' => MW timestamp, 'sha1' => sha1)
1284 public function getFileVersion() {
1285 return $this->mFileVersion;
1289 * Get the templates used on this page
1291 * @return Array (namespace => dbKey => revId)
1292 * @since 1.18
1294 public function getTemplateIds() {
1295 return $this->mTemplateIds;
1299 * Get the files used on this page
1301 * @return Array (dbKey => array('time' => MW timestamp or null, 'sha1' => sha1 or ''))
1302 * @since 1.18
1304 public function getImageTimeKeys() {
1305 return $this->mImageTimeKeys;
1309 * Convert wikitext to HTML and add it to the buffer
1310 * Default assumes that the current page title will be used.
1312 * @param $text String
1313 * @param $linestart Boolean: is this the start of a line?
1315 public function addWikiText( $text, $linestart = true ) {
1316 $title = $this->getTitle(); // Work arround E_STRICT
1317 $this->addWikiTextTitle( $text, $title, $linestart );
1321 * Add wikitext with a custom Title object
1323 * @param $text String: wikitext
1324 * @param $title Title object
1325 * @param $linestart Boolean: is this the start of a line?
1327 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
1328 $this->addWikiTextTitle( $text, $title, $linestart );
1332 * Add wikitext with a custom Title object and
1334 * @param $text String: wikitext
1335 * @param $title Title object
1336 * @param $linestart Boolean: is this the start of a line?
1338 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
1339 $this->addWikiTextTitle( $text, $title, $linestart, true );
1343 * Add wikitext with tidy enabled
1345 * @param $text String: wikitext
1346 * @param $linestart Boolean: is this the start of a line?
1348 public function addWikiTextTidy( $text, $linestart = true ) {
1349 $title = $this->getTitle();
1350 $this->addWikiTextTitleTidy( $text, $title, $linestart );
1354 * Add wikitext with a custom Title object
1356 * @param $text String: wikitext
1357 * @param $title Title object
1358 * @param $linestart Boolean: is this the start of a line?
1359 * @param $tidy Boolean: whether to use tidy
1361 public function addWikiTextTitle( $text, &$title, $linestart, $tidy = false ) {
1362 global $wgParser;
1364 wfProfileIn( __METHOD__ );
1366 wfIncrStats( 'pcache_not_possible' );
1368 $popts = $this->parserOptions();
1369 $oldTidy = $popts->setTidy( $tidy );
1371 $parserOutput = $wgParser->parse(
1372 $text, $title, $popts,
1373 $linestart, true, $this->mRevisionId
1376 $popts->setTidy( $oldTidy );
1378 $this->addParserOutput( $parserOutput );
1380 wfProfileOut( __METHOD__ );
1384 * Add a ParserOutput object, but without Html
1386 * @param $parserOutput ParserOutput object
1388 public function addParserOutputNoText( &$parserOutput ) {
1389 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
1390 $this->addCategoryLinks( $parserOutput->getCategories() );
1391 $this->mNewSectionLink = $parserOutput->getNewSection();
1392 $this->mHideNewSectionLink = $parserOutput->getHideNewSection();
1394 $this->mParseWarnings = $parserOutput->getWarnings();
1395 if ( !$parserOutput->isCacheable() ) {
1396 $this->enableClientCache( false );
1398 $this->mNoGallery = $parserOutput->getNoGallery();
1399 $this->mHeadItems = array_merge( $this->mHeadItems, $parserOutput->getHeadItems() );
1400 $this->addModules( $parserOutput->getModules() );
1401 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1402 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1403 $this->addModuleMessages( $parserOutput->getModuleMessages() );
1405 // Template versioning...
1406 foreach ( (array)$parserOutput->getTemplateIds() as $ns => $dbks ) {
1407 if ( isset( $this->mTemplateIds[$ns] ) ) {
1408 $this->mTemplateIds[$ns] = $dbks + $this->mTemplateIds[$ns];
1409 } else {
1410 $this->mTemplateIds[$ns] = $dbks;
1413 // File versioning...
1414 foreach ( (array)$parserOutput->getImageTimeKeys() as $dbk => $data ) {
1415 $this->mImageTimeKeys[$dbk] = $data;
1418 // Hooks registered in the object
1419 global $wgParserOutputHooks;
1420 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1421 list( $hookName, $data ) = $hookInfo;
1422 if ( isset( $wgParserOutputHooks[$hookName] ) ) {
1423 call_user_func( $wgParserOutputHooks[$hookName], $this, $parserOutput, $data );
1427 wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
1431 * Add a ParserOutput object
1433 * @param $parserOutput ParserOutput
1435 function addParserOutput( &$parserOutput ) {
1436 $this->addParserOutputNoText( $parserOutput );
1437 $text = $parserOutput->getText();
1438 wfRunHooks( 'OutputPageBeforeHTML', array( &$this, &$text ) );
1439 $this->addHTML( $text );
1444 * Add the output of a QuickTemplate to the output buffer
1446 * @param $template QuickTemplate
1448 public function addTemplate( &$template ) {
1449 ob_start();
1450 $template->execute();
1451 $this->addHTML( ob_get_contents() );
1452 ob_end_clean();
1456 * Parse wikitext and return the HTML.
1458 * @param $text String
1459 * @param $linestart Boolean: is this the start of a line?
1460 * @param $interface Boolean: use interface language ($wgLang instead of
1461 * $wgContLang) while parsing language sensitive magic
1462 * words like GRAMMAR and PLURAL
1463 * @param $language Language object: target language object, will override
1464 * $interface
1465 * @return String: HTML
1467 public function parse( $text, $linestart = true, $interface = false, $language = null ) {
1468 global $wgParser;
1470 if( is_null( $this->getTitle() ) ) {
1471 throw new MWException( 'Empty $mTitle in ' . __METHOD__ );
1474 $popts = $this->parserOptions();
1475 if ( $interface ) {
1476 $popts->setInterfaceMessage( true );
1478 if ( $language !== null ) {
1479 $oldLang = $popts->setTargetLanguage( $language );
1482 $parserOutput = $wgParser->parse(
1483 $text, $this->getTitle(), $popts,
1484 $linestart, true, $this->mRevisionId
1487 if ( $interface ) {
1488 $popts->setInterfaceMessage( false );
1490 if ( $language !== null ) {
1491 $popts->setTargetLanguage( $oldLang );
1494 return $parserOutput->getText();
1498 * Parse wikitext, strip paragraphs, and return the HTML.
1500 * @param $text String
1501 * @param $linestart Boolean: is this the start of a line?
1502 * @param $interface Boolean: use interface language ($wgLang instead of
1503 * $wgContLang) while parsing language sensitive magic
1504 * words like GRAMMAR and PLURAL
1505 * @return String: HTML
1507 public function parseInline( $text, $linestart = true, $interface = false ) {
1508 $parsed = $this->parse( $text, $linestart, $interface );
1510 $m = array();
1511 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?/sU', $parsed, $m ) ) {
1512 $parsed = $m[1];
1515 return $parsed;
1519 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1521 * @param $maxage Integer: maximum cache time on the Squid, in seconds.
1523 public function setSquidMaxage( $maxage ) {
1524 $this->mSquidMaxage = $maxage;
1528 * Use enableClientCache(false) to force it to send nocache headers
1530 * @param $state bool
1532 * @return bool
1534 public function enableClientCache( $state ) {
1535 return wfSetVar( $this->mEnableClientCache, $state );
1539 * Get the list of cookies that will influence on the cache
1541 * @return Array
1543 function getCacheVaryCookies() {
1544 global $wgCookiePrefix, $wgCacheVaryCookies;
1545 static $cookies;
1546 if ( $cookies === null ) {
1547 $cookies = array_merge(
1548 array(
1549 "{$wgCookiePrefix}Token",
1550 "{$wgCookiePrefix}LoggedOut",
1551 session_name()
1553 $wgCacheVaryCookies
1555 wfRunHooks( 'GetCacheVaryCookies', array( $this, &$cookies ) );
1557 return $cookies;
1561 * Return whether this page is not cacheable because "useskin" or "uselang"
1562 * URL parameters were passed.
1564 * @return Boolean
1566 function uncacheableBecauseRequestVars() {
1567 $request = $this->getRequest();
1568 return $request->getText( 'useskin', false ) === false
1569 && $request->getText( 'uselang', false ) === false;
1573 * Check if the request has a cache-varying cookie header
1574 * If it does, it's very important that we don't allow public caching
1576 * @return Boolean
1578 function haveCacheVaryCookies() {
1579 $cookieHeader = $this->getRequest()->getHeader( 'cookie' );
1580 if ( $cookieHeader === false ) {
1581 return false;
1583 $cvCookies = $this->getCacheVaryCookies();
1584 foreach ( $cvCookies as $cookieName ) {
1585 # Check for a simple string match, like the way squid does it
1586 if ( strpos( $cookieHeader, $cookieName ) !== false ) {
1587 wfDebug( __METHOD__ . ": found $cookieName\n" );
1588 return true;
1591 wfDebug( __METHOD__ . ": no cache-varying cookies found\n" );
1592 return false;
1596 * Add an HTTP header that will influence on the cache
1598 * @param $header String: header name
1599 * @param $option Array|null
1600 * @todo FIXME: Document the $option parameter; it appears to be for
1601 * X-Vary-Options but what format is acceptable?
1603 public function addVaryHeader( $header, $option = null ) {
1604 if ( !array_key_exists( $header, $this->mVaryHeader ) ) {
1605 $this->mVaryHeader[$header] = (array)$option;
1606 } elseif( is_array( $option ) ) {
1607 if( is_array( $this->mVaryHeader[$header] ) ) {
1608 $this->mVaryHeader[$header] = array_merge( $this->mVaryHeader[$header], $option );
1609 } else {
1610 $this->mVaryHeader[$header] = $option;
1613 $this->mVaryHeader[$header] = array_unique( $this->mVaryHeader[$header] );
1617 * Get a complete X-Vary-Options header
1619 * @return String
1621 public function getXVO() {
1622 $cvCookies = $this->getCacheVaryCookies();
1624 $cookiesOption = array();
1625 foreach ( $cvCookies as $cookieName ) {
1626 $cookiesOption[] = 'string-contains=' . $cookieName;
1628 $this->addVaryHeader( 'Cookie', $cookiesOption );
1630 $headers = array();
1631 foreach( $this->mVaryHeader as $header => $option ) {
1632 $newheader = $header;
1633 if( is_array( $option ) ) {
1634 $newheader .= ';' . implode( ';', $option );
1636 $headers[] = $newheader;
1638 $xvo = 'X-Vary-Options: ' . implode( ',', $headers );
1640 return $xvo;
1644 * bug 21672: Add Accept-Language to Vary and XVO headers
1645 * if there's no 'variant' parameter existed in GET.
1647 * For example:
1648 * /w/index.php?title=Main_page should always be served; but
1649 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
1651 function addAcceptLanguage() {
1652 global $wgContLang;
1653 if( !$this->getRequest()->getCheck( 'variant' ) && $wgContLang->hasVariants() ) {
1654 $variants = $wgContLang->getVariants();
1655 $aloption = array();
1656 foreach ( $variants as $variant ) {
1657 if( $variant === $wgContLang->getCode() ) {
1658 continue;
1659 } else {
1660 $aloption[] = 'string-contains=' . $variant;
1662 // IE and some other browsers use another form of language code
1663 // in their Accept-Language header, like "zh-CN" or "zh-TW".
1664 // We should handle these too.
1665 $ievariant = explode( '-', $variant );
1666 if ( count( $ievariant ) == 2 ) {
1667 $ievariant[1] = strtoupper( $ievariant[1] );
1668 $ievariant = implode( '-', $ievariant );
1669 $aloption[] = 'string-contains=' . $ievariant;
1673 $this->addVaryHeader( 'Accept-Language', $aloption );
1678 * Set a flag which will cause an X-Frame-Options header appropriate for
1679 * edit pages to be sent. The header value is controlled by
1680 * $wgEditPageFrameOptions.
1682 * This is the default for special pages. If you display a CSRF-protected
1683 * form on an ordinary view page, then you need to call this function.
1685 * @param $enable bool
1687 public function preventClickjacking( $enable = true ) {
1688 $this->mPreventClickjacking = $enable;
1692 * Turn off frame-breaking. Alias for $this->preventClickjacking(false).
1693 * This can be called from pages which do not contain any CSRF-protected
1694 * HTML form.
1696 public function allowClickjacking() {
1697 $this->mPreventClickjacking = false;
1701 * Get the X-Frame-Options header value (without the name part), or false
1702 * if there isn't one. This is used by Skin to determine whether to enable
1703 * JavaScript frame-breaking, for clients that don't support X-Frame-Options.
1705 * @return string
1707 public function getFrameOptions() {
1708 global $wgBreakFrames, $wgEditPageFrameOptions;
1709 if ( $wgBreakFrames ) {
1710 return 'DENY';
1711 } elseif ( $this->mPreventClickjacking && $wgEditPageFrameOptions ) {
1712 return $wgEditPageFrameOptions;
1717 * Send cache control HTTP headers
1719 public function sendCacheControl() {
1720 global $wgUseSquid, $wgUseESI, $wgUseETag, $wgSquidMaxage, $wgUseXVO;
1722 $response = $this->getRequest()->response();
1723 if ( $wgUseETag && $this->mETag ) {
1724 $response->header( "ETag: $this->mETag" );
1727 $this->addAcceptLanguage();
1729 # don't serve compressed data to clients who can't handle it
1730 # maintain different caches for logged-in users and non-logged in ones
1731 $response->header( 'Vary: ' . join( ', ', array_keys( $this->mVaryHeader ) ) );
1733 if ( $wgUseXVO ) {
1734 # Add an X-Vary-Options header for Squid with Wikimedia patches
1735 $response->header( $this->getXVO() );
1738 if( !$this->uncacheableBecauseRequestVars() && $this->mEnableClientCache ) {
1740 $wgUseSquid && session_id() == '' && !$this->isPrintable() &&
1741 $this->mSquidMaxage != 0 && !$this->haveCacheVaryCookies()
1744 if ( $wgUseESI ) {
1745 # We'll purge the proxy cache explicitly, but require end user agents
1746 # to revalidate against the proxy on each visit.
1747 # Surrogate-Control controls our Squid, Cache-Control downstream caches
1748 wfDebug( __METHOD__ . ": proxy caching with ESI; {$this->mLastModified} **\n", false );
1749 # start with a shorter timeout for initial testing
1750 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
1751 $response->header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
1752 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
1753 } else {
1754 # We'll purge the proxy cache for anons explicitly, but require end user agents
1755 # to revalidate against the proxy on each visit.
1756 # IMPORTANT! The Squid needs to replace the Cache-Control header with
1757 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
1758 wfDebug( __METHOD__ . ": local proxy caching; {$this->mLastModified} **\n", false );
1759 # start with a shorter timeout for initial testing
1760 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
1761 $response->header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
1763 } else {
1764 # We do want clients to cache if they can, but they *must* check for updates
1765 # on revisiting the page.
1766 wfDebug( __METHOD__ . ": private caching; {$this->mLastModified} **\n", false );
1767 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1768 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
1770 if($this->mLastModified) {
1771 $response->header( "Last-Modified: {$this->mLastModified}" );
1773 } else {
1774 wfDebug( __METHOD__ . ": no caching **\n", false );
1776 # In general, the absence of a last modified header should be enough to prevent
1777 # the client from using its cache. We send a few other things just to make sure.
1778 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1779 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1780 $response->header( 'Pragma: no-cache' );
1785 * Get the message associed with the HTTP response code $code
1787 * @param $code Integer: status code
1788 * @return String or null: message or null if $code is not in the list of
1789 * messages
1791 * @deprecated since 1.18 Use HttpStatus::getMessage() instead.
1793 public static function getStatusMessage( $code ) {
1794 wfDeprecated( __METHOD__ );
1795 return HttpStatus::getMessage( $code );
1799 * Finally, all the text has been munged and accumulated into
1800 * the object, let's actually output it:
1802 public function output() {
1803 global $wgLanguageCode, $wgDebugRedirects, $wgMimeType;
1805 if( $this->mDoNothing ) {
1806 return;
1809 wfProfileIn( __METHOD__ );
1811 $response = $this->getRequest()->response();
1813 if ( $this->mRedirect != '' ) {
1814 # Standards require redirect URLs to be absolute
1815 $this->mRedirect = wfExpandUrl( $this->mRedirect, PROTO_CURRENT );
1816 if( $this->mRedirectCode == '301' || $this->mRedirectCode == '303' ) {
1817 if( !$wgDebugRedirects ) {
1818 $message = HttpStatus::getMessage( $this->mRedirectCode );
1819 $response->header( "HTTP/1.1 {$this->mRedirectCode} $message" );
1821 $this->mLastModified = wfTimestamp( TS_RFC2822 );
1823 $this->sendCacheControl();
1825 $response->header( "Content-Type: text/html; charset=utf-8" );
1826 if( $wgDebugRedirects ) {
1827 $url = htmlspecialchars( $this->mRedirect );
1828 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
1829 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
1830 print "</body>\n</html>\n";
1831 } else {
1832 $response->header( 'Location: ' . $this->mRedirect );
1834 wfProfileOut( __METHOD__ );
1835 return;
1836 } elseif ( $this->mStatusCode ) {
1837 $message = HttpStatus::getMessage( $this->mStatusCode );
1838 if ( $message ) {
1839 $response->header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $message );
1843 # Buffer output; final headers may depend on later processing
1844 ob_start();
1846 $response->header( "Content-type: $wgMimeType; charset=UTF-8" );
1847 $response->header( 'Content-language: ' . $wgLanguageCode );
1849 // Prevent framing, if requested
1850 $frameOptions = $this->getFrameOptions();
1851 if ( $frameOptions ) {
1852 $response->header( "X-Frame-Options: $frameOptions" );
1855 if ( $this->mArticleBodyOnly ) {
1856 $this->out( $this->mBodytext );
1857 } else {
1858 $this->addDefaultModules();
1860 $sk = $this->getSkin();
1862 // Hook that allows last minute changes to the output page, e.g.
1863 // adding of CSS or Javascript by extensions.
1864 wfRunHooks( 'BeforePageDisplay', array( &$this, &$sk ) );
1866 wfProfileIn( 'Output-skin' );
1867 $sk->outputPage();
1868 wfProfileOut( 'Output-skin' );
1871 $this->sendCacheControl();
1872 ob_end_flush();
1873 wfProfileOut( __METHOD__ );
1877 * Actually output something with print().
1879 * @param $ins String: the string to output
1881 public function out( $ins ) {
1882 print $ins;
1886 * Produce a "user is blocked" page.
1887 * @deprecated since 1.18
1889 function blockedPage() {
1890 throw new UserBlockedError( $this->getUser()->mBlock );
1894 * Output a standard error page
1896 * showErrorPage( 'titlemsg', 'pagetextmsg', array( 'param1', 'param2' ) );
1897 * showErrorPage( 'titlemsg', $messageObject );
1899 * @param $title String: message key for page title
1900 * @param $msg Mixed: message key (string) for page text, or a Message object
1901 * @param $params Array: message parameters; ignored if $msg is a Message object
1903 public function showErrorPage( $title, $msg, $params = array() ) {
1904 if ( $this->getTitle() ) {
1905 $this->mDebugtext .= 'Original title: ' . $this->getTitle()->getPrefixedText() . "\n";
1907 $this->setPageTitle( wfMsg( $title ) );
1908 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
1909 $this->setRobotPolicy( 'noindex,nofollow' );
1910 $this->setArticleRelated( false );
1911 $this->enableClientCache( false );
1912 $this->mRedirect = '';
1913 $this->mBodytext = '';
1915 if ( $msg instanceof Message ){
1916 $this->addHTML( $msg->parse() );
1917 } else {
1918 $this->addWikiMsgArray( $msg, $params );
1921 $this->returnToMain();
1925 * Output a standard permission error page
1927 * @param $errors Array: error message keys
1928 * @param $action String: action that was denied or null if unknown
1930 public function showPermissionsErrorPage( $errors, $action = null ) {
1931 $this->mDebugtext .= 'Original title: ' .
1932 $this->getTitle()->getPrefixedText() . "\n";
1933 $this->setPageTitle( wfMsg( 'permissionserrors' ) );
1934 $this->setHTMLTitle( wfMsg( 'permissionserrors' ) );
1935 $this->setRobotPolicy( 'noindex,nofollow' );
1936 $this->setArticleRelated( false );
1937 $this->enableClientCache( false );
1938 $this->mRedirect = '';
1939 $this->mBodytext = '';
1940 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
1944 * Display an error page indicating that a given version of MediaWiki is
1945 * required to use it
1947 * @param $version Mixed: the version of MediaWiki needed to use the page
1949 public function versionRequired( $version ) {
1950 $this->setPageTitle( wfMsg( 'versionrequired', $version ) );
1951 $this->setHTMLTitle( wfMsg( 'versionrequired', $version ) );
1952 $this->setRobotPolicy( 'noindex,nofollow' );
1953 $this->setArticleRelated( false );
1954 $this->mBodytext = '';
1956 $this->addWikiMsg( 'versionrequiredtext', $version );
1957 $this->returnToMain();
1961 * Display an error page noting that a given permission bit is required.
1962 * @deprecated since 1.18, just throw the exception directly
1963 * @param $permission String: key required
1965 public function permissionRequired( $permission ) {
1966 throw new PermissionsError( $permission );
1970 * Produce the stock "please login to use the wiki" page
1972 public function loginToUse() {
1973 if( $this->getUser()->isLoggedIn() ) {
1974 throw new PermissionsError( 'read' );
1977 $this->setPageTitle( wfMsg( 'loginreqtitle' ) );
1978 $this->setHtmlTitle( wfMsg( 'errorpagetitle' ) );
1979 $this->setRobotPolicy( 'noindex,nofollow' );
1980 $this->setArticleRelated( false );
1982 $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
1983 $loginLink = Linker::linkKnown(
1984 $loginTitle,
1985 wfMsgHtml( 'loginreqlink' ),
1986 array(),
1987 array( 'returnto' => $this->getTitle()->getPrefixedText() )
1989 $this->addHTML( wfMessage( 'loginreqpagetext' )->rawParams( $loginLink )->parse() .
1990 "\n<!--" . $this->getTitle()->getPrefixedUrl() . '-->' );
1992 # Don't return to the main page if the user can't read it
1993 # otherwise we'll end up in a pointless loop
1994 $mainPage = Title::newMainPage();
1995 if( $mainPage->userCanRead() ) {
1996 $this->returnToMain( null, $mainPage );
2001 * Format a list of error messages
2003 * @param $errors Array of arrays returned by Title::getUserPermissionsErrors
2004 * @param $action String: action that was denied or null if unknown
2005 * @return String: the wikitext error-messages, formatted into a list.
2007 public function formatPermissionsErrorMessage( $errors, $action = null ) {
2008 if ( $action == null ) {
2009 $text = wfMsgNoTrans( 'permissionserrorstext', count( $errors ) ) . "\n\n";
2010 } else {
2011 $action_desc = wfMsgNoTrans( "action-$action" );
2012 $text = wfMsgNoTrans(
2013 'permissionserrorstext-withaction',
2014 count( $errors ),
2015 $action_desc
2016 ) . "\n\n";
2019 if ( count( $errors ) > 1 ) {
2020 $text .= '<ul class="permissions-errors">' . "\n";
2022 foreach( $errors as $error ) {
2023 $text .= '<li>';
2024 $text .= call_user_func_array( 'wfMsgNoTrans', $error );
2025 $text .= "</li>\n";
2027 $text .= '</ul>';
2028 } else {
2029 $text .= "<div class=\"permissions-errors\">\n" .
2030 call_user_func_array( 'wfMsgNoTrans', reset( $errors ) ) .
2031 "\n</div>";
2034 return $text;
2038 * Display a page stating that the Wiki is in read-only mode,
2039 * and optionally show the source of the page that the user
2040 * was trying to edit. Should only be called (for this
2041 * purpose) after wfReadOnly() has returned true.
2043 * For historical reasons, this function is _also_ used to
2044 * show the error message when a user tries to edit a page
2045 * they are not allowed to edit. (Unless it's because they're
2046 * blocked, then we show blockedPage() instead.) In this
2047 * case, the second parameter should be set to true and a list
2048 * of reasons supplied as the third parameter.
2050 * @todo Needs to be split into multiple functions.
2052 * @param $source String: source code to show (or null).
2053 * @param $protected Boolean: is this a permissions error?
2054 * @param $reasons Array: list of reasons for this error, as returned by Title::getUserPermissionsErrors().
2055 * @param $action String: action that was denied or null if unknown
2057 public function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
2058 global $wgEnableInterwikiTranscluding, $wgEnableInterwikiTemplatesTracking;
2060 $this->setRobotPolicy( 'noindex,nofollow' );
2061 $this->setArticleRelated( false );
2063 // If no reason is given, just supply a default "I can't let you do
2064 // that, Dave" message. Should only occur if called by legacy code.
2065 if ( $protected && empty( $reasons ) ) {
2066 $reasons[] = array( 'badaccess-group0' );
2069 if ( !empty( $reasons ) ) {
2070 // Permissions error
2071 if( $source ) {
2072 $this->setPageTitle( wfMsg( 'viewsource' ) );
2073 $this->setSubtitle(
2074 wfMsg( 'viewsourcefor', Linker::linkKnown( $this->getTitle() ) )
2076 } else {
2077 $this->setPageTitle( wfMsg( 'badaccess' ) );
2079 $this->addWikiText( $this->formatPermissionsErrorMessage( $reasons, $action ) );
2080 } else {
2081 // Wiki is read only
2082 throw new ReadOnlyError;
2085 // Show source, if supplied
2086 if( is_string( $source ) ) {
2087 $this->addWikiMsg( 'viewsourcetext' );
2089 $pageLang = $this->getTitle()->getPageLanguage();
2090 $params = array(
2091 'id' => 'wpTextbox1',
2092 'name' => 'wpTextbox1',
2093 'cols' => $this->getUser()->getOption( 'cols' ),
2094 'rows' => $this->getUser()->getOption( 'rows' ),
2095 'readonly' => 'readonly',
2096 'lang' => $pageLang->getCode(),
2097 'dir' => $pageLang->getDir(),
2099 $this->addHTML( Html::element( 'textarea', $params, $source ) );
2101 // Show templates used by this article
2102 $article = new Article( $this->getTitle() );
2103 $templates = Linker::formatTemplates( $article->getUsedTemplates() );
2104 $this->addHTML( "<div class='templatesUsed'>
2105 $templates
2106 </div>
2107 " );
2108 if ( $wgEnableInterwikiTranscluding && $wgEnableInterwikiTemplatesTracking ) {
2109 $distantTemplates = Linker::formatDistantTemplates( $article->getUsedDistantTemplates() );
2110 $this->addHTML( "<div class='distantTemplatesUsed'>
2111 $distantTemplates
2112 </div>
2113 " );
2117 # If the title doesn't exist, it's fairly pointless to print a return
2118 # link to it. After all, you just tried editing it and couldn't, so
2119 # what's there to do there?
2120 if( $this->getTitle()->exists() ) {
2121 $this->returnToMain( null, $this->getTitle() );
2126 * Turn off regular page output and return an error reponse
2127 * for when rate limiting has triggered.
2129 public function rateLimited() {
2130 throw new ThrottledError;
2134 * Show a warning about slave lag
2136 * If the lag is higher than $wgSlaveLagCritical seconds,
2137 * then the warning is a bit more obvious. If the lag is
2138 * lower than $wgSlaveLagWarning, then no warning is shown.
2140 * @param $lag Integer: slave lag
2142 public function showLagWarning( $lag ) {
2143 global $wgSlaveLagWarning, $wgSlaveLagCritical;
2144 if( $lag >= $wgSlaveLagWarning ) {
2145 $message = $lag < $wgSlaveLagCritical
2146 ? 'lag-warn-normal'
2147 : 'lag-warn-high';
2148 $wrap = Html::rawElement( 'div', array( 'class' => "mw-{$message}" ), "\n$1\n" );
2149 $this->wrapWikiMsg( "$wrap\n", array( $message, $this->getContext()->getLang()->formatNum( $lag ) ) );
2153 public function showFatalError( $message ) {
2154 $this->setPageTitle( wfMsg( 'internalerror' ) );
2155 $this->setRobotPolicy( 'noindex,nofollow' );
2156 $this->setArticleRelated( false );
2157 $this->enableClientCache( false );
2158 $this->mRedirect = '';
2159 $this->mBodytext = $message;
2162 public function showUnexpectedValueError( $name, $val ) {
2163 $this->showFatalError( wfMsg( 'unexpected', $name, $val ) );
2166 public function showFileCopyError( $old, $new ) {
2167 $this->showFatalError( wfMsg( 'filecopyerror', $old, $new ) );
2170 public function showFileRenameError( $old, $new ) {
2171 $this->showFatalError( wfMsg( 'filerenameerror', $old, $new ) );
2174 public function showFileDeleteError( $name ) {
2175 $this->showFatalError( wfMsg( 'filedeleteerror', $name ) );
2178 public function showFileNotFoundError( $name ) {
2179 $this->showFatalError( wfMsg( 'filenotfound', $name ) );
2183 * Add a "return to" link pointing to a specified title
2185 * @param $title Title to link
2186 * @param $query String query string
2187 * @param $text String text of the link (input is not escaped)
2189 public function addReturnTo( $title, $query = array(), $text = null ) {
2190 $this->addLink( array( 'rel' => 'next', 'href' => $title->getFullURL() ) );
2191 $link = wfMsgHtml(
2192 'returnto',
2193 Linker::link( $title, $text, array(), $query )
2195 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2199 * Add a "return to" link pointing to a specified title,
2200 * or the title indicated in the request, or else the main page
2202 * @param $unused No longer used
2203 * @param $returnto Title or String to return to
2204 * @param $returntoquery String: query string for the return to link
2206 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2207 if ( $returnto == null ) {
2208 $returnto = $this->getRequest()->getText( 'returnto' );
2211 if ( $returntoquery == null ) {
2212 $returntoquery = $this->getRequest()->getText( 'returntoquery' );
2215 if ( $returnto === '' ) {
2216 $returnto = Title::newMainPage();
2219 if ( is_object( $returnto ) ) {
2220 $titleObj = $returnto;
2221 } else {
2222 $titleObj = Title::newFromText( $returnto );
2224 if ( !is_object( $titleObj ) ) {
2225 $titleObj = Title::newMainPage();
2228 $this->addReturnTo( $titleObj, $returntoquery );
2232 * @param $sk Skin The given Skin
2233 * @param $includeStyle Boolean: unused
2234 * @return String: The doctype, opening <html>, and head element.
2236 public function headElement( Skin $sk, $includeStyle = true ) {
2237 global $wgContLang, $wgUseTrackbacks;
2238 $userdir = $this->getLang()->getDir();
2239 $sitedir = $wgContLang->getDir();
2241 if ( $sk->commonPrintStylesheet() ) {
2242 $this->addModuleStyles( 'mediawiki.legacy.wikiprintable' );
2245 $ret = Html::htmlHeader( array( 'lang' => $this->getLang()->getCode(), 'dir' => $userdir, 'class' => 'client-nojs' ) );
2247 if ( $this->getHTMLTitle() == '' ) {
2248 $this->setHTMLTitle( wfMsg( 'pagetitle', $this->getPageTitle() ) );
2251 $openHead = Html::openElement( 'head' );
2252 if ( $openHead ) {
2253 # Don't bother with the newline if $head == ''
2254 $ret .= "$openHead\n";
2257 $ret .= Html::element( 'title', null, $this->getHTMLTitle() ) . "\n";
2259 $ret .= implode( "\n", array(
2260 $this->getHeadLinks( null, true ),
2261 $this->buildCssLinks(),
2262 $this->getHeadScripts(),
2263 $this->getHeadItems()
2264 ) );
2266 if ( $wgUseTrackbacks && $this->isArticleRelated() ) {
2267 $ret .= $this->getTitle()->trackbackRDF();
2270 $closeHead = Html::closeElement( 'head' );
2271 if ( $closeHead ) {
2272 $ret .= "$closeHead\n";
2275 $bodyAttrs = array();
2277 # Classes for LTR/RTL directionality support
2278 $bodyAttrs['class'] = "mediawiki $userdir sitedir-$sitedir";
2280 if ( $this->getContext()->getLang()->capitalizeAllNouns() ) {
2281 # A <body> class is probably not the best way to do this . . .
2282 $bodyAttrs['class'] .= ' capitalize-all-nouns';
2284 $bodyAttrs['class'] .= ' ' . $sk->getPageClasses( $this->getTitle() );
2285 $bodyAttrs['class'] .= ' skin-' . Sanitizer::escapeClass( $sk->getSkinName() );
2287 $sk->addToBodyAttributes( $this, $bodyAttrs ); // Allow skins to add body attributes they need
2288 wfRunHooks( 'OutputPageBodyAttributes', array( $this, $sk, &$bodyAttrs ) );
2290 $ret .= Html::openElement( 'body', $bodyAttrs ) . "\n";
2292 return $ret;
2296 * Add the default ResourceLoader modules to this object
2298 private function addDefaultModules() {
2299 global $wgIncludeLegacyJavaScript, $wgUseAjax,
2300 $wgAjaxWatch, $wgEnableMWSuggest, $wgUseAJAXCategories;
2302 // Add base resources
2303 $this->addModules( array(
2304 'mediawiki.user',
2305 'mediawiki.util',
2306 'mediawiki.page.startup',
2307 'mediawiki.page.ready',
2308 ) );
2309 if ( $wgIncludeLegacyJavaScript ){
2310 $this->addModules( 'mediawiki.legacy.wikibits' );
2313 // Add various resources if required
2314 if ( $wgUseAjax ) {
2315 $this->addModules( 'mediawiki.legacy.ajax' );
2317 wfRunHooks( 'AjaxAddScript', array( &$this ) );
2319 if( $wgAjaxWatch && $this->getUser()->isLoggedIn() ) {
2320 $this->addModules( 'mediawiki.action.watch.ajax' );
2323 if ( $wgEnableMWSuggest && !$this->getUser()->getOption( 'disablesuggest', false ) ) {
2324 $this->addModules( 'mediawiki.legacy.mwsuggest' );
2328 if ( $this->getUser()->getBoolOption( 'editsectiononrightclick' ) ) {
2329 $this->addModules( 'mediawiki.action.view.rightClickEdit' );
2332 # Crazy edit-on-double-click stuff
2333 if ( $this->isArticle() && $this->getUser()->getOption( 'editondblclick' ) ) {
2334 $this->addModules( 'mediawiki.action.view.dblClickEdit' );
2337 if ( $wgUseAJAXCategories ) {
2338 global $wgAJAXCategoriesNamespaces;
2340 $title = $this->getTitle();
2342 if( empty( $wgAJAXCategoriesNamespaces ) || in_array( $title->getNamespace(), $wgAJAXCategoriesNamespaces ) ) {
2343 $this->addModules( 'mediawiki.page.ajaxCategories.init' );
2349 * Get a ResourceLoader object associated with this OutputPage
2351 * @return ResourceLoader
2353 public function getResourceLoader() {
2354 if ( is_null( $this->mResourceLoader ) ) {
2355 $this->mResourceLoader = new ResourceLoader();
2357 return $this->mResourceLoader;
2361 * TODO: Document
2362 * @param $modules Array/string with the module name(s)
2363 * @param $only String ResourceLoaderModule TYPE_ class constant
2364 * @param $useESI boolean
2365 * @param $extraQuery Array with extra query parameters to add to each request. array( param => value )
2366 * @return string html <script> and <style> tags
2368 protected function makeResourceLoaderLink( $modules, $only, $useESI = false, array $extraQuery = array() ) {
2369 global $wgLoadScript, $wgResourceLoaderUseESI,
2370 $wgResourceLoaderInlinePrivateModules;
2371 $baseQuery = array(
2372 'lang' => $this->getContext()->getLang()->getCode(),
2373 'debug' => ResourceLoader::inDebugMode() ? 'true' : 'false',
2374 'skin' => $this->getSkin()->getSkinName(),
2375 ) + $extraQuery;
2376 if ( $only !== ResourceLoaderModule::TYPE_COMBINED ) {
2377 $baseQuery['only'] = $only;
2379 // Propagate printable and handheld parameters if present
2380 if ( $this->isPrintable() ) {
2381 $baseQuery['printable'] = 1;
2383 if ( $this->getRequest()->getBool( 'handheld' ) ) {
2384 $baseQuery['handheld'] = 1;
2387 if ( !count( $modules ) ) {
2388 return '';
2391 if ( count( $modules ) > 1 ) {
2392 // Remove duplicate module requests
2393 $modules = array_unique( (array) $modules );
2394 // Sort module names so requests are more uniform
2395 sort( $modules );
2397 if ( ResourceLoader::inDebugMode() ) {
2398 // Recursively call us for every item
2399 $links = '';
2400 foreach ( $modules as $name ) {
2401 $links .= $this->makeResourceLoaderLink( $name, $only, $useESI );
2403 return $links;
2407 // Create keyed-by-group list of module objects from modules list
2408 $groups = array();
2409 $resourceLoader = $this->getResourceLoader();
2410 foreach ( (array) $modules as $name ) {
2411 $module = $resourceLoader->getModule( $name );
2412 # Check that we're allowed to include this module on this page
2413 if ( ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS )
2414 && $only == ResourceLoaderModule::TYPE_SCRIPTS )
2415 || ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_STYLES )
2416 && $only == ResourceLoaderModule::TYPE_STYLES )
2419 continue;
2422 $group = $module->getGroup();
2423 if ( !isset( $groups[$group] ) ) {
2424 $groups[$group] = array();
2426 $groups[$group][$name] = $module;
2429 $links = '';
2430 foreach ( $groups as $group => $modules ) {
2431 $query = $baseQuery;
2432 // Special handling for user-specific groups
2433 if ( ( $group === 'user' || $group === 'private' ) && $this->getUser()->isLoggedIn() ) {
2434 $query['user'] = $this->getUser()->getName();
2437 // Create a fake request based on the one we are about to make so modules return
2438 // correct timestamp and emptiness data
2439 $context = new ResourceLoaderContext( $resourceLoader, new FauxRequest( $query ) );
2440 // Drop modules that know they're empty
2441 foreach ( $modules as $key => $module ) {
2442 if ( $module->isKnownEmpty( $context ) ) {
2443 unset( $modules[$key] );
2446 // If there are no modules left, skip this group
2447 if ( $modules === array() ) {
2448 continue;
2451 $query['modules'] = ResourceLoader::makePackedModulesString( array_keys( $modules ) );
2453 // Support inlining of private modules if configured as such
2454 if ( $group === 'private' && $wgResourceLoaderInlinePrivateModules ) {
2455 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2456 $links .= Html::inlineStyle(
2457 $resourceLoader->makeModuleResponse( $context, $modules )
2459 } else {
2460 $links .= Html::inlineScript(
2461 ResourceLoader::makeLoaderConditionalScript(
2462 $resourceLoader->makeModuleResponse( $context, $modules )
2466 $links .= "\n";
2467 continue;
2469 // Special handling for the user group; because users might change their stuff
2470 // on-wiki like user pages, or user preferences; we need to find the highest
2471 // timestamp of these user-changable modules so we can ensure cache misses on change
2472 // This should NOT be done for the site group (bug 27564) because anons get that too
2473 // and we shouldn't be putting timestamps in Squid-cached HTML
2474 if ( $group === 'user' ) {
2475 // Get the maximum timestamp
2476 $timestamp = 1;
2477 foreach ( $modules as $module ) {
2478 $timestamp = max( $timestamp, $module->getModifiedTime( $context ) );
2480 // Add a version parameter so cache will break when things change
2481 $query['version'] = wfTimestamp( TS_ISO_8601_BASIC, $timestamp );
2483 // Make queries uniform in order
2484 ksort( $query );
2486 $url = wfAppendQuery( $wgLoadScript, $query );
2487 // Prevent the IE6 extension check from being triggered (bug 28840)
2488 // by appending a character that's invalid in Windows extensions ('*')
2489 $url .= '&*';
2490 if ( $useESI && $wgResourceLoaderUseESI ) {
2491 $esi = Xml::element( 'esi:include', array( 'src' => $url ) );
2492 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2493 $link = Html::inlineStyle( $esi );
2494 } else {
2495 $link = Html::inlineScript( $esi );
2497 } else {
2498 // Automatically select style/script elements
2499 if ( $only === ResourceLoaderModule::TYPE_STYLES ) {
2500 $link = Html::linkedStyle( $url );
2501 } else {
2502 $link = Html::linkedScript( $url );
2506 if( $group == 'noscript' ){
2507 $links .= Html::rawElement( 'noscript', array(), $link ) . "\n";
2508 } else {
2509 $links .= $link . "\n";
2512 return $links;
2516 * JS stuff to put in the <head>. This is the startup module, config
2517 * vars and modules marked with position 'top'
2519 * @return String: HTML fragment
2521 function getHeadScripts() {
2522 // Startup - this will immediately load jquery and mediawiki modules
2523 $scripts = $this->makeResourceLoaderLink( 'startup', ResourceLoaderModule::TYPE_SCRIPTS, true );
2525 // Load config before anything else
2526 $scripts .= Html::inlineScript(
2527 ResourceLoader::makeLoaderConditionalScript(
2528 ResourceLoader::makeConfigSetScript( $this->getJSVars() )
2532 // Script and Messages "only" requests marked for top inclusion
2533 // Messages should go first
2534 $scripts .= $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'top' ), ResourceLoaderModule::TYPE_MESSAGES );
2535 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'top' ), ResourceLoaderModule::TYPE_SCRIPTS );
2537 // Modules requests - let the client calculate dependencies and batch requests as it likes
2538 // Only load modules that have marked themselves for loading at the top
2539 $modules = $this->getModules( true, 'top' );
2540 if ( $modules ) {
2541 $scripts .= Html::inlineScript(
2542 ResourceLoader::makeLoaderConditionalScript(
2543 Xml::encodeJsCall( 'mw.loader.load', array( $modules ) )
2548 return $scripts;
2552 * JS stuff to put at the bottom of the <body>: modules marked with position 'bottom',
2553 * legacy scripts ($this->mScripts), user preferences, site JS and user JS
2555 * @return string
2557 function getBottomScripts() {
2558 global $wgUseSiteJs, $wgAllowUserJs;
2560 // Script and Messages "only" requests marked for bottom inclusion
2561 // Messages should go first
2562 $scripts = $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'bottom' ), ResourceLoaderModule::TYPE_MESSAGES );
2563 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'bottom' ), ResourceLoaderModule::TYPE_SCRIPTS );
2565 // Modules requests - let the client calculate dependencies and batch requests as it likes
2566 // Only load modules that have marked themselves for loading at the bottom
2567 $modules = $this->getModules( true, 'bottom' );
2568 if ( $modules ) {
2569 $scripts .= Html::inlineScript(
2570 ResourceLoader::makeLoaderConditionalScript(
2571 Xml::encodeJsCall( 'mw.loader.load', array( $modules ) )
2576 // Legacy Scripts
2577 $scripts .= "\n" . $this->mScripts;
2579 $userScripts = array( 'user.options', 'user.tokens' );
2581 // Add site JS if enabled
2582 if ( $wgUseSiteJs ) {
2583 $scripts .= $this->makeResourceLoaderLink( 'site', ResourceLoaderModule::TYPE_SCRIPTS );
2584 if( $this->getUser()->isLoggedIn() ){
2585 $userScripts[] = 'user.groups';
2589 // Add user JS if enabled
2590 if ( $wgAllowUserJs && $this->getUser()->isLoggedIn() ) {
2591 if( $this->getTitle() && $this->getTitle()->isJsSubpage() && $this->userCanPreview() ) {
2592 # XXX: additional security check/prompt?
2593 // We're on a preview of a JS subpage
2594 // Exclude this page from the user module in case it's in there (bug 26283)
2595 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS, false,
2596 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
2598 // Load the previewed JS
2599 $scripts .= Html::inlineScript( "\n" . $this->getRequest()->getText( 'wpTextbox1' ) . "\n" ) . "\n";
2600 } else {
2601 // Include the user module normally
2602 // We can't do $userScripts[] = 'user'; because the user module would end up
2603 // being wrapped in a closure, so load it raw like 'site'
2604 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS );
2607 $scripts .= $this->makeResourceLoaderLink( $userScripts, ResourceLoaderModule::TYPE_COMBINED );
2609 return $scripts;
2613 * Get an array containing global JS variables
2615 * Do not add things here which can be evaluated in
2616 * ResourceLoaderStartupScript - in other words, without state.
2617 * You will only be adding bloat to the page and causing page caches to
2618 * have to be purged on configuration changes.
2620 protected function getJSVars() {
2621 global $wgUseAjax, $wgEnableMWSuggest, $wgContLang;
2623 $title = $this->getTitle();
2624 $ns = $title->getNamespace();
2625 $nsname = MWNamespace::exists( $ns ) ? MWNamespace::getCanonicalName( $ns ) : $title->getNsText();
2626 if ( $ns == NS_SPECIAL ) {
2627 list( $canonicalName, /*...*/ ) = SpecialPageFactory::resolveAlias( $title->getDBkey() );
2628 } else {
2629 $canonicalName = false; # bug 21115
2632 $vars = array(
2633 'wgCanonicalNamespace' => $nsname,
2634 'wgCanonicalSpecialPageName' => $canonicalName,
2635 'wgNamespaceNumber' => $title->getNamespace(),
2636 'wgPageName' => $title->getPrefixedDBKey(),
2637 'wgTitle' => $title->getText(),
2638 'wgCurRevisionId' => $title->getLatestRevID(),
2639 'wgArticleId' => $title->getArticleId(),
2640 'wgIsArticle' => $this->isArticle(),
2641 'wgAction' => $this->getRequest()->getText( 'action', 'view' ),
2642 'wgUserName' => $this->getUser()->isAnon() ? null : $this->getUser()->getName(),
2643 'wgUserGroups' => $this->getUser()->getEffectiveGroups(),
2644 'wgCategories' => $this->getCategories(),
2645 'wgBreakFrames' => $this->getFrameOptions() == 'DENY',
2647 if ( $wgContLang->hasVariants() ) {
2648 $vars['wgUserVariant'] = $wgContLang->getPreferredVariant();
2650 foreach ( $title->getRestrictionTypes() as $type ) {
2651 $vars['wgRestriction' . ucfirst( $type )] = $title->getRestrictions( $type );
2653 if ( $wgUseAjax && $wgEnableMWSuggest && !$this->getUser()->getOption( 'disablesuggest', false ) ) {
2654 $vars['wgSearchNamespaces'] = SearchEngine::userNamespaces( $this->getUser() );
2656 if ( $title->isMainPage() ) {
2657 $vars['wgIsMainPage'] = true;
2660 // Allow extensions to add their custom variables to the global JS variables
2661 wfRunHooks( 'MakeGlobalVariablesScript', array( &$vars, &$this ) );
2663 return $vars;
2667 * To make it harder for someone to slip a user a fake
2668 * user-JavaScript or user-CSS preview, a random token
2669 * is associated with the login session. If it's not
2670 * passed back with the preview request, we won't render
2671 * the code.
2673 * @return bool
2675 public function userCanPreview() {
2676 if ( $this->getRequest()->getVal( 'action' ) != 'submit'
2677 || !$this->getRequest()->wasPosted()
2678 || !$this->getUser()->matchEditToken(
2679 $this->getRequest()->getVal( 'wpEditToken' ) )
2681 return false;
2683 if ( !$this->getTitle()->isJsSubpage() && !$this->getTitle()->isCssSubpage() ) {
2684 return false;
2687 return !count( $this->getTitle()->getUserPermissionsErrors( 'edit', $this->getUser() ) );
2691 * @param $unused Unused
2692 * @param $addContentType bool
2694 * @return string HTML tag links to be put in the header.
2696 public function getHeadLinks( $unused = null, $addContentType = false ) {
2697 global $wgUniversalEditButton, $wgFavicon, $wgAppleTouchIcon, $wgEnableAPI,
2698 $wgSitename, $wgVersion, $wgHtml5, $wgMimeType,
2699 $wgFeed, $wgOverrideSiteFeed, $wgAdvertisedFeedTypes,
2700 $wgDisableLangConversion, $wgCanonicalLanguageLinks, $wgContLang,
2701 $wgRightsPage, $wgRightsUrl;
2703 $tags = array();
2705 if ( $addContentType ) {
2706 if ( $wgHtml5 ) {
2707 # More succinct than <meta http-equiv=Content-Type>, has the
2708 # same effect
2709 $tags[] = Html::element( 'meta', array( 'charset' => 'UTF-8' ) );
2710 } else {
2711 $tags[] = Html::element( 'meta', array(
2712 'http-equiv' => 'Content-Type',
2713 'content' => "$wgMimeType; charset=UTF-8"
2714 ) );
2715 $tags[] = Html::element( 'meta', array( // bug 15835
2716 'http-equiv' => 'Content-Style-Type',
2717 'content' => 'text/css'
2718 ) );
2722 $tags[] = Html::element( 'meta', array(
2723 'name' => 'generator',
2724 'content' => "MediaWiki $wgVersion",
2725 ) );
2727 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
2728 if( $p !== 'index,follow' ) {
2729 // http://www.robotstxt.org/wc/meta-user.html
2730 // Only show if it's different from the default robots policy
2731 $tags[] = Html::element( 'meta', array(
2732 'name' => 'robots',
2733 'content' => $p,
2734 ) );
2737 if ( count( $this->mKeywords ) > 0 ) {
2738 $strip = array(
2739 "/<.*?" . ">/" => '',
2740 "/_/" => ' '
2742 $tags[] = Html::element( 'meta', array(
2743 'name' => 'keywords',
2744 'content' => preg_replace(
2745 array_keys( $strip ),
2746 array_values( $strip ),
2747 implode( ',', $this->mKeywords )
2749 ) );
2752 foreach ( $this->mMetatags as $tag ) {
2753 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
2754 $a = 'http-equiv';
2755 $tag[0] = substr( $tag[0], 5 );
2756 } else {
2757 $a = 'name';
2759 $tags[] = Html::element( 'meta',
2760 array(
2761 $a => $tag[0],
2762 'content' => $tag[1]
2767 foreach ( $this->mLinktags as $tag ) {
2768 $tags[] = Html::element( 'link', $tag );
2771 # Universal edit button
2772 if ( $wgUniversalEditButton ) {
2773 if ( $this->isArticleRelated() && $this->getTitle() && $this->getTitle()->quickUserCan( 'edit' )
2774 && ( $this->getTitle()->exists() || $this->getTitle()->quickUserCan( 'create' ) ) ) {
2775 // Original UniversalEditButton
2776 $msg = wfMsg( 'edit' );
2777 $tags[] = Html::element( 'link', array(
2778 'rel' => 'alternate',
2779 'type' => 'application/x-wiki',
2780 'title' => $msg,
2781 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
2782 ) );
2783 // Alternate edit link
2784 $tags[] = Html::element( 'link', array(
2785 'rel' => 'edit',
2786 'title' => $msg,
2787 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
2788 ) );
2792 # Generally the order of the favicon and apple-touch-icon links
2793 # should not matter, but Konqueror (3.5.9 at least) incorrectly
2794 # uses whichever one appears later in the HTML source. Make sure
2795 # apple-touch-icon is specified first to avoid this.
2796 if ( $wgAppleTouchIcon !== false ) {
2797 $tags[] = Html::element( 'link', array( 'rel' => 'apple-touch-icon', 'href' => $wgAppleTouchIcon ) );
2800 if ( $wgFavicon !== false ) {
2801 $tags[] = Html::element( 'link', array( 'rel' => 'shortcut icon', 'href' => $wgFavicon ) );
2804 # OpenSearch description link
2805 $tags[] = Html::element( 'link', array(
2806 'rel' => 'search',
2807 'type' => 'application/opensearchdescription+xml',
2808 'href' => wfScript( 'opensearch_desc' ),
2809 'title' => wfMsgForContent( 'opensearch-desc' ),
2810 ) );
2812 if ( $wgEnableAPI ) {
2813 # Real Simple Discovery link, provides auto-discovery information
2814 # for the MediaWiki API (and potentially additional custom API
2815 # support such as WordPress or Twitter-compatible APIs for a
2816 # blogging extension, etc)
2817 $tags[] = Html::element( 'link', array(
2818 'rel' => 'EditURI',
2819 'type' => 'application/rsd+xml',
2820 // Output a protocol-relative URL here if $wgServer is protocol-relative
2821 // Whether RSD accepts relative or protocol-relative URLs is completely undocumented, though
2822 'href' => wfExpandUrl( wfAppendQuery( wfScript( 'api' ), array( 'action' => 'rsd' ) ), PROTO_RELATIVE ),
2823 ) );
2826 # Language variants
2827 if ( !$wgDisableLangConversion && $wgCanonicalLanguageLinks
2828 && $wgContLang->hasVariants() ) {
2830 $urlvar = $wgContLang->getURLVariant();
2832 if ( !$urlvar ) {
2833 $variants = $wgContLang->getVariants();
2834 foreach ( $variants as $_v ) {
2835 $tags[] = Html::element( 'link', array(
2836 'rel' => 'alternate',
2837 'hreflang' => $_v,
2838 'href' => $this->getTitle()->getLocalURL( '', $_v ) )
2841 } else {
2842 $tags[] = Html::element( 'link', array(
2843 'rel' => 'canonical',
2844 'href' => $this->getTitle()->getCanonicalUrl()
2845 ) );
2849 # Copyright
2850 $copyright = '';
2851 if ( $wgRightsPage ) {
2852 $copy = Title::newFromText( $wgRightsPage );
2854 if ( $copy ) {
2855 $copyright = $copy->getLocalURL();
2859 if ( !$copyright && $wgRightsUrl ) {
2860 $copyright = $wgRightsUrl;
2863 if ( $copyright ) {
2864 $tags[] = Html::element( 'link', array(
2865 'rel' => 'copyright',
2866 'href' => $copyright )
2870 # Feeds
2871 if ( $wgFeed ) {
2872 foreach( $this->getSyndicationLinks() as $format => $link ) {
2873 # Use the page name for the title. In principle, this could
2874 # lead to issues with having the same name for different feeds
2875 # corresponding to the same page, but we can't avoid that at
2876 # this low a level.
2878 $tags[] = $this->feedLink(
2879 $format,
2880 $link,
2881 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
2882 wfMsg( "page-{$format}-feed", $this->getTitle()->getPrefixedText() )
2886 # Recent changes feed should appear on every page (except recentchanges,
2887 # that would be redundant). Put it after the per-page feed to avoid
2888 # changing existing behavior. It's still available, probably via a
2889 # menu in your browser. Some sites might have a different feed they'd
2890 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
2891 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
2892 # If so, use it instead.
2894 $rctitle = SpecialPage::getTitleFor( 'Recentchanges' );
2896 if ( $wgOverrideSiteFeed ) {
2897 foreach ( $wgOverrideSiteFeed as $type => $feedUrl ) {
2898 $tags[] = $this->feedLink(
2899 $type,
2900 htmlspecialchars( $feedUrl ),
2901 wfMsg( "site-{$type}-feed", $wgSitename )
2904 } elseif ( $this->getTitle()->getPrefixedText() != $rctitle->getPrefixedText() ) {
2905 foreach ( $wgAdvertisedFeedTypes as $format ) {
2906 $tags[] = $this->feedLink(
2907 $format,
2908 $rctitle->getLocalURL( "feed={$format}" ),
2909 wfMsg( "site-{$format}-feed", $wgSitename ) # For grep: 'site-rss-feed', 'site-atom-feed'.
2914 return implode( "\n", $tags );
2918 * Generate a <link rel/> for a feed.
2920 * @param $type String: feed type
2921 * @param $url String: URL to the feed
2922 * @param $text String: value of the "title" attribute
2923 * @return String: HTML fragment
2925 private function feedLink( $type, $url, $text ) {
2926 return Html::element( 'link', array(
2927 'rel' => 'alternate',
2928 'type' => "application/$type+xml",
2929 'title' => $text,
2930 'href' => $url )
2935 * Add a local or specified stylesheet, with the given media options.
2936 * Meant primarily for internal use...
2938 * @param $style String: URL to the file
2939 * @param $media String: to specify a media type, 'screen', 'printable', 'handheld' or any.
2940 * @param $condition String: for IE conditional comments, specifying an IE version
2941 * @param $dir String: set to 'rtl' or 'ltr' for direction-specific sheets
2943 public function addStyle( $style, $media = '', $condition = '', $dir = '' ) {
2944 $options = array();
2945 // Even though we expect the media type to be lowercase, but here we
2946 // force it to lowercase to be safe.
2947 if( $media ) {
2948 $options['media'] = $media;
2950 if( $condition ) {
2951 $options['condition'] = $condition;
2953 if( $dir ) {
2954 $options['dir'] = $dir;
2956 $this->styles[$style] = $options;
2960 * Adds inline CSS styles
2961 * @param $style_css Mixed: inline CSS
2963 public function addInlineStyle( $style_css ){
2964 $this->mInlineStyles .= Html::inlineStyle( $style_css );
2968 * Build a set of <link>s for the stylesheets specified in the $this->styles array.
2969 * These will be applied to various media & IE conditionals.
2971 * @return string
2973 public function buildCssLinks() {
2974 global $wgUseSiteCss, $wgAllowUserCss, $wgAllowUserCssPrefs;
2976 $this->getSkin()->setupSkinUserCss( $this );
2978 // Add ResourceLoader styles
2979 // Split the styles into four groups
2980 $styles = array( 'other' => array(), 'user' => array(), 'site' => array(), 'private' => array(), 'noscript' => array() );
2981 $otherTags = ''; // Tags to append after the normal <link> tags
2982 $resourceLoader = $this->getResourceLoader();
2984 $moduleStyles = $this->getModuleStyles();
2986 // Per-site custom styles
2987 if ( $wgUseSiteCss ) {
2988 $moduleStyles[] = 'site';
2989 $moduleStyles[] = 'noscript';
2990 if( $this->getUser()->isLoggedIn() ){
2991 $moduleStyles[] = 'user.groups';
2995 // Per-user custom styles
2996 if ( $wgAllowUserCss ) {
2997 if ( $this->getTitle()->isCssSubpage() && $this->userCanPreview() ) {
2998 // We're on a preview of a CSS subpage
2999 // Exclude this page from the user module in case it's in there (bug 26283)
3000 $otherTags .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_STYLES, false,
3001 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
3003 // Load the previewed CSS
3004 $otherTags .= Html::inlineStyle( $this->getRequest()->getText( 'wpTextbox1' ) );
3005 } else {
3006 // Load the user styles normally
3007 $moduleStyles[] = 'user';
3011 // Per-user preference styles
3012 if ( $wgAllowUserCssPrefs ) {
3013 $moduleStyles[] = 'user.options';
3016 foreach ( $moduleStyles as $name ) {
3017 $group = $resourceLoader->getModule( $name )->getGroup();
3018 // Modules in groups named "other" or anything different than "user", "site" or "private"
3019 // will be placed in the "other" group
3020 $styles[isset( $styles[$group] ) ? $group : 'other'][] = $name;
3023 // We want site, private and user styles to override dynamically added styles from modules, but we want
3024 // dynamically added styles to override statically added styles from other modules. So the order
3025 // has to be other, dynamic, site, private, user
3026 // Add statically added styles for other modules
3027 $ret = $this->makeResourceLoaderLink( $styles['other'], ResourceLoaderModule::TYPE_STYLES );
3028 // Add normal styles added through addStyle()/addInlineStyle() here
3029 $ret .= implode( "\n", $this->buildCssLinksArray() ) . $this->mInlineStyles;
3030 // Add marker tag to mark the place where the client-side loader should inject dynamic styles
3031 // We use a <meta> tag with a made-up name for this because that's valid HTML
3032 $ret .= Html::element( 'meta', array( 'name' => 'ResourceLoaderDynamicStyles', 'content' => '' ) ) . "\n";
3034 // Add site, private and user styles
3035 // 'private' at present only contains user.options, so put that before 'user'
3036 // Any future private modules will likely have a similar user-specific character
3037 foreach ( array( 'site', 'noscript', 'private', 'user' ) as $group ) {
3038 $ret .= $this->makeResourceLoaderLink( $styles[$group],
3039 ResourceLoaderModule::TYPE_STYLES
3043 // Add stuff in $otherTags (previewed user CSS if applicable)
3044 $ret .= $otherTags;
3045 return $ret;
3048 public function buildCssLinksArray() {
3049 $links = array();
3051 // Add any extension CSS
3052 foreach ( $this->mExtStyles as $url ) {
3053 $this->addStyle( $url );
3055 $this->mExtStyles = array();
3057 foreach( $this->styles as $file => $options ) {
3058 $link = $this->styleLink( $file, $options );
3059 if( $link ) {
3060 $links[$file] = $link;
3063 return $links;
3067 * Generate \<link\> tags for stylesheets
3069 * @param $style String: URL to the file
3070 * @param $options Array: option, can contain 'condition', 'dir', 'media'
3071 * keys
3072 * @return String: HTML fragment
3074 protected function styleLink( $style, $options ) {
3075 if( isset( $options['dir'] ) ) {
3076 if( $this->getLang()->getDir() != $options['dir'] ) {
3077 return '';
3081 if( isset( $options['media'] ) ) {
3082 $media = self::transformCssMedia( $options['media'] );
3083 if( is_null( $media ) ) {
3084 return '';
3086 } else {
3087 $media = 'all';
3090 if( substr( $style, 0, 1 ) == '/' ||
3091 substr( $style, 0, 5 ) == 'http:' ||
3092 substr( $style, 0, 6 ) == 'https:' ) {
3093 $url = $style;
3094 } else {
3095 global $wgStylePath, $wgStyleVersion;
3096 $url = $wgStylePath . '/' . $style . '?' . $wgStyleVersion;
3099 $link = Html::linkedStyle( $url, $media );
3101 if( isset( $options['condition'] ) ) {
3102 $condition = htmlspecialchars( $options['condition'] );
3103 $link = "<!--[if $condition]>$link<![endif]-->";
3105 return $link;
3109 * Transform "media" attribute based on request parameters
3111 * @param $media String: current value of the "media" attribute
3112 * @return String: modified value of the "media" attribute
3114 public static function transformCssMedia( $media ) {
3115 global $wgRequest, $wgHandheldForIPhone;
3117 // Switch in on-screen display for media testing
3118 $switches = array(
3119 'printable' => 'print',
3120 'handheld' => 'handheld',
3122 foreach( $switches as $switch => $targetMedia ) {
3123 if( $wgRequest->getBool( $switch ) ) {
3124 if( $media == $targetMedia ) {
3125 $media = '';
3126 } elseif( $media == 'screen' ) {
3127 return null;
3132 // Expand longer media queries as iPhone doesn't grok 'handheld'
3133 if( $wgHandheldForIPhone ) {
3134 $mediaAliases = array(
3135 'screen' => 'screen and (min-device-width: 481px)',
3136 'handheld' => 'handheld, only screen and (max-device-width: 480px)',
3139 if( isset( $mediaAliases[$media] ) ) {
3140 $media = $mediaAliases[$media];
3144 return $media;
3148 * Add a wikitext-formatted message to the output.
3149 * This is equivalent to:
3151 * $wgOut->addWikiText( wfMsgNoTrans( ... ) )
3153 public function addWikiMsg( /*...*/ ) {
3154 $args = func_get_args();
3155 $name = array_shift( $args );
3156 $this->addWikiMsgArray( $name, $args );
3160 * Add a wikitext-formatted message to the output.
3161 * Like addWikiMsg() except the parameters are taken as an array
3162 * instead of a variable argument list.
3164 * $options is passed through to wfMsgExt(), see that function for details.
3166 * @param $name string
3167 * @param $args array
3168 * @param $options array
3170 public function addWikiMsgArray( $name, $args, $options = array() ) {
3171 $options[] = 'parse';
3172 $text = wfMsgExt( $name, $options, $args );
3173 $this->addHTML( $text );
3177 * This function takes a number of message/argument specifications, wraps them in
3178 * some overall structure, and then parses the result and adds it to the output.
3180 * In the $wrap, $1 is replaced with the first message, $2 with the second, and so
3181 * on. The subsequent arguments may either be strings, in which case they are the
3182 * message names, or arrays, in which case the first element is the message name,
3183 * and subsequent elements are the parameters to that message.
3185 * The special named parameter 'options' in a message specification array is passed
3186 * through to the $options parameter of wfMsgExt().
3188 * Don't use this for messages that are not in users interface language.
3190 * For example:
3192 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>", 'some-error' );
3194 * Is equivalent to:
3196 * $wgOut->addWikiText( "<div class='error'>\n" . wfMsgNoTrans( 'some-error' ) . "\n</div>" );
3198 * The newline after opening div is needed in some wikitext. See bug 19226.
3200 * @param $wrap string
3202 public function wrapWikiMsg( $wrap /*, ...*/ ) {
3203 $msgSpecs = func_get_args();
3204 array_shift( $msgSpecs );
3205 $msgSpecs = array_values( $msgSpecs );
3206 $s = $wrap;
3207 foreach ( $msgSpecs as $n => $spec ) {
3208 $options = array();
3209 if ( is_array( $spec ) ) {
3210 $args = $spec;
3211 $name = array_shift( $args );
3212 if ( isset( $args['options'] ) ) {
3213 $options = $args['options'];
3214 unset( $args['options'] );
3216 } else {
3217 $args = array();
3218 $name = $spec;
3220 $s = str_replace( '$' . ( $n + 1 ), wfMsgExt( $name, $options, $args ), $s );
3222 $this->addWikiText( $s );
3226 * Include jQuery core. Use this to avoid loading it multiple times
3227 * before we get a usable script loader.
3229 * @param $modules Array: list of jQuery modules which should be loaded
3230 * @return Array: the list of modules which were not loaded.
3231 * @since 1.16
3232 * @deprecated since 1.17
3234 public function includeJQuery( $modules = array() ) {
3235 return array();