3 * User interface for page actions.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Class for viewing MediaWiki article and history.
26 * This maintains WikiPage functions for backwards compatibility.
28 * @todo Move and rewrite code to an Action class
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.
34 * @internal documentation reviewed 15 Mar 2010
36 class Article
implements Page
{
37 /** @var IContextSource The context this Article is executed in */
40 /** @var WikiPage The WikiPage object of this instance */
43 /** @var ParserOptions ParserOptions object for $wgUser articles */
44 public $mParserOptions;
47 * @var string Text of the revision we are working on
53 * @var Content Content of the revision we are working on
56 protected $mContentObject;
58 /** @var bool Is the content ($mContent) already loaded? */
59 protected $mContentLoaded = false;
61 /** @var int|null The oldid of the article that is to be shown, 0 for the current revision */
64 /** @var Title Title from which we were redirected here */
65 protected $mRedirectedFrom = null;
67 /** @var string|bool URL to redirect to or false if none */
68 protected $mRedirectUrl = false;
70 /** @var int Revision ID of revision we are working on */
71 protected $mRevIdFetched = 0;
73 /** @var Revision Revision we are working on */
74 protected $mRevision = null;
76 /** @var ParserOutput */
77 public $mParserOutput;
80 * Constructor and clear the article
81 * @param Title $title Reference to a Title object.
82 * @param int $oldId Revision ID, null to fetch from request, zero for current
84 public function __construct( Title
$title, $oldId = null ) {
85 $this->mOldId
= $oldId;
86 $this->mPage
= $this->newPage( $title );
93 protected function newPage( Title
$title ) {
94 return new WikiPage( $title );
98 * Constructor from a page id
99 * @param int $id Article ID to load
100 * @return Article|null
102 public static function newFromID( $id ) {
103 $t = Title
::newFromID( $id );
104 # @todo FIXME: Doesn't inherit right
105 return $t == null ?
null : new self( $t );
106 # return $t == null ? null : new static( $t ); // PHP 5.3
110 * Create an Article object of the appropriate class for the given page.
112 * @param Title $title
113 * @param IContextSource $context
116 public static function newFromTitle( $title, IContextSource
$context ) {
117 if ( NS_MEDIA
== $title->getNamespace() ) {
118 // FIXME: where should this go?
119 $title = Title
::makeTitle( NS_FILE
, $title->getDBkey() );
123 wfRunHooks( 'ArticleFromTitle', array( &$title, &$page, $context ) );
125 switch ( $title->getNamespace() ) {
127 $page = new ImagePage( $title );
130 $page = new CategoryPage( $title );
133 $page = new Article( $title );
136 $page->setContext( $context );
142 * Create an Article object of the appropriate class for the given page.
144 * @param WikiPage $page
145 * @param IContextSource $context
148 public static function newFromWikiPage( WikiPage
$page, IContextSource
$context ) {
149 $article = self
::newFromTitle( $page->getTitle(), $context );
150 $article->mPage
= $page; // override to keep process cached vars
155 * Tell the page view functions that this view was redirected
156 * from another page on the wiki.
159 public function setRedirectedFrom( Title
$from ) {
160 $this->mRedirectedFrom
= $from;
164 * Get the title object of the article
166 * @return Title Title object of this page
168 public function getTitle() {
169 return $this->mPage
->getTitle();
173 * Get the WikiPage object of this instance
178 public function getPage() {
185 public function clear() {
186 $this->mContentLoaded
= false;
188 $this->mRedirectedFrom
= null; # Title object if set
189 $this->mRevIdFetched
= 0;
190 $this->mRedirectUrl
= false;
192 $this->mPage
->clear();
196 * Note that getContent/loadContent do not follow redirects anymore.
197 * If you need to fetch redirectable content easily, try
198 * the shortcut in WikiPage::getRedirectTarget()
200 * This function has side effects! Do not use this function if you
201 * only want the real revision text if any.
203 * @deprecated since 1.21; use WikiPage::getContent() instead
205 * @return string Return the text of this revision
207 public function getContent() {
208 ContentHandler
::deprecated( __METHOD__
, '1.21' );
209 $content = $this->getContentObject();
210 return ContentHandler
::getContentText( $content );
214 * Returns a Content object representing the pages effective display content,
215 * not necessarily the revision's content!
217 * Note that getContent/loadContent do not follow redirects anymore.
218 * If you need to fetch redirectable content easily, try
219 * the shortcut in WikiPage::getRedirectTarget()
221 * This function has side effects! Do not use this function if you
222 * only want the real revision text if any.
224 * @return Content Return the content of this revision
228 protected function getContentObject() {
229 wfProfileIn( __METHOD__
);
231 if ( $this->mPage
->getID() === 0 ) {
232 # If this is a MediaWiki:x message, then load the messages
233 # and return the message value for x.
234 if ( $this->getTitle()->getNamespace() == NS_MEDIAWIKI
) {
235 $text = $this->getTitle()->getDefaultMessageText();
236 if ( $text === false ) {
240 $content = ContentHandler
::makeContent( $text, $this->getTitle() );
242 $message = $this->getContext()->getUser()->isLoggedIn() ?
'noarticletext' : 'noarticletextanon';
243 $content = new MessageContent( $message, null, 'parsemag' );
246 $this->fetchContentObject();
247 $content = $this->mContentObject
;
250 wfProfileOut( __METHOD__
);
255 * @return int The oldid of the article that is to be shown, 0 for the current revision
257 public function getOldID() {
258 if ( is_null( $this->mOldId
) ) {
259 $this->mOldId
= $this->getOldIDFromRequest();
262 return $this->mOldId
;
266 * Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect
268 * @return int The old id for the request
270 public function getOldIDFromRequest() {
271 $this->mRedirectUrl
= false;
273 $request = $this->getContext()->getRequest();
274 $oldid = $request->getIntOrNull( 'oldid' );
276 if ( $oldid === null ) {
280 if ( $oldid !== 0 ) {
281 # Load the given revision and check whether the page is another one.
282 # In that case, update this instance to reflect the change.
283 if ( $oldid === $this->mPage
->getLatest() ) {
284 $this->mRevision
= $this->mPage
->getRevision();
286 $this->mRevision
= Revision
::newFromId( $oldid );
287 if ( $this->mRevision
!== null ) {
288 // Revision title doesn't match the page title given?
289 if ( $this->mPage
->getID() != $this->mRevision
->getPage() ) {
290 $function = array( get_class( $this->mPage
), 'newFromID' );
291 $this->mPage
= call_user_func( $function, $this->mRevision
->getPage() );
297 if ( $request->getVal( 'direction' ) == 'next' ) {
298 $nextid = $this->getTitle()->getNextRevisionID( $oldid );
301 $this->mRevision
= null;
303 $this->mRedirectUrl
= $this->getTitle()->getFullURL( 'redirect=no' );
305 } elseif ( $request->getVal( 'direction' ) == 'prev' ) {
306 $previd = $this->getTitle()->getPreviousRevisionID( $oldid );
309 $this->mRevision
= null;
317 * Load the revision (including text) into this object
319 * @deprecated since 1.19; use fetchContent()
321 function loadContent() {
322 wfDeprecated( __METHOD__
, '1.19' );
323 $this->fetchContent();
327 * Get text of an article from database
328 * Does *NOT* follow redirects.
331 * @note This is really internal functionality that should really NOT be
332 * used by other functions. For accessing article content, use the WikiPage
333 * class, especially WikiBase::getContent(). However, a lot of legacy code
334 * uses this method to retrieve page text from the database, so the function
335 * has to remain public for now.
337 * @return string|bool String containing article contents, or false if null
338 * @deprecated since 1.21, use WikiPage::getContent() instead
340 function fetchContent() { #BC cruft!
341 ContentHandler
::deprecated( __METHOD__
, '1.21' );
343 if ( $this->mContentLoaded
&& $this->mContent
) {
344 return $this->mContent
;
347 wfProfileIn( __METHOD__
);
349 $content = $this->fetchContentObject();
352 wfProfileOut( __METHOD__
);
356 // @todo Get rid of mContent everywhere!
357 $this->mContent
= ContentHandler
::getContentText( $content );
358 ContentHandler
::runLegacyHooks( 'ArticleAfterFetchContent', array( &$this, &$this->mContent
) );
360 wfProfileOut( __METHOD__
);
362 return $this->mContent
;
366 * Get text content object
367 * Does *NOT* follow redirects.
368 * @todo When is this null?
370 * @note Code that wants to retrieve page content from the database should
371 * use WikiPage::getContent().
373 * @return Content|null|bool
377 protected function fetchContentObject() {
378 if ( $this->mContentLoaded
) {
379 return $this->mContentObject
;
382 wfProfileIn( __METHOD__
);
384 $this->mContentLoaded
= true;
385 $this->mContent
= null;
387 $oldid = $this->getOldID();
389 # Pre-fill content with error message so that if something
390 # fails we'll have something telling us what we intended.
391 //XXX: this isn't page content but a UI message. horrible.
392 $this->mContentObject
= new MessageContent( 'missing-revision', array( $oldid ), array() );
395 # $this->mRevision might already be fetched by getOldIDFromRequest()
396 if ( !$this->mRevision
) {
397 $this->mRevision
= Revision
::newFromId( $oldid );
398 if ( !$this->mRevision
) {
399 wfDebug( __METHOD__
. " failed to retrieve specified revision, id $oldid\n" );
400 wfProfileOut( __METHOD__
);
405 if ( !$this->mPage
->getLatest() ) {
406 wfDebug( __METHOD__
. " failed to find page data for title " .
407 $this->getTitle()->getPrefixedText() . "\n" );
408 wfProfileOut( __METHOD__
);
412 $this->mRevision
= $this->mPage
->getRevision();
414 if ( !$this->mRevision
) {
415 wfDebug( __METHOD__
. " failed to retrieve current page, rev_id " .
416 $this->mPage
->getLatest() . "\n" );
417 wfProfileOut( __METHOD__
);
422 // @todo FIXME: Horrible, horrible! This content-loading interface just plain sucks.
423 // We should instead work with the Revision object when we need it...
424 // Loads if user is allowed
425 $this->mContentObject
= $this->mRevision
->getContent(
426 Revision
::FOR_THIS_USER
,
427 $this->getContext()->getUser()
429 $this->mRevIdFetched
= $this->mRevision
->getId();
431 wfRunHooks( 'ArticleAfterFetchContentObject', array( &$this, &$this->mContentObject
) );
433 wfProfileOut( __METHOD__
);
435 return $this->mContentObject
;
439 * Returns true if the currently-referenced revision is the current edit
440 * to this page (and it exists).
443 public function isCurrent() {
444 # If no oldid, this is the current version.
445 if ( $this->getOldID() == 0 ) {
449 return $this->mPage
->exists() && $this->mRevision
&& $this->mRevision
->isCurrent();
453 * Get the fetched Revision object depending on request parameters or null
457 * @return Revision|null
459 public function getRevisionFetched() {
460 $this->fetchContentObject();
462 return $this->mRevision
;
466 * Use this to fetch the rev ID used on page views
468 * @return int Revision ID of last article revision
470 public function getRevIdFetched() {
471 if ( $this->mRevIdFetched
) {
472 return $this->mRevIdFetched
;
474 return $this->mPage
->getLatest();
479 * This is the default action of the index.php entry point: just view the
480 * page of the given title.
482 public function view() {
483 global $wgUseFileCache, $wgUseETag, $wgDebugToolbar, $wgMaxRedirects;
485 wfProfileIn( __METHOD__
);
487 # Get variables from query string
488 # As side effect this will load the revision and update the title
489 # in a revision ID is passed in the request, so this should remain
490 # the first call of this method even if $oldid is used way below.
491 $oldid = $this->getOldID();
493 $user = $this->getContext()->getUser();
494 # Another whitelist check in case getOldID() is altering the title
495 $permErrors = $this->getTitle()->getUserPermissionsErrors( 'read', $user );
496 if ( count( $permErrors ) ) {
497 wfDebug( __METHOD__
. ": denied on secondary read check\n" );
498 wfProfileOut( __METHOD__
);
499 throw new PermissionsError( 'read', $permErrors );
502 $outputPage = $this->getContext()->getOutput();
503 # getOldID() may as well want us to redirect somewhere else
504 if ( $this->mRedirectUrl
) {
505 $outputPage->redirect( $this->mRedirectUrl
);
506 wfDebug( __METHOD__
. ": redirecting due to oldid\n" );
507 wfProfileOut( __METHOD__
);
512 # If we got diff in the query, we want to see a diff page instead of the article.
513 if ( $this->getContext()->getRequest()->getCheck( 'diff' ) ) {
514 wfDebug( __METHOD__
. ": showing diff page\n" );
515 $this->showDiffPage();
516 wfProfileOut( __METHOD__
);
521 # Set page title (may be overridden by DISPLAYTITLE)
522 $outputPage->setPageTitle( $this->getTitle()->getPrefixedText() );
524 $outputPage->setArticleFlag( true );
525 # Allow frames by default
526 $outputPage->allowClickjacking();
528 $parserCache = ParserCache
::singleton();
530 $parserOptions = $this->getParserOptions();
531 # Render printable version, use printable version cache
532 if ( $outputPage->isPrintable() ) {
533 $parserOptions->setIsPrintable( true );
534 $parserOptions->setEditSection( false );
535 } elseif ( !$this->isCurrent() ||
!$this->getTitle()->quickUserCan( 'edit', $user ) ) {
536 $parserOptions->setEditSection( false );
539 # Try client and file cache
540 if ( !$wgDebugToolbar && $oldid === 0 && $this->mPage
->checkTouched() ) {
542 $outputPage->setETag( $parserCache->getETag( $this, $parserOptions ) );
545 # Use the greatest of the page's timestamp or the timestamp of any
546 # redirect in the chain (bug 67849)
547 $timestamp = $this->mPage
->getTouched();
548 if ( isset( $this->mRedirectedFrom
) ) {
549 $timestamp = max( $timestamp, $this->mRedirectedFrom
->getTouched() );
551 # If there can be more than one redirect in the chain, we have
552 # to go through the whole chain too in case an intermediate
553 # redirect was changed.
554 if ( $wgMaxRedirects > 1 ) {
555 $titles = Revision
::newFromTitle( $this->mRedirectedFrom
)
556 ->getContent( Revision
::FOR_THIS_USER
, $user )
557 ->getRedirectChain();
558 $thisTitle = $this->getTitle();
559 foreach ( $titles as $title ) {
560 if ( Title
::compare( $title, $thisTitle ) === 0 ) {
563 $timestamp = max( $timestamp, $title->getTouched() );
568 # Is it client cached?
569 if ( $outputPage->checkLastModified( $timestamp ) ) {
570 wfDebug( __METHOD__
. ": done 304\n" );
571 wfProfileOut( __METHOD__
);
575 } elseif ( $wgUseFileCache && $this->tryFileCache() ) {
576 wfDebug( __METHOD__
. ": done file cache\n" );
577 # tell wgOut that output is taken care of
578 $outputPage->disable();
579 $this->mPage
->doViewUpdates( $user, $oldid );
580 wfProfileOut( __METHOD__
);
586 # Should the parser cache be used?
587 $useParserCache = $this->mPage
->isParserCacheUsed( $parserOptions, $oldid );
588 wfDebug( 'Article::view using parser cache: ' . ( $useParserCache ?
'yes' : 'no' ) . "\n" );
589 if ( $user->getStubThreshold() ) {
590 wfIncrStats( 'pcache_miss_stub' );
593 $this->showRedirectedFromHeader();
594 $this->showNamespaceHeader();
596 # Iterate through the possible ways of constructing the output text.
597 # Keep going until $outputDone is set, or we run out of things to do.
600 $this->mParserOutput
= false;
602 while ( !$outputDone && ++
$pass ) {
605 wfRunHooks( 'ArticleViewHeader', array( &$this, &$outputDone, &$useParserCache ) );
608 # Early abort if the page doesn't exist
609 if ( !$this->mPage
->exists() ) {
610 wfDebug( __METHOD__
. ": showing missing article\n" );
611 $this->showMissingArticle();
612 $this->mPage
->doViewUpdates( $user );
613 wfProfileOut( __METHOD__
);
617 # Try the parser cache
618 if ( $useParserCache ) {
619 $this->mParserOutput
= $parserCache->get( $this, $parserOptions );
621 if ( $this->mParserOutput
!== false ) {
623 wfDebug( __METHOD__
. ": showing parser cache contents for current rev permalink\n" );
624 $this->setOldSubtitle( $oldid );
626 wfDebug( __METHOD__
. ": showing parser cache contents\n" );
628 $outputPage->addParserOutput( $this->mParserOutput
);
629 # Ensure that UI elements requiring revision ID have
630 # the correct version information.
631 $outputPage->setRevisionId( $this->mPage
->getLatest() );
632 # Preload timestamp to avoid a DB hit
633 $cachedTimestamp = $this->mParserOutput
->getTimestamp();
634 if ( $cachedTimestamp !== null ) {
635 $outputPage->setRevisionTimestamp( $cachedTimestamp );
636 $this->mPage
->setTimestamp( $cachedTimestamp );
643 # This will set $this->mRevision if needed
644 $this->fetchContentObject();
646 # Are we looking at an old revision
647 if ( $oldid && $this->mRevision
) {
648 $this->setOldSubtitle( $oldid );
650 if ( !$this->showDeletedRevisionHeader() ) {
651 wfDebug( __METHOD__
. ": cannot view deleted revision\n" );
652 wfProfileOut( __METHOD__
);
657 # Ensure that UI elements requiring revision ID have
658 # the correct version information.
659 $outputPage->setRevisionId( $this->getRevIdFetched() );
660 # Preload timestamp to avoid a DB hit
661 $outputPage->setRevisionTimestamp( $this->getTimestamp() );
663 # Pages containing custom CSS or JavaScript get special treatment
664 if ( $this->getTitle()->isCssOrJsPage() ||
$this->getTitle()->isCssJsSubpage() ) {
665 wfDebug( __METHOD__
. ": showing CSS/JS source\n" );
666 $this->showCssOrJsPage();
668 } elseif ( !wfRunHooks( 'ArticleContentViewCustom',
669 array( $this->fetchContentObject(), $this->getTitle(), $outputPage ) ) ) {
671 # Allow extensions do their own custom view for certain pages
673 } elseif ( !ContentHandler
::runLegacyHooks( 'ArticleViewCustom',
674 array( $this->fetchContentObject(), $this->getTitle(), $outputPage ) ) ) {
676 # Allow extensions do their own custom view for certain pages
681 # Run the parse, protected by a pool counter
682 wfDebug( __METHOD__
. ": doing uncached parse\n" );
684 $content = $this->getContentObject();
685 $poolArticleView = new PoolWorkArticleView( $this->getPage(), $parserOptions,
686 $this->getRevIdFetched(), $useParserCache, $content );
688 if ( !$poolArticleView->execute() ) {
689 $error = $poolArticleView->getError();
691 $outputPage->clearHTML(); // for release() errors
692 $outputPage->enableClientCache( false );
693 $outputPage->setRobotPolicy( 'noindex,nofollow' );
695 $errortext = $error->getWikiText( false, 'view-pool-error' );
696 $outputPage->addWikiText( '<div class="errorbox">' . $errortext . '</div>' );
698 # Connection or timeout error
699 wfProfileOut( __METHOD__
);
703 $this->mParserOutput
= $poolArticleView->getParserOutput();
704 $outputPage->addParserOutput( $this->mParserOutput
);
705 if ( $content->getRedirectTarget() ) {
706 $outputPage->addSubtitle(
707 "<span id=\"redirectsub\">" . wfMessage( 'redirectpagesub' )->parse() . "</span>"
711 # Don't cache a dirty ParserOutput object
712 if ( $poolArticleView->getIsDirty() ) {
713 $outputPage->setSquidMaxage( 0 );
714 $outputPage->addHTML( "<!-- parser cache is expired, " .
715 "sending anyway due to pool overload-->\n" );
720 # Should be unreachable, but just in case...
726 # Get the ParserOutput actually *displayed* here.
727 # Note that $this->mParserOutput is the *current* version output.
728 $pOutput = ( $outputDone instanceof ParserOutput
)
729 ?
$outputDone // object fetched by hook
730 : $this->mParserOutput
;
732 # Adjust title for main page & pages with displaytitle
734 $this->adjustDisplayTitle( $pOutput );
737 # For the main page, overwrite the <title> element with the con-
738 # tents of 'pagetitle-view-mainpage' instead of the default (if
740 # This message always exists because it is in the i18n files
741 if ( $this->getTitle()->isMainPage() ) {
742 $msg = wfMessage( 'pagetitle-view-mainpage' )->inContentLanguage();
743 if ( !$msg->isDisabled() ) {
744 $outputPage->setHTMLTitle( $msg->title( $this->getTitle() )->text() );
748 # Check for any __NOINDEX__ tags on the page using $pOutput
749 $policy = $this->getRobotPolicy( 'view', $pOutput );
750 $outputPage->setIndexPolicy( $policy['index'] );
751 $outputPage->setFollowPolicy( $policy['follow'] );
753 $this->showViewFooter();
754 $this->mPage
->doViewUpdates( $user, $oldid );
756 $outputPage->addModules( 'mediawiki.action.view.postEdit' );
758 wfProfileOut( __METHOD__
);
762 * Adjust title for pages with displaytitle, -{T|}- or language conversion
763 * @param ParserOutput $pOutput
765 public function adjustDisplayTitle( ParserOutput
$pOutput ) {
766 # Adjust the title if it was set by displaytitle, -{T|}- or language conversion
767 $titleText = $pOutput->getTitleText();
768 if ( strval( $titleText ) !== '' ) {
769 $this->getContext()->getOutput()->setPageTitle( $titleText );
774 * Show a diff page according to current request variables. For use within
775 * Article::view() only, other callers should use the DifferenceEngine class.
777 * @todo Make protected
779 public function showDiffPage() {
780 $request = $this->getContext()->getRequest();
781 $user = $this->getContext()->getUser();
782 $diff = $request->getVal( 'diff' );
783 $rcid = $request->getVal( 'rcid' );
784 $diffOnly = $request->getBool( 'diffonly', $user->getOption( 'diffonly' ) );
785 $purge = $request->getVal( 'action' ) == 'purge';
786 $unhide = $request->getInt( 'unhide' ) == 1;
787 $oldid = $this->getOldID();
789 $rev = $this->getRevisionFetched();
792 $this->getContext()->getOutput()->setPageTitle( wfMessage( 'errorpagetitle' ) );
793 $this->getContext()->getOutput()->addWikiMsg( 'difference-missing-revision', $oldid, 1 );
797 $contentHandler = $rev->getContentHandler();
798 $de = $contentHandler->createDifferenceEngine(
807 // DifferenceEngine directly fetched the revision:
808 $this->mRevIdFetched
= $de->mNewid
;
809 $de->showDiffPage( $diffOnly );
811 // Run view updates for the newer revision being diffed (and shown
812 // below the diff if not $diffOnly).
813 list( $old, $new ) = $de->mapDiffPrevNext( $oldid, $diff );
814 // New can be false, convert it to 0 - this conveniently means the latest revision
815 $this->mPage
->doViewUpdates( $user, (int)$new );
819 * Show a page view for a page formatted as CSS or JavaScript. To be called by
820 * Article::view() only.
822 * This exists mostly to serve the deprecated ShowRawCssJs hook (used to customize these views).
823 * It has been replaced by the ContentGetParserOutput hook, which lets you do the same but with
826 * @param bool $showCacheHint Whether to show a message telling the user
827 * to clear the browser cache (default: true).
829 protected function showCssOrJsPage( $showCacheHint = true ) {
830 $outputPage = $this->getContext()->getOutput();
832 if ( $showCacheHint ) {
833 $dir = $this->getContext()->getLanguage()->getDir();
834 $lang = $this->getContext()->getLanguage()->getCode();
836 $outputPage->wrapWikiMsg(
837 "<div id='mw-clearyourcache' lang='$lang' dir='$dir' class='mw-content-$dir'>\n$1\n</div>",
842 $this->fetchContentObject();
844 if ( $this->mContentObject
) {
845 // Give hooks a chance to customise the output
846 if ( ContentHandler
::runLegacyHooks(
848 array( $this->mContentObject
, $this->getTitle(), $outputPage ) )
850 // If no legacy hooks ran, display the content of the parser output, including RL modules,
851 // but excluding metadata like categories and language links
852 $po = $this->mContentObject
->getParserOutput( $this->getTitle() );
853 $outputPage->addParserOutputContent( $po );
859 * Get the robot policy to be used for the current view
860 * @param string $action The action= GET parameter
861 * @param ParserOutput|null $pOutput
862 * @return array The policy that should be set
863 * @todo actions other than 'view'
865 public function getRobotPolicy( $action, $pOutput = null ) {
866 global $wgArticleRobotPolicies, $wgNamespaceRobotPolicies, $wgDefaultRobotPolicy;
868 $ns = $this->getTitle()->getNamespace();
870 # Don't index user and user talk pages for blocked users (bug 11443)
871 if ( ( $ns == NS_USER ||
$ns == NS_USER_TALK
) && !$this->getTitle()->isSubpage() ) {
872 $specificTarget = null;
874 $titleText = $this->getTitle()->getText();
875 if ( IP
::isValid( $titleText ) ) {
876 $vagueTarget = $titleText;
878 $specificTarget = $titleText;
880 if ( Block
::newFromTarget( $specificTarget, $vagueTarget ) instanceof Block
) {
882 'index' => 'noindex',
883 'follow' => 'nofollow'
888 if ( $this->mPage
->getID() === 0 ||
$this->getOldID() ) {
889 # Non-articles (special pages etc), and old revisions
891 'index' => 'noindex',
892 'follow' => 'nofollow'
894 } elseif ( $this->getContext()->getOutput()->isPrintable() ) {
895 # Discourage indexing of printable versions, but encourage following
897 'index' => 'noindex',
900 } elseif ( $this->getContext()->getRequest()->getInt( 'curid' ) ) {
901 # For ?curid=x urls, disallow indexing
903 'index' => 'noindex',
908 # Otherwise, construct the policy based on the various config variables.
909 $policy = self
::formatRobotPolicy( $wgDefaultRobotPolicy );
911 if ( isset( $wgNamespaceRobotPolicies[$ns] ) ) {
912 # Honour customised robot policies for this namespace
913 $policy = array_merge(
915 self
::formatRobotPolicy( $wgNamespaceRobotPolicies[$ns] )
918 if ( $this->getTitle()->canUseNoindex() && is_object( $pOutput ) && $pOutput->getIndexPolicy() ) {
919 # __INDEX__ and __NOINDEX__ magic words, if allowed. Incorporates
920 # a final sanity check that we have really got the parser output.
921 $policy = array_merge(
923 array( 'index' => $pOutput->getIndexPolicy() )
927 if ( isset( $wgArticleRobotPolicies[$this->getTitle()->getPrefixedText()] ) ) {
928 # (bug 14900) site config can override user-defined __INDEX__ or __NOINDEX__
929 $policy = array_merge(
931 self
::formatRobotPolicy( $wgArticleRobotPolicies[$this->getTitle()->getPrefixedText()] )
939 * Converts a String robot policy into an associative array, to allow
940 * merging of several policies using array_merge().
941 * @param array|string $policy Returns empty array on null/false/'', transparent
942 * to already-converted arrays, converts string.
943 * @return array 'index' => \<indexpolicy\>, 'follow' => \<followpolicy\>
945 public static function formatRobotPolicy( $policy ) {
946 if ( is_array( $policy ) ) {
948 } elseif ( !$policy ) {
952 $policy = explode( ',', $policy );
953 $policy = array_map( 'trim', $policy );
956 foreach ( $policy as $var ) {
957 if ( in_array( $var, array( 'index', 'noindex' ) ) ) {
958 $arr['index'] = $var;
959 } elseif ( in_array( $var, array( 'follow', 'nofollow' ) ) ) {
960 $arr['follow'] = $var;
968 * If this request is a redirect view, send "redirected from" subtitle to
969 * the output. Returns true if the header was needed, false if this is not
970 * a redirect view. Handles both local and remote redirects.
974 public function showRedirectedFromHeader() {
975 global $wgRedirectSources;
976 $outputPage = $this->getContext()->getOutput();
978 $rdfrom = $this->getContext()->getRequest()->getVal( 'rdfrom' );
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 ( wfRunHooks( 'ArticleViewRedirect', array( &$this ) ) ) {
984 $redir = Linker
::linkKnown(
985 $this->mRedirectedFrom
,
988 array( 'redirect' => 'no' )
991 $outputPage->addSubtitle( wfMessage( 'redirectedfrom' )->rawParams( $redir ) );
993 // Set the fragment if one was specified in the redirect
994 if ( $this->getTitle()->hasFragment() ) {
995 $outputPage->addJsConfigVars( 'wgRedirectToFragment', $this->getTitle()->getFragmentForURL() );
996 $outputPage->addModules( 'mediawiki.action.view.redirectToFragment' );
999 // Add a <link rel="canonical"> tag
1000 $outputPage->setCanonicalUrl( $this->getTitle()->getLocalURL() );
1002 // Tell the output object that the user arrived at this article through a redirect
1003 $outputPage->setRedirectedFrom( $this->mRedirectedFrom
);
1007 } elseif ( $rdfrom ) {
1008 // This is an externally redirected view, from some other wiki.
1009 // If it was reported from a trusted site, supply a backlink.
1010 if ( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
1011 $redir = Linker
::makeExternalLink( $rdfrom, $rdfrom );
1012 $outputPage->addSubtitle( wfMessage( 'redirectedfrom' )->rawParams( $redir ) );
1022 * Show a header specific to the namespace currently being viewed, like
1023 * [[MediaWiki:Talkpagetext]]. For Article::view().
1025 public function showNamespaceHeader() {
1026 if ( $this->getTitle()->isTalkPage() ) {
1027 if ( !wfMessage( 'talkpageheader' )->isDisabled() ) {
1028 $this->getContext()->getOutput()->wrapWikiMsg(
1029 "<div class=\"mw-talkpageheader\">\n$1\n</div>",
1030 array( 'talkpageheader' )
1037 * Show the footer section of an ordinary page view
1039 public function showViewFooter() {
1040 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
1041 if ( $this->getTitle()->getNamespace() == NS_USER_TALK
1042 && IP
::isValid( $this->getTitle()->getText() )
1044 $this->getContext()->getOutput()->addWikiMsg( 'anontalkpagetext' );
1047 // Show a footer allowing the user to patrol the shown revision or page if possible
1048 $patrolFooterShown = $this->showPatrolFooter();
1050 wfRunHooks( 'ArticleViewFooter', array( $this, $patrolFooterShown ) );
1054 * If patrol is possible, output a patrol UI box. This is called from the
1055 * footer section of ordinary page views. If patrol is not possible or not
1056 * desired, does nothing.
1057 * Side effect: When the patrol link is build, this method will call
1058 * OutputPage::preventClickjacking() and load mediawiki.page.patrol.ajax.
1062 public function showPatrolFooter() {
1063 global $wgUseNPPatrol, $wgUseRCPatrol, $wgEnableAPI, $wgEnableWriteAPI;
1065 $outputPage = $this->getContext()->getOutput();
1066 $user = $this->getContext()->getUser();
1067 $cache = wfGetMainCache();
1070 if ( !$this->getTitle()->quickUserCan( 'patrol', $user )
1071 ||
!( $wgUseRCPatrol ||
$wgUseNPPatrol )
1073 // Patrolling is disabled or the user isn't allowed to
1077 wfProfileIn( __METHOD__
);
1079 // New page patrol: Get the timestamp of the oldest revison which
1080 // the revision table holds for the given page. Then we look
1081 // whether it's within the RC lifespan and if it is, we try
1082 // to get the recentchanges row belonging to that entry
1083 // (with rc_new = 1).
1085 // Check for cached results
1086 if ( $cache->get( wfMemcKey( 'NotPatrollablePage', $this->getTitle()->getArticleID() ) ) ) {
1087 wfProfileOut( __METHOD__
);
1091 if ( $this->mRevision
1092 && !RecentChange
::isInRCLifespan( $this->mRevision
->getTimestamp(), 21600 )
1094 // The current revision is already older than what could be in the RC table
1095 // 6h tolerance because the RC might not be cleaned out regularly
1096 wfProfileOut( __METHOD__
);
1100 $dbr = wfGetDB( DB_SLAVE
);
1101 $oldestRevisionTimestamp = $dbr->selectField(
1103 'MIN( rev_timestamp )',
1104 array( 'rev_page' => $this->getTitle()->getArticleID() ),
1108 if ( $oldestRevisionTimestamp
1109 && RecentChange
::isInRCLifespan( $oldestRevisionTimestamp, 21600 )
1111 // 6h tolerance because the RC might not be cleaned out regularly
1112 $rc = RecentChange
::newFromConds(
1115 'rc_timestamp' => $oldestRevisionTimestamp,
1116 'rc_namespace' => $this->getTitle()->getNamespace(),
1117 'rc_cur_id' => $this->getTitle()->getArticleID(),
1121 array( 'USE INDEX' => 'new_name_timestamp' )
1126 // No RC entry around
1128 // Cache the information we gathered above in case we can't patrol
1129 // Don't cache in case we can patrol as this could change
1130 $cache->set( wfMemcKey( 'NotPatrollablePage', $this->getTitle()->getArticleID() ), '1' );
1132 wfProfileOut( __METHOD__
);
1136 if ( $rc->getPerformer()->getName() == $user->getName() ) {
1137 // Don't show a patrol link for own creations. If the user could
1138 // patrol them, they already would be patrolled
1139 wfProfileOut( __METHOD__
);
1143 $rcid = $rc->getAttribute( 'rc_id' );
1145 $token = $user->getEditToken( $rcid );
1147 $outputPage->preventClickjacking();
1148 if ( $wgEnableAPI && $wgEnableWriteAPI && $user->isAllowed( 'writeapi' ) ) {
1149 $outputPage->addModules( 'mediawiki.page.patrol.ajax' );
1152 $link = Linker
::linkKnown(
1154 wfMessage( 'markaspatrolledtext' )->escaped(),
1157 'action' => 'markpatrolled',
1163 $outputPage->addHTML(
1164 "<div class='patrollink'>" .
1165 wfMessage( 'markaspatrolledlink' )->rawParams( $link )->escaped() .
1169 wfProfileOut( __METHOD__
);
1174 * Show the error text for a missing article. For articles in the MediaWiki
1175 * namespace, show the default message text. To be called from Article::view().
1177 public function showMissingArticle() {
1178 global $wgSend404Code;
1179 $outputPage = $this->getContext()->getOutput();
1180 // Whether the page is a root user page of an existing user (but not a subpage)
1181 $validUserPage = false;
1183 # Show info in user (talk) namespace. Does the user exist? Is he blocked?
1184 if ( $this->getTitle()->getNamespace() == NS_USER
1185 ||
$this->getTitle()->getNamespace() == NS_USER_TALK
1187 $parts = explode( '/', $this->getTitle()->getText() );
1188 $rootPart = $parts[0];
1189 $user = User
::newFromName( $rootPart, false /* allow IP users*/ );
1190 $ip = User
::isIP( $rootPart );
1191 $block = Block
::newFromTarget( $user, $user );
1193 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { # User does not exist
1194 $outputPage->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
1195 array( 'userpage-userdoesnotexist-view', wfEscapeWikiText( $rootPart ) ) );
1196 } elseif ( !is_null( $block ) && $block->getType() != Block
::TYPE_AUTO
) { # Show log extract if the user is currently blocked
1197 LogEventsList
::showLogExtract(
1200 MWNamespace
::getCanonicalName( NS_USER
) . ':' . $block->getTarget(),
1204 'showIfEmpty' => false,
1206 'blocked-notice-logextract',
1207 $user->getName() # Support GENDER in notice
1211 $validUserPage = !$this->getTitle()->isSubpage();
1213 $validUserPage = !$this->getTitle()->isSubpage();
1217 wfRunHooks( 'ShowMissingArticle', array( $this ) );
1219 // Give extensions a chance to hide their (unrelated) log entries
1220 $logTypes = array( 'delete', 'move' );
1221 $conds = array( "log_action != 'revision'" );
1222 wfRunHooks( 'Article::MissingArticleConditions', array( &$conds, $logTypes ) );
1224 # Show delete and move logs
1225 LogEventsList
::showLogExtract( $outputPage, $logTypes, $this->getTitle(), '',
1228 'showIfEmpty' => false,
1229 'msgKey' => array( 'moveddeleted-notice' ) )
1232 if ( !$this->mPage
->hasViewableContent() && $wgSend404Code && !$validUserPage ) {
1233 // If there's no backing content, send a 404 Not Found
1234 // for better machine handling of broken links.
1235 $this->getContext()->getRequest()->response()->header( "HTTP/1.1 404 Not Found" );
1238 // Also apply the robot policy for nonexisting pages (even if a 404 was used for sanity)
1239 $policy = $this->getRobotPolicy( 'view' );
1240 $outputPage->setIndexPolicy( $policy['index'] );
1241 $outputPage->setFollowPolicy( $policy['follow'] );
1243 $hookResult = wfRunHooks( 'BeforeDisplayNoArticleText', array( $this ) );
1245 if ( !$hookResult ) {
1249 # Show error message
1250 $oldid = $this->getOldID();
1252 $text = wfMessage( 'missing-revision', $oldid )->plain();
1253 } elseif ( $this->getTitle()->getNamespace() === NS_MEDIAWIKI
) {
1254 // Use the default message text
1255 $text = $this->getTitle()->getDefaultMessageText();
1256 } elseif ( $this->getTitle()->quickUserCan( 'create', $this->getContext()->getUser() )
1257 && $this->getTitle()->quickUserCan( 'edit', $this->getContext()->getUser() )
1259 $message = $this->getContext()->getUser()->isLoggedIn() ?
'noarticletext' : 'noarticletextanon';
1260 $text = wfMessage( $message )->plain();
1262 $text = wfMessage( 'noarticletext-nopermission' )->plain();
1264 $text = "<div class='noarticletext'>\n$text\n</div>";
1266 $outputPage->addWikiText( $text );
1270 * If the revision requested for view is deleted, check permissions.
1271 * Send either an error message or a warning header to the output.
1273 * @return bool True if the view is allowed, false if not.
1275 public function showDeletedRevisionHeader() {
1276 if ( !$this->mRevision
->isDeleted( Revision
::DELETED_TEXT
) ) {
1281 $outputPage = $this->getContext()->getOutput();
1282 $user = $this->getContext()->getUser();
1283 // If the user is not allowed to see it...
1284 if ( !$this->mRevision
->userCan( Revision
::DELETED_TEXT
, $user ) ) {
1285 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1286 'rev-deleted-text-permission' );
1289 // If the user needs to confirm that they want to see it...
1290 } elseif ( $this->getContext()->getRequest()->getInt( 'unhide' ) != 1 ) {
1291 # Give explanation and add a link to view the revision...
1292 $oldid = intval( $this->getOldID() );
1293 $link = $this->getTitle()->getFullURL( "oldid={$oldid}&unhide=1" );
1294 $msg = $this->mRevision
->isDeleted( Revision
::DELETED_RESTRICTED
) ?
1295 'rev-suppressed-text-unhide' : 'rev-deleted-text-unhide';
1296 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1297 array( $msg, $link ) );
1300 // We are allowed to see...
1302 $msg = $this->mRevision
->isDeleted( Revision
::DELETED_RESTRICTED
) ?
1303 'rev-suppressed-text-view' : 'rev-deleted-text-view';
1304 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", $msg );
1311 * Generate the navigation links when browsing through an article revisions
1312 * It shows the information as:
1313 * Revision as of \<date\>; view current revision
1314 * \<- Previous version | Next Version -\>
1316 * @param int $oldid Revision ID of this article revision
1318 public function setOldSubtitle( $oldid = 0 ) {
1319 if ( !wfRunHooks( 'DisplayOldSubtitle', array( &$this, &$oldid ) ) ) {
1323 $unhide = $this->getContext()->getRequest()->getInt( 'unhide' ) == 1;
1325 # Cascade unhide param in links for easy deletion browsing
1326 $extraParams = array();
1328 $extraParams['unhide'] = 1;
1331 if ( $this->mRevision
&& $this->mRevision
->getId() === $oldid ) {
1332 $revision = $this->mRevision
;
1334 $revision = Revision
::newFromId( $oldid );
1337 $timestamp = $revision->getTimestamp();
1339 $current = ( $oldid == $this->mPage
->getLatest() );
1340 $language = $this->getContext()->getLanguage();
1341 $user = $this->getContext()->getUser();
1343 $td = $language->userTimeAndDate( $timestamp, $user );
1344 $tddate = $language->userDate( $timestamp, $user );
1345 $tdtime = $language->userTime( $timestamp, $user );
1347 # Show user links if allowed to see them. If hidden, then show them only if requested...
1348 $userlinks = Linker
::revUserTools( $revision, !$unhide );
1350 $infomsg = $current && !wfMessage( 'revision-info-current' )->isDisabled()
1351 ?
'revision-info-current'
1354 $outputPage = $this->getContext()->getOutput();
1355 $outputPage->addSubtitle( "<div id=\"mw-{$infomsg}\">" . wfMessage( $infomsg,
1356 $td )->rawParams( $userlinks )->params( $revision->getID(), $tddate,
1357 $tdtime, $revision->getUserText() )->rawParams( Linker
::revComment( $revision, true, true ) )->parse() . "</div>" );
1360 ?
wfMessage( 'currentrevisionlink' )->escaped()
1361 : Linker
::linkKnown(
1363 wfMessage( 'currentrevisionlink' )->escaped(),
1368 ?
wfMessage( 'diff' )->escaped()
1369 : Linker
::linkKnown(
1371 wfMessage( 'diff' )->escaped(),
1378 $prev = $this->getTitle()->getPreviousRevisionID( $oldid );
1380 ? Linker
::linkKnown(
1382 wfMessage( 'previousrevision' )->escaped(),
1385 'direction' => 'prev',
1389 : wfMessage( 'previousrevision' )->escaped();
1391 ? Linker
::linkKnown(
1393 wfMessage( 'diff' )->escaped(),
1400 : wfMessage( 'diff' )->escaped();
1401 $nextlink = $current
1402 ?
wfMessage( 'nextrevision' )->escaped()
1403 : Linker
::linkKnown(
1405 wfMessage( 'nextrevision' )->escaped(),
1408 'direction' => 'next',
1412 $nextdiff = $current
1413 ?
wfMessage( 'diff' )->escaped()
1414 : Linker
::linkKnown(
1416 wfMessage( 'diff' )->escaped(),
1424 $cdel = Linker
::getRevDeleteLink( $user, $revision, $this->getTitle() );
1425 if ( $cdel !== '' ) {
1429 $outputPage->addSubtitle( "<div id=\"mw-revision-nav\">" . $cdel .
1430 wfMessage( 'revision-nav' )->rawParams(
1431 $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff
1432 )->escaped() . "</div>" );
1436 * Return the HTML for the top of a redirect page
1438 * Chances are you should just be using the ParserOutput from
1439 * WikitextContent::getParserOutput instead of calling this for redirects.
1441 * @param Title|array $target Destination(s) to redirect
1442 * @param bool $appendSubtitle [optional]
1443 * @param bool $forceKnown Should the image be shown as a bluelink regardless of existence?
1444 * @return string Containing HMTL with redirect link
1446 public function viewRedirect( $target, $appendSubtitle = true, $forceKnown = false ) {
1447 $lang = $this->getTitle()->getPageLanguage();
1448 if ( $appendSubtitle ) {
1449 $out = $this->getContext()->getOutput();
1450 $out->addSubtitle( wfMessage( 'redirectpagesub' )->parse() );
1452 return static::getRedirectHeaderHtml( $lang, $target, $forceKnown );
1456 * Return the HTML for the top of a redirect page
1458 * Chances are you should just be using the ParserOutput from
1459 * WikitextContent::getParserOutput instead of calling this for redirects.
1462 * @param Language $lang
1463 * @param Title|array $target Destination(s) to redirect
1464 * @param bool $forceKnown Should the image be shown as a bluelink regardless of existence?
1465 * @return string Containing HMTL with redirect link
1467 public static function getRedirectHeaderHtml( Language
$lang, $target, $forceKnown = false ) {
1468 global $wgStylePath;
1470 if ( !is_array( $target ) ) {
1471 $target = array( $target );
1474 $imageDir = $lang->getDir();
1476 // the loop prepends the arrow image before the link, so the first case needs to be outside
1478 /** @var $title Title */
1479 $title = array_shift( $target );
1481 if ( $forceKnown ) {
1482 $link = Linker
::linkKnown( $title, htmlspecialchars( $title->getFullText() ) );
1484 $link = Linker
::link( $title, htmlspecialchars( $title->getFullText() ) );
1487 $nextRedirect = $wgStylePath . '/common/images/nextredirect' . $imageDir . '.png';
1488 $alt = $lang->isRTL() ?
'←' : '→';
1490 // Automatically append redirect=no to each link, since most of them are
1491 // redirect pages themselves.
1492 /** @var Title $rt */
1493 foreach ( $target as $rt ) {
1494 $link .= Html
::element( 'img', array( 'src' => $nextRedirect, 'alt' => $alt ) );
1495 if ( $forceKnown ) {
1496 $link .= Linker
::linkKnown(
1498 htmlspecialchars( $rt->getFullText(),
1500 array( 'redirect' => 'no' )
1504 $link .= Linker
::link(
1506 htmlspecialchars( $rt->getFullText() ),
1508 array( 'redirect' => 'no' )
1513 $imageUrl = $wgStylePath . '/common/images/redirect' . $imageDir . '.png';
1514 return '<div class="redirectMsg">' .
1515 Html
::element( 'img', array( 'src' => $imageUrl, 'alt' => '#REDIRECT' ) ) .
1516 '<span class="redirectText">' . $link . '</span></div>';
1520 * Handle action=render
1522 public function render() {
1523 $this->getContext()->getRequest()->response()->header( 'X-Robots-Tag: noindex' );
1524 $this->getContext()->getOutput()->setArticleBodyOnly( true );
1525 $this->getContext()->getOutput()->enableSectionEditLinks( false );
1530 * action=protect handler
1532 public function protect() {
1533 $form = new ProtectionForm( $this );
1538 * action=unprotect handler (alias)
1540 public function unprotect() {
1545 * UI entry point for page deletion
1547 public function delete() {
1548 # This code desperately needs to be totally rewritten
1550 $title = $this->getTitle();
1551 $user = $this->getContext()->getUser();
1554 $permission_errors = $title->getUserPermissionsErrors( 'delete', $user );
1555 if ( count( $permission_errors ) ) {
1556 throw new PermissionsError( 'delete', $permission_errors );
1559 # Read-only check...
1560 if ( wfReadOnly() ) {
1561 throw new ReadOnlyError
;
1564 # Better double-check that it hasn't been deleted yet!
1565 $this->mPage
->loadPageData( 'fromdbmaster' );
1566 if ( !$this->mPage
->exists() ) {
1567 $deleteLogPage = new LogPage( 'delete' );
1568 $outputPage = $this->getContext()->getOutput();
1569 $outputPage->setPageTitle( wfMessage( 'cannotdelete-title', $title->getPrefixedText() ) );
1570 $outputPage->wrapWikiMsg( "<div class=\"error mw-error-cannotdelete\">\n$1\n</div>",
1571 array( 'cannotdelete', wfEscapeWikiText( $title->getPrefixedText() ) )
1573 $outputPage->addHTML(
1574 Xml
::element( 'h2', null, $deleteLogPage->getName()->text() )
1576 LogEventsList
::showLogExtract(
1585 $request = $this->getContext()->getRequest();
1586 $deleteReasonList = $request->getText( 'wpDeleteReasonList', 'other' );
1587 $deleteReason = $request->getText( 'wpReason' );
1589 if ( $deleteReasonList == 'other' ) {
1590 $reason = $deleteReason;
1591 } elseif ( $deleteReason != '' ) {
1592 // Entry from drop down menu + additional comment
1593 $colonseparator = wfMessage( 'colon-separator' )->inContentLanguage()->text();
1594 $reason = $deleteReasonList . $colonseparator . $deleteReason;
1596 $reason = $deleteReasonList;
1599 if ( $request->wasPosted() && $user->matchEditToken( $request->getVal( 'wpEditToken' ),
1600 array( 'delete', $this->getTitle()->getPrefixedText() ) )
1602 # Flag to hide all contents of the archived revisions
1603 $suppress = $request->getVal( 'wpSuppress' ) && $user->isAllowed( 'suppressrevision' );
1605 $this->doDelete( $reason, $suppress );
1607 WatchAction
::doWatchOrUnwatch( $request->getCheck( 'wpWatch' ), $title, $user );
1612 // Generate deletion reason
1613 $hasHistory = false;
1616 $reason = $this->generateReason( $hasHistory );
1617 } catch ( MWException
$e ) {
1618 # if a page is horribly broken, we still want to be able to
1619 # delete it. So be lenient about errors here.
1620 wfDebug( "Error while building auto delete summary: $e" );
1625 // If the page has a history, insert a warning
1626 if ( $hasHistory ) {
1627 $revisions = $this->mTitle
->estimateRevisionCount();
1628 // @todo FIXME: i18n issue/patchwork message
1629 $this->getContext()->getOutput()->addHTML( '<strong class="mw-delete-warning-revisions">' .
1630 wfMessage( 'historywarning' )->numParams( $revisions )->parse() .
1631 wfMessage( 'word-separator' )->plain() . Linker
::linkKnown( $title,
1632 wfMessage( 'history' )->escaped(),
1633 array( 'rel' => 'archives' ),
1634 array( 'action' => 'history' ) ) .
1638 if ( $this->mTitle
->isBigDeletion() ) {
1639 global $wgDeleteRevisionsLimit;
1640 $this->getContext()->getOutput()->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n",
1642 'delete-warning-toobig',
1643 $this->getContext()->getLanguage()->formatNum( $wgDeleteRevisionsLimit )
1649 $this->confirmDelete( $reason );
1653 * Output deletion confirmation dialog
1654 * @todo FIXME: Move to another file?
1655 * @param string $reason Prefilled reason
1657 public function confirmDelete( $reason ) {
1658 wfDebug( "Article::confirmDelete\n" );
1660 $outputPage = $this->getContext()->getOutput();
1661 $outputPage->setPageTitle( wfMessage( 'delete-confirm', $this->getTitle()->getPrefixedText() ) );
1662 $outputPage->addBacklinkSubtitle( $this->getTitle() );
1663 $outputPage->setRobotPolicy( 'noindex,nofollow' );
1664 $backlinkCache = $this->getTitle()->getBacklinkCache();
1665 if ( $backlinkCache->hasLinks( 'pagelinks' ) ||
$backlinkCache->hasLinks( 'templatelinks' ) ) {
1666 $outputPage->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1667 'deleting-backlinks-warning' );
1669 $outputPage->addWikiMsg( 'confirmdeletetext' );
1671 wfRunHooks( 'ArticleConfirmDelete', array( $this, $outputPage, &$reason ) );
1673 $user = $this->getContext()->getUser();
1675 if ( $user->isAllowed( 'suppressrevision' ) ) {
1676 $suppress = "<tr id=\"wpDeleteSuppressRow\">
1678 <td class='mw-input'><strong>" .
1679 Xml
::checkLabel( wfMessage( 'revdelete-suppress' )->text(),
1680 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '4' ) ) .
1686 $checkWatch = $user->getBoolOption( 'watchdeletion' ) ||
$user->isWatched( $this->getTitle() );
1688 $form = Xml
::openElement( 'form', array( 'method' => 'post',
1689 'action' => $this->getTitle()->getLocalURL( 'action=delete' ), 'id' => 'deleteconfirm' ) ) .
1690 Xml
::openElement( 'fieldset', array( 'id' => 'mw-delete-table' ) ) .
1691 Xml
::tags( 'legend', null, wfMessage( 'delete-legend' )->escaped() ) .
1692 Xml
::openElement( 'table', array( 'id' => 'mw-deleteconfirm-table' ) ) .
1693 "<tr id=\"wpDeleteReasonListRow\">
1694 <td class='mw-label'>" .
1695 Xml
::label( wfMessage( 'deletecomment' )->text(), 'wpDeleteReasonList' ) .
1697 <td class='mw-input'>" .
1699 'wpDeleteReasonList',
1700 wfMessage( 'deletereason-dropdown' )->inContentLanguage()->text(),
1701 wfMessage( 'deletereasonotherlist' )->inContentLanguage()->text(),
1708 <tr id=\"wpDeleteReasonRow\">
1709 <td class='mw-label'>" .
1710 Xml
::label( wfMessage( 'deleteotherreason' )->text(), 'wpReason' ) .
1712 <td class='mw-input'>" .
1713 Html
::input( 'wpReason', $reason, 'text', array(
1715 'maxlength' => '255',
1723 # Disallow watching if user is not logged in
1724 if ( $user->isLoggedIn() ) {
1728 <td class='mw-input'>" .
1729 Xml
::checkLabel( wfMessage( 'watchthis' )->text(),
1730 'wpWatch', 'wpWatch', $checkWatch, array( 'tabindex' => '3' ) ) .
1739 <td class='mw-submit'>" .
1740 Xml
::submitButton( wfMessage( 'deletepage' )->text(),
1741 array( 'name' => 'wpConfirmB', 'id' => 'wpConfirmB', 'tabindex' => '5' ) ) .
1744 Xml
::closeElement( 'table' ) .
1745 Xml
::closeElement( 'fieldset' ) .
1748 $user->getEditToken( array( 'delete', $this->getTitle()->getPrefixedText() ) )
1750 Xml
::closeElement( 'form' );
1752 if ( $user->isAllowed( 'editinterface' ) ) {
1753 $title = Title
::makeTitle( NS_MEDIAWIKI
, 'Deletereason-dropdown' );
1754 $link = Linker
::link(
1756 wfMessage( 'delete-edit-reasonlist' )->escaped(),
1758 array( 'action' => 'edit' )
1760 $form .= '<p class="mw-delete-editreasons">' . $link . '</p>';
1763 $outputPage->addHTML( $form );
1765 $deleteLogPage = new LogPage( 'delete' );
1766 $outputPage->addHTML( Xml
::element( 'h2', null, $deleteLogPage->getName()->text() ) );
1767 LogEventsList
::showLogExtract( $outputPage, 'delete',
1773 * Perform a deletion and output success or failure messages
1774 * @param string $reason
1775 * @param bool $suppress
1777 public function doDelete( $reason, $suppress = false ) {
1779 $outputPage = $this->getContext()->getOutput();
1780 $status = $this->mPage
->doDeleteArticleReal( $reason, $suppress, 0, true, $error );
1782 if ( $status->isGood() ) {
1783 $deleted = $this->getTitle()->getPrefixedText();
1785 $outputPage->setPageTitle( wfMessage( 'actioncomplete' ) );
1786 $outputPage->setRobotPolicy( 'noindex,nofollow' );
1788 $loglink = '[[Special:Log/delete|' . wfMessage( 'deletionlog' )->text() . ']]';
1790 $outputPage->addWikiMsg( 'deletedtext', wfEscapeWikiText( $deleted ), $loglink );
1791 $outputPage->returnToMain( false );
1793 $outputPage->setPageTitle(
1794 wfMessage( 'cannotdelete-title',
1795 $this->getTitle()->getPrefixedText() )
1798 if ( $error == '' ) {
1799 $outputPage->addWikiText(
1800 "<div class=\"error mw-error-cannotdelete\">\n" . $status->getWikiText() . "\n</div>"
1802 $deleteLogPage = new LogPage( 'delete' );
1803 $outputPage->addHTML( Xml
::element( 'h2', null, $deleteLogPage->getName()->text() ) );
1805 LogEventsList
::showLogExtract(
1811 $outputPage->addHTML( $error );
1816 /* Caching functions */
1819 * checkLastModified returns true if it has taken care of all
1820 * output to the client that is necessary for this request.
1821 * (that is, it has sent a cached version of the page)
1823 * @return bool True if cached version send, false otherwise
1825 protected function tryFileCache() {
1826 static $called = false;
1829 wfDebug( "Article::tryFileCache(): called twice!?\n" );
1834 if ( $this->isFileCacheable() ) {
1835 $cache = HTMLFileCache
::newFromTitle( $this->getTitle(), 'view' );
1836 if ( $cache->isCacheGood( $this->mPage
->getTouched() ) ) {
1837 wfDebug( "Article::tryFileCache(): about to load file\n" );
1838 $cache->loadFromFileCache( $this->getContext() );
1841 wfDebug( "Article::tryFileCache(): starting buffer\n" );
1842 ob_start( array( &$cache, 'saveToFileCache' ) );
1845 wfDebug( "Article::tryFileCache(): not cacheable\n" );
1852 * Check if the page can be cached
1855 public function isFileCacheable() {
1858 if ( HTMLFileCache
::useFileCache( $this->getContext() ) ) {
1859 $cacheable = $this->mPage
->getID()
1860 && !$this->mRedirectedFrom
&& !$this->getTitle()->isRedirect();
1861 // Extension may have reason to disable file caching on some pages.
1863 $cacheable = wfRunHooks( 'IsFileCacheable', array( &$this ) );
1873 * Lightweight method to get the parser output for a page, checking the parser cache
1874 * and so on. Doesn't consider most of the stuff that WikiPage::view is forced to
1875 * consider, so it's not appropriate to use there.
1877 * @since 1.16 (r52326) for LiquidThreads
1879 * @param int|null $oldid Revision ID or null
1880 * @param User $user The relevant user
1881 * @return ParserOutput|bool ParserOutput or false if the given revision ID is not found
1883 public function getParserOutput( $oldid = null, User
$user = null ) {
1884 //XXX: bypasses mParserOptions and thus setParserOptions()
1886 if ( $user === null ) {
1887 $parserOptions = $this->getParserOptions();
1889 $parserOptions = $this->mPage
->makeParserOptions( $user );
1892 return $this->mPage
->getParserOutput( $parserOptions, $oldid );
1896 * Override the ParserOptions used to render the primary article wikitext.
1898 * @param ParserOptions $options
1899 * @throws MWException If the parser options where already initialized.
1901 public function setParserOptions( ParserOptions
$options ) {
1902 if ( $this->mParserOptions
) {
1903 throw new MWException( "can't change parser options after they have already been set" );
1906 // clone, so if $options is modified later, it doesn't confuse the parser cache.
1907 $this->mParserOptions
= clone $options;
1911 * Get parser options suitable for rendering the primary article wikitext
1912 * @return ParserOptions
1914 public function getParserOptions() {
1915 if ( !$this->mParserOptions
) {
1916 $this->mParserOptions
= $this->mPage
->makeParserOptions( $this->getContext() );
1918 // Clone to allow modifications of the return value without affecting cache
1919 return clone $this->mParserOptions
;
1923 * Sets the context this Article is executed in
1925 * @param IContextSource $context
1928 public function setContext( $context ) {
1929 $this->mContext
= $context;
1933 * Gets the context this Article is executed in
1935 * @return IContextSource
1938 public function getContext() {
1939 if ( $this->mContext
instanceof IContextSource
) {
1940 return $this->mContext
;
1942 wfDebug( __METHOD__
. " called and \$mContext is null. " .
1943 "Return RequestContext::getMain(); for sanity\n" );
1944 return RequestContext
::getMain();
1949 * Use PHP's magic __get handler to handle accessing of
1950 * raw WikiPage fields for backwards compatibility.
1952 * @param string $fname Field name
1954 public function __get( $fname ) {
1955 if ( property_exists( $this->mPage
, $fname ) ) {
1956 #wfWarn( "Access to raw $fname field " . __CLASS__ );
1957 return $this->mPage
->$fname;
1959 trigger_error( 'Inaccessible property via __get(): ' . $fname, E_USER_NOTICE
);
1963 * Use PHP's magic __set handler to handle setting of
1964 * raw WikiPage fields for backwards compatibility.
1966 * @param string $fname Field name
1967 * @param mixed $fvalue New value
1969 public function __set( $fname, $fvalue ) {
1970 if ( property_exists( $this->mPage
, $fname ) ) {
1971 #wfWarn( "Access to raw $fname field of " . __CLASS__ );
1972 $this->mPage
->$fname = $fvalue;
1973 // Note: extensions may want to toss on new fields
1974 } elseif ( !in_array( $fname, array( 'mContext', 'mPage' ) ) ) {
1975 $this->mPage
->$fname = $fvalue;
1977 trigger_error( 'Inaccessible property via __set(): ' . $fname, E_USER_NOTICE
);
1982 * Use PHP's magic __call handler to transform instance calls to
1983 * WikiPage functions for backwards compatibility.
1985 * @param string $fname Name of called method
1986 * @param array $args Arguments to the method
1989 public function __call( $fname, $args ) {
1990 if ( is_callable( array( $this->mPage
, $fname ) ) ) {
1991 #wfWarn( "Call to " . __CLASS__ . "::$fname; please use WikiPage instead" );
1992 return call_user_func_array( array( $this->mPage
, $fname ), $args );
1994 trigger_error( 'Inaccessible function via __call(): ' . $fname, E_USER_ERROR
);
1997 // ****** B/C functions to work-around PHP silliness with __call and references ****** //
2000 * @param array $limit
2001 * @param array $expiry
2002 * @param bool $cascade
2003 * @param string $reason
2007 public function doUpdateRestrictions( array $limit, array $expiry, &$cascade,
2010 return $this->mPage
->doUpdateRestrictions( $limit, $expiry, $cascade, $reason, $user );
2014 * @param array $limit
2015 * @param string $reason
2016 * @param int $cascade
2017 * @param array $expiry
2020 public function updateRestrictions( $limit = array(), $reason = '',
2021 &$cascade = 0, $expiry = array()
2023 return $this->mPage
->doUpdateRestrictions(
2028 $this->getContext()->getUser()
2033 * @param string $reason
2034 * @param bool $suppress
2036 * @param bool $commit
2037 * @param string $error
2040 public function doDeleteArticle( $reason, $suppress = false, $id = 0,
2041 $commit = true, &$error = ''
2043 return $this->mPage
->doDeleteArticle( $reason, $suppress, $id, $commit, $error );
2047 * @param string $fromP
2048 * @param string $summary
2049 * @param string $token
2051 * @param array $resultDetails
2052 * @param User|null $user
2055 public function doRollback( $fromP, $summary, $token, $bot, &$resultDetails, User
$user = null ) {
2056 $user = is_null( $user ) ?
$this->getContext()->getUser() : $user;
2057 return $this->mPage
->doRollback( $fromP, $summary, $token, $bot, $resultDetails, $user );
2061 * @param string $fromP
2062 * @param string $summary
2064 * @param array $resultDetails
2065 * @param User|null $guser
2068 public function commitRollback( $fromP, $summary, $bot, &$resultDetails, User
$guser = null ) {
2069 $guser = is_null( $guser ) ?
$this->getContext()->getUser() : $guser;
2070 return $this->mPage
->commitRollback( $fromP, $summary, $bot, $resultDetails, $guser );
2074 * @param bool $hasHistory
2077 public function generateReason( &$hasHistory ) {
2078 $title = $this->mPage
->getTitle();
2079 $handler = ContentHandler
::getForTitle( $title );
2080 return $handler->getAutoDeleteReason( $title, $hasHistory );
2083 // ****** B/C functions for static methods ( __callStatic is PHP>=5.3 ) ****** //
2088 * @deprecated since 1.24, use WikiPage::selectFields() instead
2090 public static function selectFields() {
2091 wfDeprecated( __METHOD__
, '1.24' );
2092 return WikiPage
::selectFields();
2096 * @param Title $title
2098 * @deprecated since 1.24, use WikiPage::onArticleCreate() instead
2100 public static function onArticleCreate( $title ) {
2101 wfDeprecated( __METHOD__
, '1.24' );
2102 WikiPage
::onArticleCreate( $title );
2106 * @param Title $title
2108 * @deprecated since 1.24, use WikiPage::onArticleDelete() instead
2110 public static function onArticleDelete( $title ) {
2111 wfDeprecated( __METHOD__
, '1.24' );
2112 WikiPage
::onArticleDelete( $title );
2116 * @param Title $title
2118 * @deprecated since 1.24, use WikiPage::onArticleEdit() instead
2120 public static function onArticleEdit( $title ) {
2121 wfDeprecated( __METHOD__
, '1.24' );
2122 WikiPage
::onArticleEdit( $title );
2126 * @param string $oldtext
2127 * @param string $newtext
2130 * @deprecated since 1.21, use ContentHandler::getAutosummary() instead
2132 public static function getAutosummary( $oldtext, $newtext, $flags ) {
2133 return WikiPage
::getAutosummary( $oldtext, $newtext, $flags );