Merge "Reduced the DOS potential of 404 page floods"
[lhc/web/wiklou.git] / includes / page / Article.php
1 <?php
2 /**
3 * User interface for page actions.
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 * Class for viewing MediaWiki article and history.
25 *
26 * This maintains WikiPage functions for backwards compatibility.
27 *
28 * @todo Move and rewrite code to an Action class
29 *
30 * See design.txt for an overview.
31 * Note: edit user interface and cache support functions have been
32 * moved to separate EditPage and HTMLFileCache classes.
33 */
34 class Article implements Page {
35 /** @var IContextSource The context this Article is executed in */
36 protected $mContext;
37
38 /** @var WikiPage The WikiPage object of this instance */
39 protected $mPage;
40
41 /** @var ParserOptions ParserOptions object for $wgUser articles */
42 public $mParserOptions;
43
44 /**
45 * @var string Text of the revision we are working on
46 * @todo BC cruft
47 */
48 public $mContent;
49
50 /**
51 * @var Content Content of the revision we are working on
52 * @since 1.21
53 */
54 public $mContentObject;
55
56 /** @var bool Is the content ($mContent) already loaded? */
57 public $mContentLoaded = false;
58
59 /** @var int|null The oldid of the article that is to be shown, 0 for the current revision */
60 public $mOldId;
61
62 /** @var Title Title from which we were redirected here */
63 public $mRedirectedFrom = null;
64
65 /** @var string|bool URL to redirect to or false if none */
66 public $mRedirectUrl = false;
67
68 /** @var int Revision ID of revision we are working on */
69 public $mRevIdFetched = 0;
70
71 /** @var Revision Revision we are working on */
72 public $mRevision = null;
73
74 /** @var ParserOutput */
75 public $mParserOutput;
76
77 /**
78 * Constructor and clear the article
79 * @param Title $title Reference to a Title object.
80 * @param int $oldId Revision ID, null to fetch from request, zero for current
81 */
82 public function __construct( Title $title, $oldId = null ) {
83 $this->mOldId = $oldId;
84 $this->mPage = $this->newPage( $title );
85 }
86
87 /**
88 * @param Title $title
89 * @return WikiPage
90 */
91 protected function newPage( Title $title ) {
92 return new WikiPage( $title );
93 }
94
95 /**
96 * Constructor from a page id
97 * @param int $id Article ID to load
98 * @return Article|null
99 */
100 public static function newFromID( $id ) {
101 $t = Title::newFromID( $id );
102 # @todo FIXME: Doesn't inherit right
103 return $t == null ? null : new self( $t );
104 # return $t == null ? null : new static( $t ); // PHP 5.3
105 }
106
107 /**
108 * Create an Article object of the appropriate class for the given page.
109 *
110 * @param Title $title
111 * @param IContextSource $context
112 * @return Article
113 */
114 public static function newFromTitle( $title, IContextSource $context ) {
115 if ( NS_MEDIA == $title->getNamespace() ) {
116 // FIXME: where should this go?
117 $title = Title::makeTitle( NS_FILE, $title->getDBkey() );
118 }
119
120 $page = null;
121 Hooks::run( 'ArticleFromTitle', array( &$title, &$page, $context ) );
122 if ( !$page ) {
123 switch ( $title->getNamespace() ) {
124 case NS_FILE:
125 $page = new ImagePage( $title );
126 break;
127 case NS_CATEGORY:
128 $page = new CategoryPage( $title );
129 break;
130 default:
131 $page = new Article( $title );
132 }
133 }
134 $page->setContext( $context );
135
136 return $page;
137 }
138
139 /**
140 * Create an Article object of the appropriate class for the given page.
141 *
142 * @param WikiPage $page
143 * @param IContextSource $context
144 * @return Article
145 */
146 public static function newFromWikiPage( WikiPage $page, IContextSource $context ) {
147 $article = self::newFromTitle( $page->getTitle(), $context );
148 $article->mPage = $page; // override to keep process cached vars
149 return $article;
150 }
151
152 /**
153 * Tell the page view functions that this view was redirected
154 * from another page on the wiki.
155 * @param Title $from
156 */
157 public function setRedirectedFrom( Title $from ) {
158 $this->mRedirectedFrom = $from;
159 }
160
161 /**
162 * Get the title object of the article
163 *
164 * @return Title Title object of this page
165 */
166 public function getTitle() {
167 return $this->mPage->getTitle();
168 }
169
170 /**
171 * Get the WikiPage object of this instance
172 *
173 * @since 1.19
174 * @return WikiPage
175 */
176 public function getPage() {
177 return $this->mPage;
178 }
179
180 /**
181 * Clear the object
182 */
183 public function clear() {
184 $this->mContentLoaded = false;
185
186 $this->mRedirectedFrom = null; # Title object if set
187 $this->mRevIdFetched = 0;
188 $this->mRedirectUrl = false;
189
190 $this->mPage->clear();
191 }
192
193 /**
194 * Note that getContent/loadContent do not follow redirects anymore.
195 * If you need to fetch redirectable content easily, try
196 * the shortcut in WikiPage::getRedirectTarget()
197 *
198 * This function has side effects! Do not use this function if you
199 * only want the real revision text if any.
200 *
201 * @deprecated since 1.21; use WikiPage::getContent() instead
202 *
203 * @return string Return the text of this revision
204 */
205 public function getContent() {
206 ContentHandler::deprecated( __METHOD__, '1.21' );
207 $content = $this->getContentObject();
208 return ContentHandler::getContentText( $content );
209 }
210
211 /**
212 * Returns a Content object representing the pages effective display content,
213 * not necessarily the revision's content!
214 *
215 * Note that getContent/loadContent do not follow redirects anymore.
216 * If you need to fetch redirectable content easily, try
217 * the shortcut in WikiPage::getRedirectTarget()
218 *
219 * This function has side effects! Do not use this function if you
220 * only want the real revision text if any.
221 *
222 * @return Content Return the content of this revision
223 *
224 * @since 1.21
225 */
226 protected function getContentObject() {
227
228 if ( $this->mPage->getID() === 0 ) {
229 # If this is a MediaWiki:x message, then load the messages
230 # and return the message value for x.
231 if ( $this->getTitle()->getNamespace() == NS_MEDIAWIKI ) {
232 $text = $this->getTitle()->getDefaultMessageText();
233 if ( $text === false ) {
234 $text = '';
235 }
236
237 $content = ContentHandler::makeContent( $text, $this->getTitle() );
238 } else {
239 $message = $this->getContext()->getUser()->isLoggedIn() ? 'noarticletext' : 'noarticletextanon';
240 $content = new MessageContent( $message, null, 'parsemag' );
241 }
242 } else {
243 $this->fetchContentObject();
244 $content = $this->mContentObject;
245 }
246
247 return $content;
248 }
249
250 /**
251 * @return int The oldid of the article that is to be shown, 0 for the current revision
252 */
253 public function getOldID() {
254 if ( is_null( $this->mOldId ) ) {
255 $this->mOldId = $this->getOldIDFromRequest();
256 }
257
258 return $this->mOldId;
259 }
260
261 /**
262 * Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect
263 *
264 * @return int The old id for the request
265 */
266 public function getOldIDFromRequest() {
267 $this->mRedirectUrl = false;
268
269 $request = $this->getContext()->getRequest();
270 $oldid = $request->getIntOrNull( 'oldid' );
271
272 if ( $oldid === null ) {
273 return 0;
274 }
275
276 if ( $oldid !== 0 ) {
277 # Load the given revision and check whether the page is another one.
278 # In that case, update this instance to reflect the change.
279 if ( $oldid === $this->mPage->getLatest() ) {
280 $this->mRevision = $this->mPage->getRevision();
281 } else {
282 $this->mRevision = Revision::newFromId( $oldid );
283 if ( $this->mRevision !== null ) {
284 // Revision title doesn't match the page title given?
285 if ( $this->mPage->getID() != $this->mRevision->getPage() ) {
286 $function = array( get_class( $this->mPage ), 'newFromID' );
287 $this->mPage = call_user_func( $function, $this->mRevision->getPage() );
288 }
289 }
290 }
291 }
292
293 if ( $request->getVal( 'direction' ) == 'next' ) {
294 $nextid = $this->getTitle()->getNextRevisionID( $oldid );
295 if ( $nextid ) {
296 $oldid = $nextid;
297 $this->mRevision = null;
298 } else {
299 $this->mRedirectUrl = $this->getTitle()->getFullURL( 'redirect=no' );
300 }
301 } elseif ( $request->getVal( 'direction' ) == 'prev' ) {
302 $previd = $this->getTitle()->getPreviousRevisionID( $oldid );
303 if ( $previd ) {
304 $oldid = $previd;
305 $this->mRevision = null;
306 }
307 }
308
309 return $oldid;
310 }
311
312 /**
313 * Load the revision (including text) into this object
314 *
315 * @deprecated since 1.19; use fetchContent()
316 */
317 function loadContent() {
318 wfDeprecated( __METHOD__, '1.19' );
319 $this->fetchContent();
320 }
321
322 /**
323 * Get text of an article from database
324 * Does *NOT* follow redirects.
325 *
326 * @protected
327 * @note This is really internal functionality that should really NOT be
328 * used by other functions. For accessing article content, use the WikiPage
329 * class, especially WikiBase::getContent(). However, a lot of legacy code
330 * uses this method to retrieve page text from the database, so the function
331 * has to remain public for now.
332 *
333 * @return string|bool String containing article contents, or false if null
334 * @deprecated since 1.21, use WikiPage::getContent() instead
335 */
336 function fetchContent() {
337 // BC cruft!
338
339 ContentHandler::deprecated( __METHOD__, '1.21' );
340
341 if ( $this->mContentLoaded && $this->mContent ) {
342 return $this->mContent;
343 }
344
345 $content = $this->fetchContentObject();
346
347 if ( !$content ) {
348 return false;
349 }
350
351 // @todo Get rid of mContent everywhere!
352 $this->mContent = ContentHandler::getContentText( $content );
353 ContentHandler::runLegacyHooks( 'ArticleAfterFetchContent', array( &$this, &$this->mContent ) );
354
355 return $this->mContent;
356 }
357
358 /**
359 * Get text content object
360 * Does *NOT* follow redirects.
361 * @todo When is this null?
362 *
363 * @note Code that wants to retrieve page content from the database should
364 * use WikiPage::getContent().
365 *
366 * @return Content|null|bool
367 *
368 * @since 1.21
369 */
370 protected function fetchContentObject() {
371 if ( $this->mContentLoaded ) {
372 return $this->mContentObject;
373 }
374
375 $this->mContentLoaded = true;
376 $this->mContent = null;
377
378 $oldid = $this->getOldID();
379
380 # Pre-fill content with error message so that if something
381 # fails we'll have something telling us what we intended.
382 //XXX: this isn't page content but a UI message. horrible.
383 $this->mContentObject = new MessageContent( 'missing-revision', array( $oldid ) );
384
385 if ( $oldid ) {
386 # $this->mRevision might already be fetched by getOldIDFromRequest()
387 if ( !$this->mRevision ) {
388 $this->mRevision = Revision::newFromId( $oldid );
389 if ( !$this->mRevision ) {
390 wfDebug( __METHOD__ . " failed to retrieve specified revision, id $oldid\n" );
391 return false;
392 }
393 }
394 } else {
395 $oldid = $this->mPage->getLatest();
396 if ( !$oldid ) {
397 wfDebug( __METHOD__ . " failed to find page data for title " .
398 $this->getTitle()->getPrefixedText() . "\n" );
399 return false;
400 }
401
402 # Update error message with correct oldid
403 $this->mContentObject = new MessageContent( 'missing-revision', array( $oldid ) );
404
405 $this->mRevision = $this->mPage->getRevision();
406
407 if ( !$this->mRevision ) {
408 wfDebug( __METHOD__ . " failed to retrieve current page, rev_id $oldid\n" );
409 return false;
410 }
411 }
412
413 // @todo FIXME: Horrible, horrible! This content-loading interface just plain sucks.
414 // We should instead work with the Revision object when we need it...
415 // Loads if user is allowed
416 $content = $this->mRevision->getContent(
417 Revision::FOR_THIS_USER,
418 $this->getContext()->getUser()
419 );
420
421 if ( !$content ) {
422 wfDebug( __METHOD__ . " failed to retrieve content of revision " .
423 $this->mRevision->getId() . "\n" );
424 return false;
425 }
426
427 $this->mContentObject = $content;
428 $this->mRevIdFetched = $this->mRevision->getId();
429
430 Hooks::run( 'ArticleAfterFetchContentObject', array( &$this, &$this->mContentObject ) );
431
432 return $this->mContentObject;
433 }
434
435 /**
436 * Returns true if the currently-referenced revision is the current edit
437 * to this page (and it exists).
438 * @return bool
439 */
440 public function isCurrent() {
441 # If no oldid, this is the current version.
442 if ( $this->getOldID() == 0 ) {
443 return true;
444 }
445
446 return $this->mPage->exists() && $this->mRevision && $this->mRevision->isCurrent();
447 }
448
449 /**
450 * Get the fetched Revision object depending on request parameters or null
451 * on failure.
452 *
453 * @since 1.19
454 * @return Revision|null
455 */
456 public function getRevisionFetched() {
457 $this->fetchContentObject();
458
459 return $this->mRevision;
460 }
461
462 /**
463 * Use this to fetch the rev ID used on page views
464 *
465 * @return int Revision ID of last article revision
466 */
467 public function getRevIdFetched() {
468 if ( $this->mRevIdFetched ) {
469 return $this->mRevIdFetched;
470 } else {
471 return $this->mPage->getLatest();
472 }
473 }
474
475 /**
476 * This is the default action of the index.php entry point: just view the
477 * page of the given title.
478 */
479 public function view() {
480 global $wgUseFileCache, $wgUseETag, $wgDebugToolbar, $wgMaxRedirects;
481
482 # Get variables from query string
483 # As side effect this will load the revision and update the title
484 # in a revision ID is passed in the request, so this should remain
485 # the first call of this method even if $oldid is used way below.
486 $oldid = $this->getOldID();
487
488 $user = $this->getContext()->getUser();
489 # Another whitelist check in case getOldID() is altering the title
490 $permErrors = $this->getTitle()->getUserPermissionsErrors( 'read', $user );
491 if ( count( $permErrors ) ) {
492 wfDebug( __METHOD__ . ": denied on secondary read check\n" );
493 throw new PermissionsError( 'read', $permErrors );
494 }
495
496 $outputPage = $this->getContext()->getOutput();
497 # getOldID() may as well want us to redirect somewhere else
498 if ( $this->mRedirectUrl ) {
499 $outputPage->redirect( $this->mRedirectUrl );
500 wfDebug( __METHOD__ . ": redirecting due to oldid\n" );
501
502 return;
503 }
504
505 # If we got diff in the query, we want to see a diff page instead of the article.
506 if ( $this->getContext()->getRequest()->getCheck( 'diff' ) ) {
507 wfDebug( __METHOD__ . ": showing diff page\n" );
508 $this->showDiffPage();
509
510 return;
511 }
512
513 # Set page title (may be overridden by DISPLAYTITLE)
514 $outputPage->setPageTitle( $this->getTitle()->getPrefixedText() );
515
516 $outputPage->setArticleFlag( true );
517 # Allow frames by default
518 $outputPage->allowClickjacking();
519
520 $parserCache = ParserCache::singleton();
521
522 $parserOptions = $this->getParserOptions();
523 # Render printable version, use printable version cache
524 if ( $outputPage->isPrintable() ) {
525 $parserOptions->setIsPrintable( true );
526 $parserOptions->setEditSection( false );
527 } elseif ( !$this->isCurrent() || !$this->getTitle()->quickUserCan( 'edit', $user ) ) {
528 $parserOptions->setEditSection( false );
529 }
530
531 # Try client and file cache
532 if ( !$wgDebugToolbar && $oldid === 0 && $this->mPage->checkTouched() ) {
533 if ( $wgUseETag ) {
534 $outputPage->setETag( $parserCache->getETag( $this, $parserOptions ) );
535 }
536
537 # Use the greatest of the page's timestamp or the timestamp of any
538 # redirect in the chain (bug 67849)
539 $timestamp = $this->mPage->getTouched();
540 if ( isset( $this->mRedirectedFrom ) ) {
541 $timestamp = max( $timestamp, $this->mRedirectedFrom->getTouched() );
542
543 # If there can be more than one redirect in the chain, we have
544 # to go through the whole chain too in case an intermediate
545 # redirect was changed.
546 if ( $wgMaxRedirects > 1 ) {
547 $titles = Revision::newFromTitle( $this->mRedirectedFrom )
548 ->getContent( Revision::FOR_THIS_USER, $user )
549 ->getRedirectChain();
550 $thisTitle = $this->getTitle();
551 foreach ( $titles as $title ) {
552 if ( Title::compare( $title, $thisTitle ) === 0 ) {
553 break;
554 }
555 $timestamp = max( $timestamp, $title->getTouched() );
556 }
557 }
558 }
559
560 # Is it client cached?
561 if ( $outputPage->checkLastModified( $timestamp ) ) {
562 wfDebug( __METHOD__ . ": done 304\n" );
563
564 return;
565 # Try file cache
566 } elseif ( $wgUseFileCache && $this->tryFileCache() ) {
567 wfDebug( __METHOD__ . ": done file cache\n" );
568 # tell wgOut that output is taken care of
569 $outputPage->disable();
570 $this->mPage->doViewUpdates( $user, $oldid );
571
572 return;
573 }
574 }
575
576 # Should the parser cache be used?
577 $useParserCache = $this->mPage->shouldCheckParserCache( $parserOptions, $oldid );
578 wfDebug( 'Article::view using parser cache: ' . ( $useParserCache ? 'yes' : 'no' ) . "\n" );
579 if ( $user->getStubThreshold() ) {
580 $this->getContext()->getStats()->increment( 'pcache_miss_stub' );
581 }
582
583 $this->showRedirectedFromHeader();
584 $this->showNamespaceHeader();
585
586 # Iterate through the possible ways of constructing the output text.
587 # Keep going until $outputDone is set, or we run out of things to do.
588 $pass = 0;
589 $outputDone = false;
590 $this->mParserOutput = false;
591
592 while ( !$outputDone && ++$pass ) {
593 switch ( $pass ) {
594 case 1:
595 Hooks::run( 'ArticleViewHeader', array( &$this, &$outputDone, &$useParserCache ) );
596 break;
597 case 2:
598 # Early abort if the page doesn't exist
599 if ( !$this->mPage->exists() ) {
600 wfDebug( __METHOD__ . ": showing missing article\n" );
601 $this->showMissingArticle();
602 $this->mPage->doViewUpdates( $user );
603 return;
604 }
605
606 # Try the parser cache
607 if ( $useParserCache ) {
608 $this->mParserOutput = $parserCache->get( $this, $parserOptions );
609
610 if ( $this->mParserOutput !== false ) {
611 if ( $oldid ) {
612 wfDebug( __METHOD__ . ": showing parser cache contents for current rev permalink\n" );
613 $this->setOldSubtitle( $oldid );
614 } else {
615 wfDebug( __METHOD__ . ": showing parser cache contents\n" );
616 }
617 $outputPage->addParserOutput( $this->mParserOutput );
618 # Ensure that UI elements requiring revision ID have
619 # the correct version information.
620 $outputPage->setRevisionId( $this->mPage->getLatest() );
621 # Preload timestamp to avoid a DB hit
622 $cachedTimestamp = $this->mParserOutput->getTimestamp();
623 if ( $cachedTimestamp !== null ) {
624 $outputPage->setRevisionTimestamp( $cachedTimestamp );
625 $this->mPage->setTimestamp( $cachedTimestamp );
626 }
627 $outputDone = true;
628 }
629 }
630 break;
631 case 3:
632 # This will set $this->mRevision if needed
633 $this->fetchContentObject();
634
635 # Are we looking at an old revision
636 if ( $oldid && $this->mRevision ) {
637 $this->setOldSubtitle( $oldid );
638
639 if ( !$this->showDeletedRevisionHeader() ) {
640 wfDebug( __METHOD__ . ": cannot view deleted revision\n" );
641 return;
642 }
643 }
644
645 # Ensure that UI elements requiring revision ID have
646 # the correct version information.
647 $outputPage->setRevisionId( $this->getRevIdFetched() );
648 # Preload timestamp to avoid a DB hit
649 $outputPage->setRevisionTimestamp( $this->getTimestamp() );
650
651 # Pages containing custom CSS or JavaScript get special treatment
652 if ( $this->getTitle()->isCssOrJsPage() || $this->getTitle()->isCssJsSubpage() ) {
653 wfDebug( __METHOD__ . ": showing CSS/JS source\n" );
654 $this->showCssOrJsPage();
655 $outputDone = true;
656 } elseif ( !Hooks::run( 'ArticleContentViewCustom',
657 array( $this->fetchContentObject(), $this->getTitle(), $outputPage ) ) ) {
658
659 # Allow extensions do their own custom view for certain pages
660 $outputDone = true;
661 } elseif ( !ContentHandler::runLegacyHooks( 'ArticleViewCustom',
662 array( $this->fetchContentObject(), $this->getTitle(), $outputPage ) ) ) {
663
664 # Allow extensions do their own custom view for certain pages
665 $outputDone = true;
666 }
667 break;
668 case 4:
669 # Run the parse, protected by a pool counter
670 wfDebug( __METHOD__ . ": doing uncached parse\n" );
671
672 $content = $this->getContentObject();
673 $poolArticleView = new PoolWorkArticleView( $this->getPage(), $parserOptions,
674 $this->getRevIdFetched(), $useParserCache, $content );
675
676 if ( !$poolArticleView->execute() ) {
677 $error = $poolArticleView->getError();
678 if ( $error ) {
679 $outputPage->clearHTML(); // for release() errors
680 $outputPage->enableClientCache( false );
681 $outputPage->setRobotPolicy( 'noindex,nofollow' );
682
683 $errortext = $error->getWikiText( false, 'view-pool-error' );
684 $outputPage->addWikiText( '<div class="errorbox">' . $errortext . '</div>' );
685 }
686 # Connection or timeout error
687 return;
688 }
689
690 $this->mParserOutput = $poolArticleView->getParserOutput();
691 $outputPage->addParserOutput( $this->mParserOutput );
692 if ( $content->getRedirectTarget() ) {
693 $outputPage->addSubtitle( "<span id=\"redirectsub\">" .
694 $this->getContext()->msg( 'redirectpagesub' )->parse() . "</span>" );
695 }
696
697 # Don't cache a dirty ParserOutput object
698 if ( $poolArticleView->getIsDirty() ) {
699 $outputPage->setSquidMaxage( 0 );
700 $outputPage->addHTML( "<!-- parser cache is expired, " .
701 "sending anyway due to pool overload-->\n" );
702 }
703
704 $outputDone = true;
705 break;
706 # Should be unreachable, but just in case...
707 default:
708 break 2;
709 }
710 }
711
712 # Get the ParserOutput actually *displayed* here.
713 # Note that $this->mParserOutput is the *current*/oldid version output.
714 $pOutput = ( $outputDone instanceof ParserOutput )
715 ? $outputDone // object fetched by hook
716 : $this->mParserOutput;
717
718 # Adjust title for main page & pages with displaytitle
719 if ( $pOutput ) {
720 $this->adjustDisplayTitle( $pOutput );
721 }
722
723 # For the main page, overwrite the <title> element with the con-
724 # tents of 'pagetitle-view-mainpage' instead of the default (if
725 # that's not empty).
726 # This message always exists because it is in the i18n files
727 if ( $this->getTitle()->isMainPage() ) {
728 $msg = wfMessage( 'pagetitle-view-mainpage' )->inContentLanguage();
729 if ( !$msg->isDisabled() ) {
730 $outputPage->setHTMLTitle( $msg->title( $this->getTitle() )->text() );
731 }
732 }
733
734 # Check for any __NOINDEX__ tags on the page using $pOutput
735 $policy = $this->getRobotPolicy( 'view', $pOutput );
736 $outputPage->setIndexPolicy( $policy['index'] );
737 $outputPage->setFollowPolicy( $policy['follow'] );
738
739 $this->showViewFooter();
740 $this->mPage->doViewUpdates( $user, $oldid );
741
742 $outputPage->addModules( 'mediawiki.action.view.postEdit' );
743
744 }
745
746 /**
747 * Adjust title for pages with displaytitle, -{T|}- or language conversion
748 * @param ParserOutput $pOutput
749 */
750 public function adjustDisplayTitle( ParserOutput $pOutput ) {
751 # Adjust the title if it was set by displaytitle, -{T|}- or language conversion
752 $titleText = $pOutput->getTitleText();
753 if ( strval( $titleText ) !== '' ) {
754 $this->getContext()->getOutput()->setPageTitle( $titleText );
755 }
756 }
757
758 /**
759 * Show a diff page according to current request variables. For use within
760 * Article::view() only, other callers should use the DifferenceEngine class.
761 *
762 */
763 protected function showDiffPage() {
764 $request = $this->getContext()->getRequest();
765 $user = $this->getContext()->getUser();
766 $diff = $request->getVal( 'diff' );
767 $rcid = $request->getVal( 'rcid' );
768 $diffOnly = $request->getBool( 'diffonly', $user->getOption( 'diffonly' ) );
769 $purge = $request->getVal( 'action' ) == 'purge';
770 $unhide = $request->getInt( 'unhide' ) == 1;
771 $oldid = $this->getOldID();
772
773 $rev = $this->getRevisionFetched();
774
775 if ( !$rev ) {
776 $this->getContext()->getOutput()->setPageTitle( wfMessage( 'errorpagetitle' ) );
777 $msg = $this->getContext()->msg( 'difference-missing-revision' )
778 ->params( $oldid )
779 ->numParams( 1 )
780 ->parseAsBlock();
781 $this->getContext()->getOutput()->addHtml( $msg );
782 return;
783 }
784
785 $contentHandler = $rev->getContentHandler();
786 $de = $contentHandler->createDifferenceEngine(
787 $this->getContext(),
788 $oldid,
789 $diff,
790 $rcid,
791 $purge,
792 $unhide
793 );
794
795 // DifferenceEngine directly fetched the revision:
796 $this->mRevIdFetched = $de->mNewid;
797 $de->showDiffPage( $diffOnly );
798
799 // Run view updates for the newer revision being diffed (and shown
800 // below the diff if not $diffOnly).
801 list( $old, $new ) = $de->mapDiffPrevNext( $oldid, $diff );
802 // New can be false, convert it to 0 - this conveniently means the latest revision
803 $this->mPage->doViewUpdates( $user, (int)$new );
804 }
805
806 /**
807 * Show a page view for a page formatted as CSS or JavaScript. To be called by
808 * Article::view() only.
809 *
810 * This exists mostly to serve the deprecated ShowRawCssJs hook (used to customize these views).
811 * It has been replaced by the ContentGetParserOutput hook, which lets you do the same but with
812 * more flexibility.
813 *
814 * @param bool $showCacheHint Whether to show a message telling the user
815 * to clear the browser cache (default: true).
816 */
817 protected function showCssOrJsPage( $showCacheHint = true ) {
818 $outputPage = $this->getContext()->getOutput();
819
820 if ( $showCacheHint ) {
821 $dir = $this->getContext()->getLanguage()->getDir();
822 $lang = $this->getContext()->getLanguage()->getHtmlCode();
823
824 $outputPage->wrapWikiMsg(
825 "<div id='mw-clearyourcache' lang='$lang' dir='$dir' class='mw-content-$dir'>\n$1\n</div>",
826 'clearyourcache'
827 );
828 }
829
830 $this->fetchContentObject();
831
832 if ( $this->mContentObject ) {
833 // Give hooks a chance to customise the output
834 if ( ContentHandler::runLegacyHooks(
835 'ShowRawCssJs',
836 array( $this->mContentObject, $this->getTitle(), $outputPage ) )
837 ) {
838 // If no legacy hooks ran, display the content of the parser output, including RL modules,
839 // but excluding metadata like categories and language links
840 $po = $this->mContentObject->getParserOutput( $this->getTitle() );
841 $outputPage->addParserOutputContent( $po );
842 }
843 }
844 }
845
846 /**
847 * Get the robot policy to be used for the current view
848 * @param string $action The action= GET parameter
849 * @param ParserOutput|null $pOutput
850 * @return array The policy that should be set
851 * @todo actions other than 'view'
852 */
853 public function getRobotPolicy( $action, $pOutput = null ) {
854 global $wgArticleRobotPolicies, $wgNamespaceRobotPolicies, $wgDefaultRobotPolicy;
855
856 $ns = $this->getTitle()->getNamespace();
857
858 # Don't index user and user talk pages for blocked users (bug 11443)
859 if ( ( $ns == NS_USER || $ns == NS_USER_TALK ) && !$this->getTitle()->isSubpage() ) {
860 $specificTarget = null;
861 $vagueTarget = null;
862 $titleText = $this->getTitle()->getText();
863 if ( IP::isValid( $titleText ) ) {
864 $vagueTarget = $titleText;
865 } else {
866 $specificTarget = $titleText;
867 }
868 if ( Block::newFromTarget( $specificTarget, $vagueTarget ) instanceof Block ) {
869 return array(
870 'index' => 'noindex',
871 'follow' => 'nofollow'
872 );
873 }
874 }
875
876 if ( $this->mPage->getID() === 0 || $this->getOldID() ) {
877 # Non-articles (special pages etc), and old revisions
878 return array(
879 'index' => 'noindex',
880 'follow' => 'nofollow'
881 );
882 } elseif ( $this->getContext()->getOutput()->isPrintable() ) {
883 # Discourage indexing of printable versions, but encourage following
884 return array(
885 'index' => 'noindex',
886 'follow' => 'follow'
887 );
888 } elseif ( $this->getContext()->getRequest()->getInt( 'curid' ) ) {
889 # For ?curid=x urls, disallow indexing
890 return array(
891 'index' => 'noindex',
892 'follow' => 'follow'
893 );
894 }
895
896 # Otherwise, construct the policy based on the various config variables.
897 $policy = self::formatRobotPolicy( $wgDefaultRobotPolicy );
898
899 if ( isset( $wgNamespaceRobotPolicies[$ns] ) ) {
900 # Honour customised robot policies for this namespace
901 $policy = array_merge(
902 $policy,
903 self::formatRobotPolicy( $wgNamespaceRobotPolicies[$ns] )
904 );
905 }
906 if ( $this->getTitle()->canUseNoindex() && is_object( $pOutput ) && $pOutput->getIndexPolicy() ) {
907 # __INDEX__ and __NOINDEX__ magic words, if allowed. Incorporates
908 # a final sanity check that we have really got the parser output.
909 $policy = array_merge(
910 $policy,
911 array( 'index' => $pOutput->getIndexPolicy() )
912 );
913 }
914
915 if ( isset( $wgArticleRobotPolicies[$this->getTitle()->getPrefixedText()] ) ) {
916 # (bug 14900) site config can override user-defined __INDEX__ or __NOINDEX__
917 $policy = array_merge(
918 $policy,
919 self::formatRobotPolicy( $wgArticleRobotPolicies[$this->getTitle()->getPrefixedText()] )
920 );
921 }
922
923 return $policy;
924 }
925
926 /**
927 * Converts a String robot policy into an associative array, to allow
928 * merging of several policies using array_merge().
929 * @param array|string $policy Returns empty array on null/false/'', transparent
930 * to already-converted arrays, converts string.
931 * @return array 'index' => \<indexpolicy\>, 'follow' => \<followpolicy\>
932 */
933 public static function formatRobotPolicy( $policy ) {
934 if ( is_array( $policy ) ) {
935 return $policy;
936 } elseif ( !$policy ) {
937 return array();
938 }
939
940 $policy = explode( ',', $policy );
941 $policy = array_map( 'trim', $policy );
942
943 $arr = array();
944 foreach ( $policy as $var ) {
945 if ( in_array( $var, array( 'index', 'noindex' ) ) ) {
946 $arr['index'] = $var;
947 } elseif ( in_array( $var, array( 'follow', 'nofollow' ) ) ) {
948 $arr['follow'] = $var;
949 }
950 }
951
952 return $arr;
953 }
954
955 /**
956 * If this request is a redirect view, send "redirected from" subtitle to
957 * the output. Returns true if the header was needed, false if this is not
958 * a redirect view. Handles both local and remote redirects.
959 *
960 * @return bool
961 */
962 public function showRedirectedFromHeader() {
963 global $wgRedirectSources;
964
965 $context = $this->getContext();
966 $outputPage = $context->getOutput();
967 $request = $context->getRequest();
968 $rdfrom = $request->getVal( 'rdfrom' );
969
970 // Construct a URL for the current page view, but with the target title
971 $query = $request->getValues();
972 unset( $query['rdfrom'] );
973 unset( $query['title'] );
974 if ( $this->getTitle()->isRedirect() ) {
975 // Prevent double redirects
976 $query['redirect'] = 'no';
977 }
978 $redirectTargetUrl = $this->getTitle()->getLinkURL( $query );
979
980 if ( isset( $this->mRedirectedFrom ) ) {
981 // This is an internally redirected page view.
982 // We'll need a backlink to the source page for navigation.
983 if ( Hooks::run( 'ArticleViewRedirect', array( &$this ) ) ) {
984 $redir = Linker::linkKnown(
985 $this->mRedirectedFrom,
986 null,
987 array(),
988 array( 'redirect' => 'no' )
989 );
990
991 $outputPage->addSubtitle( "<span class=\"mw-redirectedfrom\">" .
992 $context->msg( 'redirectedfrom' )->rawParams( $redir )->parse()
993 . "</span>" );
994
995 // Add the script to update the displayed URL and
996 // set the fragment if one was specified in the redirect
997 $outputPage->addJsConfigVars( array(
998 'wgInternalRedirectTargetUrl' => $redirectTargetUrl,
999 ) );
1000 $outputPage->addModules( 'mediawiki.action.view.redirect' );
1001
1002 // Add a <link rel="canonical"> tag
1003 $outputPage->setCanonicalUrl( $this->getTitle()->getCanonicalURL() );
1004
1005 // Tell the output object that the user arrived at this article through a redirect
1006 $outputPage->setRedirectedFrom( $this->mRedirectedFrom );
1007
1008 return true;
1009 }
1010 } elseif ( $rdfrom ) {
1011 // This is an externally redirected view, from some other wiki.
1012 // If it was reported from a trusted site, supply a backlink.
1013 if ( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
1014 $redir = Linker::makeExternalLink( $rdfrom, $rdfrom );
1015 $outputPage->addSubtitle( "<span class=\"mw-redirectedfrom\">" .
1016 $context->msg( 'redirectedfrom' )->rawParams( $redir )->parse()
1017 . "</span>" );
1018
1019 // Add the script to update the displayed URL
1020 $outputPage->addJsConfigVars( array(
1021 'wgInternalRedirectTargetUrl' => $redirectTargetUrl,
1022 ) );
1023 $outputPage->addModules( 'mediawiki.action.view.redirect' );
1024
1025 return true;
1026 }
1027 }
1028
1029 return false;
1030 }
1031
1032 /**
1033 * Show a header specific to the namespace currently being viewed, like
1034 * [[MediaWiki:Talkpagetext]]. For Article::view().
1035 */
1036 public function showNamespaceHeader() {
1037 if ( $this->getTitle()->isTalkPage() ) {
1038 if ( !wfMessage( 'talkpageheader' )->isDisabled() ) {
1039 $this->getContext()->getOutput()->wrapWikiMsg(
1040 "<div class=\"mw-talkpageheader\">\n$1\n</div>",
1041 array( 'talkpageheader' )
1042 );
1043 }
1044 }
1045 }
1046
1047 /**
1048 * Show the footer section of an ordinary page view
1049 */
1050 public function showViewFooter() {
1051 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
1052 if ( $this->getTitle()->getNamespace() == NS_USER_TALK
1053 && IP::isValid( $this->getTitle()->getText() )
1054 ) {
1055 $this->getContext()->getOutput()->addWikiMsg( 'anontalkpagetext' );
1056 }
1057
1058 // Show a footer allowing the user to patrol the shown revision or page if possible
1059 $patrolFooterShown = $this->showPatrolFooter();
1060
1061 Hooks::run( 'ArticleViewFooter', array( $this, $patrolFooterShown ) );
1062 }
1063
1064 /**
1065 * If patrol is possible, output a patrol UI box. This is called from the
1066 * footer section of ordinary page views. If patrol is not possible or not
1067 * desired, does nothing.
1068 * Side effect: When the patrol link is build, this method will call
1069 * OutputPage::preventClickjacking() and load mediawiki.page.patrol.ajax.
1070 *
1071 * @return bool
1072 */
1073 public function showPatrolFooter() {
1074 global $wgUseNPPatrol, $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
1075
1076 $outputPage = $this->getContext()->getOutput();
1077 $user = $this->getContext()->getUser();
1078 $cache = wfGetMainCache();
1079 $rc = false;
1080
1081 if ( !$this->getTitle()->quickUserCan( 'patrol', $user )
1082 || !( $wgUseRCPatrol || $wgUseNPPatrol )
1083 ) {
1084 // Patrolling is disabled or the user isn't allowed to
1085 return false;
1086 }
1087
1088 // New page patrol: Get the timestamp of the oldest revison which
1089 // the revision table holds for the given page. Then we look
1090 // whether it's within the RC lifespan and if it is, we try
1091 // to get the recentchanges row belonging to that entry
1092 // (with rc_new = 1).
1093
1094 if ( $this->mRevision
1095 && !RecentChange::isInRCLifespan( $this->mRevision->getTimestamp(), 21600 )
1096 ) {
1097 // The current revision is already older than what could be in the RC table
1098 // 6h tolerance because the RC might not be cleaned out regularly
1099 return false;
1100 }
1101
1102 // Check for cached results
1103 $key = wfMemcKey( 'NotPatrollablePage', $this->getTitle()->getArticleID() );
1104 if ( $cache->get( $key ) ) {
1105 return false;
1106 }
1107
1108 $dbr = wfGetDB( DB_SLAVE );
1109 $oldestRevisionTimestamp = $dbr->selectField(
1110 'revision',
1111 'MIN( rev_timestamp )',
1112 array( 'rev_page' => $this->getTitle()->getArticleID() ),
1113 __METHOD__
1114 );
1115
1116 if ( $oldestRevisionTimestamp
1117 && RecentChange::isInRCLifespan( $oldestRevisionTimestamp, 21600 )
1118 ) {
1119 // 6h tolerance because the RC might not be cleaned out regularly
1120 $rc = RecentChange::newFromConds(
1121 array(
1122 'rc_new' => 1,
1123 'rc_timestamp' => $oldestRevisionTimestamp,
1124 'rc_namespace' => $this->getTitle()->getNamespace(),
1125 'rc_cur_id' => $this->getTitle()->getArticleID()
1126 ),
1127 __METHOD__,
1128 array( 'USE INDEX' => 'new_name_timestamp' )
1129 );
1130 } else {
1131 // Cache the information we gathered above in case we can't patrol
1132 // Don't cache in case we can patrol as this could change
1133 $cache->set( $key, '1' );
1134 }
1135
1136 if ( !$rc ) {
1137 // Don't cache: This can be hit if the page gets accessed very fast after
1138 // its creation or in case we have high slave lag. In case the revision is
1139 // too old, we will already return above.
1140 return false;
1141 }
1142
1143 if ( $rc->getAttribute( 'rc_patrolled' ) ) {
1144 // Patrolled RC entry around
1145
1146 // Cache the information we gathered above in case we can't patrol
1147 // Don't cache in case we can patrol as this could change
1148 $cache->set( $key, '1' );
1149
1150 return false;
1151 }
1152
1153 if ( $rc->getPerformer()->equals( $user ) ) {
1154 // Don't show a patrol link for own creations. If the user could
1155 // patrol them, they already would be patrolled
1156 return false;
1157 }
1158
1159 $rcid = $rc->getAttribute( 'rc_id' );
1160
1161 $token = $user->getEditToken( $rcid );
1162
1163 $outputPage->preventClickjacking();
1164 if ( $wgEnableAPI && $wgEnableWriteAPI && $user->isAllowed( 'writeapi' ) ) {
1165 $outputPage->addModules( 'mediawiki.page.patrol.ajax' );
1166 }
1167
1168 $link = Linker::linkKnown(
1169 $this->getTitle(),
1170 wfMessage( 'markaspatrolledtext' )->escaped(),
1171 array(),
1172 array(
1173 'action' => 'markpatrolled',
1174 'rcid' => $rcid,
1175 'token' => $token,
1176 )
1177 );
1178
1179 $outputPage->addHTML(
1180 "<div class='patrollink'>" .
1181 wfMessage( 'markaspatrolledlink' )->rawParams( $link )->escaped() .
1182 '</div>'
1183 );
1184
1185 return true;
1186 }
1187
1188 /**
1189 * Show the error text for a missing article. For articles in the MediaWiki
1190 * namespace, show the default message text. To be called from Article::view().
1191 */
1192 public function showMissingArticle() {
1193 global $wgSend404Code;
1194
1195 $outputPage = $this->getContext()->getOutput();
1196 // Whether the page is a root user page of an existing user (but not a subpage)
1197 $validUserPage = false;
1198
1199 $title = $this->getTitle();
1200
1201 # Show info in user (talk) namespace. Does the user exist? Is he blocked?
1202 if ( $title->getNamespace() == NS_USER
1203 || $title->getNamespace() == NS_USER_TALK
1204 ) {
1205 $parts = explode( '/', $title->getText() );
1206 $rootPart = $parts[0];
1207 $user = User::newFromName( $rootPart, false /* allow IP users*/ );
1208 $ip = User::isIP( $rootPart );
1209 $block = Block::newFromTarget( $user, $user );
1210
1211 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
1212 $outputPage->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
1213 array( 'userpage-userdoesnotexist-view', wfEscapeWikiText( $rootPart ) ) );
1214 } elseif ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
1215 # Show log extract if the user is currently blocked
1216 LogEventsList::showLogExtract(
1217 $outputPage,
1218 'block',
1219 MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget(),
1220 '',
1221 array(
1222 'lim' => 1,
1223 'showIfEmpty' => false,
1224 'msgKey' => array(
1225 'blocked-notice-logextract',
1226 $user->getName() # Support GENDER in notice
1227 )
1228 )
1229 );
1230 $validUserPage = !$title->isSubpage();
1231 } else {
1232 $validUserPage = !$title->isSubpage();
1233 }
1234 }
1235
1236 Hooks::run( 'ShowMissingArticle', array( $this ) );
1237
1238 # Show delete and move logs if there were any such events.
1239 # The logging query can DOS the site when bots/crawlers cause 404 floods,
1240 # so be careful showing this. 404 pages must be cheap as they are hard to cache.
1241 $cache = ObjectCache::getMainStashInstance();
1242 $key = wfMemcKey( 'page-recent-delete', md5( $title->getPrefixedText() ) );
1243 $loggedIn = $this->getContext()->getUser()->isLoggedIn();
1244 if ( $loggedIn || $cache->get( $key ) ) {
1245 $logTypes = array( 'delete', 'move' );
1246 $conds = array( "log_action != 'revision'" );
1247 // Give extensions a chance to hide their (unrelated) log entries
1248 Hooks::run( 'Article::MissingArticleConditions', array( &$conds, $logTypes ) );
1249 LogEventsList::showLogExtract(
1250 $outputPage,
1251 $logTypes,
1252 $title,
1253 '',
1254 array(
1255 'lim' => 10,
1256 'conds' => $conds,
1257 'showIfEmpty' => false,
1258 'msgKey' => array( $loggedIn
1259 ? 'moveddeleted-notice'
1260 : 'moveddeleted-notice-recent'
1261 )
1262 )
1263 );
1264 }
1265
1266 if ( !$this->mPage->hasViewableContent() && $wgSend404Code && !$validUserPage ) {
1267 // If there's no backing content, send a 404 Not Found
1268 // for better machine handling of broken links.
1269 $this->getContext()->getRequest()->response()->statusHeader( 404 );
1270 }
1271
1272 // Also apply the robot policy for nonexisting pages (even if a 404 was used for sanity)
1273 $policy = $this->getRobotPolicy( 'view' );
1274 $outputPage->setIndexPolicy( $policy['index'] );
1275 $outputPage->setFollowPolicy( $policy['follow'] );
1276
1277 $hookResult = Hooks::run( 'BeforeDisplayNoArticleText', array( $this ) );
1278
1279 if ( !$hookResult ) {
1280 return;
1281 }
1282
1283 # Show error message
1284 $oldid = $this->getOldID();
1285 if ( !$oldid && $title->getNamespace() === NS_MEDIAWIKI && $title->hasSourceText() ) {
1286 $outputPage->addParserOutput( $this->getContentObject()->getParserOutput( $title ) );
1287 } else {
1288 if ( $oldid ) {
1289 $text = wfMessage( 'missing-revision', $oldid )->plain();
1290 } elseif ( $title->quickUserCan( 'create', $this->getContext()->getUser() )
1291 && $title->quickUserCan( 'edit', $this->getContext()->getUser() )
1292 ) {
1293 $message = $this->getContext()->getUser()->isLoggedIn() ? 'noarticletext' : 'noarticletextanon';
1294 $text = wfMessage( $message )->plain();
1295 } else {
1296 $text = wfMessage( 'noarticletext-nopermission' )->plain();
1297 }
1298
1299 $dir = $this->getContext()->getLanguage()->getDir();
1300 $lang = $this->getContext()->getLanguage()->getCode();
1301 $outputPage->addWikiText( Xml::openElement( 'div', array(
1302 'class' => "noarticletext mw-content-$dir",
1303 'dir' => $dir,
1304 'lang' => $lang,
1305 ) ) . "\n$text\n</div>" );
1306 }
1307 }
1308
1309 /**
1310 * If the revision requested for view is deleted, check permissions.
1311 * Send either an error message or a warning header to the output.
1312 *
1313 * @return bool True if the view is allowed, false if not.
1314 */
1315 public function showDeletedRevisionHeader() {
1316 if ( !$this->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
1317 // Not deleted
1318 return true;
1319 }
1320
1321 $outputPage = $this->getContext()->getOutput();
1322 $user = $this->getContext()->getUser();
1323 // If the user is not allowed to see it...
1324 if ( !$this->mRevision->userCan( Revision::DELETED_TEXT, $user ) ) {
1325 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1326 'rev-deleted-text-permission' );
1327
1328 return false;
1329 // If the user needs to confirm that they want to see it...
1330 } elseif ( $this->getContext()->getRequest()->getInt( 'unhide' ) != 1 ) {
1331 # Give explanation and add a link to view the revision...
1332 $oldid = intval( $this->getOldID() );
1333 $link = $this->getTitle()->getFullURL( "oldid={$oldid}&unhide=1" );
1334 $msg = $this->mRevision->isDeleted( Revision::DELETED_RESTRICTED ) ?
1335 'rev-suppressed-text-unhide' : 'rev-deleted-text-unhide';
1336 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1337 array( $msg, $link ) );
1338
1339 return false;
1340 // We are allowed to see...
1341 } else {
1342 $msg = $this->mRevision->isDeleted( Revision::DELETED_RESTRICTED ) ?
1343 'rev-suppressed-text-view' : 'rev-deleted-text-view';
1344 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", $msg );
1345
1346 return true;
1347 }
1348 }
1349
1350 /**
1351 * Generate the navigation links when browsing through an article revisions
1352 * It shows the information as:
1353 * Revision as of \<date\>; view current revision
1354 * \<- Previous version | Next Version -\>
1355 *
1356 * @param int $oldid Revision ID of this article revision
1357 */
1358 public function setOldSubtitle( $oldid = 0 ) {
1359 if ( !Hooks::run( 'DisplayOldSubtitle', array( &$this, &$oldid ) ) ) {
1360 return;
1361 }
1362
1363 $context = $this->getContext();
1364 $unhide = $context->getRequest()->getInt( 'unhide' ) == 1;
1365
1366 # Cascade unhide param in links for easy deletion browsing
1367 $extraParams = array();
1368 if ( $unhide ) {
1369 $extraParams['unhide'] = 1;
1370 }
1371
1372 if ( $this->mRevision && $this->mRevision->getId() === $oldid ) {
1373 $revision = $this->mRevision;
1374 } else {
1375 $revision = Revision::newFromId( $oldid );
1376 }
1377
1378 $timestamp = $revision->getTimestamp();
1379
1380 $current = ( $oldid == $this->mPage->getLatest() );
1381 $language = $context->getLanguage();
1382 $user = $context->getUser();
1383
1384 $td = $language->userTimeAndDate( $timestamp, $user );
1385 $tddate = $language->userDate( $timestamp, $user );
1386 $tdtime = $language->userTime( $timestamp, $user );
1387
1388 # Show user links if allowed to see them. If hidden, then show them only if requested...
1389 $userlinks = Linker::revUserTools( $revision, !$unhide );
1390
1391 $infomsg = $current && !$context->msg( 'revision-info-current' )->isDisabled()
1392 ? 'revision-info-current'
1393 : 'revision-info';
1394
1395 $outputPage = $context->getOutput();
1396 $outputPage->addSubtitle( "<div id=\"mw-{$infomsg}\">" .
1397 $context->msg( $infomsg, $td )
1398 ->rawParams( $userlinks )
1399 ->params( $revision->getID(), $tddate, $tdtime, $revision->getUserText() )
1400 ->rawParams( Linker::revComment( $revision, true, true ) )
1401 ->parse() .
1402 "</div>"
1403 );
1404
1405 $lnk = $current
1406 ? $context->msg( 'currentrevisionlink' )->escaped()
1407 : Linker::linkKnown(
1408 $this->getTitle(),
1409 $context->msg( 'currentrevisionlink' )->escaped(),
1410 array(),
1411 $extraParams
1412 );
1413 $curdiff = $current
1414 ? $context->msg( 'diff' )->escaped()
1415 : Linker::linkKnown(
1416 $this->getTitle(),
1417 $context->msg( 'diff' )->escaped(),
1418 array(),
1419 array(
1420 'diff' => 'cur',
1421 'oldid' => $oldid
1422 ) + $extraParams
1423 );
1424 $prev = $this->getTitle()->getPreviousRevisionID( $oldid );
1425 $prevlink = $prev
1426 ? Linker::linkKnown(
1427 $this->getTitle(),
1428 $context->msg( 'previousrevision' )->escaped(),
1429 array(),
1430 array(
1431 'direction' => 'prev',
1432 'oldid' => $oldid
1433 ) + $extraParams
1434 )
1435 : $context->msg( 'previousrevision' )->escaped();
1436 $prevdiff = $prev
1437 ? Linker::linkKnown(
1438 $this->getTitle(),
1439 $context->msg( 'diff' )->escaped(),
1440 array(),
1441 array(
1442 'diff' => 'prev',
1443 'oldid' => $oldid
1444 ) + $extraParams
1445 )
1446 : $context->msg( 'diff' )->escaped();
1447 $nextlink = $current
1448 ? $context->msg( 'nextrevision' )->escaped()
1449 : Linker::linkKnown(
1450 $this->getTitle(),
1451 $context->msg( 'nextrevision' )->escaped(),
1452 array(),
1453 array(
1454 'direction' => 'next',
1455 'oldid' => $oldid
1456 ) + $extraParams
1457 );
1458 $nextdiff = $current
1459 ? $context->msg( 'diff' )->escaped()
1460 : Linker::linkKnown(
1461 $this->getTitle(),
1462 $context->msg( 'diff' )->escaped(),
1463 array(),
1464 array(
1465 'diff' => 'next',
1466 'oldid' => $oldid
1467 ) + $extraParams
1468 );
1469
1470 $cdel = Linker::getRevDeleteLink( $user, $revision, $this->getTitle() );
1471 if ( $cdel !== '' ) {
1472 $cdel .= ' ';
1473 }
1474
1475 $outputPage->addSubtitle( "<div id=\"mw-revision-nav\">" . $cdel .
1476 $context->msg( 'revision-nav' )->rawParams(
1477 $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff
1478 )->escaped() . "</div>" );
1479 }
1480
1481 /**
1482 * Return the HTML for the top of a redirect page
1483 *
1484 * Chances are you should just be using the ParserOutput from
1485 * WikitextContent::getParserOutput instead of calling this for redirects.
1486 *
1487 * @param Title|array $target Destination(s) to redirect
1488 * @param bool $appendSubtitle [optional]
1489 * @param bool $forceKnown Should the image be shown as a bluelink regardless of existence?
1490 * @return string Containing HTML with redirect link
1491 */
1492 public function viewRedirect( $target, $appendSubtitle = true, $forceKnown = false ) {
1493 $lang = $this->getTitle()->getPageLanguage();
1494 $out = $this->getContext()->getOutput();
1495 if ( $appendSubtitle ) {
1496 $out->addSubtitle( wfMessage( 'redirectpagesub' ) );
1497 }
1498 $out->addModuleStyles( 'mediawiki.action.view.redirectPage' );
1499 return static::getRedirectHeaderHtml( $lang, $target, $forceKnown );
1500 }
1501
1502 /**
1503 * Return the HTML for the top of a redirect page
1504 *
1505 * Chances are you should just be using the ParserOutput from
1506 * WikitextContent::getParserOutput instead of calling this for redirects.
1507 *
1508 * @since 1.23
1509 * @param Language $lang
1510 * @param Title|array $target Destination(s) to redirect
1511 * @param bool $forceKnown Should the image be shown as a bluelink regardless of existence?
1512 * @return string Containing HTML with redirect link
1513 */
1514 public static function getRedirectHeaderHtml( Language $lang, $target, $forceKnown = false ) {
1515 if ( !is_array( $target ) ) {
1516 $target = array( $target );
1517 }
1518
1519 $html = '<ul class="redirectText">';
1520 /** @var Title $title */
1521 foreach ( $target as $title ) {
1522 $html .= '<li>' . Linker::link(
1523 $title,
1524 htmlspecialchars( $title->getFullText() ),
1525 array(),
1526 // Automatically append redirect=no to each link, since most of them are
1527 // redirect pages themselves.
1528 array( 'redirect' => 'no' ),
1529 ( $forceKnown ? array( 'known', 'noclasses' ) : array() )
1530 ) . '</li>';
1531 }
1532 $html .= '</ul>';
1533
1534 $redirectToText = wfMessage( 'redirectto' )->inLanguage( $lang )->escaped();
1535
1536 return '<div class="redirectMsg">' .
1537 '<p>' . $redirectToText . '</p>' .
1538 $html .
1539 '</div>';
1540 }
1541
1542 /**
1543 * Adds help link with an icon via page indicators.
1544 * Link target can be overridden by a local message containing a wikilink:
1545 * the message key is: 'namespace-' + namespace number + '-helppage'.
1546 * @param string $to Target MediaWiki.org page title or encoded URL.
1547 * @param bool $overrideBaseUrl Whether $url is a full URL, to avoid MW.o.
1548 * @since 1.25
1549 */
1550 public function addHelpLink( $to, $overrideBaseUrl = false ) {
1551 $msg = wfMessage(
1552 'namespace-' . $this->getTitle()->getNamespace() . '-helppage'
1553 );
1554
1555 $out = $this->getContext()->getOutput();
1556 if ( !$msg->isDisabled() ) {
1557 $helpUrl = Skin::makeUrl( $msg->plain() );
1558 $out->addHelpLink( $helpUrl, true );
1559 } else {
1560 $out->addHelpLink( $to, $overrideBaseUrl );
1561 }
1562 }
1563
1564 /**
1565 * Handle action=render
1566 */
1567 public function render() {
1568 $this->getContext()->getRequest()->response()->header( 'X-Robots-Tag: noindex' );
1569 $this->getContext()->getOutput()->setArticleBodyOnly( true );
1570 $this->getContext()->getOutput()->enableSectionEditLinks( false );
1571 $this->view();
1572 }
1573
1574 /**
1575 * action=protect handler
1576 */
1577 public function protect() {
1578 $form = new ProtectionForm( $this );
1579 $form->execute();
1580 }
1581
1582 /**
1583 * action=unprotect handler (alias)
1584 */
1585 public function unprotect() {
1586 $this->protect();
1587 }
1588
1589 /**
1590 * UI entry point for page deletion
1591 */
1592 public function delete() {
1593 # This code desperately needs to be totally rewritten
1594
1595 $title = $this->getTitle();
1596 $context = $this->getContext();
1597 $user = $context->getUser();
1598
1599 # Check permissions
1600 $permissionErrors = $title->getUserPermissionsErrors( 'delete', $user );
1601 if ( count( $permissionErrors ) ) {
1602 throw new PermissionsError( 'delete', $permissionErrors );
1603 }
1604
1605 # Read-only check...
1606 if ( wfReadOnly() ) {
1607 throw new ReadOnlyError;
1608 }
1609
1610 # Better double-check that it hasn't been deleted yet!
1611 $this->mPage->loadPageData( 'fromdbmaster' );
1612 if ( !$this->mPage->exists() ) {
1613 $deleteLogPage = new LogPage( 'delete' );
1614 $outputPage = $context->getOutput();
1615 $outputPage->setPageTitle( $context->msg( 'cannotdelete-title', $title->getPrefixedText() ) );
1616 $outputPage->wrapWikiMsg( "<div class=\"error mw-error-cannotdelete\">\n$1\n</div>",
1617 array( 'cannotdelete', wfEscapeWikiText( $title->getPrefixedText() ) )
1618 );
1619 $outputPage->addHTML(
1620 Xml::element( 'h2', null, $deleteLogPage->getName()->text() )
1621 );
1622 LogEventsList::showLogExtract(
1623 $outputPage,
1624 'delete',
1625 $title
1626 );
1627
1628 return;
1629 }
1630
1631 $request = $context->getRequest();
1632 $deleteReasonList = $request->getText( 'wpDeleteReasonList', 'other' );
1633 $deleteReason = $request->getText( 'wpReason' );
1634
1635 if ( $deleteReasonList == 'other' ) {
1636 $reason = $deleteReason;
1637 } elseif ( $deleteReason != '' ) {
1638 // Entry from drop down menu + additional comment
1639 $colonseparator = wfMessage( 'colon-separator' )->inContentLanguage()->text();
1640 $reason = $deleteReasonList . $colonseparator . $deleteReason;
1641 } else {
1642 $reason = $deleteReasonList;
1643 }
1644
1645 if ( $request->wasPosted() && $user->matchEditToken( $request->getVal( 'wpEditToken' ),
1646 array( 'delete', $this->getTitle()->getPrefixedText() ) )
1647 ) {
1648 # Flag to hide all contents of the archived revisions
1649 $suppress = $request->getVal( 'wpSuppress' ) && $user->isAllowed( 'suppressrevision' );
1650
1651 $this->doDelete( $reason, $suppress );
1652
1653 WatchAction::doWatchOrUnwatch( $request->getCheck( 'wpWatch' ), $title, $user );
1654
1655 return;
1656 }
1657
1658 // Generate deletion reason
1659 $hasHistory = false;
1660 if ( !$reason ) {
1661 try {
1662 $reason = $this->generateReason( $hasHistory );
1663 } catch ( Exception $e ) {
1664 # if a page is horribly broken, we still want to be able to
1665 # delete it. So be lenient about errors here.
1666 wfDebug( "Error while building auto delete summary: $e" );
1667 $reason = '';
1668 }
1669 }
1670
1671 // If the page has a history, insert a warning
1672 if ( $hasHistory ) {
1673 $title = $this->getTitle();
1674
1675 // The following can use the real revision count as this is only being shown for users
1676 // that can delete this page.
1677 // This, as a side-effect, also makes sure that the following query isn't being run for
1678 // pages with a larger history, unless the user has the 'bigdelete' right
1679 // (and is about to delete this page).
1680 $dbr = wfGetDB( DB_SLAVE );
1681 $revisions = $edits = (int)$dbr->selectField(
1682 'revision',
1683 'COUNT(rev_page)',
1684 array( 'rev_page' => $title->getArticleID() ),
1685 __METHOD__
1686 );
1687
1688 // @todo FIXME: i18n issue/patchwork message
1689 $context->getOutput()->addHTML(
1690 '<strong class="mw-delete-warning-revisions">' .
1691 $context->msg( 'historywarning' )->numParams( $revisions )->parse() .
1692 $context->msg( 'word-separator' )->escaped() . Linker::linkKnown( $title,
1693 $context->msg( 'history' )->escaped(),
1694 array(),
1695 array( 'action' => 'history' ) ) .
1696 '</strong>'
1697 );
1698
1699 if ( $title->isBigDeletion() ) {
1700 global $wgDeleteRevisionsLimit;
1701 $context->getOutput()->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n",
1702 array(
1703 'delete-warning-toobig',
1704 $context->getLanguage()->formatNum( $wgDeleteRevisionsLimit )
1705 )
1706 );
1707 }
1708 }
1709
1710 $this->confirmDelete( $reason );
1711 }
1712
1713 /**
1714 * Output deletion confirmation dialog
1715 * @todo FIXME: Move to another file?
1716 * @param string $reason Prefilled reason
1717 */
1718 public function confirmDelete( $reason ) {
1719 wfDebug( "Article::confirmDelete\n" );
1720
1721 $title = $this->getTitle();
1722 $ctx = $this->getContext();
1723 $outputPage = $ctx->getOutput();
1724 $useMediaWikiUIEverywhere = $ctx->getConfig()->get( 'UseMediaWikiUIEverywhere' );
1725 $outputPage->setPageTitle( wfMessage( 'delete-confirm', $title->getPrefixedText() ) );
1726 $outputPage->addBacklinkSubtitle( $title );
1727 $outputPage->setRobotPolicy( 'noindex,nofollow' );
1728 $backlinkCache = $title->getBacklinkCache();
1729 if ( $backlinkCache->hasLinks( 'pagelinks' ) || $backlinkCache->hasLinks( 'templatelinks' ) ) {
1730 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1731 'deleting-backlinks-warning' );
1732 }
1733 $outputPage->addWikiMsg( 'confirmdeletetext' );
1734
1735 Hooks::run( 'ArticleConfirmDelete', array( $this, $outputPage, &$reason ) );
1736
1737 $user = $this->getContext()->getUser();
1738
1739 if ( $user->isAllowed( 'suppressrevision' ) ) {
1740 $suppress = Html::openElement( 'div', array( 'id' => 'wpDeleteSuppressRow' ) ) .
1741 Xml::checkLabel( wfMessage( 'revdelete-suppress' )->text(),
1742 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '4' ) ) .
1743 Html::closeElement( 'div' );
1744 } else {
1745 $suppress = '';
1746 }
1747 $checkWatch = $user->getBoolOption( 'watchdeletion' ) || $user->isWatched( $title );
1748
1749 $form = Html::openElement( 'form', array( 'method' => 'post',
1750 'action' => $title->getLocalURL( 'action=delete' ), 'id' => 'deleteconfirm' ) ) .
1751 Html::openElement( 'fieldset', array( 'id' => 'mw-delete-table' ) ) .
1752 Html::element( 'legend', null, wfMessage( 'delete-legend' )->text() ) .
1753 Html::openElement( 'div', array( 'id' => 'mw-deleteconfirm-table' ) ) .
1754 Html::openElement( 'div', array( 'id' => 'wpDeleteReasonListRow' ) ) .
1755 Html::label( wfMessage( 'deletecomment' )->text(), 'wpDeleteReasonList' ) .
1756 '&nbsp;' .
1757 Xml::listDropDown(
1758 'wpDeleteReasonList',
1759 wfMessage( 'deletereason-dropdown' )->inContentLanguage()->text(),
1760 wfMessage( 'deletereasonotherlist' )->inContentLanguage()->text(),
1761 '',
1762 'wpReasonDropDown',
1763 1
1764 ) .
1765 Html::closeElement( 'div' ) .
1766 Html::openElement( 'div', array( 'id' => 'wpDeleteReasonRow' ) ) .
1767 Html::label( wfMessage( 'deleteotherreason' )->text(), 'wpReason' ) .
1768 '&nbsp;' .
1769 Html::input( 'wpReason', $reason, 'text', array(
1770 'size' => '60',
1771 'maxlength' => '255',
1772 'tabindex' => '2',
1773 'id' => 'wpReason',
1774 'class' => 'mw-ui-input-inline',
1775 'autofocus'
1776 ) ) .
1777 Html::closeElement( 'div' );
1778
1779 # Disallow watching if user is not logged in
1780 if ( $user->isLoggedIn() ) {
1781 $form .=
1782 Xml::checkLabel( wfMessage( 'watchthis' )->text(),
1783 'wpWatch', 'wpWatch', $checkWatch, array( 'tabindex' => '3' ) );
1784 }
1785
1786 $form .=
1787 Html::openElement( 'div' ) .
1788 $suppress .
1789 Xml::submitButton( wfMessage( 'deletepage' )->text(),
1790 array(
1791 'name' => 'wpConfirmB',
1792 'id' => 'wpConfirmB',
1793 'tabindex' => '5',
1794 'class' => $useMediaWikiUIEverywhere ? 'mw-ui-button mw-ui-destructive' : '',
1795 )
1796 ) .
1797 Html::closeElement( 'div' ) .
1798 Html::closeElement( 'div' ) .
1799 Xml::closeElement( 'fieldset' ) .
1800 Html::hidden(
1801 'wpEditToken',
1802 $user->getEditToken( array( 'delete', $title->getPrefixedText() ) )
1803 ) .
1804 Xml::closeElement( 'form' );
1805
1806 if ( $user->isAllowed( 'editinterface' ) ) {
1807 $link = Linker::linkKnown(
1808 $ctx->msg( 'deletereason-dropdown' )->inContentLanguage()->getTitle(),
1809 wfMessage( 'delete-edit-reasonlist' )->escaped(),
1810 array(),
1811 array( 'action' => 'edit' )
1812 );
1813 $form .= '<p class="mw-delete-editreasons">' . $link . '</p>';
1814 }
1815
1816 $outputPage->addHTML( $form );
1817
1818 $deleteLogPage = new LogPage( 'delete' );
1819 $outputPage->addHTML( Xml::element( 'h2', null, $deleteLogPage->getName()->text() ) );
1820 LogEventsList::showLogExtract( $outputPage, 'delete', $title );
1821 }
1822
1823 /**
1824 * Perform a deletion and output success or failure messages
1825 * @param string $reason
1826 * @param bool $suppress
1827 */
1828 public function doDelete( $reason, $suppress = false ) {
1829 $error = '';
1830 $context = $this->getContext();
1831 $outputPage = $context->getOutput();
1832 $user = $context->getUser();
1833 $status = $this->mPage->doDeleteArticleReal( $reason, $suppress, 0, true, $error, $user );
1834
1835 if ( $status->isGood() ) {
1836 $deleted = $this->getTitle()->getPrefixedText();
1837
1838 $outputPage->setPageTitle( wfMessage( 'actioncomplete' ) );
1839 $outputPage->setRobotPolicy( 'noindex,nofollow' );
1840
1841 $loglink = '[[Special:Log/delete|' . wfMessage( 'deletionlog' )->text() . ']]';
1842
1843 $outputPage->addWikiMsg( 'deletedtext', wfEscapeWikiText( $deleted ), $loglink );
1844
1845 Hooks::run( 'ArticleDeleteAfterSuccess', array( $this->getTitle(), $outputPage ) );
1846
1847 $outputPage->returnToMain( false );
1848 } else {
1849 $outputPage->setPageTitle(
1850 wfMessage( 'cannotdelete-title',
1851 $this->getTitle()->getPrefixedText() )
1852 );
1853
1854 if ( $error == '' ) {
1855 $outputPage->addWikiText(
1856 "<div class=\"error mw-error-cannotdelete\">\n" . $status->getWikiText() . "\n</div>"
1857 );
1858 $deleteLogPage = new LogPage( 'delete' );
1859 $outputPage->addHTML( Xml::element( 'h2', null, $deleteLogPage->getName()->text() ) );
1860
1861 LogEventsList::showLogExtract(
1862 $outputPage,
1863 'delete',
1864 $this->getTitle()
1865 );
1866 } else {
1867 $outputPage->addHTML( $error );
1868 }
1869 }
1870 }
1871
1872 /* Caching functions */
1873
1874 /**
1875 * checkLastModified returns true if it has taken care of all
1876 * output to the client that is necessary for this request.
1877 * (that is, it has sent a cached version of the page)
1878 *
1879 * @return bool True if cached version send, false otherwise
1880 */
1881 protected function tryFileCache() {
1882 static $called = false;
1883
1884 if ( $called ) {
1885 wfDebug( "Article::tryFileCache(): called twice!?\n" );
1886 return false;
1887 }
1888
1889 $called = true;
1890 if ( $this->isFileCacheable() ) {
1891 $cache = new HTMLFileCache( $this->getTitle(), 'view' );
1892 if ( $cache->isCacheGood( $this->mPage->getTouched() ) ) {
1893 wfDebug( "Article::tryFileCache(): about to load file\n" );
1894 $cache->loadFromFileCache( $this->getContext() );
1895 return true;
1896 } else {
1897 wfDebug( "Article::tryFileCache(): starting buffer\n" );
1898 ob_start( array( &$cache, 'saveToFileCache' ) );
1899 }
1900 } else {
1901 wfDebug( "Article::tryFileCache(): not cacheable\n" );
1902 }
1903
1904 return false;
1905 }
1906
1907 /**
1908 * Check if the page can be cached
1909 * @return bool
1910 */
1911 public function isFileCacheable() {
1912 $cacheable = false;
1913
1914 if ( HTMLFileCache::useFileCache( $this->getContext() ) ) {
1915 $cacheable = $this->mPage->getID()
1916 && !$this->mRedirectedFrom && !$this->getTitle()->isRedirect();
1917 // Extension may have reason to disable file caching on some pages.
1918 if ( $cacheable ) {
1919 $cacheable = Hooks::run( 'IsFileCacheable', array( &$this ) );
1920 }
1921 }
1922
1923 return $cacheable;
1924 }
1925
1926 /**#@-*/
1927
1928 /**
1929 * Lightweight method to get the parser output for a page, checking the parser cache
1930 * and so on. Doesn't consider most of the stuff that WikiPage::view is forced to
1931 * consider, so it's not appropriate to use there.
1932 *
1933 * @since 1.16 (r52326) for LiquidThreads
1934 *
1935 * @param int|null $oldid Revision ID or null
1936 * @param User $user The relevant user
1937 * @return ParserOutput|bool ParserOutput or false if the given revision ID is not found
1938 */
1939 public function getParserOutput( $oldid = null, User $user = null ) {
1940 //XXX: bypasses mParserOptions and thus setParserOptions()
1941
1942 if ( $user === null ) {
1943 $parserOptions = $this->getParserOptions();
1944 } else {
1945 $parserOptions = $this->mPage->makeParserOptions( $user );
1946 }
1947
1948 return $this->mPage->getParserOutput( $parserOptions, $oldid );
1949 }
1950
1951 /**
1952 * Override the ParserOptions used to render the primary article wikitext.
1953 *
1954 * @param ParserOptions $options
1955 * @throws MWException If the parser options where already initialized.
1956 */
1957 public function setParserOptions( ParserOptions $options ) {
1958 if ( $this->mParserOptions ) {
1959 throw new MWException( "can't change parser options after they have already been set" );
1960 }
1961
1962 // clone, so if $options is modified later, it doesn't confuse the parser cache.
1963 $this->mParserOptions = clone $options;
1964 }
1965
1966 /**
1967 * Get parser options suitable for rendering the primary article wikitext
1968 * @return ParserOptions
1969 */
1970 public function getParserOptions() {
1971 if ( !$this->mParserOptions ) {
1972 $this->mParserOptions = $this->mPage->makeParserOptions( $this->getContext() );
1973 }
1974 // Clone to allow modifications of the return value without affecting cache
1975 return clone $this->mParserOptions;
1976 }
1977
1978 /**
1979 * Sets the context this Article is executed in
1980 *
1981 * @param IContextSource $context
1982 * @since 1.18
1983 */
1984 public function setContext( $context ) {
1985 $this->mContext = $context;
1986 }
1987
1988 /**
1989 * Gets the context this Article is executed in
1990 *
1991 * @return IContextSource
1992 * @since 1.18
1993 */
1994 public function getContext() {
1995 if ( $this->mContext instanceof IContextSource ) {
1996 return $this->mContext;
1997 } else {
1998 wfDebug( __METHOD__ . " called and \$mContext is null. " .
1999 "Return RequestContext::getMain(); for sanity\n" );
2000 return RequestContext::getMain();
2001 }
2002 }
2003
2004 /**
2005 * Use PHP's magic __get handler to handle accessing of
2006 * raw WikiPage fields for backwards compatibility.
2007 *
2008 * @param string $fname Field name
2009 * @return mixed
2010 */
2011 public function __get( $fname ) {
2012 if ( property_exists( $this->mPage, $fname ) ) {
2013 #wfWarn( "Access to raw $fname field " . __CLASS__ );
2014 return $this->mPage->$fname;
2015 }
2016 trigger_error( 'Inaccessible property via __get(): ' . $fname, E_USER_NOTICE );
2017 }
2018
2019 /**
2020 * Use PHP's magic __set handler to handle setting of
2021 * raw WikiPage fields for backwards compatibility.
2022 *
2023 * @param string $fname Field name
2024 * @param mixed $fvalue New value
2025 */
2026 public function __set( $fname, $fvalue ) {
2027 if ( property_exists( $this->mPage, $fname ) ) {
2028 #wfWarn( "Access to raw $fname field of " . __CLASS__ );
2029 $this->mPage->$fname = $fvalue;
2030 // Note: extensions may want to toss on new fields
2031 } elseif ( !in_array( $fname, array( 'mContext', 'mPage' ) ) ) {
2032 $this->mPage->$fname = $fvalue;
2033 } else {
2034 trigger_error( 'Inaccessible property via __set(): ' . $fname, E_USER_NOTICE );
2035 }
2036 }
2037
2038 /**
2039 * Use PHP's magic __call handler to transform instance calls to
2040 * WikiPage functions for backwards compatibility.
2041 *
2042 * @param string $fname Name of called method
2043 * @param array $args Arguments to the method
2044 * @return mixed
2045 */
2046 public function __call( $fname, $args ) {
2047 if ( is_callable( array( $this->mPage, $fname ) ) ) {
2048 #wfWarn( "Call to " . __CLASS__ . "::$fname; please use WikiPage instead" );
2049 return call_user_func_array( array( $this->mPage, $fname ), $args );
2050 }
2051 trigger_error( 'Inaccessible function via __call(): ' . $fname, E_USER_ERROR );
2052 }
2053
2054 // ****** B/C functions to work-around PHP silliness with __call and references ****** //
2055
2056 /**
2057 * @param array $limit
2058 * @param array $expiry
2059 * @param bool $cascade
2060 * @param string $reason
2061 * @param User $user
2062 * @return Status
2063 */
2064 public function doUpdateRestrictions( array $limit, array $expiry, &$cascade,
2065 $reason, User $user
2066 ) {
2067 return $this->mPage->doUpdateRestrictions( $limit, $expiry, $cascade, $reason, $user );
2068 }
2069
2070 /**
2071 * @param array $limit
2072 * @param string $reason
2073 * @param int $cascade
2074 * @param array $expiry
2075 * @return bool
2076 */
2077 public function updateRestrictions( $limit = array(), $reason = '',
2078 &$cascade = 0, $expiry = array()
2079 ) {
2080 return $this->mPage->doUpdateRestrictions(
2081 $limit,
2082 $expiry,
2083 $cascade,
2084 $reason,
2085 $this->getContext()->getUser()
2086 );
2087 }
2088
2089 /**
2090 * @param string $reason
2091 * @param bool $suppress
2092 * @param int $id
2093 * @param bool $commit
2094 * @param string $error
2095 * @return bool
2096 */
2097 public function doDeleteArticle( $reason, $suppress = false, $id = 0,
2098 $commit = true, &$error = ''
2099 ) {
2100 return $this->mPage->doDeleteArticle( $reason, $suppress, $id, $commit, $error );
2101 }
2102
2103 /**
2104 * @param string $fromP
2105 * @param string $summary
2106 * @param string $token
2107 * @param bool $bot
2108 * @param array $resultDetails
2109 * @param User|null $user
2110 * @return array
2111 */
2112 public function doRollback( $fromP, $summary, $token, $bot, &$resultDetails, User $user = null ) {
2113 $user = is_null( $user ) ? $this->getContext()->getUser() : $user;
2114 return $this->mPage->doRollback( $fromP, $summary, $token, $bot, $resultDetails, $user );
2115 }
2116
2117 /**
2118 * @param string $fromP
2119 * @param string $summary
2120 * @param bool $bot
2121 * @param array $resultDetails
2122 * @param User|null $guser
2123 * @return array
2124 */
2125 public function commitRollback( $fromP, $summary, $bot, &$resultDetails, User $guser = null ) {
2126 $guser = is_null( $guser ) ? $this->getContext()->getUser() : $guser;
2127 return $this->mPage->commitRollback( $fromP, $summary, $bot, $resultDetails, $guser );
2128 }
2129
2130 /**
2131 * @param bool $hasHistory
2132 * @return mixed
2133 */
2134 public function generateReason( &$hasHistory ) {
2135 $title = $this->mPage->getTitle();
2136 $handler = ContentHandler::getForTitle( $title );
2137 return $handler->getAutoDeleteReason( $title, $hasHistory );
2138 }
2139
2140 // ****** B/C functions for static methods ( __callStatic is PHP>=5.3 ) ****** //
2141
2142 /**
2143 * @return array
2144 *
2145 * @deprecated since 1.24, use WikiPage::selectFields() instead
2146 */
2147 public static function selectFields() {
2148 wfDeprecated( __METHOD__, '1.24' );
2149 return WikiPage::selectFields();
2150 }
2151
2152 /**
2153 * @param Title $title
2154 *
2155 * @deprecated since 1.24, use WikiPage::onArticleCreate() instead
2156 */
2157 public static function onArticleCreate( $title ) {
2158 wfDeprecated( __METHOD__, '1.24' );
2159 WikiPage::onArticleCreate( $title );
2160 }
2161
2162 /**
2163 * @param Title $title
2164 *
2165 * @deprecated since 1.24, use WikiPage::onArticleDelete() instead
2166 */
2167 public static function onArticleDelete( $title ) {
2168 wfDeprecated( __METHOD__, '1.24' );
2169 WikiPage::onArticleDelete( $title );
2170 }
2171
2172 /**
2173 * @param Title $title
2174 *
2175 * @deprecated since 1.24, use WikiPage::onArticleEdit() instead
2176 */
2177 public static function onArticleEdit( $title ) {
2178 wfDeprecated( __METHOD__, '1.24' );
2179 WikiPage::onArticleEdit( $title );
2180 }
2181
2182 /**
2183 * @param string $oldtext
2184 * @param string $newtext
2185 * @param int $flags
2186 * @return string
2187 * @deprecated since 1.21, use ContentHandler::getAutosummary() instead
2188 */
2189 public static function getAutosummary( $oldtext, $newtext, $flags ) {
2190 return WikiPage::getAutosummary( $oldtext, $newtext, $flags );
2191 }
2192 // ******
2193 }