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