2c9a081a253d028c408aa7719cb1b51f8eae655f
[lhc/web/wiklou.git] / includes / OutputPage.php
1 <?php
2 /**
3 * Preparation for the final page rendering.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * This class should be covered by a general architecture document which does
25 * not exist as of January 2011. This is one of the Core classes and should
26 * be read at least once by any new developers.
27 *
28 * This class is used to prepare the final rendering. A skin is then
29 * applied to the output parameters (links, javascript, html, categories ...).
30 *
31 * @todo FIXME: Another class handles sending the whole page to the client.
32 *
33 * Some comments comes from a pairing session between Zak Greant and Antoine Musso
34 * in November 2010.
35 *
36 * @todo document
37 */
38 class OutputPage extends ContextSource {
39 /// Should be private. Used with addMeta() which adds "<meta>"
40 var $mMetatags = array();
41
42 /// "<meta keywords='stuff'>" most of the time the first 10 links to an article
43 var $mKeywords = array();
44
45 var $mLinktags = array();
46 var $mCanonicalUrl = false;
47
48 /// Additional stylesheets. Looks like this is for extensions. Might be replaced by resource loader.
49 var $mExtStyles = array();
50
51 /// Should be private - has getter and setter. Contains the HTML title
52 var $mPagetitle = '';
53
54 /// Contains all of the "<body>" content. Should be private we got set/get accessors and the append() method.
55 var $mBodytext = '';
56
57 /**
58 * Holds the debug lines that will be output as comments in page source if
59 * $wgDebugComments is enabled. See also $wgShowDebug.
60 * @deprecated since 1.20; use MWDebug class instead.
61 */
62 public $mDebugtext = '';
63
64 /// Should be private. Stores contents of "<title>" tag
65 var $mHTMLtitle = '';
66
67 /// Should be private. Is the displayed content related to the source of the corresponding wiki article.
68 var $mIsarticle = false;
69
70 /**
71 * Should be private. Has get/set methods properly documented.
72 * Stores "article flag" toggle.
73 */
74 var $mIsArticleRelated = true;
75
76 /**
77 * Should be private. We have to set isPrintable(). Some pages should
78 * never be printed (ex: redirections).
79 */
80 var $mPrintable = false;
81
82 /**
83 * Should be private. We have set/get/append methods.
84 *
85 * Contains the page subtitle. Special pages usually have some links here.
86 * Don't confuse with site subtitle added by skins.
87 */
88 private $mSubtitle = array();
89
90 var $mRedirect = '';
91 var $mStatusCode;
92
93 /**
94 * mLastModified and mEtag are used for sending cache control.
95 * The whole caching system should probably be moved into its own class.
96 */
97 var $mLastModified = '';
98
99 /**
100 * Should be private. No getter but used in sendCacheControl();
101 * Contains an HTTP Entity Tags (see RFC 2616 section 3.13) which is used
102 * as a unique identifier for the content. It is later used by the client
103 * to compare its cached version with the server version. Client sends
104 * headers If-Match and If-None-Match containing its locally cached ETAG value.
105 *
106 * To get more information, you will have to look at HTTP/1.1 protocol which
107 * is properly described in RFC 2616 : http://tools.ietf.org/html/rfc2616
108 */
109 var $mETag = false;
110
111 var $mCategoryLinks = array();
112 var $mCategories = array();
113
114 /// Should be private. Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
115 var $mLanguageLinks = array();
116
117 /**
118 * Should be private. Used for JavaScript (pre resource loader)
119 * We should split js / css.
120 * mScripts content is inserted as is in "<head>" by Skin. This might
121 * contains either a link to a stylesheet or inline css.
122 */
123 var $mScripts = '';
124
125 /**
126 * Inline CSS styles. Use addInlineStyle() sparingly
127 */
128 var $mInlineStyles = '';
129
130 //
131 var $mLinkColours;
132
133 /**
134 * Used by skin template.
135 * Example: $tpl->set( 'displaytitle', $out->mPageLinkTitle );
136 */
137 var $mPageLinkTitle = '';
138
139 /// Array of elements in "<head>". Parser might add its own headers!
140 var $mHeadItems = array();
141
142 // @todo FIXME: Next variables probably comes from the resource loader
143 var $mModules = array(), $mModuleScripts = array(), $mModuleStyles = array(), $mModuleMessages = array();
144 var $mResourceLoader;
145 var $mJsConfigVars = array();
146
147 /** @todo FIXME: Is this still used ?*/
148 var $mInlineMsg = array();
149
150 var $mTemplateIds = array();
151 var $mImageTimeKeys = array();
152
153 var $mRedirectCode = '';
154
155 var $mFeedLinksAppendQuery = null;
156
157 # What level of 'untrustworthiness' is allowed in CSS/JS modules loaded on this page?
158 # @see ResourceLoaderModule::$origin
159 # ResourceLoaderModule::ORIGIN_ALL is assumed unless overridden;
160 protected $mAllowedModules = array(
161 ResourceLoaderModule::TYPE_COMBINED => ResourceLoaderModule::ORIGIN_ALL,
162 );
163
164 /**
165 * @EasterEgg I just love the name for this self documenting variable.
166 * @todo document
167 */
168 var $mDoNothing = false;
169
170 // Parser related.
171 var $mContainsOldMagic = 0, $mContainsNewMagic = 0;
172
173 /**
174 * lazy initialised, use parserOptions()
175 * @var ParserOptions
176 */
177 protected $mParserOptions = null;
178
179 /**
180 * Handles the atom / rss links.
181 * We probably only support atom in 2011.
182 * Looks like a private variable.
183 * @see $wgAdvertisedFeedTypes
184 */
185 var $mFeedLinks = array();
186
187 // Gwicke work on squid caching? Roughly from 2003.
188 var $mEnableClientCache = true;
189
190 /**
191 * Flag if output should only contain the body of the article.
192 * Should be private.
193 */
194 var $mArticleBodyOnly = false;
195
196 var $mNewSectionLink = false;
197 var $mHideNewSectionLink = false;
198
199 /**
200 * Comes from the parser. This was probably made to load CSS/JS only
201 * if we had "<gallery>". Used directly in CategoryPage.php
202 * Looks like resource loader can replace this.
203 */
204 var $mNoGallery = false;
205
206 // should be private.
207 var $mPageTitleActionText = '';
208 var $mParseWarnings = array();
209
210 // Cache stuff. Looks like mEnableClientCache
211 var $mSquidMaxage = 0;
212
213 // @todo document
214 var $mPreventClickjacking = true;
215
216 /// should be private. To include the variable {{REVISIONID}}
217 var $mRevisionId = null;
218 private $mRevisionTimestamp = null;
219
220 var $mFileVersion = null;
221
222 /**
223 * An array of stylesheet filenames (relative from skins path), with options
224 * for CSS media, IE conditions, and RTL/LTR direction.
225 * For internal use; add settings in the skin via $this->addStyle()
226 *
227 * Style again! This seems like a code duplication since we already have
228 * mStyles. This is what makes OpenSource amazing.
229 */
230 var $styles = array();
231
232 /**
233 * Whether jQuery is already handled.
234 */
235 protected $mJQueryDone = false;
236
237 private $mIndexPolicy = 'index';
238 private $mFollowPolicy = 'follow';
239 private $mVaryHeader = array(
240 'Accept-Encoding' => array( 'list-contains=gzip' ),
241 );
242
243 /**
244 * If the current page was reached through a redirect, $mRedirectedFrom contains the Title
245 * of the redirect.
246 *
247 * @var Title
248 */
249 private $mRedirectedFrom = null;
250
251 /**
252 * Additional key => value data
253 */
254 private $mProperties = array();
255
256 /**
257 * @var string|null: ResourceLoader target for load.php links. If null, will be omitted
258 */
259 private $mTarget = null;
260
261 /**
262 * Constructor for OutputPage. This should not be called directly.
263 * Instead a new RequestContext should be created and it will implicitly create
264 * a OutputPage tied to that context.
265 */
266 function __construct( IContextSource $context = null ) {
267 if ( $context === null ) {
268 # Extensions should use `new RequestContext` instead of `new OutputPage` now.
269 wfDeprecated( __METHOD__, '1.18' );
270 } else {
271 $this->setContext( $context );
272 }
273 }
274
275 /**
276 * Redirect to $url rather than displaying the normal page
277 *
278 * @param string $url URL
279 * @param string $responsecode HTTP status code
280 */
281 public function redirect( $url, $responsecode = '302' ) {
282 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
283 $this->mRedirect = str_replace( "\n", '', $url );
284 $this->mRedirectCode = $responsecode;
285 }
286
287 /**
288 * Get the URL to redirect to, or an empty string if not redirect URL set
289 *
290 * @return String
291 */
292 public function getRedirect() {
293 return $this->mRedirect;
294 }
295
296 /**
297 * Set the HTTP status code to send with the output.
298 *
299 * @param $statusCode Integer
300 */
301 public function setStatusCode( $statusCode ) {
302 $this->mStatusCode = $statusCode;
303 }
304
305 /**
306 * Add a new "<meta>" tag
307 * To add an http-equiv meta tag, precede the name with "http:"
308 *
309 * @param string $name tag name
310 * @param string $val tag value
311 */
312 function addMeta( $name, $val ) {
313 array_push( $this->mMetatags, array( $name, $val ) );
314 }
315
316 /**
317 * Add a keyword or a list of keywords in the page header
318 *
319 * @param string $text or array of strings
320 */
321 function addKeyword( $text ) {
322 if ( is_array( $text ) ) {
323 $this->mKeywords = array_merge( $this->mKeywords, $text );
324 } else {
325 array_push( $this->mKeywords, $text );
326 }
327 }
328
329 /**
330 * Add a new \<link\> tag to the page header.
331 *
332 * Note: use setCanonicalUrl() for rel=canonical.
333 *
334 * @param array $linkarr associative array of attributes.
335 */
336 function addLink( $linkarr ) {
337 array_push( $this->mLinktags, $linkarr );
338 }
339
340 /**
341 * Add a new \<link\> with "rel" attribute set to "meta"
342 *
343 * @param array $linkarr associative array mapping attribute names to their
344 * values, both keys and values will be escaped, and the
345 * "rel" attribute will be automatically added
346 */
347 function addMetadataLink( $linkarr ) {
348 $linkarr['rel'] = $this->getMetadataAttribute();
349 $this->addLink( $linkarr );
350 }
351
352 /**
353 * Set the URL to be used for the <link rel=canonical>. This should be used
354 * in preference to addLink(), to avoid duplicate link tags.
355 */
356 function setCanonicalUrl( $url ) {
357 $this->mCanonicalUrl = $url;
358 }
359
360 /**
361 * Get the value of the "rel" attribute for metadata links
362 *
363 * @return String
364 */
365 public function getMetadataAttribute() {
366 # note: buggy CC software only reads first "meta" link
367 static $haveMeta = false;
368 if ( $haveMeta ) {
369 return 'alternate meta';
370 } else {
371 $haveMeta = true;
372 return 'meta';
373 }
374 }
375
376 /**
377 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
378 *
379 * @param string $script raw HTML
380 */
381 function addScript( $script ) {
382 $this->mScripts .= $script . "\n";
383 }
384
385 /**
386 * Register and add a stylesheet from an extension directory.
387 *
388 * @param string $url path to sheet. Provide either a full url (beginning
389 * with 'http', etc) or a relative path from the document root
390 * (beginning with '/'). Otherwise it behaves identically to
391 * addStyle() and draws from the /skins folder.
392 */
393 public function addExtensionStyle( $url ) {
394 array_push( $this->mExtStyles, $url );
395 }
396
397 /**
398 * Get all styles added by extensions
399 *
400 * @return Array
401 */
402 function getExtStyle() {
403 return $this->mExtStyles;
404 }
405
406 /**
407 * Add a JavaScript file out of skins/common, or a given relative path.
408 *
409 * @param string $file filename in skins/common or complete on-server path
410 * (/foo/bar.js)
411 * @param string $version style version of the file. Defaults to $wgStyleVersion
412 */
413 public function addScriptFile( $file, $version = null ) {
414 global $wgStylePath, $wgStyleVersion;
415 // See if $file parameter is an absolute URL or begins with a slash
416 if ( substr( $file, 0, 1 ) == '/' || preg_match( '#^[a-z]*://#i', $file ) ) {
417 $path = $file;
418 } else {
419 $path = "{$wgStylePath}/common/{$file}";
420 }
421 if ( is_null( $version ) ) {
422 $version = $wgStyleVersion;
423 }
424 $this->addScript( Html::linkedScript( wfAppendQuery( $path, $version ) ) );
425 }
426
427 /**
428 * Add a self-contained script tag with the given contents
429 *
430 * @param string $script JavaScript text, no "<script>" tags
431 */
432 public function addInlineScript( $script ) {
433 $this->mScripts .= Html::inlineScript( "\n$script\n" ) . "\n";
434 }
435
436 /**
437 * Get all registered JS and CSS tags for the header.
438 *
439 * @return String
440 */
441 function getScript() {
442 return $this->mScripts . $this->getHeadItems();
443 }
444
445 /**
446 * Filter an array of modules to remove insufficiently trustworthy members, and modules
447 * which are no longer registered (eg a page is cached before an extension is disabled)
448 * @param $modules Array
449 * @param string $position if not null, only return modules with this position
450 * @param $type string
451 * @return Array
452 */
453 protected function filterModules( $modules, $position = null, $type = ResourceLoaderModule::TYPE_COMBINED ) {
454 $resourceLoader = $this->getResourceLoader();
455 $filteredModules = array();
456 foreach ( $modules as $val ) {
457 $module = $resourceLoader->getModule( $val );
458 if ( $module instanceof ResourceLoaderModule
459 && $module->getOrigin() <= $this->getAllowedModules( $type )
460 && ( is_null( $position ) || $module->getPosition() == $position )
461 && ( !$this->mTarget || in_array( $this->mTarget, $module->getTargets() ) ) )
462 {
463 $filteredModules[] = $val;
464 }
465 }
466 return $filteredModules;
467 }
468
469 /**
470 * Get the list of modules to include on this page
471 *
472 * @param bool $filter whether to filter out insufficiently trustworthy modules
473 * @param string $position if not null, only return modules with this position
474 * @param $param string
475 * @return Array of module names
476 */
477 public function getModules( $filter = false, $position = null, $param = 'mModules' ) {
478 $modules = array_values( array_unique( $this->$param ) );
479 return $filter
480 ? $this->filterModules( $modules, $position )
481 : $modules;
482 }
483
484 /**
485 * Add one or more modules recognized by the resource loader. Modules added
486 * through this function will be loaded by the resource loader when the
487 * page loads.
488 *
489 * @param $modules Mixed: module name (string) or array of module names
490 */
491 public function addModules( $modules ) {
492 $this->mModules = array_merge( $this->mModules, (array)$modules );
493 }
494
495 /**
496 * Get the list of module JS to include on this page
497 *
498 * @param $filter
499 * @param $position
500 *
501 * @return array of module names
502 */
503 public function getModuleScripts( $filter = false, $position = null ) {
504 return $this->getModules( $filter, $position, 'mModuleScripts' );
505 }
506
507 /**
508 * Add only JS of one or more modules recognized by the resource loader. Module
509 * scripts added through this function will be loaded by the resource loader when
510 * the page loads.
511 *
512 * @param $modules Mixed: module name (string) or array of module names
513 */
514 public function addModuleScripts( $modules ) {
515 $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules );
516 }
517
518 /**
519 * Get the list of module CSS to include on this page
520 *
521 * @param $filter
522 * @param $position
523 *
524 * @return Array of module names
525 */
526 public function getModuleStyles( $filter = false, $position = null ) {
527 return $this->getModules( $filter, $position, 'mModuleStyles' );
528 }
529
530 /**
531 * Add only CSS of one or more modules recognized by the resource loader.
532 *
533 * Module styles added through this function will be added using standard link CSS
534 * tags, rather than as a combined Javascript and CSS package. Thus, they will
535 * load when JavaScript is disabled (unless CSS also happens to be disabled).
536 *
537 * @param $modules Mixed: module name (string) or array of module names
538 */
539 public function addModuleStyles( $modules ) {
540 $this->mModuleStyles = array_merge( $this->mModuleStyles, (array)$modules );
541 }
542
543 /**
544 * Get the list of module messages to include on this page
545 *
546 * @param $filter
547 * @param $position
548 *
549 * @return Array of module names
550 */
551 public function getModuleMessages( $filter = false, $position = null ) {
552 return $this->getModules( $filter, $position, 'mModuleMessages' );
553 }
554
555 /**
556 * Add only messages of one or more modules recognized by the resource loader.
557 * Module messages added through this function will be loaded by the resource
558 * loader when the page loads.
559 *
560 * @param $modules Mixed: module name (string) or array of module names
561 */
562 public function addModuleMessages( $modules ) {
563 $this->mModuleMessages = array_merge( $this->mModuleMessages, (array)$modules );
564 }
565
566 /**
567 * @return null|string: ResourceLoader target
568 */
569 public function getTarget() {
570 return $this->mTarget;
571 }
572
573 /**
574 * Sets ResourceLoader target for load.php links. If null, will be omitted
575 *
576 * @param $target string|null
577 */
578 public function setTarget( $target ) {
579 $this->mTarget = $target;
580 }
581
582 /**
583 * Get an array of head items
584 *
585 * @return Array
586 */
587 function getHeadItemsArray() {
588 return $this->mHeadItems;
589 }
590
591 /**
592 * Get all header items in a string
593 *
594 * @return String
595 */
596 function getHeadItems() {
597 $s = '';
598 foreach ( $this->mHeadItems as $item ) {
599 $s .= $item;
600 }
601 return $s;
602 }
603
604 /**
605 * Add or replace an header item to the output
606 *
607 * @param string $name item name
608 * @param string $value raw HTML
609 */
610 public function addHeadItem( $name, $value ) {
611 $this->mHeadItems[$name] = $value;
612 }
613
614 /**
615 * Check if the header item $name is already set
616 *
617 * @param string $name item name
618 * @return Boolean
619 */
620 public function hasHeadItem( $name ) {
621 return isset( $this->mHeadItems[$name] );
622 }
623
624 /**
625 * Set the value of the ETag HTTP header, only used if $wgUseETag is true
626 *
627 * @param string $tag value of "ETag" header
628 */
629 function setETag( $tag ) {
630 $this->mETag = $tag;
631 }
632
633 /**
634 * Set whether the output should only contain the body of the article,
635 * without any skin, sidebar, etc.
636 * Used e.g. when calling with "action=render".
637 *
638 * @param $only Boolean: whether to output only the body of the article
639 */
640 public function setArticleBodyOnly( $only ) {
641 $this->mArticleBodyOnly = $only;
642 }
643
644 /**
645 * Return whether the output will contain only the body of the article
646 *
647 * @return Boolean
648 */
649 public function getArticleBodyOnly() {
650 return $this->mArticleBodyOnly;
651 }
652
653 /**
654 * Set an additional output property
655 * @since 1.21
656 *
657 * @param string $name
658 * @param mixed $value
659 */
660 public function setProperty( $name, $value ) {
661 $this->mProperties[$name] = $value;
662 }
663
664 /**
665 * Get an additional output property
666 * @since 1.21
667 *
668 * @param $name
669 * @return mixed: Property value or null if not found
670 */
671 public function getProperty( $name ) {
672 if ( isset( $this->mProperties[$name] ) ) {
673 return $this->mProperties[$name];
674 } else {
675 return null;
676 }
677 }
678
679 /**
680 * checkLastModified tells the client to use the client-cached page if
681 * possible. If successful, the OutputPage is disabled so that
682 * any future call to OutputPage->output() have no effect.
683 *
684 * Side effect: sets mLastModified for Last-Modified header
685 *
686 * @param $timestamp string
687 *
688 * @return Boolean: true iff cache-ok headers was sent.
689 */
690 public function checkLastModified( $timestamp ) {
691 global $wgCachePages, $wgCacheEpoch, $wgUseSquid, $wgSquidMaxage;
692
693 if ( !$timestamp || $timestamp == '19700101000000' ) {
694 wfDebug( __METHOD__ . ": CACHE DISABLED, NO TIMESTAMP\n" );
695 return false;
696 }
697 if ( !$wgCachePages ) {
698 wfDebug( __METHOD__ . ": CACHE DISABLED\n", false );
699 return false;
700 }
701 if ( $this->getUser()->getOption( 'nocache' ) ) {
702 wfDebug( __METHOD__ . ": USER DISABLED CACHE\n", false );
703 return false;
704 }
705
706 $timestamp = wfTimestamp( TS_MW, $timestamp );
707 $modifiedTimes = array(
708 'page' => $timestamp,
709 'user' => $this->getUser()->getTouched(),
710 'epoch' => $wgCacheEpoch
711 );
712 if ( $wgUseSquid ) {
713 // bug 44570: the core page itself may not change, but resources might
714 $modifiedTimes['sepoch'] = wfTimestamp( TS_MW, time() - $wgSquidMaxage );
715 }
716 wfRunHooks( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
717
718 $maxModified = max( $modifiedTimes );
719 $this->mLastModified = wfTimestamp( TS_RFC2822, $maxModified );
720
721 $clientHeader = $this->getRequest()->getHeader( 'If-Modified-Since' );
722 if ( $clientHeader === false ) {
723 wfDebug( __METHOD__ . ": client did not send If-Modified-Since header\n", false );
724 return false;
725 }
726
727 # IE sends sizes after the date like this:
728 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
729 # this breaks strtotime().
730 $clientHeader = preg_replace( '/;.*$/', '', $clientHeader );
731
732 wfSuppressWarnings(); // E_STRICT system time bitching
733 $clientHeaderTime = strtotime( $clientHeader );
734 wfRestoreWarnings();
735 if ( !$clientHeaderTime ) {
736 wfDebug( __METHOD__ . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
737 return false;
738 }
739 $clientHeaderTime = wfTimestamp( TS_MW, $clientHeaderTime );
740
741 # Make debug info
742 $info = '';
743 foreach ( $modifiedTimes as $name => $value ) {
744 if ( $info !== '' ) {
745 $info .= ', ';
746 }
747 $info .= "$name=" . wfTimestamp( TS_ISO_8601, $value );
748 }
749
750 wfDebug( __METHOD__ . ": client sent If-Modified-Since: " .
751 wfTimestamp( TS_ISO_8601, $clientHeaderTime ) . "\n", false );
752 wfDebug( __METHOD__ . ": effective Last-Modified: " .
753 wfTimestamp( TS_ISO_8601, $maxModified ) . "\n", false );
754 if ( $clientHeaderTime < $maxModified ) {
755 wfDebug( __METHOD__ . ": STALE, $info\n", false );
756 return false;
757 }
758
759 # Not modified
760 # Give a 304 response code and disable body output
761 wfDebug( __METHOD__ . ": NOT MODIFIED, $info\n", false );
762 ini_set( 'zlib.output_compression', 0 );
763 $this->getRequest()->response()->header( "HTTP/1.1 304 Not Modified" );
764 $this->sendCacheControl();
765 $this->disable();
766
767 // Don't output a compressed blob when using ob_gzhandler;
768 // it's technically against HTTP spec and seems to confuse
769 // Firefox when the response gets split over two packets.
770 wfClearOutputBuffers();
771
772 return true;
773 }
774
775 /**
776 * Override the last modified timestamp
777 *
778 * @param string $timestamp new timestamp, in a format readable by
779 * wfTimestamp()
780 */
781 public function setLastModified( $timestamp ) {
782 $this->mLastModified = wfTimestamp( TS_RFC2822, $timestamp );
783 }
784
785 /**
786 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
787 *
788 * @param string $policy the literal string to output as the contents of
789 * the meta tag. Will be parsed according to the spec and output in
790 * standardized form.
791 * @return null
792 */
793 public function setRobotPolicy( $policy ) {
794 $policy = Article::formatRobotPolicy( $policy );
795
796 if ( isset( $policy['index'] ) ) {
797 $this->setIndexPolicy( $policy['index'] );
798 }
799 if ( isset( $policy['follow'] ) ) {
800 $this->setFollowPolicy( $policy['follow'] );
801 }
802 }
803
804 /**
805 * Set the index policy for the page, but leave the follow policy un-
806 * touched.
807 *
808 * @param string $policy Either 'index' or 'noindex'.
809 * @return null
810 */
811 public function setIndexPolicy( $policy ) {
812 $policy = trim( $policy );
813 if ( in_array( $policy, array( 'index', 'noindex' ) ) ) {
814 $this->mIndexPolicy = $policy;
815 }
816 }
817
818 /**
819 * Set the follow policy for the page, but leave the index policy un-
820 * touched.
821 *
822 * @param string $policy either 'follow' or 'nofollow'.
823 * @return null
824 */
825 public function setFollowPolicy( $policy ) {
826 $policy = trim( $policy );
827 if ( in_array( $policy, array( 'follow', 'nofollow' ) ) ) {
828 $this->mFollowPolicy = $policy;
829 }
830 }
831
832 /**
833 * Set the new value of the "action text", this will be added to the
834 * "HTML title", separated from it with " - ".
835 *
836 * @param string $text new value of the "action text"
837 */
838 public function setPageTitleActionText( $text ) {
839 $this->mPageTitleActionText = $text;
840 }
841
842 /**
843 * Get the value of the "action text"
844 *
845 * @return String
846 */
847 public function getPageTitleActionText() {
848 if ( isset( $this->mPageTitleActionText ) ) {
849 return $this->mPageTitleActionText;
850 }
851 return '';
852 }
853
854 /**
855 * "HTML title" means the contents of "<title>".
856 * It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
857 *
858 * @param $name string
859 */
860 public function setHTMLTitle( $name ) {
861 if ( $name instanceof Message ) {
862 $this->mHTMLtitle = $name->setContext( $this->getContext() )->text();
863 } else {
864 $this->mHTMLtitle = $name;
865 }
866 }
867
868 /**
869 * Return the "HTML title", i.e. the content of the "<title>" tag.
870 *
871 * @return String
872 */
873 public function getHTMLTitle() {
874 return $this->mHTMLtitle;
875 }
876
877 /**
878 * Set $mRedirectedFrom, the Title of the page which redirected us to the current page.
879 *
880 * @param $t Title
881 */
882 public function setRedirectedFrom( $t ) {
883 $this->mRedirectedFrom = $t;
884 }
885
886 /**
887 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML fragment.
888 * This function allows good tags like \<sup\> in the \<h1\> tag, but not bad tags like \<script\>.
889 * This function automatically sets \<title\> to the same content as \<h1\> but with all tags removed.
890 * Bad tags that were escaped in \<h1\> will still be escaped in \<title\>, and good tags like \<i\> will be dropped entirely.
891 *
892 * @param $name string|Message
893 */
894 public function setPageTitle( $name ) {
895 if ( $name instanceof Message ) {
896 $name = $name->setContext( $this->getContext() )->text();
897 }
898
899 # change "<script>foo&bar</script>" to "&lt;script&gt;foo&amp;bar&lt;/script&gt;"
900 # but leave "<i>foobar</i>" alone
901 $nameWithTags = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $name ) );
902 $this->mPagetitle = $nameWithTags;
903
904 # change "<i>foo&amp;bar</i>" to "foo&bar"
905 $this->setHTMLTitle( $this->msg( 'pagetitle' )->rawParams( Sanitizer::stripAllTags( $nameWithTags ) ) );
906 }
907
908 /**
909 * Return the "page title", i.e. the content of the \<h1\> tag.
910 *
911 * @return String
912 */
913 public function getPageTitle() {
914 return $this->mPagetitle;
915 }
916
917 /**
918 * Set the Title object to use
919 *
920 * @param $t Title object
921 */
922 public function setTitle( Title $t ) {
923 $this->getContext()->setTitle( $t );
924 }
925
926 /**
927 * Replace the subtitle with $str
928 *
929 * @param string|Message $str new value of the subtitle. String should be safe HTML.
930 */
931 public function setSubtitle( $str ) {
932 $this->clearSubtitle();
933 $this->addSubtitle( $str );
934 }
935
936 /**
937 * Add $str to the subtitle
938 *
939 * @deprecated in 1.19; use addSubtitle() instead
940 * @param string|Message $str to add to the subtitle
941 */
942 public function appendSubtitle( $str ) {
943 $this->addSubtitle( $str );
944 }
945
946 /**
947 * Add $str to the subtitle
948 *
949 * @param string|Message $str to add to the subtitle. String should be safe HTML.
950 */
951 public function addSubtitle( $str ) {
952 if ( $str instanceof Message ) {
953 $this->mSubtitle[] = $str->setContext( $this->getContext() )->parse();
954 } else {
955 $this->mSubtitle[] = $str;
956 }
957 }
958
959 /**
960 * Add a subtitle containing a backlink to a page
961 *
962 * @param $title Title to link to
963 */
964 public function addBacklinkSubtitle( Title $title ) {
965 $query = array();
966 if ( $title->isRedirect() ) {
967 $query['redirect'] = 'no';
968 }
969 $this->addSubtitle( $this->msg( 'backlinksubtitle' )->rawParams( Linker::link( $title, null, array(), $query ) ) );
970 }
971
972 /**
973 * Clear the subtitles
974 */
975 public function clearSubtitle() {
976 $this->mSubtitle = array();
977 }
978
979 /**
980 * Get the subtitle
981 *
982 * @return String
983 */
984 public function getSubtitle() {
985 return implode( "<br />\n\t\t\t\t", $this->mSubtitle );
986 }
987
988 /**
989 * Set the page as printable, i.e. it'll be displayed with with all
990 * print styles included
991 */
992 public function setPrintable() {
993 $this->mPrintable = true;
994 }
995
996 /**
997 * Return whether the page is "printable"
998 *
999 * @return Boolean
1000 */
1001 public function isPrintable() {
1002 return $this->mPrintable;
1003 }
1004
1005 /**
1006 * Disable output completely, i.e. calling output() will have no effect
1007 */
1008 public function disable() {
1009 $this->mDoNothing = true;
1010 }
1011
1012 /**
1013 * Return whether the output will be completely disabled
1014 *
1015 * @return Boolean
1016 */
1017 public function isDisabled() {
1018 return $this->mDoNothing;
1019 }
1020
1021 /**
1022 * Show an "add new section" link?
1023 *
1024 * @return Boolean
1025 */
1026 public function showNewSectionLink() {
1027 return $this->mNewSectionLink;
1028 }
1029
1030 /**
1031 * Forcibly hide the new section link?
1032 *
1033 * @return Boolean
1034 */
1035 public function forceHideNewSectionLink() {
1036 return $this->mHideNewSectionLink;
1037 }
1038
1039 /**
1040 * Add or remove feed links in the page header
1041 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1042 * for the new version
1043 * @see addFeedLink()
1044 *
1045 * @param $show Boolean: true: add default feeds, false: remove all feeds
1046 */
1047 public function setSyndicated( $show = true ) {
1048 if ( $show ) {
1049 $this->setFeedAppendQuery( false );
1050 } else {
1051 $this->mFeedLinks = array();
1052 }
1053 }
1054
1055 /**
1056 * Add default feeds to the page header
1057 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
1058 * for the new version
1059 * @see addFeedLink()
1060 *
1061 * @param string $val query to append to feed links or false to output
1062 * default links
1063 */
1064 public function setFeedAppendQuery( $val ) {
1065 global $wgAdvertisedFeedTypes;
1066
1067 $this->mFeedLinks = array();
1068
1069 foreach ( $wgAdvertisedFeedTypes as $type ) {
1070 $query = "feed=$type";
1071 if ( is_string( $val ) ) {
1072 $query .= '&' . $val;
1073 }
1074 $this->mFeedLinks[$type] = $this->getTitle()->getLocalURL( $query );
1075 }
1076 }
1077
1078 /**
1079 * Add a feed link to the page header
1080 *
1081 * @param string $format feed type, should be a key of $wgFeedClasses
1082 * @param string $href URL
1083 */
1084 public function addFeedLink( $format, $href ) {
1085 global $wgAdvertisedFeedTypes;
1086
1087 if ( in_array( $format, $wgAdvertisedFeedTypes ) ) {
1088 $this->mFeedLinks[$format] = $href;
1089 }
1090 }
1091
1092 /**
1093 * Should we output feed links for this page?
1094 * @return Boolean
1095 */
1096 public function isSyndicated() {
1097 return count( $this->mFeedLinks ) > 0;
1098 }
1099
1100 /**
1101 * Return URLs for each supported syndication format for this page.
1102 * @return array associating format keys with URLs
1103 */
1104 public function getSyndicationLinks() {
1105 return $this->mFeedLinks;
1106 }
1107
1108 /**
1109 * Will currently always return null
1110 *
1111 * @return null
1112 */
1113 public function getFeedAppendQuery() {
1114 return $this->mFeedLinksAppendQuery;
1115 }
1116
1117 /**
1118 * Set whether the displayed content is related to the source of the
1119 * corresponding article on the wiki
1120 * Setting true will cause the change "article related" toggle to true
1121 *
1122 * @param $v Boolean
1123 */
1124 public function setArticleFlag( $v ) {
1125 $this->mIsarticle = $v;
1126 if ( $v ) {
1127 $this->mIsArticleRelated = $v;
1128 }
1129 }
1130
1131 /**
1132 * Return whether the content displayed page is related to the source of
1133 * the corresponding article on the wiki
1134 *
1135 * @return Boolean
1136 */
1137 public function isArticle() {
1138 return $this->mIsarticle;
1139 }
1140
1141 /**
1142 * Set whether this page is related an article on the wiki
1143 * Setting false will cause the change of "article flag" toggle to false
1144 *
1145 * @param $v Boolean
1146 */
1147 public function setArticleRelated( $v ) {
1148 $this->mIsArticleRelated = $v;
1149 if ( !$v ) {
1150 $this->mIsarticle = false;
1151 }
1152 }
1153
1154 /**
1155 * Return whether this page is related an article on the wiki
1156 *
1157 * @return Boolean
1158 */
1159 public function isArticleRelated() {
1160 return $this->mIsArticleRelated;
1161 }
1162
1163 /**
1164 * Add new language links
1165 *
1166 * @param array $newLinkArray Associative array mapping language code to the page
1167 * name
1168 */
1169 public function addLanguageLinks( $newLinkArray ) {
1170 $this->mLanguageLinks += $newLinkArray;
1171 }
1172
1173 /**
1174 * Reset the language links and add new language links
1175 *
1176 * @param array $newLinkArray Associative array mapping language code to the page
1177 * name
1178 */
1179 public function setLanguageLinks( $newLinkArray ) {
1180 $this->mLanguageLinks = $newLinkArray;
1181 }
1182
1183 /**
1184 * Get the list of language links
1185 *
1186 * @return Array of Interwiki Prefixed (non DB key) Titles (e.g. 'fr:Test page')
1187 */
1188 public function getLanguageLinks() {
1189 return $this->mLanguageLinks;
1190 }
1191
1192 /**
1193 * Add an array of categories, with names in the keys
1194 *
1195 * @param array $categories mapping category name => sort key
1196 */
1197 public function addCategoryLinks( $categories ) {
1198 global $wgContLang;
1199
1200 if ( !is_array( $categories ) || count( $categories ) == 0 ) {
1201 return;
1202 }
1203
1204 # Add the links to a LinkBatch
1205 $arr = array( NS_CATEGORY => $categories );
1206 $lb = new LinkBatch;
1207 $lb->setArray( $arr );
1208
1209 # Fetch existence plus the hiddencat property
1210 $dbr = wfGetDB( DB_SLAVE );
1211 $res = $dbr->select( array( 'page', 'page_props' ),
1212 array( 'page_id', 'page_namespace', 'page_title', 'page_len', 'page_is_redirect', 'page_latest', 'pp_value' ),
1213 $lb->constructSet( 'page', $dbr ),
1214 __METHOD__,
1215 array(),
1216 array( 'page_props' => array( 'LEFT JOIN', array( 'pp_propname' => 'hiddencat', 'pp_page = page_id' ) ) )
1217 );
1218
1219 # Add the results to the link cache
1220 $lb->addResultToCache( LinkCache::singleton(), $res );
1221
1222 # Set all the values to 'normal'. This can be done with array_fill_keys in PHP 5.2.0+
1223 $categories = array_combine(
1224 array_keys( $categories ),
1225 array_fill( 0, count( $categories ), 'normal' )
1226 );
1227
1228 # Mark hidden categories
1229 foreach ( $res as $row ) {
1230 if ( isset( $row->pp_value ) ) {
1231 $categories[$row->page_title] = 'hidden';
1232 }
1233 }
1234
1235 # Add the remaining categories to the skin
1236 if ( wfRunHooks( 'OutputPageMakeCategoryLinks', array( &$this, $categories, &$this->mCategoryLinks ) ) ) {
1237 foreach ( $categories as $category => $type ) {
1238 $origcategory = $category;
1239 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
1240 $wgContLang->findVariantLink( $category, $title, true );
1241 if ( $category != $origcategory ) {
1242 if ( array_key_exists( $category, $categories ) ) {
1243 continue;
1244 }
1245 }
1246 $text = $wgContLang->convertHtml( $title->getText() );
1247 $this->mCategories[] = $title->getText();
1248 $this->mCategoryLinks[$type][] = Linker::link( $title, $text );
1249 }
1250 }
1251 }
1252
1253 /**
1254 * Reset the category links (but not the category list) and add $categories
1255 *
1256 * @param array $categories mapping category name => sort key
1257 */
1258 public function setCategoryLinks( $categories ) {
1259 $this->mCategoryLinks = array();
1260 $this->addCategoryLinks( $categories );
1261 }
1262
1263 /**
1264 * Get the list of category links, in a 2-D array with the following format:
1265 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
1266 * hidden categories) and $link a HTML fragment with a link to the category
1267 * page
1268 *
1269 * @return Array
1270 */
1271 public function getCategoryLinks() {
1272 return $this->mCategoryLinks;
1273 }
1274
1275 /**
1276 * Get the list of category names this page belongs to
1277 *
1278 * @return Array of strings
1279 */
1280 public function getCategories() {
1281 return $this->mCategories;
1282 }
1283
1284 /**
1285 * Do not allow scripts which can be modified by wiki users to load on this page;
1286 * only allow scripts bundled with, or generated by, the software.
1287 */
1288 public function disallowUserJs() {
1289 $this->reduceAllowedModules(
1290 ResourceLoaderModule::TYPE_SCRIPTS,
1291 ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL
1292 );
1293 }
1294
1295 /**
1296 * Return whether user JavaScript is allowed for this page
1297 * @deprecated since 1.18 Load modules with ResourceLoader, and origin and
1298 * trustworthiness is identified and enforced automagically.
1299 * @return Boolean
1300 */
1301 public function isUserJsAllowed() {
1302 wfDeprecated( __METHOD__, '1.18' );
1303 return $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS ) >= ResourceLoaderModule::ORIGIN_USER_INDIVIDUAL;
1304 }
1305
1306 /**
1307 * Show what level of JavaScript / CSS untrustworthiness is allowed on this page
1308 * @see ResourceLoaderModule::$origin
1309 * @param string $type ResourceLoaderModule TYPE_ constant
1310 * @return Int ResourceLoaderModule ORIGIN_ class constant
1311 */
1312 public function getAllowedModules( $type ) {
1313 if ( $type == ResourceLoaderModule::TYPE_COMBINED ) {
1314 return min( array_values( $this->mAllowedModules ) );
1315 } else {
1316 return isset( $this->mAllowedModules[$type] )
1317 ? $this->mAllowedModules[$type]
1318 : ResourceLoaderModule::ORIGIN_ALL;
1319 }
1320 }
1321
1322 /**
1323 * Set the highest level of CSS/JS untrustworthiness allowed
1324 * @param $type String ResourceLoaderModule TYPE_ constant
1325 * @param $level Int ResourceLoaderModule class constant
1326 */
1327 public function setAllowedModules( $type, $level ) {
1328 $this->mAllowedModules[$type] = $level;
1329 }
1330
1331 /**
1332 * As for setAllowedModules(), but don't inadvertently make the page more accessible
1333 * @param $type String
1334 * @param $level Int ResourceLoaderModule class constant
1335 */
1336 public function reduceAllowedModules( $type, $level ) {
1337 $this->mAllowedModules[$type] = min( $this->getAllowedModules( $type ), $level );
1338 }
1339
1340 /**
1341 * Prepend $text to the body HTML
1342 *
1343 * @param string $text HTML
1344 */
1345 public function prependHTML( $text ) {
1346 $this->mBodytext = $text . $this->mBodytext;
1347 }
1348
1349 /**
1350 * Append $text to the body HTML
1351 *
1352 * @param string $text HTML
1353 */
1354 public function addHTML( $text ) {
1355 $this->mBodytext .= $text;
1356 }
1357
1358 /**
1359 * Shortcut for adding an Html::element via addHTML.
1360 *
1361 * @since 1.19
1362 *
1363 * @param $element string
1364 * @param $attribs array
1365 * @param $contents string
1366 */
1367 public function addElement( $element, $attribs = array(), $contents = '' ) {
1368 $this->addHTML( Html::element( $element, $attribs, $contents ) );
1369 }
1370
1371 /**
1372 * Clear the body HTML
1373 */
1374 public function clearHTML() {
1375 $this->mBodytext = '';
1376 }
1377
1378 /**
1379 * Get the body HTML
1380 *
1381 * @return String: HTML
1382 */
1383 public function getHTML() {
1384 return $this->mBodytext;
1385 }
1386
1387 /**
1388 * Get/set the ParserOptions object to use for wikitext parsing
1389 *
1390 * @param $options ParserOptions|null either the ParserOption to use or null to only get the
1391 * current ParserOption object
1392 * @return ParserOptions object
1393 */
1394 public function parserOptions( $options = null ) {
1395 if ( !$this->mParserOptions ) {
1396 $this->mParserOptions = ParserOptions::newFromContext( $this->getContext() );
1397 $this->mParserOptions->setEditSection( false );
1398 }
1399 return wfSetVar( $this->mParserOptions, $options );
1400 }
1401
1402 /**
1403 * Set the revision ID which will be seen by the wiki text parser
1404 * for things such as embedded {{REVISIONID}} variable use.
1405 *
1406 * @param $revid Mixed: an positive integer, or null
1407 * @return Mixed: previous value
1408 */
1409 public function setRevisionId( $revid ) {
1410 $val = is_null( $revid ) ? null : intval( $revid );
1411 return wfSetVar( $this->mRevisionId, $val );
1412 }
1413
1414 /**
1415 * Get the displayed revision ID
1416 *
1417 * @return Integer
1418 */
1419 public function getRevisionId() {
1420 return $this->mRevisionId;
1421 }
1422
1423 /**
1424 * Set the timestamp of the revision which will be displayed. This is used
1425 * to avoid a extra DB call in Skin::lastModified().
1426 *
1427 * @param $timestamp Mixed: string, or null
1428 * @return Mixed: previous value
1429 */
1430 public function setRevisionTimestamp( $timestamp ) {
1431 return wfSetVar( $this->mRevisionTimestamp, $timestamp );
1432 }
1433
1434 /**
1435 * Get the timestamp of displayed revision.
1436 * This will be null if not filled by setRevisionTimestamp().
1437 *
1438 * @return String or null
1439 */
1440 public function getRevisionTimestamp() {
1441 return $this->mRevisionTimestamp;
1442 }
1443
1444 /**
1445 * Set the displayed file version
1446 *
1447 * @param $file File|bool
1448 * @return Mixed: previous value
1449 */
1450 public function setFileVersion( $file ) {
1451 $val = null;
1452 if ( $file instanceof File && $file->exists() ) {
1453 $val = array( 'time' => $file->getTimestamp(), 'sha1' => $file->getSha1() );
1454 }
1455 return wfSetVar( $this->mFileVersion, $val, true );
1456 }
1457
1458 /**
1459 * Get the displayed file version
1460 *
1461 * @return Array|null ('time' => MW timestamp, 'sha1' => sha1)
1462 */
1463 public function getFileVersion() {
1464 return $this->mFileVersion;
1465 }
1466
1467 /**
1468 * Get the templates used on this page
1469 *
1470 * @return Array (namespace => dbKey => revId)
1471 * @since 1.18
1472 */
1473 public function getTemplateIds() {
1474 return $this->mTemplateIds;
1475 }
1476
1477 /**
1478 * Get the files used on this page
1479 *
1480 * @return Array (dbKey => array('time' => MW timestamp or null, 'sha1' => sha1 or ''))
1481 * @since 1.18
1482 */
1483 public function getFileSearchOptions() {
1484 return $this->mImageTimeKeys;
1485 }
1486
1487 /**
1488 * Convert wikitext to HTML and add it to the buffer
1489 * Default assumes that the current page title will be used.
1490 *
1491 * @param $text String
1492 * @param $linestart Boolean: is this the start of a line?
1493 * @param $interface Boolean: is this text in the user interface language?
1494 */
1495 public function addWikiText( $text, $linestart = true, $interface = true ) {
1496 $title = $this->getTitle(); // Work around E_STRICT
1497 if ( !$title ) {
1498 throw new MWException( 'Title is null' );
1499 }
1500 $this->addWikiTextTitle( $text, $title, $linestart, /*tidy*/false, $interface );
1501 }
1502
1503 /**
1504 * Add wikitext with a custom Title object
1505 *
1506 * @param string $text wikitext
1507 * @param $title Title object
1508 * @param $linestart Boolean: is this the start of a line?
1509 */
1510 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
1511 $this->addWikiTextTitle( $text, $title, $linestart );
1512 }
1513
1514 /**
1515 * Add wikitext with a custom Title object and tidy enabled.
1516 *
1517 * @param string $text wikitext
1518 * @param $title Title object
1519 * @param $linestart Boolean: is this the start of a line?
1520 */
1521 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
1522 $this->addWikiTextTitle( $text, $title, $linestart, true );
1523 }
1524
1525 /**
1526 * Add wikitext with tidy enabled
1527 *
1528 * @param string $text wikitext
1529 * @param $linestart Boolean: is this the start of a line?
1530 */
1531 public function addWikiTextTidy( $text, $linestart = true ) {
1532 $title = $this->getTitle();
1533 $this->addWikiTextTitleTidy( $text, $title, $linestart );
1534 }
1535
1536 /**
1537 * Add wikitext with a custom Title object
1538 *
1539 * @param string $text wikitext
1540 * @param $title Title object
1541 * @param $linestart Boolean: is this the start of a line?
1542 * @param $tidy Boolean: whether to use tidy
1543 * @param $interface Boolean: whether it is an interface message
1544 * (for example disables conversion)
1545 */
1546 public function addWikiTextTitle( $text, Title $title, $linestart, $tidy = false, $interface = false ) {
1547 global $wgParser;
1548
1549 wfProfileIn( __METHOD__ );
1550
1551 $popts = $this->parserOptions();
1552 $oldTidy = $popts->setTidy( $tidy );
1553 $popts->setInterfaceMessage( (bool) $interface );
1554
1555 $parserOutput = $wgParser->parse(
1556 $text, $title, $popts,
1557 $linestart, true, $this->mRevisionId
1558 );
1559
1560 $popts->setTidy( $oldTidy );
1561
1562 $this->addParserOutput( $parserOutput );
1563
1564 wfProfileOut( __METHOD__ );
1565 }
1566
1567 /**
1568 * Add a ParserOutput object, but without Html
1569 *
1570 * @param $parserOutput ParserOutput object
1571 */
1572 public function addParserOutputNoText( &$parserOutput ) {
1573 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
1574 $this->addCategoryLinks( $parserOutput->getCategories() );
1575 $this->mNewSectionLink = $parserOutput->getNewSection();
1576 $this->mHideNewSectionLink = $parserOutput->getHideNewSection();
1577
1578 $this->mParseWarnings = $parserOutput->getWarnings();
1579 if ( !$parserOutput->isCacheable() ) {
1580 $this->enableClientCache( false );
1581 }
1582 $this->mNoGallery = $parserOutput->getNoGallery();
1583 $this->mHeadItems = array_merge( $this->mHeadItems, $parserOutput->getHeadItems() );
1584 $this->addModules( $parserOutput->getModules() );
1585 $this->addModuleScripts( $parserOutput->getModuleScripts() );
1586 $this->addModuleStyles( $parserOutput->getModuleStyles() );
1587 $this->addModuleMessages( $parserOutput->getModuleMessages() );
1588
1589 // Template versioning...
1590 foreach ( (array)$parserOutput->getTemplateIds() as $ns => $dbks ) {
1591 if ( isset( $this->mTemplateIds[$ns] ) ) {
1592 $this->mTemplateIds[$ns] = $dbks + $this->mTemplateIds[$ns];
1593 } else {
1594 $this->mTemplateIds[$ns] = $dbks;
1595 }
1596 }
1597 // File versioning...
1598 foreach ( (array)$parserOutput->getFileSearchOptions() as $dbk => $data ) {
1599 $this->mImageTimeKeys[$dbk] = $data;
1600 }
1601
1602 // Hooks registered in the object
1603 global $wgParserOutputHooks;
1604 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1605 list( $hookName, $data ) = $hookInfo;
1606 if ( isset( $wgParserOutputHooks[$hookName] ) ) {
1607 call_user_func( $wgParserOutputHooks[$hookName], $this, $parserOutput, $data );
1608 }
1609 }
1610
1611 // Link flags are ignored for now, but may in the future be
1612 // used to mark individual language links.
1613 $linkFlags = array();
1614 wfRunHooks( 'LanguageLinks', array( $this->getTitle(), &$this->mLanguageLinks, &$linkFlags ) );
1615 wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
1616 }
1617
1618 /**
1619 * Add a ParserOutput object
1620 *
1621 * @param $parserOutput ParserOutput
1622 */
1623 function addParserOutput( &$parserOutput ) {
1624 $this->addParserOutputNoText( $parserOutput );
1625 $text = $parserOutput->getText();
1626 wfRunHooks( 'OutputPageBeforeHTML', array( &$this, &$text ) );
1627 $this->addHTML( $text );
1628 }
1629
1630 /**
1631 * Add the output of a QuickTemplate to the output buffer
1632 *
1633 * @param $template QuickTemplate
1634 */
1635 public function addTemplate( &$template ) {
1636 ob_start();
1637 $template->execute();
1638 $this->addHTML( ob_get_contents() );
1639 ob_end_clean();
1640 }
1641
1642 /**
1643 * Parse wikitext and return the HTML.
1644 *
1645 * @param $text String
1646 * @param $linestart Boolean: is this the start of a line?
1647 * @param $interface Boolean: use interface language ($wgLang instead of
1648 * $wgContLang) while parsing language sensitive magic
1649 * words like GRAMMAR and PLURAL. This also disables
1650 * LanguageConverter.
1651 * @param $language Language object: target language object, will override
1652 * $interface
1653 * @throws MWException
1654 * @return String: HTML
1655 */
1656 public function parse( $text, $linestart = true, $interface = false, $language = null ) {
1657 global $wgParser;
1658
1659 if ( is_null( $this->getTitle() ) ) {
1660 throw new MWException( 'Empty $mTitle in ' . __METHOD__ );
1661 }
1662
1663 $popts = $this->parserOptions();
1664 if ( $interface ) {
1665 $popts->setInterfaceMessage( true );
1666 }
1667 if ( $language !== null ) {
1668 $oldLang = $popts->setTargetLanguage( $language );
1669 }
1670
1671 $parserOutput = $wgParser->parse(
1672 $text, $this->getTitle(), $popts,
1673 $linestart, true, $this->mRevisionId
1674 );
1675
1676 if ( $interface ) {
1677 $popts->setInterfaceMessage( false );
1678 }
1679 if ( $language !== null ) {
1680 $popts->setTargetLanguage( $oldLang );
1681 }
1682
1683 return $parserOutput->getText();
1684 }
1685
1686 /**
1687 * Parse wikitext, strip paragraphs, and return the HTML.
1688 *
1689 * @param $text String
1690 * @param $linestart Boolean: is this the start of a line?
1691 * @param $interface Boolean: use interface language ($wgLang instead of
1692 * $wgContLang) while parsing language sensitive magic
1693 * words like GRAMMAR and PLURAL
1694 * @return String: HTML
1695 */
1696 public function parseInline( $text, $linestart = true, $interface = false ) {
1697 $parsed = $this->parse( $text, $linestart, $interface );
1698
1699 $m = array();
1700 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?/sU', $parsed, $m ) ) {
1701 $parsed = $m[1];
1702 }
1703
1704 return $parsed;
1705 }
1706
1707 /**
1708 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1709 *
1710 * @param $maxage Integer: maximum cache time on the Squid, in seconds.
1711 */
1712 public function setSquidMaxage( $maxage ) {
1713 $this->mSquidMaxage = $maxage;
1714 }
1715
1716 /**
1717 * Use enableClientCache(false) to force it to send nocache headers
1718 *
1719 * @param $state bool
1720 *
1721 * @return bool
1722 */
1723 public function enableClientCache( $state ) {
1724 return wfSetVar( $this->mEnableClientCache, $state );
1725 }
1726
1727 /**
1728 * Get the list of cookies that will influence on the cache
1729 *
1730 * @return Array
1731 */
1732 function getCacheVaryCookies() {
1733 global $wgCookiePrefix, $wgCacheVaryCookies;
1734 static $cookies;
1735 if ( $cookies === null ) {
1736 $cookies = array_merge(
1737 array(
1738 "{$wgCookiePrefix}Token",
1739 "{$wgCookiePrefix}LoggedOut",
1740 session_name()
1741 ),
1742 $wgCacheVaryCookies
1743 );
1744 wfRunHooks( 'GetCacheVaryCookies', array( $this, &$cookies ) );
1745 }
1746 return $cookies;
1747 }
1748
1749 /**
1750 * Check if the request has a cache-varying cookie header
1751 * If it does, it's very important that we don't allow public caching
1752 *
1753 * @return Boolean
1754 */
1755 function haveCacheVaryCookies() {
1756 $cookieHeader = $this->getRequest()->getHeader( 'cookie' );
1757 if ( $cookieHeader === false ) {
1758 return false;
1759 }
1760 $cvCookies = $this->getCacheVaryCookies();
1761 foreach ( $cvCookies as $cookieName ) {
1762 # Check for a simple string match, like the way squid does it
1763 if ( strpos( $cookieHeader, $cookieName ) !== false ) {
1764 wfDebug( __METHOD__ . ": found $cookieName\n" );
1765 return true;
1766 }
1767 }
1768 wfDebug( __METHOD__ . ": no cache-varying cookies found\n" );
1769 return false;
1770 }
1771
1772 /**
1773 * Add an HTTP header that will influence on the cache
1774 *
1775 * @param string $header header name
1776 * @param $option Array|null
1777 * @todo FIXME: Document the $option parameter; it appears to be for
1778 * X-Vary-Options but what format is acceptable?
1779 */
1780 public function addVaryHeader( $header, $option = null ) {
1781 if ( !array_key_exists( $header, $this->mVaryHeader ) ) {
1782 $this->mVaryHeader[$header] = (array)$option;
1783 } elseif ( is_array( $option ) ) {
1784 if ( is_array( $this->mVaryHeader[$header] ) ) {
1785 $this->mVaryHeader[$header] = array_merge( $this->mVaryHeader[$header], $option );
1786 } else {
1787 $this->mVaryHeader[$header] = $option;
1788 }
1789 }
1790 $this->mVaryHeader[$header] = array_unique( (array)$this->mVaryHeader[$header] );
1791 }
1792
1793 /**
1794 * Return a Vary: header on which to vary caches. Based on the keys of $mVaryHeader,
1795 * such as Accept-Encoding or Cookie
1796 *
1797 * @return String
1798 */
1799 public function getVaryHeader() {
1800 return 'Vary: ' . join( ', ', array_keys( $this->mVaryHeader ) );
1801 }
1802
1803 /**
1804 * Get a complete X-Vary-Options header
1805 *
1806 * @return String
1807 */
1808 public function getXVO() {
1809 $cvCookies = $this->getCacheVaryCookies();
1810
1811 $cookiesOption = array();
1812 foreach ( $cvCookies as $cookieName ) {
1813 $cookiesOption[] = 'string-contains=' . $cookieName;
1814 }
1815 $this->addVaryHeader( 'Cookie', $cookiesOption );
1816
1817 $headers = array();
1818 foreach ( $this->mVaryHeader as $header => $option ) {
1819 $newheader = $header;
1820 if ( is_array( $option ) && count( $option ) > 0 ) {
1821 $newheader .= ';' . implode( ';', $option );
1822 }
1823 $headers[] = $newheader;
1824 }
1825 $xvo = 'X-Vary-Options: ' . implode( ',', $headers );
1826
1827 return $xvo;
1828 }
1829
1830 /**
1831 * bug 21672: Add Accept-Language to Vary and XVO headers
1832 * if there's no 'variant' parameter existed in GET.
1833 *
1834 * For example:
1835 * /w/index.php?title=Main_page should always be served; but
1836 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
1837 */
1838 function addAcceptLanguage() {
1839 $lang = $this->getTitle()->getPageLanguage();
1840 if ( !$this->getRequest()->getCheck( 'variant' ) && $lang->hasVariants() ) {
1841 $variants = $lang->getVariants();
1842 $aloption = array();
1843 foreach ( $variants as $variant ) {
1844 if ( $variant === $lang->getCode() ) {
1845 continue;
1846 } else {
1847 $aloption[] = 'string-contains=' . $variant;
1848
1849 // IE and some other browsers use BCP 47 standards in
1850 // their Accept-Language header, like "zh-CN" or "zh-Hant".
1851 // We should handle these too.
1852 $variantBCP47 = wfBCP47( $variant );
1853 if ( $variantBCP47 !== $variant ) {
1854 $aloption[] = 'string-contains=' . $variantBCP47;
1855 }
1856 }
1857 }
1858 $this->addVaryHeader( 'Accept-Language', $aloption );
1859 }
1860 }
1861
1862 /**
1863 * Set a flag which will cause an X-Frame-Options header appropriate for
1864 * edit pages to be sent. The header value is controlled by
1865 * $wgEditPageFrameOptions.
1866 *
1867 * This is the default for special pages. If you display a CSRF-protected
1868 * form on an ordinary view page, then you need to call this function.
1869 *
1870 * @param $enable bool
1871 */
1872 public function preventClickjacking( $enable = true ) {
1873 $this->mPreventClickjacking = $enable;
1874 }
1875
1876 /**
1877 * Turn off frame-breaking. Alias for $this->preventClickjacking(false).
1878 * This can be called from pages which do not contain any CSRF-protected
1879 * HTML form.
1880 */
1881 public function allowClickjacking() {
1882 $this->mPreventClickjacking = false;
1883 }
1884
1885 /**
1886 * Get the X-Frame-Options header value (without the name part), or false
1887 * if there isn't one. This is used by Skin to determine whether to enable
1888 * JavaScript frame-breaking, for clients that don't support X-Frame-Options.
1889 *
1890 * @return string
1891 */
1892 public function getFrameOptions() {
1893 global $wgBreakFrames, $wgEditPageFrameOptions;
1894 if ( $wgBreakFrames ) {
1895 return 'DENY';
1896 } elseif ( $this->mPreventClickjacking && $wgEditPageFrameOptions ) {
1897 return $wgEditPageFrameOptions;
1898 }
1899 return false;
1900 }
1901
1902 /**
1903 * Send cache control HTTP headers
1904 */
1905 public function sendCacheControl() {
1906 global $wgUseSquid, $wgUseESI, $wgUseETag, $wgSquidMaxage, $wgUseXVO;
1907
1908 $response = $this->getRequest()->response();
1909 if ( $wgUseETag && $this->mETag ) {
1910 $response->header( "ETag: $this->mETag" );
1911 }
1912
1913 $this->addVaryHeader( 'Cookie' );
1914 $this->addAcceptLanguage();
1915
1916 # don't serve compressed data to clients who can't handle it
1917 # maintain different caches for logged-in users and non-logged in ones
1918 $response->header( $this->getVaryHeader() );
1919
1920 if ( $wgUseXVO ) {
1921 # Add an X-Vary-Options header for Squid with Wikimedia patches
1922 $response->header( $this->getXVO() );
1923 }
1924
1925 if ( $this->mEnableClientCache ) {
1926 if (
1927 $wgUseSquid && session_id() == '' && !$this->isPrintable() &&
1928 $this->mSquidMaxage != 0 && !$this->haveCacheVaryCookies()
1929 ) {
1930 if ( $wgUseESI ) {
1931 # We'll purge the proxy cache explicitly, but require end user agents
1932 # to revalidate against the proxy on each visit.
1933 # Surrogate-Control controls our Squid, Cache-Control downstream caches
1934 wfDebug( __METHOD__ . ": proxy caching with ESI; {$this->mLastModified} **\n", false );
1935 # start with a shorter timeout for initial testing
1936 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
1937 $response->header( 'Surrogate-Control: max-age=' . $wgSquidMaxage . '+' . $this->mSquidMaxage . ', content="ESI/1.0"' );
1938 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
1939 } else {
1940 # We'll purge the proxy cache for anons explicitly, but require end user agents
1941 # to revalidate against the proxy on each visit.
1942 # IMPORTANT! The Squid needs to replace the Cache-Control header with
1943 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
1944 wfDebug( __METHOD__ . ": local proxy caching; {$this->mLastModified} **\n", false );
1945 # start with a shorter timeout for initial testing
1946 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
1947 $response->header( 'Cache-Control: s-maxage=' . $this->mSquidMaxage . ', must-revalidate, max-age=0' );
1948 }
1949 } else {
1950 # We do want clients to cache if they can, but they *must* check for updates
1951 # on revisiting the page.
1952 wfDebug( __METHOD__ . ": private caching; {$this->mLastModified} **\n", false );
1953 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1954 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
1955 }
1956 if ( $this->mLastModified ) {
1957 $response->header( "Last-Modified: {$this->mLastModified}" );
1958 }
1959 } else {
1960 wfDebug( __METHOD__ . ": no caching **\n", false );
1961
1962 # In general, the absence of a last modified header should be enough to prevent
1963 # the client from using its cache. We send a few other things just to make sure.
1964 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1965 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1966 $response->header( 'Pragma: no-cache' );
1967 }
1968 }
1969
1970 /**
1971 * Get the message associated with the HTTP response code $code
1972 *
1973 * @param $code Integer: status code
1974 * @return String or null: message or null if $code is not in the list of
1975 * messages
1976 *
1977 * @deprecated since 1.18 Use HttpStatus::getMessage() instead.
1978 */
1979 public static function getStatusMessage( $code ) {
1980 wfDeprecated( __METHOD__, '1.18' );
1981 return HttpStatus::getMessage( $code );
1982 }
1983
1984 /**
1985 * Finally, all the text has been munged and accumulated into
1986 * the object, let's actually output it:
1987 */
1988 public function output() {
1989 global $wgLanguageCode, $wgDebugRedirects, $wgMimeType, $wgVaryOnXFP;
1990
1991 if ( $this->mDoNothing ) {
1992 return;
1993 }
1994
1995 wfProfileIn( __METHOD__ );
1996
1997 $response = $this->getRequest()->response();
1998
1999 if ( $this->mRedirect != '' ) {
2000 # Standards require redirect URLs to be absolute
2001 $this->mRedirect = wfExpandUrl( $this->mRedirect, PROTO_CURRENT );
2002
2003 $redirect = $this->mRedirect;
2004 $code = $this->mRedirectCode;
2005
2006 if ( wfRunHooks( "BeforePageRedirect", array( $this, &$redirect, &$code ) ) ) {
2007 if ( $code == '301' || $code == '303' ) {
2008 if ( !$wgDebugRedirects ) {
2009 $message = HttpStatus::getMessage( $code );
2010 $response->header( "HTTP/1.1 $code $message" );
2011 }
2012 $this->mLastModified = wfTimestamp( TS_RFC2822 );
2013 }
2014 if ( $wgVaryOnXFP ) {
2015 $this->addVaryHeader( 'X-Forwarded-Proto' );
2016 }
2017 $this->sendCacheControl();
2018
2019 $response->header( "Content-Type: text/html; charset=utf-8" );
2020 if ( $wgDebugRedirects ) {
2021 $url = htmlspecialchars( $redirect );
2022 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
2023 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
2024 print "</body>\n</html>\n";
2025 } else {
2026 $response->header( 'Location: ' . $redirect );
2027 }
2028 }
2029
2030 wfProfileOut( __METHOD__ );
2031 return;
2032 } elseif ( $this->mStatusCode ) {
2033 $message = HttpStatus::getMessage( $this->mStatusCode );
2034 if ( $message ) {
2035 $response->header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $message );
2036 }
2037 }
2038
2039 # Buffer output; final headers may depend on later processing
2040 ob_start();
2041
2042 $response->header( "Content-type: $wgMimeType; charset=UTF-8" );
2043 $response->header( 'Content-language: ' . $wgLanguageCode );
2044
2045 // Prevent framing, if requested
2046 $frameOptions = $this->getFrameOptions();
2047 if ( $frameOptions ) {
2048 $response->header( "X-Frame-Options: $frameOptions" );
2049 }
2050
2051 if ( $this->mArticleBodyOnly ) {
2052 $this->out( $this->mBodytext );
2053 } else {
2054 $this->addDefaultModules();
2055
2056 $sk = $this->getSkin();
2057
2058 // Hook that allows last minute changes to the output page, e.g.
2059 // adding of CSS or Javascript by extensions.
2060 wfRunHooks( 'BeforePageDisplay', array( &$this, &$sk ) );
2061
2062 wfProfileIn( 'Output-skin' );
2063 $sk->outputPage();
2064 wfProfileOut( 'Output-skin' );
2065 }
2066
2067 // This hook allows last minute changes to final overall output by modifying output buffer
2068 wfRunHooks( 'AfterFinalPageOutput', array( $this ) );
2069
2070 $this->sendCacheControl();
2071
2072 ob_end_flush();
2073
2074 wfProfileOut( __METHOD__ );
2075 }
2076
2077 /**
2078 * Actually output something with print.
2079 *
2080 * @param string $ins the string to output
2081 */
2082 public function out( $ins ) {
2083 print $ins;
2084 }
2085
2086 /**
2087 * Produce a "user is blocked" page.
2088 * @deprecated since 1.18
2089 */
2090 function blockedPage() {
2091 throw new UserBlockedError( $this->getUser()->mBlock );
2092 }
2093
2094 /**
2095 * Prepare this object to display an error page; disable caching and
2096 * indexing, clear the current text and redirect, set the page's title
2097 * and optionally an custom HTML title (content of the "<title>" tag).
2098 *
2099 * @param string|Message $pageTitle will be passed directly to setPageTitle()
2100 * @param string|Message $htmlTitle will be passed directly to setHTMLTitle();
2101 * optional, if not passed the "<title>" attribute will be
2102 * based on $pageTitle
2103 */
2104 public function prepareErrorPage( $pageTitle, $htmlTitle = false ) {
2105 $this->setPageTitle( $pageTitle );
2106 if ( $htmlTitle !== false ) {
2107 $this->setHTMLTitle( $htmlTitle );
2108 }
2109 $this->setRobotPolicy( 'noindex,nofollow' );
2110 $this->setArticleRelated( false );
2111 $this->enableClientCache( false );
2112 $this->mRedirect = '';
2113 $this->clearSubtitle();
2114 $this->clearHTML();
2115 }
2116
2117 /**
2118 * Output a standard error page
2119 *
2120 * showErrorPage( 'titlemsg', 'pagetextmsg', array( 'param1', 'param2' ) );
2121 * showErrorPage( 'titlemsg', $messageObject );
2122 * showErrorPage( $titleMessageObj, $messageObject );
2123 *
2124 * @param $title Mixed: message key (string) for page title, or a Message object
2125 * @param $msg Mixed: message key (string) for page text, or a Message object
2126 * @param array $params message parameters; ignored if $msg is a Message object
2127 */
2128 public function showErrorPage( $title, $msg, $params = array() ) {
2129 if ( !$title instanceof Message ) {
2130 $title = $this->msg( $title );
2131 }
2132
2133 $this->prepareErrorPage( $title );
2134
2135 if ( $msg instanceof Message ) {
2136 $this->addHTML( $msg->parseAsBlock() );
2137 } else {
2138 $this->addWikiMsgArray( $msg, $params );
2139 }
2140
2141 $this->returnToMain();
2142 }
2143
2144 /**
2145 * Output a standard permission error page
2146 *
2147 * @param array $errors error message keys
2148 * @param string $action action that was denied or null if unknown
2149 */
2150 public function showPermissionsErrorPage( $errors, $action = null ) {
2151 // For some action (read, edit, create and upload), display a "login to do this action"
2152 // error if all of the following conditions are met:
2153 // 1. the user is not logged in
2154 // 2. the only error is insufficient permissions (i.e. no block or something else)
2155 // 3. the error can be avoided simply by logging in
2156 if ( in_array( $action, array( 'read', 'edit', 'createpage', 'createtalk', 'upload' ) )
2157 && $this->getUser()->isAnon() && count( $errors ) == 1 && isset( $errors[0][0] )
2158 && ( $errors[0][0] == 'badaccess-groups' || $errors[0][0] == 'badaccess-group0' )
2159 && ( User::groupHasPermission( 'user', $action )
2160 || User::groupHasPermission( 'autoconfirmed', $action ) )
2161 ) {
2162 $displayReturnto = null;
2163
2164 # Due to bug 32276, if a user does not have read permissions,
2165 # $this->getTitle() will just give Special:Badtitle, which is
2166 # not especially useful as a returnto parameter. Use the title
2167 # from the request instead, if there was one.
2168 $request = $this->getRequest();
2169 $returnto = Title::newFromURL( $request->getVal( 'title', '' ) );
2170 if ( $action == 'edit' ) {
2171 $msg = 'whitelistedittext';
2172 $displayReturnto = $returnto;
2173 } elseif ( $action == 'createpage' || $action == 'createtalk' ) {
2174 $msg = 'nocreatetext';
2175 } elseif ( $action == 'upload' ) {
2176 $msg = 'uploadnologintext';
2177 } else { # Read
2178 $msg = 'loginreqpagetext';
2179 $displayReturnto = Title::newMainPage();
2180 }
2181
2182 $query = array();
2183
2184 if ( $returnto ) {
2185 $query['returnto'] = $returnto->getPrefixedText();
2186
2187 if ( !$request->wasPosted() ) {
2188 $returntoquery = $request->getValues();
2189 unset( $returntoquery['title'] );
2190 unset( $returntoquery['returnto'] );
2191 unset( $returntoquery['returntoquery'] );
2192 $query['returntoquery'] = wfArrayToCgi( $returntoquery );
2193 }
2194 }
2195 $loginLink = Linker::linkKnown(
2196 SpecialPage::getTitleFor( 'Userlogin' ),
2197 $this->msg( 'loginreqlink' )->escaped(),
2198 array(),
2199 $query
2200 );
2201
2202 $this->prepareErrorPage( $this->msg( 'loginreqtitle' ) );
2203 $this->addHTML( $this->msg( $msg )->rawParams( $loginLink )->parse() );
2204
2205 # Don't return to a page the user can't read otherwise
2206 # we'll end up in a pointless loop
2207 if ( $displayReturnto && $displayReturnto->userCan( 'read', $this->getUser() ) ) {
2208 $this->returnToMain( null, $displayReturnto );
2209 }
2210 } else {
2211 $this->prepareErrorPage( $this->msg( 'permissionserrors' ) );
2212 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
2213 }
2214 }
2215
2216 /**
2217 * Display an error page indicating that a given version of MediaWiki is
2218 * required to use it
2219 *
2220 * @param $version Mixed: the version of MediaWiki needed to use the page
2221 */
2222 public function versionRequired( $version ) {
2223 $this->prepareErrorPage( $this->msg( 'versionrequired', $version ) );
2224
2225 $this->addWikiMsg( 'versionrequiredtext', $version );
2226 $this->returnToMain();
2227 }
2228
2229 /**
2230 * Display an error page noting that a given permission bit is required.
2231 * @deprecated since 1.18, just throw the exception directly
2232 * @param string $permission key required
2233 * @throws PermissionsError
2234 */
2235 public function permissionRequired( $permission ) {
2236 throw new PermissionsError( $permission );
2237 }
2238
2239 /**
2240 * Produce the stock "please login to use the wiki" page
2241 *
2242 * @deprecated in 1.19; throw the exception directly
2243 */
2244 public function loginToUse() {
2245 throw new PermissionsError( 'read' );
2246 }
2247
2248 /**
2249 * Format a list of error messages
2250 *
2251 * @param array $errors of arrays returned by Title::getUserPermissionsErrors
2252 * @param string $action action that was denied or null if unknown
2253 * @return String: the wikitext error-messages, formatted into a list.
2254 */
2255 public function formatPermissionsErrorMessage( $errors, $action = null ) {
2256 if ( $action == null ) {
2257 $text = $this->msg( 'permissionserrorstext', count( $errors ) )->plain() . "\n\n";
2258 } else {
2259 $action_desc = $this->msg( "action-$action" )->plain();
2260 $text = $this->msg(
2261 'permissionserrorstext-withaction',
2262 count( $errors ),
2263 $action_desc
2264 )->plain() . "\n\n";
2265 }
2266
2267 if ( count( $errors ) > 1 ) {
2268 $text .= '<ul class="permissions-errors">' . "\n";
2269
2270 foreach ( $errors as $error ) {
2271 $text .= '<li>';
2272 $text .= call_user_func_array( array( $this, 'msg' ), $error )->plain();
2273 $text .= "</li>\n";
2274 }
2275 $text .= '</ul>';
2276 } else {
2277 $text .= "<div class=\"permissions-errors\">\n" .
2278 call_user_func_array( array( $this, 'msg' ), reset( $errors ) )->plain() .
2279 "\n</div>";
2280 }
2281
2282 return $text;
2283 }
2284
2285 /**
2286 * Display a page stating that the Wiki is in read-only mode,
2287 * and optionally show the source of the page that the user
2288 * was trying to edit. Should only be called (for this
2289 * purpose) after wfReadOnly() has returned true.
2290 *
2291 * For historical reasons, this function is _also_ used to
2292 * show the error message when a user tries to edit a page
2293 * they are not allowed to edit. (Unless it's because they're
2294 * blocked, then we show blockedPage() instead.) In this
2295 * case, the second parameter should be set to true and a list
2296 * of reasons supplied as the third parameter.
2297 *
2298 * @todo Needs to be split into multiple functions.
2299 *
2300 * @param $source String: source code to show (or null).
2301 * @param $protected Boolean: is this a permissions error?
2302 * @param $reasons Array: list of reasons for this error, as returned by Title::getUserPermissionsErrors().
2303 * @param $action String: action that was denied or null if unknown
2304 * @throws ReadOnlyError
2305 */
2306 public function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
2307 $this->setRobotPolicy( 'noindex,nofollow' );
2308 $this->setArticleRelated( false );
2309
2310 // If no reason is given, just supply a default "I can't let you do
2311 // that, Dave" message. Should only occur if called by legacy code.
2312 if ( $protected && empty( $reasons ) ) {
2313 $reasons[] = array( 'badaccess-group0' );
2314 }
2315
2316 if ( !empty( $reasons ) ) {
2317 // Permissions error
2318 if ( $source ) {
2319 $this->setPageTitle( $this->msg( 'viewsource-title', $this->getTitle()->getPrefixedText() ) );
2320 $this->addBacklinkSubtitle( $this->getTitle() );
2321 } else {
2322 $this->setPageTitle( $this->msg( 'badaccess' ) );
2323 }
2324 $this->addWikiText( $this->formatPermissionsErrorMessage( $reasons, $action ) );
2325 } else {
2326 // Wiki is read only
2327 throw new ReadOnlyError;
2328 }
2329
2330 // Show source, if supplied
2331 if ( is_string( $source ) ) {
2332 $this->addWikiMsg( 'viewsourcetext' );
2333
2334 $pageLang = $this->getTitle()->getPageLanguage();
2335 $params = array(
2336 'id' => 'wpTextbox1',
2337 'name' => 'wpTextbox1',
2338 'cols' => $this->getUser()->getOption( 'cols' ),
2339 'rows' => $this->getUser()->getOption( 'rows' ),
2340 'readonly' => 'readonly',
2341 'lang' => $pageLang->getHtmlCode(),
2342 'dir' => $pageLang->getDir(),
2343 );
2344 $this->addHTML( Html::element( 'textarea', $params, $source ) );
2345
2346 // Show templates used by this article
2347 $templates = Linker::formatTemplates( $this->getTitle()->getTemplateLinksFrom() );
2348 $this->addHTML( "<div class='templatesUsed'>
2349 $templates
2350 </div>
2351 " );
2352 }
2353
2354 # If the title doesn't exist, it's fairly pointless to print a return
2355 # link to it. After all, you just tried editing it and couldn't, so
2356 # what's there to do there?
2357 if ( $this->getTitle()->exists() ) {
2358 $this->returnToMain( null, $this->getTitle() );
2359 }
2360 }
2361
2362 /**
2363 * Turn off regular page output and return an error response
2364 * for when rate limiting has triggered.
2365 */
2366 public function rateLimited() {
2367 throw new ThrottledError;
2368 }
2369
2370 /**
2371 * Show a warning about slave lag
2372 *
2373 * If the lag is higher than $wgSlaveLagCritical seconds,
2374 * then the warning is a bit more obvious. If the lag is
2375 * lower than $wgSlaveLagWarning, then no warning is shown.
2376 *
2377 * @param $lag Integer: slave lag
2378 */
2379 public function showLagWarning( $lag ) {
2380 global $wgSlaveLagWarning, $wgSlaveLagCritical;
2381 if ( $lag >= $wgSlaveLagWarning ) {
2382 $message = $lag < $wgSlaveLagCritical
2383 ? 'lag-warn-normal'
2384 : 'lag-warn-high';
2385 $wrap = Html::rawElement( 'div', array( 'class' => "mw-{$message}" ), "\n$1\n" );
2386 $this->wrapWikiMsg( "$wrap\n", array( $message, $this->getLanguage()->formatNum( $lag ) ) );
2387 }
2388 }
2389
2390 public function showFatalError( $message ) {
2391 $this->prepareErrorPage( $this->msg( 'internalerror' ) );
2392
2393 $this->addHTML( $message );
2394 }
2395
2396 public function showUnexpectedValueError( $name, $val ) {
2397 $this->showFatalError( $this->msg( 'unexpected', $name, $val )->text() );
2398 }
2399
2400 public function showFileCopyError( $old, $new ) {
2401 $this->showFatalError( $this->msg( 'filecopyerror', $old, $new )->text() );
2402 }
2403
2404 public function showFileRenameError( $old, $new ) {
2405 $this->showFatalError( $this->msg( 'filerenameerror', $old, $new )->text() );
2406 }
2407
2408 public function showFileDeleteError( $name ) {
2409 $this->showFatalError( $this->msg( 'filedeleteerror', $name )->text() );
2410 }
2411
2412 public function showFileNotFoundError( $name ) {
2413 $this->showFatalError( $this->msg( 'filenotfound', $name )->text() );
2414 }
2415
2416 /**
2417 * Add a "return to" link pointing to a specified title
2418 *
2419 * @param $title Title to link
2420 * @param array $query query string parameters
2421 * @param string $text text of the link (input is not escaped)
2422 * @param $options Options array to pass to Linker
2423 */
2424 public function addReturnTo( $title, $query = array(), $text = null, $options = array() ) {
2425 if ( in_array( 'http', $options ) ) {
2426 $proto = PROTO_HTTP;
2427 } elseif ( in_array( 'https', $options ) ) {
2428 $proto = PROTO_HTTPS;
2429 } else {
2430 $proto = PROTO_RELATIVE;
2431 }
2432
2433 $link = $this->msg( 'returnto' )->rawParams(
2434 Linker::link( $title, $text, array(), $query, $options ) )->escaped();
2435 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2436 }
2437
2438 /**
2439 * Add a "return to" link pointing to a specified title,
2440 * or the title indicated in the request, or else the main page
2441 *
2442 * @param $unused
2443 * @param $returnto Title or String to return to
2444 * @param string $returntoquery query string for the return to link
2445 */
2446 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2447 if ( $returnto == null ) {
2448 $returnto = $this->getRequest()->getText( 'returnto' );
2449 }
2450
2451 if ( $returntoquery == null ) {
2452 $returntoquery = $this->getRequest()->getText( 'returntoquery' );
2453 }
2454
2455 if ( $returnto === '' ) {
2456 $returnto = Title::newMainPage();
2457 }
2458
2459 if ( is_object( $returnto ) ) {
2460 $titleObj = $returnto;
2461 } else {
2462 $titleObj = Title::newFromText( $returnto );
2463 }
2464 if ( !is_object( $titleObj ) ) {
2465 $titleObj = Title::newMainPage();
2466 }
2467
2468 $this->addReturnTo( $titleObj, wfCgiToArray( $returntoquery ) );
2469 }
2470
2471 /**
2472 * @param $sk Skin The given Skin
2473 * @param $includeStyle Boolean: unused
2474 * @return String: The doctype, opening "<html>", and head element.
2475 */
2476 public function headElement( Skin $sk, $includeStyle = true ) {
2477 global $wgContLang;
2478
2479 $userdir = $this->getLanguage()->getDir();
2480 $sitedir = $wgContLang->getDir();
2481
2482 if ( $sk->commonPrintStylesheet() ) {
2483 $this->addModuleStyles( 'mediawiki.legacy.wikiprintable' );
2484 }
2485
2486 $ret = Html::htmlHeader( array( 'lang' => $this->getLanguage()->getHtmlCode(), 'dir' => $userdir, 'class' => 'client-nojs' ) );
2487
2488 if ( $this->getHTMLTitle() == '' ) {
2489 $this->setHTMLTitle( $this->msg( 'pagetitle', $this->getPageTitle() ) );
2490 }
2491
2492 $openHead = Html::openElement( 'head' );
2493 if ( $openHead ) {
2494 # Don't bother with the newline if $head == ''
2495 $ret .= "$openHead\n";
2496 }
2497
2498 $ret .= Html::element( 'title', null, $this->getHTMLTitle() ) . "\n";
2499
2500 $ret .= implode( "\n", array(
2501 $this->getHeadLinks( null, true ),
2502 $this->buildCssLinks(),
2503 $this->getHeadScripts(),
2504 $this->getHeadItems()
2505 ) );
2506
2507 $closeHead = Html::closeElement( 'head' );
2508 if ( $closeHead ) {
2509 $ret .= "$closeHead\n";
2510 }
2511
2512 $bodyClasses = array();
2513 $bodyClasses[] = 'mediawiki';
2514
2515 # Classes for LTR/RTL directionality support
2516 $bodyClasses[] = $userdir;
2517 $bodyClasses[] = "sitedir-$sitedir";
2518
2519 if ( $this->getLanguage()->capitalizeAllNouns() ) {
2520 # A <body> class is probably not the best way to do this . . .
2521 $bodyClasses[] = 'capitalize-all-nouns';
2522 }
2523
2524 $bodyClasses[] = $sk->getPageClasses( $this->getTitle() );
2525 $bodyClasses[] = 'skin-' . Sanitizer::escapeClass( $sk->getSkinName() );
2526 $bodyClasses[] = 'action-' . Sanitizer::escapeClass( Action::getActionName( $this->getContext() ) );
2527
2528 $bodyAttrs = array();
2529 // While the implode() is not strictly needed, it's used for backwards compatibility
2530 // (this used to be built as a string and hooks likely still expect that).
2531 $bodyAttrs['class'] = implode( ' ', $bodyClasses );
2532
2533 // Allow skins and extensions to add body attributes they need
2534 $sk->addToBodyAttributes( $this, $bodyAttrs );
2535 wfRunHooks( 'OutputPageBodyAttributes', array( $this, $sk, &$bodyAttrs ) );
2536
2537 $ret .= Html::openElement( 'body', $bodyAttrs ) . "\n";
2538
2539 return $ret;
2540 }
2541
2542 /**
2543 * Add the default ResourceLoader modules to this object
2544 */
2545 private function addDefaultModules() {
2546 global $wgIncludeLegacyJavaScript, $wgPreloadJavaScriptMwUtil, $wgUseAjax,
2547 $wgAjaxWatch, $wgResponsiveImages;
2548
2549 // Add base resources
2550 $this->addModules( array(
2551 'mediawiki.user',
2552 'mediawiki.page.startup',
2553 'mediawiki.page.ready',
2554 ) );
2555 if ( $wgIncludeLegacyJavaScript ) {
2556 $this->addModules( 'mediawiki.legacy.wikibits' );
2557 }
2558
2559 if ( $wgPreloadJavaScriptMwUtil ) {
2560 $this->addModules( 'mediawiki.util' );
2561 }
2562
2563 MWDebug::addModules( $this );
2564
2565 // Add various resources if required
2566 if ( $wgUseAjax ) {
2567 $this->addModules( 'mediawiki.legacy.ajax' );
2568
2569 wfRunHooks( 'AjaxAddScript', array( &$this ) );
2570
2571 if ( $wgAjaxWatch && $this->getUser()->isLoggedIn() ) {
2572 $this->addModules( 'mediawiki.page.watch.ajax' );
2573 }
2574
2575 if ( !$this->getUser()->getOption( 'disablesuggest', false ) ) {
2576 $this->addModules( 'mediawiki.searchSuggest' );
2577 }
2578 }
2579
2580 if ( $this->getUser()->getBoolOption( 'editsectiononrightclick' ) ) {
2581 $this->addModules( 'mediawiki.action.view.rightClickEdit' );
2582 }
2583
2584 # Crazy edit-on-double-click stuff
2585 if ( $this->isArticle() && $this->getUser()->getOption( 'editondblclick' ) ) {
2586 $this->addModules( 'mediawiki.action.view.dblClickEdit' );
2587 }
2588
2589 // Support for high-density display images
2590 if ( $wgResponsiveImages ) {
2591 $this->addModules( 'mediawiki.hidpi' );
2592 }
2593 }
2594
2595 /**
2596 * Get a ResourceLoader object associated with this OutputPage
2597 *
2598 * @return ResourceLoader
2599 */
2600 public function getResourceLoader() {
2601 if ( is_null( $this->mResourceLoader ) ) {
2602 $this->mResourceLoader = new ResourceLoader();
2603 }
2604 return $this->mResourceLoader;
2605 }
2606
2607 /**
2608 * TODO: Document
2609 * @param $modules Array/string with the module name(s)
2610 * @param string $only ResourceLoaderModule TYPE_ class constant
2611 * @param $useESI boolean
2612 * @param array $extraQuery with extra query parameters to add to each request. array( param => value )
2613 * @param $loadCall boolean If true, output an (asynchronous) mw.loader.load() call rather than a "<script src='...'>" tag
2614 * @return string html "<script>" and "<style>" tags
2615 */
2616 protected function makeResourceLoaderLink( $modules, $only, $useESI = false, array $extraQuery = array(), $loadCall = false ) {
2617 global $wgResourceLoaderUseESI;
2618
2619 $modules = (array) $modules;
2620
2621 if ( !count( $modules ) ) {
2622 return '';
2623 }
2624
2625 if ( count( $modules ) > 1 ) {
2626 // Remove duplicate module requests
2627 $modules = array_unique( $modules );
2628 // Sort module names so requests are more uniform
2629 sort( $modules );
2630
2631 if ( ResourceLoader::inDebugMode() ) {
2632 // Recursively call us for every item
2633 $links = '';
2634 foreach ( $modules as $name ) {
2635 $links .= $this->makeResourceLoaderLink( $name, $only, $useESI );
2636 }
2637 return $links;
2638 }
2639 }
2640 if ( !is_null( $this->mTarget ) ) {
2641 $extraQuery['target'] = $this->mTarget;
2642 }
2643
2644 // Create keyed-by-group list of module objects from modules list
2645 $groups = array();
2646 $resourceLoader = $this->getResourceLoader();
2647 foreach ( $modules as $name ) {
2648 $module = $resourceLoader->getModule( $name );
2649 # Check that we're allowed to include this module on this page
2650 if ( !$module
2651 || ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_SCRIPTS )
2652 && $only == ResourceLoaderModule::TYPE_SCRIPTS )
2653 || ( $module->getOrigin() > $this->getAllowedModules( ResourceLoaderModule::TYPE_STYLES )
2654 && $only == ResourceLoaderModule::TYPE_STYLES )
2655 || ( $this->mTarget && !in_array( $this->mTarget, $module->getTargets() ) )
2656 ) {
2657 continue;
2658 }
2659
2660 $group = $module->getGroup();
2661 if ( !isset( $groups[$group] ) ) {
2662 $groups[$group] = array();
2663 }
2664 $groups[$group][$name] = $module;
2665 }
2666
2667 $links = '';
2668 foreach ( $groups as $group => $grpModules ) {
2669 // Special handling for user-specific groups
2670 $user = null;
2671 if ( ( $group === 'user' || $group === 'private' ) && $this->getUser()->isLoggedIn() ) {
2672 $user = $this->getUser()->getName();
2673 }
2674
2675 // Create a fake request based on the one we are about to make so modules return
2676 // correct timestamp and emptiness data
2677 $query = ResourceLoader::makeLoaderQuery(
2678 array(), // modules; not determined yet
2679 $this->getLanguage()->getCode(),
2680 $this->getSkin()->getSkinName(),
2681 $user,
2682 null, // version; not determined yet
2683 ResourceLoader::inDebugMode(),
2684 $only === ResourceLoaderModule::TYPE_COMBINED ? null : $only,
2685 $this->isPrintable(),
2686 $this->getRequest()->getBool( 'handheld' ),
2687 $extraQuery
2688 );
2689 $context = new ResourceLoaderContext( $resourceLoader, new FauxRequest( $query ) );
2690 // Extract modules that know they're empty
2691 $emptyModules = array();
2692 foreach ( $grpModules as $key => $module ) {
2693 if ( $module->isKnownEmpty( $context ) ) {
2694 $emptyModules[$key] = 'ready';
2695 unset( $grpModules[$key] );
2696 }
2697 }
2698 // Inline empty modules: since they're empty, just mark them as 'ready'
2699 if ( count( $emptyModules ) > 0 && $only !== ResourceLoaderModule::TYPE_STYLES ) {
2700 // If we're only getting the styles, we don't need to do anything for empty modules.
2701 $links .= Html::inlineScript(
2702 ResourceLoader::makeLoaderConditionalScript(
2703 ResourceLoader::makeLoaderStateScript( $emptyModules )
2704 )
2705 ) . "\n";
2706 }
2707
2708 // If there are no modules left, skip this group
2709 if ( count( $grpModules ) === 0 ) {
2710 continue;
2711 }
2712
2713 // Inline private modules. These can't be loaded through load.php for security
2714 // reasons, see bug 34907. Note that these modules should be loaded from
2715 // getHeadScripts() before the first loader call. Otherwise other modules can't
2716 // properly use them as dependencies (bug 30914)
2717 if ( $group === 'private' ) {
2718 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2719 $links .= Html::inlineStyle(
2720 $resourceLoader->makeModuleResponse( $context, $grpModules )
2721 );
2722 } else {
2723 $links .= Html::inlineScript(
2724 ResourceLoader::makeLoaderConditionalScript(
2725 $resourceLoader->makeModuleResponse( $context, $grpModules )
2726 )
2727 );
2728 }
2729 $links .= "\n";
2730 continue;
2731 }
2732 // Special handling for the user group; because users might change their stuff
2733 // on-wiki like user pages, or user preferences; we need to find the highest
2734 // timestamp of these user-changeable modules so we can ensure cache misses on change
2735 // This should NOT be done for the site group (bug 27564) because anons get that too
2736 // and we shouldn't be putting timestamps in Squid-cached HTML
2737 $version = null;
2738 if ( $group === 'user' ) {
2739 // Get the maximum timestamp
2740 $timestamp = 1;
2741 foreach ( $grpModules as $module ) {
2742 $timestamp = max( $timestamp, $module->getModifiedTime( $context ) );
2743 }
2744 // Add a version parameter so cache will break when things change
2745 $version = wfTimestamp( TS_ISO_8601_BASIC, $timestamp );
2746 }
2747
2748 $url = ResourceLoader::makeLoaderURL(
2749 array_keys( $grpModules ),
2750 $this->getLanguage()->getCode(),
2751 $this->getSkin()->getSkinName(),
2752 $user,
2753 $version,
2754 ResourceLoader::inDebugMode(),
2755 $only === ResourceLoaderModule::TYPE_COMBINED ? null : $only,
2756 $this->isPrintable(),
2757 $this->getRequest()->getBool( 'handheld' ),
2758 $extraQuery
2759 );
2760 if ( $useESI && $wgResourceLoaderUseESI ) {
2761 $esi = Xml::element( 'esi:include', array( 'src' => $url ) );
2762 if ( $only == ResourceLoaderModule::TYPE_STYLES ) {
2763 $link = Html::inlineStyle( $esi );
2764 } else {
2765 $link = Html::inlineScript( $esi );
2766 }
2767 } else {
2768 // Automatically select style/script elements
2769 if ( $only === ResourceLoaderModule::TYPE_STYLES ) {
2770 $link = Html::linkedStyle( $url );
2771 } elseif ( $loadCall ) {
2772 $link = Html::inlineScript(
2773 ResourceLoader::makeLoaderConditionalScript(
2774 Xml::encodeJsCall( 'mw.loader.load', array( $url, 'text/javascript', true ) )
2775 )
2776 );
2777 } else {
2778 $link = Html::linkedScript( $url );
2779 }
2780 }
2781
2782 if ( $group == 'noscript' ) {
2783 $links .= Html::rawElement( 'noscript', array(), $link ) . "\n";
2784 } else {
2785 $links .= $link . "\n";
2786 }
2787 }
2788 return $links;
2789 }
2790
2791 /**
2792 * JS stuff to put in the "<head>". This is the startup module, config
2793 * vars and modules marked with position 'top'
2794 *
2795 * @return String: HTML fragment
2796 */
2797 function getHeadScripts() {
2798 global $wgResourceLoaderExperimentalAsyncLoading;
2799
2800 // Startup - this will immediately load jquery and mediawiki modules
2801 $scripts = $this->makeResourceLoaderLink( 'startup', ResourceLoaderModule::TYPE_SCRIPTS, true );
2802
2803 // Load config before anything else
2804 $scripts .= Html::inlineScript(
2805 ResourceLoader::makeLoaderConditionalScript(
2806 ResourceLoader::makeConfigSetScript( $this->getJSVars() )
2807 )
2808 );
2809
2810 // Load embeddable private modules before any loader links
2811 // This needs to be TYPE_COMBINED so these modules are properly wrapped
2812 // in mw.loader.implement() calls and deferred until mw.user is available
2813 $embedScripts = array( 'user.options', 'user.tokens' );
2814 $scripts .= $this->makeResourceLoaderLink( $embedScripts, ResourceLoaderModule::TYPE_COMBINED );
2815
2816 // Script and Messages "only" requests marked for top inclusion
2817 // Messages should go first
2818 $scripts .= $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'top' ), ResourceLoaderModule::TYPE_MESSAGES );
2819 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'top' ), ResourceLoaderModule::TYPE_SCRIPTS );
2820
2821 // Modules requests - let the client calculate dependencies and batch requests as it likes
2822 // Only load modules that have marked themselves for loading at the top
2823 $modules = $this->getModules( true, 'top' );
2824 if ( $modules ) {
2825 $scripts .= Html::inlineScript(
2826 ResourceLoader::makeLoaderConditionalScript(
2827 Xml::encodeJsCall( 'mw.loader.load', array( $modules ) )
2828 )
2829 );
2830 }
2831
2832 if ( $wgResourceLoaderExperimentalAsyncLoading ) {
2833 $scripts .= $this->getScriptsForBottomQueue( true );
2834 }
2835
2836 return $scripts;
2837 }
2838
2839 /**
2840 * JS stuff to put at the 'bottom', which can either be the bottom of the "<body>"
2841 * or the bottom of the "<head>" depending on $wgResourceLoaderExperimentalAsyncLoading:
2842 * modules marked with position 'bottom', legacy scripts ($this->mScripts),
2843 * user preferences, site JS and user JS
2844 *
2845 * @param $inHead boolean If true, this HTML goes into the "<head>", if false it goes into the "<body>"
2846 * @return string
2847 */
2848 function getScriptsForBottomQueue( $inHead ) {
2849 global $wgUseSiteJs, $wgAllowUserJs;
2850
2851 // Script and Messages "only" requests marked for bottom inclusion
2852 // If we're in the <head>, use load() calls rather than <script src="..."> tags
2853 // Messages should go first
2854 $scripts = $this->makeResourceLoaderLink( $this->getModuleMessages( true, 'bottom' ),
2855 ResourceLoaderModule::TYPE_MESSAGES, /* $useESI = */ false, /* $extraQuery = */ array(),
2856 /* $loadCall = */ $inHead
2857 );
2858 $scripts .= $this->makeResourceLoaderLink( $this->getModuleScripts( true, 'bottom' ),
2859 ResourceLoaderModule::TYPE_SCRIPTS, /* $useESI = */ false, /* $extraQuery = */ array(),
2860 /* $loadCall = */ $inHead
2861 );
2862
2863 // Modules requests - let the client calculate dependencies and batch requests as it likes
2864 // Only load modules that have marked themselves for loading at the bottom
2865 $modules = $this->getModules( true, 'bottom' );
2866 if ( $modules ) {
2867 $scripts .= Html::inlineScript(
2868 ResourceLoader::makeLoaderConditionalScript(
2869 Xml::encodeJsCall( 'mw.loader.load', array( $modules, null, true ) )
2870 )
2871 );
2872 }
2873
2874 // Legacy Scripts
2875 $scripts .= "\n" . $this->mScripts;
2876
2877 $defaultModules = array();
2878
2879 // Add site JS if enabled
2880 if ( $wgUseSiteJs ) {
2881 $scripts .= $this->makeResourceLoaderLink( 'site', ResourceLoaderModule::TYPE_SCRIPTS,
2882 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2883 );
2884 $defaultModules['site'] = 'loading';
2885 } else {
2886 // Site module is empty, save request by marking ready in advance (bug 46857)
2887 $defaultModules['site'] = 'ready';
2888 }
2889
2890 // Add user JS if enabled
2891 if ( $wgAllowUserJs ) {
2892 if ( $this->getUser()->isLoggedIn() ) {
2893 if ( $this->getTitle() && $this->getTitle()->isJsSubpage() && $this->userCanPreview() ) {
2894 # XXX: additional security check/prompt?
2895 // We're on a preview of a JS subpage
2896 // Exclude this page from the user module in case it's in there (bug 26283)
2897 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS, false,
2898 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() ), $inHead
2899 );
2900 // Load the previewed JS
2901 $scripts .= Html::inlineScript( "\n" . $this->getRequest()->getText( 'wpTextbox1' ) . "\n" ) . "\n";
2902 // FIXME: If the user is previewing, say, ./vector.js, his ./common.js will be loaded
2903 // asynchronously and may arrive *after* the inline script here. So the previewed code
2904 // may execute before ./common.js runs. Normally, ./common.js runs before ./vector.js...
2905 } else {
2906 // Include the user module normally, i.e., raw to avoid it being wrapped in a closure.
2907 $scripts .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_SCRIPTS,
2908 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2909 );
2910 }
2911 $defaultModules['user'] = 'loading';
2912 } else {
2913 // Non-logged-in users have an empty user module.
2914 // Save request by marking ready in advance (bug 46857)
2915 $defaultModules['user'] = 'ready';
2916 }
2917 } else {
2918 // User modules are disabled on this wiki.
2919 // Save request by marking ready in advance (bug 46857)
2920 $defaultModules['user'] = 'ready';
2921 }
2922
2923 // Group JS is only enabled if site JS is enabled.
2924 if ( $wgUseSiteJs ) {
2925 if ( $this->getUser()->isLoggedIn() ) {
2926 $scripts .= $this->makeResourceLoaderLink( 'user.groups', ResourceLoaderModule::TYPE_COMBINED,
2927 /* $useESI = */ false, /* $extraQuery = */ array(), /* $loadCall = */ $inHead
2928 );
2929 $defaultModules['user.groups'] = 'loading';
2930 } else {
2931 // Non-logged-in users have no user.groups module.
2932 // Save request by marking ready in advance (bug 46857)
2933 $defaultModules['user.groups'] = 'ready';
2934 }
2935 } else {
2936 // Site (and group JS) disabled
2937 $defaultModules['user.groups'] = 'ready';
2938 }
2939
2940 $loaderInit = '';
2941 if ( $inHead ) {
2942 // We generate loader calls anyway, so no need to fix the client-side loader's state to 'loading'.
2943 foreach ( $defaultModules as $m => $state ) {
2944 if ( $state == 'loading' ) {
2945 unset( $defaultModules[$m] );
2946 }
2947 }
2948 }
2949 if ( count( $defaultModules ) > 0 ) {
2950 $loaderInit = Html::inlineScript(
2951 ResourceLoader::makeLoaderConditionalScript(
2952 ResourceLoader::makeLoaderStateScript( $defaultModules )
2953 )
2954 ) . "\n";
2955 }
2956 return $loaderInit . $scripts;
2957 }
2958
2959 /**
2960 * JS stuff to put at the bottom of the "<body>"
2961 * @return string
2962 */
2963 function getBottomScripts() {
2964 global $wgResourceLoaderExperimentalAsyncLoading;
2965
2966 // Optimise jQuery ready event cross-browser.
2967 // This also enforces $.isReady to be true at </body> which fixes the
2968 // mw.loader bug in Firefox with using document.write between </body>
2969 // and the DOMContentReady event (bug 47457).
2970 $html = Html::inlineScript( 'window.jQuery && jQuery.ready();' );
2971
2972 if ( !$wgResourceLoaderExperimentalAsyncLoading ) {
2973 $html .= $this->getScriptsForBottomQueue( false );
2974 }
2975
2976 return $html;
2977 }
2978
2979 /**
2980 * Add one or more variables to be set in mw.config in JavaScript.
2981 *
2982 * @param $keys {String|Array} Key or array of key/value pairs.
2983 * @param $value {Mixed} [optional] Value of the configuration variable.
2984 */
2985 public function addJsConfigVars( $keys, $value = null ) {
2986 if ( is_array( $keys ) ) {
2987 foreach ( $keys as $key => $value ) {
2988 $this->mJsConfigVars[$key] = $value;
2989 }
2990 return;
2991 }
2992
2993 $this->mJsConfigVars[$keys] = $value;
2994 }
2995
2996 /**
2997 * Get an array containing the variables to be set in mw.config in JavaScript.
2998 *
2999 * DO NOT CALL THIS FROM OUTSIDE OF THIS CLASS OR Skin::makeGlobalVariablesScript().
3000 * This is only public until that function is removed. You have been warned.
3001 *
3002 * Do not add things here which can be evaluated in ResourceLoaderStartUpModule
3003 * - in other words, page-independent/site-wide variables (without state).
3004 * You will only be adding bloat to the html page and causing page caches to
3005 * have to be purged on configuration changes.
3006 * @return array
3007 */
3008 public function getJSVars() {
3009 global $wgContLang;
3010
3011 $latestRevID = 0;
3012 $pageID = 0;
3013 $canonicalName = false; # bug 21115
3014
3015 $title = $this->getTitle();
3016 $ns = $title->getNamespace();
3017 $nsname = MWNamespace::exists( $ns ) ? MWNamespace::getCanonicalName( $ns ) : $title->getNsText();
3018
3019 // Get the relevant title so that AJAX features can use the correct page name
3020 // when making API requests from certain special pages (bug 34972).
3021 $relevantTitle = $this->getSkin()->getRelevantTitle();
3022
3023 if ( $ns == NS_SPECIAL ) {
3024 list( $canonicalName, /*...*/ ) = SpecialPageFactory::resolveAlias( $title->getDBkey() );
3025 } elseif ( $this->canUseWikiPage() ) {
3026 $wikiPage = $this->getWikiPage();
3027 $latestRevID = $wikiPage->getLatest();
3028 $pageID = $wikiPage->getId();
3029 }
3030
3031 $lang = $title->getPageLanguage();
3032
3033 // Pre-process information
3034 $separatorTransTable = $lang->separatorTransformTable();
3035 $separatorTransTable = $separatorTransTable ? $separatorTransTable : array();
3036 $compactSeparatorTransTable = array(
3037 implode( "\t", array_keys( $separatorTransTable ) ),
3038 implode( "\t", $separatorTransTable ),
3039 );
3040 $digitTransTable = $lang->digitTransformTable();
3041 $digitTransTable = $digitTransTable ? $digitTransTable : array();
3042 $compactDigitTransTable = array(
3043 implode( "\t", array_keys( $digitTransTable ) ),
3044 implode( "\t", $digitTransTable ),
3045 );
3046
3047 $user = $this->getUser();
3048
3049 $vars = array(
3050 'wgCanonicalNamespace' => $nsname,
3051 'wgCanonicalSpecialPageName' => $canonicalName,
3052 'wgNamespaceNumber' => $title->getNamespace(),
3053 'wgPageName' => $title->getPrefixedDBkey(),
3054 'wgTitle' => $title->getText(),
3055 'wgCurRevisionId' => $latestRevID,
3056 'wgArticleId' => $pageID,
3057 'wgIsArticle' => $this->isArticle(),
3058 'wgAction' => Action::getActionName( $this->getContext() ),
3059 'wgUserName' => $user->isAnon() ? null : $user->getName(),
3060 'wgUserGroups' => $user->getEffectiveGroups(),
3061 'wgCategories' => $this->getCategories(),
3062 'wgBreakFrames' => $this->getFrameOptions() == 'DENY',
3063 'wgPageContentLanguage' => $lang->getCode(),
3064 'wgPageContentModel' => $title->getContentModel(),
3065 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
3066 'wgDigitTransformTable' => $compactDigitTransTable,
3067 'wgDefaultDateFormat' => $lang->getDefaultDateFormat(),
3068 'wgMonthNames' => $lang->getMonthNamesArray(),
3069 'wgMonthNamesShort' => $lang->getMonthAbbreviationsArray(),
3070 'wgRelevantPageName' => $relevantTitle->getPrefixedDBkey(),
3071 );
3072 if ( $user->isLoggedIn() ) {
3073 $vars['wgUserId'] = $user->getId();
3074 $vars['wgUserEditCount'] = $user->getEditCount();
3075 $userReg = wfTimestampOrNull( TS_UNIX, $user->getRegistration() );
3076 $vars['wgUserRegistration'] = $userReg !== null ? ( $userReg * 1000 ) : null;
3077 // Get the revision ID of the oldest new message on the user's talk
3078 // page. This can be used for constructing new message alerts on
3079 // the client side.
3080 $vars['wgUserNewMsgRevisionId'] = $user->getNewMessageRevisionId();
3081 }
3082 if ( $wgContLang->hasVariants() ) {
3083 $vars['wgUserVariant'] = $wgContLang->getPreferredVariant();
3084 }
3085 foreach ( $title->getRestrictionTypes() as $type ) {
3086 $vars['wgRestriction' . ucfirst( $type )] = $title->getRestrictions( $type );
3087 }
3088 if ( $title->isMainPage() ) {
3089 $vars['wgIsMainPage'] = true;
3090 }
3091 if ( $this->mRedirectedFrom ) {
3092 $vars['wgRedirectedFrom'] = $this->mRedirectedFrom->getPrefixedDBkey();
3093 }
3094
3095 // Allow extensions to add their custom variables to the mw.config map.
3096 // Use the 'ResourceLoaderGetConfigVars' hook if the variable is not
3097 // page-dependant but site-wide (without state).
3098 // Alternatively, you may want to use OutputPage->addJsConfigVars() instead.
3099 wfRunHooks( 'MakeGlobalVariablesScript', array( &$vars, $this ) );
3100
3101 // Merge in variables from addJsConfigVars last
3102 return array_merge( $vars, $this->mJsConfigVars );
3103 }
3104
3105 /**
3106 * To make it harder for someone to slip a user a fake
3107 * user-JavaScript or user-CSS preview, a random token
3108 * is associated with the login session. If it's not
3109 * passed back with the preview request, we won't render
3110 * the code.
3111 *
3112 * @return bool
3113 */
3114 public function userCanPreview() {
3115 if ( $this->getRequest()->getVal( 'action' ) != 'submit'
3116 || !$this->getRequest()->wasPosted()
3117 || !$this->getUser()->matchEditToken(
3118 $this->getRequest()->getVal( 'wpEditToken' ) )
3119 ) {
3120 return false;
3121 }
3122 if ( !$this->getTitle()->isJsSubpage() && !$this->getTitle()->isCssSubpage() ) {
3123 return false;
3124 }
3125
3126 return !count( $this->getTitle()->getUserPermissionsErrors( 'edit', $this->getUser() ) );
3127 }
3128
3129 /**
3130 * @param bool $addContentType Whether "<meta>" specifying content type should be returned
3131 *
3132 * @return array in format "link name or number => 'link html'".
3133 */
3134 public function getHeadLinksArray( $addContentType = false ) {
3135 global $wgUniversalEditButton, $wgFavicon, $wgAppleTouchIcon, $wgEnableAPI,
3136 $wgSitename, $wgVersion, $wgHtml5, $wgMimeType,
3137 $wgFeed, $wgOverrideSiteFeed, $wgAdvertisedFeedTypes,
3138 $wgDisableLangConversion, $wgCanonicalLanguageLinks,
3139 $wgRightsPage, $wgRightsUrl;
3140
3141 $tags = array();
3142
3143 $canonicalUrl = $this->mCanonicalUrl;
3144
3145 if ( $addContentType ) {
3146 if ( $wgHtml5 ) {
3147 # More succinct than <meta http-equiv=Content-Type>, has the
3148 # same effect
3149 $tags['meta-charset'] = Html::element( 'meta', array( 'charset' => 'UTF-8' ) );
3150 } else {
3151 $tags['meta-content-type'] = Html::element( 'meta', array(
3152 'http-equiv' => 'Content-Type',
3153 'content' => "$wgMimeType; charset=UTF-8"
3154 ) );
3155 $tags['meta-content-style-type'] = Html::element( 'meta', array( // bug 15835
3156 'http-equiv' => 'Content-Style-Type',
3157 'content' => 'text/css'
3158 ) );
3159 }
3160 }
3161
3162 $tags['meta-generator'] = Html::element( 'meta', array(
3163 'name' => 'generator',
3164 'content' => "MediaWiki $wgVersion",
3165 ) );
3166
3167 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
3168 if ( $p !== 'index,follow' ) {
3169 // http://www.robotstxt.org/wc/meta-user.html
3170 // Only show if it's different from the default robots policy
3171 $tags['meta-robots'] = Html::element( 'meta', array(
3172 'name' => 'robots',
3173 'content' => $p,
3174 ) );
3175 }
3176
3177 if ( count( $this->mKeywords ) > 0 ) {
3178 $strip = array(
3179 "/<.*?" . ">/" => '',
3180 "/_/" => ' '
3181 );
3182 $tags['meta-keywords'] = Html::element( 'meta', array(
3183 'name' => 'keywords',
3184 'content' => preg_replace(
3185 array_keys( $strip ),
3186 array_values( $strip ),
3187 implode( ',', $this->mKeywords )
3188 )
3189 ) );
3190 }
3191
3192 foreach ( $this->mMetatags as $tag ) {
3193 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
3194 $a = 'http-equiv';
3195 $tag[0] = substr( $tag[0], 5 );
3196 } else {
3197 $a = 'name';
3198 }
3199 $tagName = "meta-{$tag[0]}";
3200 if ( isset( $tags[$tagName] ) ) {
3201 $tagName .= $tag[1];
3202 }
3203 $tags[$tagName] = Html::element( 'meta',
3204 array(
3205 $a => $tag[0],
3206 'content' => $tag[1]
3207 )
3208 );
3209 }
3210
3211 foreach ( $this->mLinktags as $tag ) {
3212 $tags[] = Html::element( 'link', $tag );
3213 }
3214
3215 # Universal edit button
3216 if ( $wgUniversalEditButton && $this->isArticleRelated() ) {
3217 $user = $this->getUser();
3218 if ( $this->getTitle()->quickUserCan( 'edit', $user )
3219 && ( $this->getTitle()->exists() || $this->getTitle()->quickUserCan( 'create', $user ) ) ) {
3220 // Original UniversalEditButton
3221 $msg = $this->msg( 'edit' )->text();
3222 $tags['universal-edit-button'] = Html::element( 'link', array(
3223 'rel' => 'alternate',
3224 'type' => 'application/x-wiki',
3225 'title' => $msg,
3226 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
3227 ) );
3228 // Alternate edit link
3229 $tags['alternative-edit'] = Html::element( 'link', array(
3230 'rel' => 'edit',
3231 'title' => $msg,
3232 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
3233 ) );
3234 }
3235 }
3236
3237 # Generally the order of the favicon and apple-touch-icon links
3238 # should not matter, but Konqueror (3.5.9 at least) incorrectly
3239 # uses whichever one appears later in the HTML source. Make sure
3240 # apple-touch-icon is specified first to avoid this.
3241 if ( $wgAppleTouchIcon !== false ) {
3242 $tags['apple-touch-icon'] = Html::element( 'link', array( 'rel' => 'apple-touch-icon', 'href' => $wgAppleTouchIcon ) );
3243 }
3244
3245 if ( $wgFavicon !== false ) {
3246 $tags['favicon'] = Html::element( 'link', array( 'rel' => 'shortcut icon', 'href' => $wgFavicon ) );
3247 }
3248
3249 # OpenSearch description link
3250 $tags['opensearch'] = Html::element( 'link', array(
3251 'rel' => 'search',
3252 'type' => 'application/opensearchdescription+xml',
3253 'href' => wfScript( 'opensearch_desc' ),
3254 'title' => $this->msg( 'opensearch-desc' )->inContentLanguage()->text(),
3255 ) );
3256
3257 if ( $wgEnableAPI ) {
3258 # Real Simple Discovery link, provides auto-discovery information
3259 # for the MediaWiki API (and potentially additional custom API
3260 # support such as WordPress or Twitter-compatible APIs for a
3261 # blogging extension, etc)
3262 $tags['rsd'] = Html::element( 'link', array(
3263 'rel' => 'EditURI',
3264 'type' => 'application/rsd+xml',
3265 // Output a protocol-relative URL here if $wgServer is protocol-relative
3266 // Whether RSD accepts relative or protocol-relative URLs is completely undocumented, though
3267 'href' => wfExpandUrl( wfAppendQuery( wfScript( 'api' ), array( 'action' => 'rsd' ) ), PROTO_RELATIVE ),
3268 ) );
3269 }
3270
3271 # Language variants
3272 if ( !$wgDisableLangConversion && $wgCanonicalLanguageLinks ) {
3273 $lang = $this->getTitle()->getPageLanguage();
3274 if ( $lang->hasVariants() ) {
3275
3276 $urlvar = $lang->getURLVariant();
3277
3278 if ( !$urlvar ) {
3279 $variants = $lang->getVariants();
3280 foreach ( $variants as $_v ) {
3281 $tags["variant-$_v"] = Html::element( 'link', array(
3282 'rel' => 'alternate',
3283 'hreflang' => $_v,
3284 'href' => $this->getTitle()->getLocalURL( array( 'variant' => $_v ) ) )
3285 );
3286 }
3287 } else {
3288 $canonicalUrl = $this->getTitle()->getLocalURL();
3289 }
3290 }
3291 }
3292
3293 # Copyright
3294 $copyright = '';
3295 if ( $wgRightsPage ) {
3296 $copy = Title::newFromText( $wgRightsPage );
3297
3298 if ( $copy ) {
3299 $copyright = $copy->getLocalURL();
3300 }
3301 }
3302
3303 if ( !$copyright && $wgRightsUrl ) {
3304 $copyright = $wgRightsUrl;
3305 }
3306
3307 if ( $copyright ) {
3308 $tags['copyright'] = Html::element( 'link', array(
3309 'rel' => 'copyright',
3310 'href' => $copyright )
3311 );
3312 }
3313
3314 # Feeds
3315 if ( $wgFeed ) {
3316 foreach ( $this->getSyndicationLinks() as $format => $link ) {
3317 # Use the page name for the title. In principle, this could
3318 # lead to issues with having the same name for different feeds
3319 # corresponding to the same page, but we can't avoid that at
3320 # this low a level.
3321
3322 $tags[] = $this->feedLink(
3323 $format,
3324 $link,
3325 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
3326 $this->msg( "page-{$format}-feed", $this->getTitle()->getPrefixedText() )->text()
3327 );
3328 }
3329
3330 # Recent changes feed should appear on every page (except recentchanges,
3331 # that would be redundant). Put it after the per-page feed to avoid
3332 # changing existing behavior. It's still available, probably via a
3333 # menu in your browser. Some sites might have a different feed they'd
3334 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
3335 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
3336 # If so, use it instead.
3337 if ( $wgOverrideSiteFeed ) {
3338 foreach ( $wgOverrideSiteFeed as $type => $feedUrl ) {
3339 // Note, this->feedLink escapes the url.
3340 $tags[] = $this->feedLink(
3341 $type,
3342 $feedUrl,
3343 $this->msg( "site-{$type}-feed", $wgSitename )->text()
3344 );
3345 }
3346 } elseif ( !$this->getTitle()->isSpecial( 'Recentchanges' ) ) {
3347 $rctitle = SpecialPage::getTitleFor( 'Recentchanges' );
3348 foreach ( $wgAdvertisedFeedTypes as $format ) {
3349 $tags[] = $this->feedLink(
3350 $format,
3351 $rctitle->getLocalURL( array( 'feed' => $format ) ),
3352 $this->msg( "site-{$format}-feed", $wgSitename )->text() # For grep: 'site-rss-feed', 'site-atom-feed'.
3353 );
3354 }
3355 }
3356 }
3357
3358 # Canonical URL
3359 global $wgEnableCanonicalServerLink;
3360 if ( $wgEnableCanonicalServerLink ) {
3361 if ( $canonicalUrl !== false ) {
3362 $canonicalUrl = wfExpandUrl( $canonicalUrl, PROTO_CANONICAL );
3363 } else {
3364 $reqUrl = $this->getRequest()->getRequestURL();
3365 $canonicalUrl = wfExpandUrl( $reqUrl, PROTO_CANONICAL );
3366 }
3367 }
3368 if ( $canonicalUrl !== false ) {
3369 $tags[] = Html::element( 'link', array(
3370 'rel' => 'canonical',
3371 'href' => $canonicalUrl
3372 ) );
3373 }
3374
3375 return $tags;
3376 }
3377
3378 /**
3379 * @param $unused
3380 * @param bool $addContentType Whether "<meta>" specifying content type should be returned
3381 *
3382 * @return string HTML tag links to be put in the header.
3383 */
3384 public function getHeadLinks( $unused = null, $addContentType = false ) {
3385 return implode( "\n", $this->getHeadLinksArray( $addContentType ) );
3386 }
3387
3388 /**
3389 * Generate a "<link rel/>" for a feed.
3390 *
3391 * @param string $type feed type
3392 * @param string $url URL to the feed
3393 * @param string $text value of the "title" attribute
3394 * @return String: HTML fragment
3395 */
3396 private function feedLink( $type, $url, $text ) {
3397 return Html::element( 'link', array(
3398 'rel' => 'alternate',
3399 'type' => "application/$type+xml",
3400 'title' => $text,
3401 'href' => $url )
3402 );
3403 }
3404
3405 /**
3406 * Add a local or specified stylesheet, with the given media options.
3407 * Meant primarily for internal use...
3408 *
3409 * @param string $style URL to the file
3410 * @param string $media to specify a media type, 'screen', 'printable', 'handheld' or any.
3411 * @param string $condition for IE conditional comments, specifying an IE version
3412 * @param string $dir set to 'rtl' or 'ltr' for direction-specific sheets
3413 */
3414 public function addStyle( $style, $media = '', $condition = '', $dir = '' ) {
3415 $options = array();
3416 // Even though we expect the media type to be lowercase, but here we
3417 // force it to lowercase to be safe.
3418 if ( $media ) {
3419 $options['media'] = $media;
3420 }
3421 if ( $condition ) {
3422 $options['condition'] = $condition;
3423 }
3424 if ( $dir ) {
3425 $options['dir'] = $dir;
3426 }
3427 $this->styles[$style] = $options;
3428 }
3429
3430 /**
3431 * Adds inline CSS styles
3432 * @param $style_css Mixed: inline CSS
3433 * @param string $flip Set to 'flip' to flip the CSS if needed
3434 */
3435 public function addInlineStyle( $style_css, $flip = 'noflip' ) {
3436 if ( $flip === 'flip' && $this->getLanguage()->isRTL() ) {
3437 # If wanted, and the interface is right-to-left, flip the CSS
3438 $style_css = CSSJanus::transform( $style_css, true, false );
3439 }
3440 $this->mInlineStyles .= Html::inlineStyle( $style_css );
3441 }
3442
3443 /**
3444 * Build a set of "<link>" elements for the stylesheets specified in the $this->styles array.
3445 * These will be applied to various media & IE conditionals.
3446 *
3447 * @return string
3448 */
3449 public function buildCssLinks() {
3450 global $wgUseSiteCss, $wgAllowUserCss, $wgAllowUserCssPrefs, $wgContLang;
3451
3452 $this->getSkin()->setupSkinUserCss( $this );
3453
3454 // Add ResourceLoader styles
3455 // Split the styles into four groups
3456 $styles = array( 'other' => array(), 'user' => array(), 'site' => array(), 'private' => array(), 'noscript' => array() );
3457 $otherTags = ''; // Tags to append after the normal <link> tags
3458 $resourceLoader = $this->getResourceLoader();
3459
3460 $moduleStyles = $this->getModuleStyles();
3461
3462 // Per-site custom styles
3463 if ( $wgUseSiteCss ) {
3464 $moduleStyles[] = 'site';
3465 $moduleStyles[] = 'noscript';
3466 if ( $this->getUser()->isLoggedIn() ) {
3467 $moduleStyles[] = 'user.groups';
3468 }
3469 }
3470
3471 // Per-user custom styles
3472 if ( $wgAllowUserCss ) {
3473 if ( $this->getTitle()->isCssSubpage() && $this->userCanPreview() ) {
3474 // We're on a preview of a CSS subpage
3475 // Exclude this page from the user module in case it's in there (bug 26283)
3476 $otherTags .= $this->makeResourceLoaderLink( 'user', ResourceLoaderModule::TYPE_STYLES, false,
3477 array( 'excludepage' => $this->getTitle()->getPrefixedDBkey() )
3478 );
3479
3480 // Load the previewed CSS
3481 // If needed, Janus it first. This is user-supplied CSS, so it's
3482 // assumed to be right for the content language directionality.
3483 $previewedCSS = $this->getRequest()->getText( 'wpTextbox1' );
3484 if ( $this->getLanguage()->getDir() !== $wgContLang->getDir() ) {
3485 $previewedCSS = CSSJanus::transform( $previewedCSS, true, false );
3486 }
3487 $otherTags .= Html::inlineStyle( $previewedCSS );
3488 } else {
3489 // Load the user styles normally
3490 $moduleStyles[] = 'user';
3491 }
3492 }
3493
3494 // Per-user preference styles
3495 if ( $wgAllowUserCssPrefs ) {
3496 $moduleStyles[] = 'user.cssprefs';
3497 }
3498
3499 foreach ( $moduleStyles as $name ) {
3500 $module = $resourceLoader->getModule( $name );
3501 if ( !$module ) {
3502 continue;
3503 }
3504 $group = $module->getGroup();
3505 // Modules in groups named "other" or anything different than "user", "site" or "private"
3506 // will be placed in the "other" group
3507 $styles[isset( $styles[$group] ) ? $group : 'other'][] = $name;
3508 }
3509
3510 // We want site, private and user styles to override dynamically added styles from modules, but we want
3511 // dynamically added styles to override statically added styles from other modules. So the order
3512 // has to be other, dynamic, site, private, user
3513 // Add statically added styles for other modules
3514 $ret = $this->makeResourceLoaderLink( $styles['other'], ResourceLoaderModule::TYPE_STYLES );
3515 // Add normal styles added through addStyle()/addInlineStyle() here
3516 $ret .= implode( "\n", $this->buildCssLinksArray() ) . $this->mInlineStyles;
3517 // Add marker tag to mark the place where the client-side loader should inject dynamic styles
3518 // We use a <meta> tag with a made-up name for this because that's valid HTML
3519 $ret .= Html::element( 'meta', array( 'name' => 'ResourceLoaderDynamicStyles', 'content' => '' ) ) . "\n";
3520
3521 // Add site, private and user styles
3522 // 'private' at present only contains user.options, so put that before 'user'
3523 // Any future private modules will likely have a similar user-specific character
3524 foreach ( array( 'site', 'noscript', 'private', 'user' ) as $group ) {
3525 $ret .= $this->makeResourceLoaderLink( $styles[$group],
3526 ResourceLoaderModule::TYPE_STYLES
3527 );
3528 }
3529
3530 // Add stuff in $otherTags (previewed user CSS if applicable)
3531 $ret .= $otherTags;
3532 return $ret;
3533 }
3534
3535 /**
3536 * @return Array
3537 */
3538 public function buildCssLinksArray() {
3539 $links = array();
3540
3541 // Add any extension CSS
3542 foreach ( $this->mExtStyles as $url ) {
3543 $this->addStyle( $url );
3544 }
3545 $this->mExtStyles = array();
3546
3547 foreach ( $this->styles as $file => $options ) {
3548 $link = $this->styleLink( $file, $options );
3549 if ( $link ) {
3550 $links[$file] = $link;
3551 }
3552 }
3553 return $links;
3554 }
3555
3556 /**
3557 * Generate \<link\> tags for stylesheets
3558 *
3559 * @param string $style URL to the file
3560 * @param array $options option, can contain 'condition', 'dir', 'media'
3561 * keys
3562 * @return String: HTML fragment
3563 */
3564 protected function styleLink( $style, $options ) {
3565 if ( isset( $options['dir'] ) ) {
3566 if ( $this->getLanguage()->getDir() != $options['dir'] ) {
3567 return '';
3568 }
3569 }
3570
3571 if ( isset( $options['media'] ) ) {
3572 $media = self::transformCssMedia( $options['media'] );
3573 if ( is_null( $media ) ) {
3574 return '';
3575 }
3576 } else {
3577 $media = 'all';
3578 }
3579
3580 if ( substr( $style, 0, 1 ) == '/' ||
3581 substr( $style, 0, 5 ) == 'http:' ||
3582 substr( $style, 0, 6 ) == 'https:' ) {
3583 $url = $style;
3584 } else {
3585 global $wgStylePath, $wgStyleVersion;
3586 $url = $wgStylePath . '/' . $style . '?' . $wgStyleVersion;
3587 }
3588
3589 $link = Html::linkedStyle( $url, $media );
3590
3591 if ( isset( $options['condition'] ) ) {
3592 $condition = htmlspecialchars( $options['condition'] );
3593 $link = "<!--[if $condition]>$link<![endif]-->";
3594 }
3595 return $link;
3596 }
3597
3598 /**
3599 * Transform "media" attribute based on request parameters
3600 *
3601 * @param string $media current value of the "media" attribute
3602 * @return String: modified value of the "media" attribute, or null to skip
3603 * this stylesheet
3604 */
3605 public static function transformCssMedia( $media ) {
3606 global $wgRequest, $wgHandheldForIPhone;
3607
3608 // http://www.w3.org/TR/css3-mediaqueries/#syntax
3609 $screenMediaQueryRegex = '/^(?:only\s+)?screen\b/i';
3610
3611 // Switch in on-screen display for media testing
3612 $switches = array(
3613 'printable' => 'print',
3614 'handheld' => 'handheld',
3615 );
3616 foreach ( $switches as $switch => $targetMedia ) {
3617 if ( $wgRequest->getBool( $switch ) ) {
3618 if ( $media == $targetMedia ) {
3619 $media = '';
3620 } elseif ( preg_match( $screenMediaQueryRegex, $media ) === 1 ) {
3621 // This regex will not attempt to understand a comma-separated media_query_list
3622 //
3623 // Example supported values for $media: 'screen', 'only screen', 'screen and (min-width: 982px)' ),
3624 // Example NOT supported value for $media: '3d-glasses, screen, print and resolution > 90dpi'
3625 //
3626 // If it's a print request, we never want any kind of screen stylesheets
3627 // If it's a handheld request (currently the only other choice with a switch),
3628 // we don't want simple 'screen' but we might want screen queries that
3629 // have a max-width or something, so we'll pass all others on and let the
3630 // client do the query.
3631 if ( $targetMedia == 'print' || $media == 'screen' ) {
3632 return null;
3633 }
3634 }
3635 }
3636 }
3637
3638 // Expand longer media queries as iPhone doesn't grok 'handheld'
3639 if ( $wgHandheldForIPhone ) {
3640 $mediaAliases = array(
3641 'screen' => 'screen and (min-device-width: 481px)',
3642 'handheld' => 'handheld, only screen and (max-device-width: 480px)',
3643 );
3644
3645 if ( isset( $mediaAliases[$media] ) ) {
3646 $media = $mediaAliases[$media];
3647 }
3648 }
3649
3650 return $media;
3651 }
3652
3653 /**
3654 * Add a wikitext-formatted message to the output.
3655 * This is equivalent to:
3656 *
3657 * $wgOut->addWikiText( wfMessage( ... )->plain() )
3658 */
3659 public function addWikiMsg( /*...*/ ) {
3660 $args = func_get_args();
3661 $name = array_shift( $args );
3662 $this->addWikiMsgArray( $name, $args );
3663 }
3664
3665 /**
3666 * Add a wikitext-formatted message to the output.
3667 * Like addWikiMsg() except the parameters are taken as an array
3668 * instead of a variable argument list.
3669 *
3670 * @param $name string
3671 * @param $args array
3672 */
3673 public function addWikiMsgArray( $name, $args ) {
3674 $this->addHTML( $this->msg( $name, $args )->parseAsBlock() );
3675 }
3676
3677 /**
3678 * This function takes a number of message/argument specifications, wraps them in
3679 * some overall structure, and then parses the result and adds it to the output.
3680 *
3681 * In the $wrap, $1 is replaced with the first message, $2 with the second, and so
3682 * on. The subsequent arguments may either be strings, in which case they are the
3683 * message names, or arrays, in which case the first element is the message name,
3684 * and subsequent elements are the parameters to that message.
3685 *
3686 * Don't use this for messages that are not in users interface language.
3687 *
3688 * For example:
3689 *
3690 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>", 'some-error' );
3691 *
3692 * Is equivalent to:
3693 *
3694 * $wgOut->addWikiText( "<div class='error'>\n" . wfMessage( 'some-error' )->plain() . "\n</div>" );
3695 *
3696 * The newline after opening div is needed in some wikitext. See bug 19226.
3697 *
3698 * @param $wrap string
3699 */
3700 public function wrapWikiMsg( $wrap /*, ...*/ ) {
3701 $msgSpecs = func_get_args();
3702 array_shift( $msgSpecs );
3703 $msgSpecs = array_values( $msgSpecs );
3704 $s = $wrap;
3705 foreach ( $msgSpecs as $n => $spec ) {
3706 if ( is_array( $spec ) ) {
3707 $args = $spec;
3708 $name = array_shift( $args );
3709 if ( isset( $args['options'] ) ) {
3710 unset( $args['options'] );
3711 wfDeprecated(
3712 'Adding "options" to ' . __METHOD__ . ' is no longer supported',
3713 '1.20'
3714 );
3715 }
3716 } else {
3717 $args = array();
3718 $name = $spec;
3719 }
3720 $s = str_replace( '$' . ( $n + 1 ), $this->msg( $name, $args )->plain(), $s );
3721 }
3722 $this->addWikiText( $s );
3723 }
3724
3725 /**
3726 * Include jQuery core. Use this to avoid loading it multiple times
3727 * before we get a usable script loader.
3728 *
3729 * @param array $modules list of jQuery modules which should be loaded
3730 * @return Array: the list of modules which were not loaded.
3731 * @since 1.16
3732 * @deprecated since 1.17
3733 */
3734 public function includeJQuery( $modules = array() ) {
3735 return array();
3736 }
3737
3738 }