* Proper redirect deletion
[lhc/web/wiklou.git] / includes / Article.php
1 <?php
2 /**
3 * File for articles
4 */
5
6 /**
7 * Class representing a MediaWiki article and history.
8 *
9 * See design.txt for an overview.
10 * Note: edit user interface and cache support functions have been
11 * moved to separate EditPage and HTMLFileCache classes.
12 *
13 */
14 class Article {
15 /**@{{
16 * @private
17 */
18 var $mComment; //!<
19 var $mContent; //!<
20 var $mContentLoaded; //!<
21 var $mCounter; //!<
22 var $mForUpdate; //!<
23 var $mGoodAdjustment; //!<
24 var $mLatest; //!<
25 var $mMinorEdit; //!<
26 var $mOldId; //!<
27 var $mRedirectedFrom; //!<
28 var $mRedirectUrl; //!<
29 var $mRevIdFetched; //!<
30 var $mRevision; //!<
31 var $mTimestamp; //!<
32 var $mTitle; //!<
33 var $mTotalAdjustment; //!<
34 var $mTouched; //!<
35 var $mUser; //!<
36 var $mUserText; //!<
37 /**@}}*/
38
39 /**
40 * Constants used by internal components to get rollback results
41 */
42 const SUCCESS = 0; // Operation successful
43 const PERM_DENIED = 1; // Permission denied
44 const BLOCKED = 2; // User has been blocked
45 const READONLY = 3; // Wiki is in read-only mode
46 const BAD_TOKEN = 4; // Invalid token specified
47 const BAD_TITLE = 5; // $this is not a valid Article
48 const ALREADY_ROLLED = 6; // Someone else already rolled this back. $from and $summary will be set
49 const ONLY_AUTHOR = 7; // User is the only author of the page
50 const RATE_LIMITED = 8;
51
52 /**
53 * Constructor and clear the article
54 * @param $title Reference to a Title object.
55 * @param $oldId Integer revision ID, null to fetch from request, zero for current
56 */
57 function __construct( &$title, $oldId = null ) {
58 $this->mTitle =& $title;
59 $this->mOldId = $oldId;
60 $this->clear();
61 }
62
63 /**
64 * Tell the page view functions that this view was redirected
65 * from another page on the wiki.
66 * @param $from Title object.
67 */
68 function setRedirectedFrom( $from ) {
69 $this->mRedirectedFrom = $from;
70 }
71
72 /**
73 * @return mixed false, Title of in-wiki target, or string with URL
74 */
75 function followRedirect() {
76 $text = $this->getContent();
77 $rt = Title::newFromRedirect( $text );
78
79 # process if title object is valid and not special:userlogout
80 if( $rt ) {
81 if( $rt->getInterwiki() != '' ) {
82 if( $rt->isLocal() ) {
83 // Offsite wikis need an HTTP redirect.
84 //
85 // This can be hard to reverse and may produce loops,
86 // so they may be disabled in the site configuration.
87
88 $source = $this->mTitle->getFullURL( 'redirect=no' );
89 return $rt->getFullURL( 'rdfrom=' . urlencode( $source ) );
90 }
91 } else {
92 if( $rt->getNamespace() == NS_SPECIAL ) {
93 // Gotta handle redirects to special pages differently:
94 // Fill the HTTP response "Location" header and ignore
95 // the rest of the page we're on.
96 //
97 // This can be hard to reverse, so they may be disabled.
98
99 if( $rt->isSpecial( 'Userlogout' ) ) {
100 // rolleyes
101 } else {
102 return $rt->getFullURL();
103 }
104 }
105 return $rt;
106 }
107 }
108
109 // No or invalid redirect
110 return false;
111 }
112
113 /**
114 * get the title object of the article
115 */
116 function getTitle() {
117 return $this->mTitle;
118 }
119
120 /**
121 * Clear the object
122 * @private
123 */
124 function clear() {
125 $this->mDataLoaded = false;
126 $this->mContentLoaded = false;
127
128 $this->mCurID = $this->mUser = $this->mCounter = -1; # Not loaded
129 $this->mRedirectedFrom = null; # Title object if set
130 $this->mUserText =
131 $this->mTimestamp = $this->mComment = '';
132 $this->mGoodAdjustment = $this->mTotalAdjustment = 0;
133 $this->mTouched = '19700101000000';
134 $this->mForUpdate = false;
135 $this->mIsRedirect = false;
136 $this->mRevIdFetched = 0;
137 $this->mRedirectUrl = false;
138 $this->mLatest = false;
139 $this->mPreparedEdit = false;
140 }
141
142 /**
143 * Note that getContent/loadContent do not follow redirects anymore.
144 * If you need to fetch redirectable content easily, try
145 * the shortcut in Article::followContent()
146 * FIXME
147 * @todo There are still side-effects in this!
148 * In general, you should use the Revision class, not Article,
149 * to fetch text for purposes other than page views.
150 *
151 * @return Return the text of this revision
152 */
153 function getContent() {
154 global $wgUser, $wgOut;
155
156 wfProfileIn( __METHOD__ );
157
158 if ( 0 == $this->getID() ) {
159 wfProfileOut( __METHOD__ );
160 $wgOut->setRobotpolicy( 'noindex,nofollow' );
161
162 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
163 $ret = wfMsgWeirdKey ( $this->mTitle->getText() ) ;
164 } else {
165 $ret = wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' );
166 }
167
168 return "<div class='noarticletext'>$ret</div>";
169 } else {
170 $this->loadContent();
171 wfProfileOut( __METHOD__ );
172 return $this->mContent;
173 }
174 }
175
176 /**
177 * This function returns the text of a section, specified by a number ($section).
178 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
179 * the first section before any such heading (section 0).
180 *
181 * If a section contains subsections, these are also returned.
182 *
183 * @param $text String: text to look in
184 * @param $section Integer: section number
185 * @return string text of the requested section
186 * @deprecated
187 */
188 function getSection($text,$section) {
189 global $wgParser;
190 return $wgParser->getSection( $text, $section );
191 }
192
193 /**
194 * @return int The oldid of the article that is to be shown, 0 for the
195 * current revision
196 */
197 function getOldID() {
198 if ( is_null( $this->mOldId ) ) {
199 $this->mOldId = $this->getOldIDFromRequest();
200 }
201 return $this->mOldId;
202 }
203
204 /**
205 * Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect
206 *
207 * @return int The old id for the request
208 */
209 function getOldIDFromRequest() {
210 global $wgRequest;
211 $this->mRedirectUrl = false;
212 $oldid = $wgRequest->getVal( 'oldid' );
213 if ( isset( $oldid ) ) {
214 $oldid = intval( $oldid );
215 if ( $wgRequest->getVal( 'direction' ) == 'next' ) {
216 $nextid = $this->mTitle->getNextRevisionID( $oldid );
217 if ( $nextid ) {
218 $oldid = $nextid;
219 } else {
220 $this->mRedirectUrl = $this->mTitle->getFullURL( 'redirect=no' );
221 }
222 } elseif ( $wgRequest->getVal( 'direction' ) == 'prev' ) {
223 $previd = $this->mTitle->getPreviousRevisionID( $oldid );
224 if ( $previd ) {
225 $oldid = $previd;
226 } else {
227 # TODO
228 }
229 }
230 # unused:
231 # $lastid = $oldid;
232 }
233
234 if ( !$oldid ) {
235 $oldid = 0;
236 }
237 return $oldid;
238 }
239
240 /**
241 * Load the revision (including text) into this object
242 */
243 function loadContent() {
244 if ( $this->mContentLoaded ) return;
245
246 # Query variables :P
247 $oldid = $this->getOldID();
248
249 # Pre-fill content with error message so that if something
250 # fails we'll have something telling us what we intended.
251 $this->mOldId = $oldid;
252 $this->fetchContent( $oldid );
253 }
254
255
256 /**
257 * Fetch a page record with the given conditions
258 * @param Database $dbr
259 * @param array $conditions
260 * @private
261 */
262 function pageData( $dbr, $conditions ) {
263 $fields = array(
264 'page_id',
265 'page_namespace',
266 'page_title',
267 'page_restrictions',
268 'page_counter',
269 'page_is_redirect',
270 'page_is_new',
271 'page_random',
272 'page_touched',
273 'page_latest',
274 'page_len',
275 );
276 wfRunHooks( 'ArticlePageDataBefore', array( &$this, &$fields ) );
277 $row = $dbr->selectRow(
278 'page',
279 $fields,
280 $conditions,
281 __METHOD__
282 );
283 wfRunHooks( 'ArticlePageDataAfter', array( &$this, &$row ) );
284 return $row ;
285 }
286
287 /**
288 * @param Database $dbr
289 * @param Title $title
290 */
291 function pageDataFromTitle( $dbr, $title ) {
292 return $this->pageData( $dbr, array(
293 'page_namespace' => $title->getNamespace(),
294 'page_title' => $title->getDBkey() ) );
295 }
296
297 /**
298 * @param Database $dbr
299 * @param int $id
300 */
301 function pageDataFromId( $dbr, $id ) {
302 return $this->pageData( $dbr, array( 'page_id' => $id ) );
303 }
304
305 /**
306 * Set the general counter, title etc data loaded from
307 * some source.
308 *
309 * @param object $data
310 * @private
311 */
312 function loadPageData( $data = 'fromdb' ) {
313 if ( $data === 'fromdb' ) {
314 $dbr = $this->getDB();
315 $data = $this->pageDataFromId( $dbr, $this->getId() );
316 }
317
318 $lc =& LinkCache::singleton();
319 if ( $data ) {
320 $lc->addGoodLinkObj( $data->page_id, $this->mTitle );
321
322 $this->mTitle->mArticleID = $data->page_id;
323
324 # Old-fashioned restrictions.
325 $this->mTitle->loadRestrictions( $data->page_restrictions );
326
327 $this->mCounter = $data->page_counter;
328 $this->mTouched = wfTimestamp( TS_MW, $data->page_touched );
329 $this->mIsRedirect = $data->page_is_redirect;
330 $this->mLatest = $data->page_latest;
331 } else {
332 if ( is_object( $this->mTitle ) ) {
333 $lc->addBadLinkObj( $this->mTitle );
334 }
335 $this->mTitle->mArticleID = 0;
336 }
337
338 $this->mDataLoaded = true;
339 }
340
341 /**
342 * Get text of an article from database
343 * Does *NOT* follow redirects.
344 * @param int $oldid 0 for whatever the latest revision is
345 * @return string
346 */
347 function fetchContent( $oldid = 0 ) {
348 if ( $this->mContentLoaded ) {
349 return $this->mContent;
350 }
351
352 $dbr = $this->getDB();
353
354 # Pre-fill content with error message so that if something
355 # fails we'll have something telling us what we intended.
356 $t = $this->mTitle->getPrefixedText();
357 if( $oldid ) {
358 $t .= ',oldid='.$oldid;
359 }
360 $this->mContent = wfMsg( 'missingarticle', $t ) ;
361
362 if( $oldid ) {
363 $revision = Revision::newFromId( $oldid );
364 if( is_null( $revision ) ) {
365 wfDebug( __METHOD__." failed to retrieve specified revision, id $oldid\n" );
366 return false;
367 }
368 $data = $this->pageDataFromId( $dbr, $revision->getPage() );
369 if( !$data ) {
370 wfDebug( __METHOD__." failed to get page data linked to revision id $oldid\n" );
371 return false;
372 }
373 $this->mTitle = Title::makeTitle( $data->page_namespace, $data->page_title );
374 $this->loadPageData( $data );
375 } else {
376 if( !$this->mDataLoaded ) {
377 $data = $this->pageDataFromTitle( $dbr, $this->mTitle );
378 if( !$data ) {
379 wfDebug( __METHOD__." failed to find page data for title " . $this->mTitle->getPrefixedText() . "\n" );
380 return false;
381 }
382 $this->loadPageData( $data );
383 }
384 $revision = Revision::newFromId( $this->mLatest );
385 if( is_null( $revision ) ) {
386 wfDebug( __METHOD__." failed to retrieve current page, rev_id {$data->page_latest}\n" );
387 return false;
388 }
389 }
390
391 // FIXME: Horrible, horrible! This content-loading interface just plain sucks.
392 // We should instead work with the Revision object when we need it...
393 $this->mContent = $revision->userCan( Revision::DELETED_TEXT ) ? $revision->getRawText() : "";
394 //$this->mContent = $revision->getText();
395
396 $this->mUser = $revision->getUser();
397 $this->mUserText = $revision->getUserText();
398 $this->mComment = $revision->getComment();
399 $this->mTimestamp = wfTimestamp( TS_MW, $revision->getTimestamp() );
400
401 $this->mRevIdFetched = $revision->getID();
402 $this->mContentLoaded = true;
403 $this->mRevision =& $revision;
404
405 wfRunHooks( 'ArticleAfterFetchContent', array( &$this, &$this->mContent ) ) ;
406
407 return $this->mContent;
408 }
409
410 /**
411 * Read/write accessor to select FOR UPDATE
412 *
413 * @param $x Mixed: FIXME
414 */
415 function forUpdate( $x = NULL ) {
416 return wfSetVar( $this->mForUpdate, $x );
417 }
418
419 /**
420 * Get the database which should be used for reads
421 *
422 * @return Database
423 */
424 function getDB() {
425 return wfGetDB( DB_MASTER );
426 }
427
428 /**
429 * Get options for all SELECT statements
430 *
431 * @param $options Array: an optional options array which'll be appended to
432 * the default
433 * @return Array: options
434 */
435 function getSelectOptions( $options = '' ) {
436 if ( $this->mForUpdate ) {
437 if ( is_array( $options ) ) {
438 $options[] = 'FOR UPDATE';
439 } else {
440 $options = 'FOR UPDATE';
441 }
442 }
443 return $options;
444 }
445
446 /**
447 * @return int Page ID
448 */
449 function getID() {
450 if( $this->mTitle ) {
451 return $this->mTitle->getArticleID();
452 } else {
453 return 0;
454 }
455 }
456
457 /**
458 * @return bool Whether or not the page exists in the database
459 */
460 function exists() {
461 return $this->getId() != 0;
462 }
463
464 /**
465 * @return int The view count for the page
466 */
467 function getCount() {
468 if ( -1 == $this->mCounter ) {
469 $id = $this->getID();
470 if ( $id == 0 ) {
471 $this->mCounter = 0;
472 } else {
473 $dbr = wfGetDB( DB_SLAVE );
474 $this->mCounter = $dbr->selectField( 'page', 'page_counter', array( 'page_id' => $id ),
475 'Article::getCount', $this->getSelectOptions() );
476 }
477 }
478 return $this->mCounter;
479 }
480
481 /**
482 * Determine whether a page would be suitable for being counted as an
483 * article in the site_stats table based on the title & its content
484 *
485 * @param $text String: text to analyze
486 * @return bool
487 */
488 function isCountable( $text ) {
489 global $wgUseCommaCount;
490
491 $token = $wgUseCommaCount ? ',' : '[[';
492 return
493 $this->mTitle->isContentPage()
494 && !$this->isRedirect( $text )
495 && in_string( $token, $text );
496 }
497
498 /**
499 * Tests if the article text represents a redirect
500 *
501 * @param $text String: FIXME
502 * @return bool
503 */
504 function isRedirect( $text = false ) {
505 if ( $text === false ) {
506 $this->loadContent();
507 $titleObj = Title::newFromRedirect( $this->fetchContent() );
508 } else {
509 $titleObj = Title::newFromRedirect( $text );
510 }
511 return $titleObj !== NULL;
512 }
513
514 /**
515 * Returns true if the currently-referenced revision is the current edit
516 * to this page (and it exists).
517 * @return bool
518 */
519 function isCurrent() {
520 # If no oldid, this is the current version.
521 if ($this->getOldID() == 0)
522 return true;
523
524 return $this->exists() &&
525 isset( $this->mRevision ) &&
526 $this->mRevision->isCurrent();
527 }
528
529 /**
530 * Loads everything except the text
531 * This isn't necessary for all uses, so it's only done if needed.
532 * @private
533 */
534 function loadLastEdit() {
535 if ( -1 != $this->mUser )
536 return;
537
538 # New or non-existent articles have no user information
539 $id = $this->getID();
540 if ( 0 == $id ) return;
541
542 $this->mLastRevision = Revision::loadFromPageId( $this->getDB(), $id );
543 if( !is_null( $this->mLastRevision ) ) {
544 $this->mUser = $this->mLastRevision->getUser();
545 $this->mUserText = $this->mLastRevision->getUserText();
546 $this->mTimestamp = $this->mLastRevision->getTimestamp();
547 $this->mComment = $this->mLastRevision->getComment();
548 $this->mMinorEdit = $this->mLastRevision->isMinor();
549 $this->mRevIdFetched = $this->mLastRevision->getID();
550 }
551 }
552
553 function getTimestamp() {
554 // Check if the field has been filled by ParserCache::get()
555 if ( !$this->mTimestamp ) {
556 $this->loadLastEdit();
557 }
558 return wfTimestamp(TS_MW, $this->mTimestamp);
559 }
560
561 function getUser() {
562 $this->loadLastEdit();
563 return $this->mUser;
564 }
565
566 function getUserText() {
567 $this->loadLastEdit();
568 return $this->mUserText;
569 }
570
571 function getComment() {
572 $this->loadLastEdit();
573 return $this->mComment;
574 }
575
576 function getMinorEdit() {
577 $this->loadLastEdit();
578 return $this->mMinorEdit;
579 }
580
581 function getRevIdFetched() {
582 $this->loadLastEdit();
583 return $this->mRevIdFetched;
584 }
585
586 /**
587 * @todo Document, fixme $offset never used.
588 * @param $limit Integer: default 0.
589 * @param $offset Integer: default 0.
590 */
591 function getContributors($limit = 0, $offset = 0) {
592 # XXX: this is expensive; cache this info somewhere.
593
594 $contribs = array();
595 $dbr = wfGetDB( DB_SLAVE );
596 $revTable = $dbr->tableName( 'revision' );
597 $userTable = $dbr->tableName( 'user' );
598 $user = $this->getUser();
599 $pageId = $this->getId();
600
601 $sql = "SELECT rev_user, rev_user_text, user_real_name, MAX(rev_timestamp) as timestamp
602 FROM $revTable LEFT JOIN $userTable ON rev_user = user_id
603 WHERE rev_page = $pageId
604 AND rev_user != $user
605 GROUP BY rev_user, rev_user_text, user_real_name
606 ORDER BY timestamp DESC";
607
608 if ($limit > 0) { $sql .= ' LIMIT '.$limit; }
609 $sql .= ' '. $this->getSelectOptions();
610
611 $res = $dbr->query($sql, __METHOD__);
612
613 while ( $line = $dbr->fetchObject( $res ) ) {
614 $contribs[] = array($line->rev_user, $line->rev_user_text, $line->user_real_name);
615 }
616
617 $dbr->freeResult($res);
618 return $contribs;
619 }
620
621 /**
622 * This is the default action of the script: just view the page of
623 * the given title.
624 */
625 function view() {
626 global $wgUser, $wgOut, $wgRequest, $wgContLang;
627 global $wgEnableParserCache, $wgStylePath, $wgParser;
628 global $wgUseTrackbacks, $wgNamespaceRobotPolicies, $wgArticleRobotPolicies;
629 $sk = $wgUser->getSkin();
630
631 wfProfileIn( __METHOD__ );
632
633 $parserCache =& ParserCache::singleton();
634 $ns = $this->mTitle->getNamespace(); # shortcut
635
636 # Get variables from query string
637 $oldid = $this->getOldID();
638
639 # getOldID may want us to redirect somewhere else
640 if ( $this->mRedirectUrl ) {
641 $wgOut->redirect( $this->mRedirectUrl );
642 wfProfileOut( __METHOD__ );
643 return;
644 }
645
646 $diff = $wgRequest->getVal( 'diff' );
647 $rcid = $wgRequest->getVal( 'rcid' );
648 $rdfrom = $wgRequest->getVal( 'rdfrom' );
649 $diffOnly = $wgRequest->getBool( 'diffonly', $wgUser->getOption( 'diffonly' ) );
650 $purge = $wgRequest->getVal( 'action' ) == 'purge';
651
652 $wgOut->setArticleFlag( true );
653
654 # Discourage indexing of printable versions, but encourage following
655 if( $wgOut->isPrintable() ) {
656 $policy = 'noindex,follow';
657 } elseif ( isset( $wgArticleRobotPolicies[$this->mTitle->getPrefixedText()] ) ) {
658 $policy = $wgArticleRobotPolicies[$this->mTitle->getPrefixedText()];
659 } elseif( isset( $wgNamespaceRobotPolicies[$ns] ) ) {
660 # Honour customised robot policies for this namespace
661 $policy = $wgNamespaceRobotPolicies[$ns];
662 } else {
663 # Default to encourage indexing and following links
664 $policy = 'index,follow';
665 }
666 $wgOut->setRobotPolicy( $policy );
667
668 # If we got diff and oldid in the query, we want to see a
669 # diff page instead of the article.
670
671 if ( !is_null( $diff ) ) {
672 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
673
674 $de = new DifferenceEngine( $this->mTitle, $oldid, $diff, $rcid, $purge );
675 // DifferenceEngine directly fetched the revision:
676 $this->mRevIdFetched = $de->mNewid;
677 $de->showDiffPage( $diffOnly );
678
679 // Needed to get the page's current revision
680 $this->loadPageData();
681 if( $diff == 0 || $diff == $this->mLatest ) {
682 # Run view updates for current revision only
683 $this->viewUpdates();
684 }
685 wfProfileOut( __METHOD__ );
686 return;
687 }
688
689 if ( empty( $oldid ) && $this->checkTouched() ) {
690 $wgOut->setETag($parserCache->getETag($this, $wgUser));
691
692 if( $wgOut->checkLastModified( $this->mTouched ) ){
693 wfProfileOut( __METHOD__ );
694 return;
695 } else if ( $this->tryFileCache() ) {
696 # tell wgOut that output is taken care of
697 $wgOut->disable();
698 $this->viewUpdates();
699 wfProfileOut( __METHOD__ );
700 return;
701 }
702 }
703
704 # Should the parser cache be used?
705 $pcache = $wgEnableParserCache
706 && intval( $wgUser->getOption( 'stubthreshold' ) ) == 0
707 && $this->exists()
708 && empty( $oldid )
709 && !$this->mTitle->isCssOrJsPage()
710 && !$this->mTitle->isCssJsSubpage();
711 wfDebug( 'Article::view using parser cache: ' . ($pcache ? 'yes' : 'no' ) . "\n" );
712 if ( $wgUser->getOption( 'stubthreshold' ) ) {
713 wfIncrStats( 'pcache_miss_stub' );
714 }
715
716 $wasRedirected = false;
717 if ( isset( $this->mRedirectedFrom ) ) {
718 // This is an internally redirected page view.
719 // We'll need a backlink to the source page for navigation.
720 if ( wfRunHooks( 'ArticleViewRedirect', array( &$this ) ) ) {
721 $sk = $wgUser->getSkin();
722 $redir = $sk->makeKnownLinkObj( $this->mRedirectedFrom, '', 'redirect=no' );
723 $s = wfMsg( 'redirectedfrom', $redir );
724 $wgOut->setSubtitle( $s );
725
726 // Set the fragment if one was specified in the redirect
727 if ( strval( $this->mTitle->getFragment() ) != '' ) {
728 $fragment = Xml::escapeJsString( $this->mTitle->getFragmentForURL() );
729 $wgOut->addInlineScript( "redirectToFragment(\"$fragment\");" );
730 }
731 $wasRedirected = true;
732 }
733 } elseif ( !empty( $rdfrom ) ) {
734 // This is an externally redirected view, from some other wiki.
735 // If it was reported from a trusted site, supply a backlink.
736 global $wgRedirectSources;
737 if( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
738 $sk = $wgUser->getSkin();
739 $redir = $sk->makeExternalLink( $rdfrom, $rdfrom );
740 $s = wfMsg( 'redirectedfrom', $redir );
741 $wgOut->setSubtitle( $s );
742 $wasRedirected = true;
743 }
744 }
745
746 $outputDone = false;
747 wfRunHooks( 'ArticleViewHeader', array( &$this, &$outputDone, &$pcache ) );
748 if ( $pcache ) {
749 if ( $wgOut->tryParserCache( $this, $wgUser ) ) {
750 // Ensure that UI elements requiring revision ID have
751 // the correct version information.
752 $wgOut->setRevisionId( $this->mLatest );
753 $outputDone = true;
754 }
755 }
756 if ( !$outputDone ) {
757 $text = $this->getContent();
758 if ( $text === false ) {
759 # Failed to load, replace text with error message
760 $t = $this->mTitle->getPrefixedText();
761 if( $oldid ) {
762 $t .= ',oldid='.$oldid;
763 $text = wfMsg( 'missingarticle', $t );
764 } else {
765 $text = wfMsg( 'noarticletext', $t );
766 }
767 }
768
769 # Another whitelist check in case oldid is altering the title
770 if ( !$this->mTitle->userCanRead() ) {
771 $wgOut->loginToUse();
772 $wgOut->output();
773 exit;
774 }
775
776 # We're looking at an old revision
777
778 if ( !empty( $oldid ) ) {
779 $wgOut->setRobotpolicy( 'noindex,nofollow' );
780 if( is_null( $this->mRevision ) ) {
781 // FIXME: This would be a nice place to load the 'no such page' text.
782 } else {
783 $this->setOldSubtitle( isset($this->mOldId) ? $this->mOldId : $oldid );
784 if( $this->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
785 if( !$this->mRevision->userCan( Revision::DELETED_TEXT ) ) {
786 $wgOut->addWikiText( wfMsg( 'rev-deleted-text-permission' ) );
787 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
788 return;
789 } else {
790 $wgOut->addWikiText( wfMsg( 'rev-deleted-text-view' ) );
791 // and we are allowed to see...
792 }
793 }
794 }
795
796 }
797 }
798 if( !$outputDone ) {
799 $wgOut->setRevisionId( $this->getRevIdFetched() );
800
801 // Pages containing custom CSS or JavaScript get special treatment
802 if( $this->mTitle->isCssOrJsPage() || $this->mTitle->isCssJsSubpage() ) {
803 $wgOut->addHtml( wfMsgExt( 'clearyourcache', 'parse' ) );
804
805 // Give hooks a chance to customise the output
806 if( wfRunHooks( 'ShowRawCssJs', array( $this->mContent, $this->mTitle, $wgOut ) ) ) {
807 // Wrap the whole lot in a <pre> and don't parse
808 $m = array();
809 preg_match( '!\.(css|js)$!u', $this->mTitle->getText(), $m );
810 $wgOut->addHtml( "<pre class=\"mw-code mw-{$m[1]}\" dir=\"ltr\">\n" );
811 $wgOut->addHtml( htmlspecialchars( $this->mContent ) );
812 $wgOut->addHtml( "\n</pre>\n" );
813 }
814
815 }
816
817 elseif ( $rt = Title::newFromRedirect( $text ) ) {
818 # Display redirect
819 $imageDir = $wgContLang->isRTL() ? 'rtl' : 'ltr';
820 $imageUrl = $wgStylePath.'/common/images/redirect' . $imageDir . '.png';
821 # Don't overwrite the subtitle if this was an old revision
822 if( !$wasRedirected && $this->isCurrent() ) {
823 $wgOut->setSubtitle( wfMsgHtml( 'redirectpagesub' ) );
824 }
825 $link = $sk->makeLinkObj( $rt, $rt->getFullText() );
826
827 $wgOut->addHTML( '<img src="'.$imageUrl.'" alt="#REDIRECT " />' .
828 '<span class="redirectText">'.$link.'</span>' );
829
830 $parseout = $wgParser->parse($text, $this->mTitle, ParserOptions::newFromUser($wgUser));
831 $wgOut->addParserOutputNoText( $parseout );
832 } else if ( $pcache ) {
833 # Display content and save to parser cache
834 $this->outputWikiText( $text );
835 } else {
836 # Display content, don't attempt to save to parser cache
837 # Don't show section-edit links on old revisions... this way lies madness.
838 if( !$this->isCurrent() ) {
839 $oldEditSectionSetting = $wgOut->parserOptions()->setEditSection( false );
840 }
841 # Display content and don't save to parser cache
842 # With timing hack -- TS 2006-07-26
843 $time = -wfTime();
844 $this->outputWikiText( $text, false );
845 $time += wfTime();
846
847 # Timing hack
848 if ( $time > 3 ) {
849 wfDebugLog( 'slow-parse', sprintf( "%-5.2f %s", $time,
850 $this->mTitle->getPrefixedDBkey()));
851 }
852
853 if( !$this->isCurrent() ) {
854 $wgOut->parserOptions()->setEditSection( $oldEditSectionSetting );
855 }
856
857 }
858 }
859 /* title may have been set from the cache */
860 $t = $wgOut->getPageTitle();
861 if( empty( $t ) ) {
862 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
863 }
864
865 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
866 if( $ns == NS_USER_TALK &&
867 User::isIP( $this->mTitle->getText() ) ) {
868 $wgOut->addWikiText( wfMsg('anontalkpagetext') );
869 }
870
871 # If we have been passed an &rcid= parameter, we want to give the user a
872 # chance to mark this new article as patrolled.
873 if( !is_null( $rcid ) && $rcid != 0 && $wgUser->isAllowed( 'patrol' ) && $this->mTitle->exists() ) {
874 $wgOut->addHTML(
875 "<div class='patrollink'>" .
876 wfMsgHtml( 'markaspatrolledlink',
877 $sk->makeKnownLinkObj( $this->mTitle, wfMsgHtml('markaspatrolledtext'),
878 "action=markpatrolled&rcid=$rcid" )
879 ) .
880 '</div>'
881 );
882 }
883
884 # Trackbacks
885 if ($wgUseTrackbacks)
886 $this->addTrackbacks();
887
888 $this->viewUpdates();
889 wfProfileOut( __METHOD__ );
890 }
891
892 function addTrackbacks() {
893 global $wgOut, $wgUser;
894
895 $dbr = wfGetDB(DB_SLAVE);
896 $tbs = $dbr->select(
897 /* FROM */ 'trackbacks',
898 /* SELECT */ array('tb_id', 'tb_title', 'tb_url', 'tb_ex', 'tb_name'),
899 /* WHERE */ array('tb_page' => $this->getID())
900 );
901
902 if (!$dbr->numrows($tbs))
903 return;
904
905 $tbtext = "";
906 while ($o = $dbr->fetchObject($tbs)) {
907 $rmvtxt = "";
908 if ($wgUser->isAllowed( 'trackback' )) {
909 $delurl = $this->mTitle->getFullURL("action=deletetrackback&tbid="
910 . $o->tb_id . "&token=" . urlencode( $wgUser->editToken() ) );
911 $rmvtxt = wfMsg( 'trackbackremove', htmlspecialchars( $delurl ) );
912 }
913 $tbtext .= wfMsg(strlen($o->tb_ex) ? 'trackbackexcerpt' : 'trackback',
914 $o->tb_title,
915 $o->tb_url,
916 $o->tb_ex,
917 $o->tb_name,
918 $rmvtxt);
919 }
920 $wgOut->addWikitext(wfMsg('trackbackbox', $tbtext));
921 }
922
923 function deletetrackback() {
924 global $wgUser, $wgRequest, $wgOut, $wgTitle;
925
926 if (!$wgUser->matchEditToken($wgRequest->getVal('token'))) {
927 $wgOut->addWikitext(wfMsg('sessionfailure'));
928 return;
929 }
930
931 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'delete', $wgUser );
932
933 if (count($permission_errors)>0)
934 {
935 $wgOut->showPermissionsErrorPage( $permission_errors );
936 return;
937 }
938
939 $db = wfGetDB(DB_MASTER);
940 $db->delete('trackbacks', array('tb_id' => $wgRequest->getInt('tbid')));
941 $wgTitle->invalidateCache();
942 $wgOut->addWikiText(wfMsg('trackbackdeleteok'));
943 }
944
945 function render() {
946 global $wgOut;
947
948 $wgOut->setArticleBodyOnly(true);
949 $this->view();
950 }
951
952 /**
953 * Handle action=purge
954 */
955 function purge() {
956 global $wgUser, $wgRequest, $wgOut;
957
958 if ( $wgUser->isAllowed( 'purge' ) || $wgRequest->wasPosted() ) {
959 if( wfRunHooks( 'ArticlePurge', array( &$this ) ) ) {
960 $this->doPurge();
961 }
962 } else {
963 $msg = $wgOut->parse( wfMsg( 'confirm_purge' ) );
964 $action = htmlspecialchars( $_SERVER['REQUEST_URI'] );
965 $button = htmlspecialchars( wfMsg( 'confirm_purge_button' ) );
966 $msg = str_replace( '$1',
967 "<form method=\"post\" action=\"$action\">\n" .
968 "<input type=\"submit\" name=\"submit\" value=\"$button\" />\n" .
969 "</form>\n", $msg );
970
971 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
972 $wgOut->setRobotpolicy( 'noindex,nofollow' );
973 $wgOut->addHTML( $msg );
974 }
975 }
976
977 /**
978 * Perform the actions of a page purging
979 */
980 function doPurge() {
981 global $wgUseSquid;
982 // Invalidate the cache
983 $this->mTitle->invalidateCache();
984
985 if ( $wgUseSquid ) {
986 // Commit the transaction before the purge is sent
987 $dbw = wfGetDB( DB_MASTER );
988 $dbw->immediateCommit();
989
990 // Send purge
991 $update = SquidUpdate::newSimplePurge( $this->mTitle );
992 $update->doUpdate();
993 }
994 $this->view();
995 }
996
997 /**
998 * Insert a new empty page record for this article.
999 * This *must* be followed up by creating a revision
1000 * and running $this->updateToLatest( $rev_id );
1001 * or else the record will be left in a funky state.
1002 * Best if all done inside a transaction.
1003 *
1004 * @param Database $dbw
1005 * @return int The newly created page_id key
1006 * @private
1007 */
1008 function insertOn( $dbw ) {
1009 wfProfileIn( __METHOD__ );
1010
1011 $page_id = $dbw->nextSequenceValue( 'page_page_id_seq' );
1012 $dbw->insert( 'page', array(
1013 'page_id' => $page_id,
1014 'page_namespace' => $this->mTitle->getNamespace(),
1015 'page_title' => $this->mTitle->getDBkey(),
1016 'page_counter' => 0,
1017 'page_restrictions' => '',
1018 'page_is_redirect' => 0, # Will set this shortly...
1019 'page_is_new' => 1,
1020 'page_random' => wfRandom(),
1021 'page_touched' => $dbw->timestamp(),
1022 'page_latest' => 0, # Fill this in shortly...
1023 'page_len' => 0, # Fill this in shortly...
1024 ), __METHOD__ );
1025 $newid = $dbw->insertId();
1026
1027 $this->mTitle->resetArticleId( $newid );
1028
1029 wfProfileOut( __METHOD__ );
1030 return $newid;
1031 }
1032
1033 /**
1034 * Update the page record to point to a newly saved revision.
1035 *
1036 * @param Database $dbw
1037 * @param Revision $revision For ID number, and text used to set
1038 length and redirect status fields
1039 * @param int $lastRevision If given, will not overwrite the page field
1040 * when different from the currently set value.
1041 * Giving 0 indicates the new page flag should
1042 * be set on.
1043 * @param bool $lastRevIsRedirect If given, will optimize adding and
1044 * removing rows in redirect table.
1045 * @return bool true on success, false on failure
1046 * @private
1047 */
1048 function updateRevisionOn( &$dbw, $revision, $lastRevision = null, $lastRevIsRedirect = null ) {
1049 wfProfileIn( __METHOD__ );
1050
1051 $text = $revision->getText();
1052 $rt = Title::newFromRedirect( $text );
1053
1054 $conditions = array( 'page_id' => $this->getId() );
1055 if( !is_null( $lastRevision ) ) {
1056 # An extra check against threads stepping on each other
1057 $conditions['page_latest'] = $lastRevision;
1058 }
1059
1060 $dbw->update( 'page',
1061 array( /* SET */
1062 'page_latest' => $revision->getId(),
1063 'page_touched' => $dbw->timestamp(),
1064 'page_is_new' => ($lastRevision === 0) ? 1 : 0,
1065 'page_is_redirect' => $rt !== NULL ? 1 : 0,
1066 'page_len' => strlen( $text ),
1067 ),
1068 $conditions,
1069 __METHOD__ );
1070
1071 $result = $dbw->affectedRows() != 0;
1072
1073 if ($result) {
1074 // FIXME: Should the result from updateRedirectOn() be returned instead?
1075 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1076 }
1077
1078 wfProfileOut( __METHOD__ );
1079 return $result;
1080 }
1081
1082 /**
1083 * Add row to the redirect table if this is a redirect, remove otherwise.
1084 *
1085 * @param Database $dbw
1086 * @param $redirectTitle a title object pointing to the redirect target,
1087 * or NULL if this is not a redirect
1088 * @param bool $lastRevIsRedirect If given, will optimize adding and
1089 * removing rows in redirect table.
1090 * @return bool true on success, false on failure
1091 * @private
1092 */
1093 function updateRedirectOn( &$dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1094
1095 // Always update redirects (target link might have changed)
1096 // Update/Insert if we don't know if the last revision was a redirect or not
1097 // Delete if changing from redirect to non-redirect
1098 $isRedirect = !is_null($redirectTitle);
1099 if ($isRedirect || is_null($lastRevIsRedirect) || $lastRevIsRedirect !== $isRedirect) {
1100
1101 $imageResult = true; //Result of imageredirects handling
1102 if( $this->mTitle->getNamespace() == NS_IMAGE ) {
1103 wfProfileIn( __METHOD__ . "-img" );
1104
1105 $exists = $redirectTitle ? RepoGroup::singleton()->findFile( $redirectTitle->getDBkey() ) !== false : false;
1106 if( $isRedirect && $redirectTitle->getNamespace() == NS_IMAGE && $exists ) {
1107 $set = array(
1108 'ir_from' => $this->mTitle->getDBkey(),
1109 'ir_to' => $redirectTitle->getDBkey(),
1110 );
1111 $dbw->replace( 'imageredirects', array( 'ir_from' ), $set, __METHOD__ );
1112 $imageResult = $dbw->affectedRows() != 0;
1113 } else {
1114 // Non-redirect or redirect to non-image
1115 $where = array( 'ir_from' => $this->mTitle->getDBkey() );
1116 $dbw->delete( 'imageredirects', $where, __METHOD__ );
1117 }
1118
1119 wfProfileOut( __METHOD__ . "-img" );
1120 }
1121
1122 wfProfileIn( __METHOD__ );
1123
1124 if ($isRedirect) {
1125
1126 // This title is a redirect, Add/Update row in the redirect table
1127 $set = array( /* SET */
1128 'rd_namespace' => $redirectTitle->getNamespace(),
1129 'rd_title' => $redirectTitle->getDBkey(),
1130 'rd_from' => $this->getId(),
1131 );
1132
1133 $dbw->replace( 'redirect', array( 'rd_from' ), $set, __METHOD__ );
1134 } else {
1135 // This is not a redirect, remove row from redirect table
1136 $where = array( 'rd_from' => $this->getId() );
1137 $dbw->delete( 'redirect', $where, __METHOD__);
1138 }
1139
1140 wfProfileOut( __METHOD__ );
1141 return ( $dbw->affectedRows() != 0 ) && $imageResult;
1142 }
1143
1144 return true;
1145 }
1146
1147 /**
1148 * If the given revision is newer than the currently set page_latest,
1149 * update the page record. Otherwise, do nothing.
1150 *
1151 * @param Database $dbw
1152 * @param Revision $revision
1153 */
1154 function updateIfNewerOn( &$dbw, $revision ) {
1155 wfProfileIn( __METHOD__ );
1156
1157 $row = $dbw->selectRow(
1158 array( 'revision', 'page' ),
1159 array( 'rev_id', 'rev_timestamp', 'page_is_redirect' ),
1160 array(
1161 'page_id' => $this->getId(),
1162 'page_latest=rev_id' ),
1163 __METHOD__ );
1164 if( $row ) {
1165 if( wfTimestamp(TS_MW, $row->rev_timestamp) >= $revision->getTimestamp() ) {
1166 wfProfileOut( __METHOD__ );
1167 return false;
1168 }
1169 $prev = $row->rev_id;
1170 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1171 } else {
1172 # No or missing previous revision; mark the page as new
1173 $prev = 0;
1174 $lastRevIsRedirect = null;
1175 }
1176
1177 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1178 wfProfileOut( __METHOD__ );
1179 return $ret;
1180 }
1181
1182 /**
1183 * @return string Complete article text, or null if error
1184 */
1185 function replaceSection($section, $text, $summary = '', $edittime = NULL) {
1186 wfProfileIn( __METHOD__ );
1187
1188 if( $section == '' ) {
1189 // Whole-page edit; let the text through unmolested.
1190 } else {
1191 if( is_null( $edittime ) ) {
1192 $rev = Revision::newFromTitle( $this->mTitle );
1193 } else {
1194 $dbw = wfGetDB( DB_MASTER );
1195 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1196 }
1197 if( is_null( $rev ) ) {
1198 wfDebug( "Article::replaceSection asked for bogus section (page: " .
1199 $this->getId() . "; section: $section; edittime: $edittime)\n" );
1200 return null;
1201 }
1202 $oldtext = $rev->getText();
1203
1204 if( $section == 'new' ) {
1205 # Inserting a new section
1206 $subject = $summary ? wfMsgForContent('newsectionheaderdefaultlevel',$summary) . "\n\n" : '';
1207 $text = strlen( trim( $oldtext ) ) > 0
1208 ? "{$oldtext}\n\n{$subject}{$text}"
1209 : "{$subject}{$text}";
1210 } else {
1211 # Replacing an existing section; roll out the big guns
1212 global $wgParser;
1213 $text = $wgParser->replaceSection( $oldtext, $section, $text );
1214 }
1215
1216 }
1217
1218 wfProfileOut( __METHOD__ );
1219 return $text;
1220 }
1221
1222 /**
1223 * @deprecated use Article::doEdit()
1224 */
1225 function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false ) {
1226 $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1227 ( $isminor ? EDIT_MINOR : 0 ) |
1228 ( $suppressRC ? EDIT_SUPPRESS_RC : 0 );
1229
1230 # If this is a comment, add the summary as headline
1231 if ( $comment && $summary != "" ) {
1232 $text = wfMsgForContent('newsectionheaderdefaultlevel',$summary) . "\n\n".$text;
1233 }
1234
1235 $this->doEdit( $text, $summary, $flags );
1236
1237 $dbw = wfGetDB( DB_MASTER );
1238 if ($watchthis) {
1239 if (!$this->mTitle->userIsWatching()) {
1240 $dbw->begin();
1241 $this->doWatch();
1242 $dbw->commit();
1243 }
1244 } else {
1245 if ( $this->mTitle->userIsWatching() ) {
1246 $dbw->begin();
1247 $this->doUnwatch();
1248 $dbw->commit();
1249 }
1250 }
1251 $this->doRedirect( $this->isRedirect( $text ) );
1252 }
1253
1254 /**
1255 * @deprecated use Article::doEdit()
1256 */
1257 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
1258 $flags = EDIT_UPDATE | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1259 ( $minor ? EDIT_MINOR : 0 ) |
1260 ( $forceBot ? EDIT_FORCE_BOT : 0 );
1261
1262 $good = $this->doEdit( $text, $summary, $flags );
1263 if ( $good ) {
1264 $dbw = wfGetDB( DB_MASTER );
1265 if ($watchthis) {
1266 if (!$this->mTitle->userIsWatching()) {
1267 $dbw->begin();
1268 $this->doWatch();
1269 $dbw->commit();
1270 }
1271 } else {
1272 if ( $this->mTitle->userIsWatching() ) {
1273 $dbw->begin();
1274 $this->doUnwatch();
1275 $dbw->commit();
1276 }
1277 }
1278
1279 $extraq = ''; // Give extensions a chance to modify URL query on update
1280 wfRunHooks( 'ArticleUpdateBeforeRedirect', array( $this, &$sectionanchor, &$extraq ) );
1281
1282 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor, $extraq );
1283 }
1284 return $good;
1285 }
1286
1287 /**
1288 * Article::doEdit()
1289 *
1290 * Change an existing article or create a new article. Updates RC and all necessary caches,
1291 * optionally via the deferred update array.
1292 *
1293 * $wgUser must be set before calling this function.
1294 *
1295 * @param string $text New text
1296 * @param string $summary Edit summary
1297 * @param integer $flags bitfield:
1298 * EDIT_NEW
1299 * Article is known or assumed to be non-existent, create a new one
1300 * EDIT_UPDATE
1301 * Article is known or assumed to be pre-existing, update it
1302 * EDIT_MINOR
1303 * Mark this edit minor, if the user is allowed to do so
1304 * EDIT_SUPPRESS_RC
1305 * Do not log the change in recentchanges
1306 * EDIT_FORCE_BOT
1307 * Mark the edit a "bot" edit regardless of user rights
1308 * EDIT_DEFER_UPDATES
1309 * Defer some of the updates until the end of index.php
1310 * EDIT_AUTOSUMMARY
1311 * Fill in blank summaries with generated text where possible
1312 *
1313 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1314 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return false. If
1315 * EDIT_NEW is specified and the article does exist, a duplicate key error will cause an exception
1316 * to be thrown from the Database. These two conditions are also possible with auto-detection due
1317 * to MediaWiki's performance-optimised locking strategy.
1318 *
1319 * @return bool success
1320 */
1321 function doEdit( $text, $summary, $flags = 0 ) {
1322 global $wgUser, $wgDBtransactions;
1323
1324 wfProfileIn( __METHOD__ );
1325 $good = true;
1326
1327 if ( !($flags & EDIT_NEW) && !($flags & EDIT_UPDATE) ) {
1328 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
1329 if ( $aid ) {
1330 $flags |= EDIT_UPDATE;
1331 } else {
1332 $flags |= EDIT_NEW;
1333 }
1334 }
1335
1336 if( !wfRunHooks( 'ArticleSave', array( &$this, &$wgUser, &$text,
1337 &$summary, $flags & EDIT_MINOR,
1338 null, null, &$flags ) ) )
1339 {
1340 wfDebug( __METHOD__ . ": ArticleSave hook aborted save!\n" );
1341 wfProfileOut( __METHOD__ );
1342 return false;
1343 }
1344
1345 # Silently ignore EDIT_MINOR if not allowed
1346 $isminor = ( $flags & EDIT_MINOR ) && $wgUser->isAllowed('minoredit');
1347 $bot = $wgUser->isAllowed( 'bot' ) || ( $flags & EDIT_FORCE_BOT );
1348
1349 $oldtext = $this->getContent();
1350 $oldsize = strlen( $oldtext );
1351
1352 # Provide autosummaries if one is not provided.
1353 if ($flags & EDIT_AUTOSUMMARY && $summary == '')
1354 $summary = $this->getAutosummary( $oldtext, $text, $flags );
1355
1356 $editInfo = $this->prepareTextForEdit( $text );
1357 $text = $editInfo->pst;
1358 $newsize = strlen( $text );
1359
1360 $dbw = wfGetDB( DB_MASTER );
1361 $now = wfTimestampNow();
1362
1363 if ( $flags & EDIT_UPDATE ) {
1364 # Update article, but only if changed.
1365
1366 # Make sure the revision is either completely inserted or not inserted at all
1367 if( !$wgDBtransactions ) {
1368 $userAbort = ignore_user_abort( true );
1369 }
1370
1371 $lastRevision = 0;
1372 $revisionId = 0;
1373
1374 if ( 0 != strcmp( $text, $oldtext ) ) {
1375 $this->mGoodAdjustment = (int)$this->isCountable( $text )
1376 - (int)$this->isCountable( $oldtext );
1377 $this->mTotalAdjustment = 0;
1378
1379 $lastRevision = $dbw->selectField(
1380 'page', 'page_latest', array( 'page_id' => $this->getId() ) );
1381
1382 if ( !$lastRevision ) {
1383 # Article gone missing
1384 wfDebug( __METHOD__.": EDIT_UPDATE specified but article doesn't exist\n" );
1385 wfProfileOut( __METHOD__ );
1386 return false;
1387 }
1388
1389 $revision = new Revision( array(
1390 'page' => $this->getId(),
1391 'comment' => $summary,
1392 'minor_edit' => $isminor,
1393 'text' => $text
1394 ) );
1395
1396 $dbw->begin();
1397 $revisionId = $revision->insertOn( $dbw );
1398
1399 # Update page
1400 $ok = $this->updateRevisionOn( $dbw, $revision, $lastRevision );
1401
1402 if( !$ok ) {
1403 /* Belated edit conflict! Run away!! */
1404 $good = false;
1405 $dbw->rollback();
1406 } else {
1407 # Update recentchanges
1408 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1409 $rcid = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $wgUser, $summary,
1410 $lastRevision, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
1411 $revisionId );
1412
1413 # Mark as patrolled if the user can do so
1414 if( $GLOBALS['wgUseRCPatrol'] && $wgUser->isAllowed( 'autopatrol' ) ) {
1415 RecentChange::markPatrolled( $rcid );
1416 PatrolLog::record( $rcid, true );
1417 }
1418 }
1419 $wgUser->incEditCount();
1420 $dbw->commit();
1421 }
1422 } else {
1423 $revision = null;
1424 // Keep the same revision ID, but do some updates on it
1425 $revisionId = $this->getRevIdFetched();
1426 // Update page_touched, this is usually implicit in the page update
1427 // Other cache updates are done in onArticleEdit()
1428 $this->mTitle->invalidateCache();
1429 }
1430
1431 if( !$wgDBtransactions ) {
1432 ignore_user_abort( $userAbort );
1433 }
1434
1435 if ( $good ) {
1436 # Invalidate cache of this article and all pages using this article
1437 # as a template. Partly deferred.
1438 Article::onArticleEdit( $this->mTitle );
1439
1440 # Update links tables, site stats, etc.
1441 $changed = ( strcmp( $oldtext, $text ) != 0 );
1442 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, $changed );
1443 }
1444 } else {
1445 # Create new article
1446
1447 # Set statistics members
1448 # We work out if it's countable after PST to avoid counter drift
1449 # when articles are created with {{subst:}}
1450 $this->mGoodAdjustment = (int)$this->isCountable( $text );
1451 $this->mTotalAdjustment = 1;
1452
1453 $dbw->begin();
1454
1455 # Add the page record; stake our claim on this title!
1456 # This will fail with a database query exception if the article already exists
1457 $newid = $this->insertOn( $dbw );
1458
1459 # Save the revision text...
1460 $revision = new Revision( array(
1461 'page' => $newid,
1462 'comment' => $summary,
1463 'minor_edit' => $isminor,
1464 'text' => $text
1465 ) );
1466 $revisionId = $revision->insertOn( $dbw );
1467
1468 $this->mTitle->resetArticleID( $newid );
1469
1470 # Update the page record with revision data
1471 $this->updateRevisionOn( $dbw, $revision, 0 );
1472
1473 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1474 $rcid = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary, $bot,
1475 '', strlen( $text ), $revisionId );
1476 # Mark as patrolled if the user can
1477 if( ($GLOBALS['wgUseRCPatrol'] || $GLOBALS['wgUseNPPatrol']) && $wgUser->isAllowed( 'autopatrol' ) ) {
1478 RecentChange::markPatrolled( $rcid );
1479 PatrolLog::record( $rcid, true );
1480 }
1481 }
1482 $wgUser->incEditCount();
1483 $dbw->commit();
1484
1485 # Update links, etc.
1486 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, true );
1487
1488 # Clear caches
1489 Article::onArticleCreate( $this->mTitle );
1490
1491 wfRunHooks( 'ArticleInsertComplete', array( &$this, &$wgUser, $text, $summary,
1492 $flags & EDIT_MINOR, null, null, &$flags, $revision ) );
1493 }
1494
1495 if ( $good && !( $flags & EDIT_DEFER_UPDATES ) ) {
1496 wfDoUpdates();
1497 }
1498
1499 if ( $good ) {
1500 wfRunHooks( 'ArticleSaveComplete', array( &$this, &$wgUser, $text, $summary,
1501 $flags & EDIT_MINOR, null, null, &$flags, $revision ) );
1502 }
1503
1504 wfProfileOut( __METHOD__ );
1505 return $good;
1506 }
1507
1508 /**
1509 * @deprecated wrapper for doRedirect
1510 */
1511 function showArticle( $text, $subtitle , $sectionanchor = '', $me2, $now, $summary, $oldid ) {
1512 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1513 }
1514
1515 /**
1516 * Output a redirect back to the article.
1517 * This is typically used after an edit.
1518 *
1519 * @param boolean $noRedir Add redirect=no
1520 * @param string $sectionAnchor section to redirect to, including "#"
1521 */
1522 function doRedirect( $noRedir = false, $sectionAnchor = '', $extraq = '' ) {
1523 global $wgOut;
1524 if ( $noRedir ) {
1525 $query = 'redirect=no';
1526 if( $extraq )
1527 $query .= "&$query";
1528 } else {
1529 $query = $extraq;
1530 }
1531 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $sectionAnchor );
1532 }
1533
1534 /**
1535 * Mark this particular edit/page as patrolled
1536 */
1537 function markpatrolled() {
1538 global $wgOut, $wgRequest, $wgUseRCPatrol, $wgUseNPPatrol, $wgUser;
1539 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1540
1541 # Check patrol config options
1542
1543 if ( !($wgUseNPPatrol || $wgUseRCPatrol)) {
1544 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1545 return;
1546 }
1547
1548 # If we haven't been given an rc_id value, we can't do anything
1549 $rcid = (int) $wgRequest->getVal('rcid');
1550 $rc = $rcid ? RecentChange::newFromId($rcid) : null;
1551 if ( is_null ( $rc ) )
1552 {
1553 $wgOut->errorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1554 return;
1555 }
1556
1557 if ( !$wgUseRCPatrol && $rc->mAttribs['rc_type'] != RC_NEW) {
1558 // Only new pages can be patrolled if the general patrolling is off....???
1559 // @fixme -- is this necessary? Shouldn't we only bother controlling the
1560 // front end here?
1561 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1562 return;
1563 }
1564
1565 # Check permissions
1566 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'patrol', $wgUser );
1567
1568 if (count($permission_errors)>0)
1569 {
1570 $wgOut->showPermissionsErrorPage( $permission_errors );
1571 return;
1572 }
1573
1574 # Handle the 'MarkPatrolled' hook
1575 if( !wfRunHooks( 'MarkPatrolled', array( $rcid, &$wgUser, false ) ) ) {
1576 return;
1577 }
1578
1579 #It would be nice to see where the user had actually come from, but for now just guess
1580 $returnto = $rc->mAttribs['rc_type'] == RC_NEW ? 'Newpages' : 'Recentchanges';
1581 $return = Title::makeTitle( NS_SPECIAL, $returnto );
1582
1583 # If it's left up to us, check that the user is allowed to patrol this edit
1584 # If the user has the "autopatrol" right, then we'll assume there are no
1585 # other conditions stopping them doing so
1586 if( !$wgUser->isAllowed( 'autopatrol' ) ) {
1587 $rc = RecentChange::newFromId( $rcid );
1588 # Graceful error handling, as we've done before here...
1589 # (If the recent change doesn't exist, then it doesn't matter whether
1590 # the user is allowed to patrol it or not; nothing is going to happen
1591 if( is_object( $rc ) && $wgUser->getName() == $rc->getAttribute( 'rc_user_text' ) ) {
1592 # The user made this edit, and can't patrol it
1593 # Tell them so, and then back off
1594 $wgOut->setPageTitle( wfMsg( 'markedaspatrollederror' ) );
1595 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrollederror-noautopatrol' ) );
1596 $wgOut->returnToMain( false, $return );
1597 return;
1598 }
1599 }
1600
1601 # Mark the edit as patrolled
1602 RecentChange::markPatrolled( $rcid );
1603 PatrolLog::record( $rcid );
1604 wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
1605
1606 # Inform the user
1607 $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
1608 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrolledtext' ) );
1609 $wgOut->returnToMain( false, $return );
1610 }
1611
1612 /**
1613 * User-interface handler for the "watch" action
1614 */
1615
1616 function watch() {
1617
1618 global $wgUser, $wgOut;
1619
1620 if ( $wgUser->isAnon() ) {
1621 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1622 return;
1623 }
1624 if ( wfReadOnly() ) {
1625 $wgOut->readOnlyPage();
1626 return;
1627 }
1628
1629 if( $this->doWatch() ) {
1630 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
1631 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1632
1633 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1634 $text = wfMsg( 'addedwatchtext', $link );
1635 $wgOut->addWikiText( $text );
1636 }
1637
1638 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1639 }
1640
1641 /**
1642 * Add this page to $wgUser's watchlist
1643 * @return bool true on successful watch operation
1644 */
1645 function doWatch() {
1646 global $wgUser;
1647 if( $wgUser->isAnon() ) {
1648 return false;
1649 }
1650
1651 if (wfRunHooks('WatchArticle', array(&$wgUser, &$this))) {
1652 $wgUser->addWatch( $this->mTitle );
1653
1654 return wfRunHooks('WatchArticleComplete', array(&$wgUser, &$this));
1655 }
1656
1657 return false;
1658 }
1659
1660 /**
1661 * User interface handler for the "unwatch" action.
1662 */
1663 function unwatch() {
1664
1665 global $wgUser, $wgOut;
1666
1667 if ( $wgUser->isAnon() ) {
1668 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1669 return;
1670 }
1671 if ( wfReadOnly() ) {
1672 $wgOut->readOnlyPage();
1673 return;
1674 }
1675
1676 if( $this->doUnwatch() ) {
1677 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
1678 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1679
1680 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1681 $text = wfMsg( 'removedwatchtext', $link );
1682 $wgOut->addWikiText( $text );
1683 }
1684
1685 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1686 }
1687
1688 /**
1689 * Stop watching a page
1690 * @return bool true on successful unwatch
1691 */
1692 function doUnwatch() {
1693 global $wgUser;
1694 if( $wgUser->isAnon() ) {
1695 return false;
1696 }
1697
1698 if (wfRunHooks('UnwatchArticle', array(&$wgUser, &$this))) {
1699 $wgUser->removeWatch( $this->mTitle );
1700
1701 return wfRunHooks('UnwatchArticleComplete', array(&$wgUser, &$this));
1702 }
1703
1704 return false;
1705 }
1706
1707 /**
1708 * action=protect handler
1709 */
1710 function protect() {
1711 $form = new ProtectionForm( $this );
1712 $form->execute();
1713 }
1714
1715 /**
1716 * action=unprotect handler (alias)
1717 */
1718 function unprotect() {
1719 $this->protect();
1720 }
1721
1722 /**
1723 * Update the article's restriction field, and leave a log entry.
1724 *
1725 * @param array $limit set of restriction keys
1726 * @param string $reason
1727 * @return bool true on success
1728 */
1729 function updateRestrictions( $limit = array(), $reason = '', $cascade = 0, $expiry = null ) {
1730 global $wgUser, $wgRestrictionTypes, $wgContLang;
1731
1732 $id = $this->mTitle->getArticleID();
1733 if( array() != $this->mTitle->getUserPermissionsErrors( 'protect', $wgUser ) || wfReadOnly() || $id == 0 ) {
1734 return false;
1735 }
1736
1737 if (!$cascade) {
1738 $cascade = false;
1739 }
1740
1741 // Take this opportunity to purge out expired restrictions
1742 Title::purgeExpiredRestrictions();
1743
1744 # FIXME: Same limitations as described in ProtectionForm.php (line 37);
1745 # we expect a single selection, but the schema allows otherwise.
1746 $current = array();
1747 foreach( $wgRestrictionTypes as $action )
1748 $current[$action] = implode( '', $this->mTitle->getRestrictions( $action ) );
1749
1750 $current = Article::flattenRestrictions( $current );
1751 $updated = Article::flattenRestrictions( $limit );
1752
1753 $changed = ( $current != $updated );
1754 $changed = $changed || ($this->mTitle->areRestrictionsCascading() != $cascade);
1755 $changed = $changed || ($this->mTitle->mRestrictionsExpiry != $expiry);
1756 $protect = ( $updated != '' );
1757
1758 # If nothing's changed, do nothing
1759 if( $changed ) {
1760 global $wgGroupPermissions;
1761 if( wfRunHooks( 'ArticleProtect', array( &$this, &$wgUser, $limit, $reason ) ) ) {
1762
1763 $dbw = wfGetDB( DB_MASTER );
1764
1765 $encodedExpiry = Block::encodeExpiry($expiry, $dbw );
1766
1767 $expiry_description = '';
1768 if ( $encodedExpiry != 'infinity' ) {
1769 $expiry_description = ' (' . wfMsgForContent( 'protect-expiring', $wgContLang->timeanddate( $expiry ) ).')';
1770 }
1771
1772 # Prepare a null revision to be added to the history
1773 $modified = $current != '' && $protect;
1774 if ( $protect ) {
1775 $comment_type = $modified ? 'modifiedarticleprotection' : 'protectedarticle';
1776 } else {
1777 $comment_type = 'unprotectedarticle';
1778 }
1779 $comment = $wgContLang->ucfirst( wfMsgForContent( $comment_type, $this->mTitle->getPrefixedText() ) );
1780
1781 foreach( $limit as $action => $restrictions ) {
1782 # Check if the group level required to edit also can protect pages
1783 # Otherwise, people who cannot normally protect can "protect" pages via transclusion
1784 $cascade = ( $cascade && isset($wgGroupPermissions[$restrictions]['protect']) && $wgGroupPermissions[$restrictions]['protect'] );
1785 }
1786
1787 $cascade_description = '';
1788 if ($cascade) {
1789 $cascade_description = ' ['.wfMsg('protect-summary-cascade').']';
1790 }
1791
1792 if( $reason )
1793 $comment .= ": $reason";
1794 if( $protect )
1795 $comment .= " [$updated]";
1796 if ( $expiry_description && $protect )
1797 $comment .= "$expiry_description";
1798 if ( $cascade )
1799 $comment .= "$cascade_description";
1800
1801 $nullRevision = Revision::newNullRevision( $dbw, $id, $comment, true );
1802 $nullRevId = $nullRevision->insertOn( $dbw );
1803
1804 # Update restrictions table
1805 foreach( $limit as $action => $restrictions ) {
1806 if ($restrictions != '' ) {
1807 $dbw->replace( 'page_restrictions', array(array('pr_page', 'pr_type')),
1808 array( 'pr_page' => $id, 'pr_type' => $action
1809 , 'pr_level' => $restrictions, 'pr_cascade' => $cascade ? 1 : 0
1810 , 'pr_expiry' => $encodedExpiry ), __METHOD__ );
1811 } else {
1812 $dbw->delete( 'page_restrictions', array( 'pr_page' => $id,
1813 'pr_type' => $action ), __METHOD__ );
1814 }
1815 }
1816
1817 # Update page record
1818 $dbw->update( 'page',
1819 array( /* SET */
1820 'page_touched' => $dbw->timestamp(),
1821 'page_restrictions' => '',
1822 'page_latest' => $nullRevId
1823 ), array( /* WHERE */
1824 'page_id' => $id
1825 ), 'Article::protect'
1826 );
1827 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$wgUser, $limit, $reason ) );
1828
1829 # Update the protection log
1830 $log = new LogPage( 'protect' );
1831
1832 if( $protect ) {
1833 $log->addEntry( $modified ? 'modify' : 'protect', $this->mTitle, trim( $reason . " [$updated]$cascade_description$expiry_description" ) );
1834 } else {
1835 $log->addEntry( 'unprotect', $this->mTitle, $reason );
1836 }
1837
1838 } # End hook
1839 } # End "changed" check
1840
1841 return true;
1842 }
1843
1844 /**
1845 * Take an array of page restrictions and flatten it to a string
1846 * suitable for insertion into the page_restrictions field.
1847 * @param array $limit
1848 * @return string
1849 * @private
1850 */
1851 function flattenRestrictions( $limit ) {
1852 if( !is_array( $limit ) ) {
1853 throw new MWException( 'Article::flattenRestrictions given non-array restriction set' );
1854 }
1855 $bits = array();
1856 ksort( $limit );
1857 foreach( $limit as $action => $restrictions ) {
1858 if( $restrictions != '' ) {
1859 $bits[] = "$action=$restrictions";
1860 }
1861 }
1862 return implode( ':', $bits );
1863 }
1864
1865 /**
1866 * Auto-generates a deletion reason
1867 * @param bool &$hasHistory Whether the page has a history
1868 */
1869 public function generateReason(&$hasHistory)
1870 {
1871 global $wgContLang;
1872 $dbw = wfGetDB(DB_MASTER);
1873 // Get the last revision
1874 $rev = Revision::newFromTitle($this->mTitle);
1875 if(is_null($rev))
1876 return false;
1877 // Get the article's contents
1878 $contents = $rev->getText();
1879 $blank = false;
1880 // If the page is blank, use the text from the previous revision,
1881 // which can only be blank if there's a move/import/protect dummy revision involved
1882 if($contents == '')
1883 {
1884 $prev = $rev->getPrevious();
1885 if($prev)
1886 {
1887 $contents = $prev->getText();
1888 $blank = true;
1889 }
1890 }
1891
1892 // Find out if there was only one contributor
1893 // Only scan the last 20 revisions
1894 $limit = 20;
1895 $res = $dbw->select('revision', 'rev_user_text', array('rev_page' => $this->getID()), __METHOD__,
1896 array('LIMIT' => $limit));
1897 if($res === false)
1898 // This page has no revisions, which is very weird
1899 return false;
1900 if($res->numRows() > 1)
1901 $hasHistory = true;
1902 else
1903 $hasHistory = false;
1904 $row = $dbw->fetchObject($res);
1905 $onlyAuthor = $row->rev_user_text;
1906 // Try to find a second contributor
1907 while(($row = $dbw->fetchObject($res)))
1908 if($row->rev_user_text != $onlyAuthor)
1909 {
1910 $onlyAuthor = false;
1911 break;
1912 }
1913 $dbw->freeResult($res);
1914
1915 // Generate the summary with a '$1' placeholder
1916 if($blank)
1917 // The current revision is blank and the one before is also
1918 // blank. It's just not our lucky day
1919 $reason = wfMsgForContent('exbeforeblank', '$1');
1920 else
1921 {
1922 if($onlyAuthor)
1923 $reason = wfMsgForContent('excontentauthor', '$1', $onlyAuthor);
1924 else
1925 $reason = wfMsgForContent('excontent', '$1');
1926 }
1927
1928 // Replace newlines with spaces to prevent uglyness
1929 $contents = preg_replace("/[\n\r]/", ' ', $contents);
1930 // Calculate the maximum amount of chars to get
1931 // Max content length = max comment length - length of the comment (excl. $1) - '...'
1932 $maxLength = 255 - (strlen($reason) - 2) - 3;
1933 $contents = $wgContLang->truncate($contents, $maxLength, '...');
1934 // Remove possible unfinished links
1935 $contents = preg_replace( '/\[\[([^\]]*)\]?$/', '$1', $contents );
1936 // Now replace the '$1' placeholder
1937 $reason = str_replace( '$1', $contents, $reason );
1938 return $reason;
1939 }
1940
1941
1942 /*
1943 * UI entry point for page deletion
1944 */
1945 function delete() {
1946 global $wgUser, $wgOut, $wgRequest;
1947
1948 $confirm = $wgRequest->wasPosted() &&
1949 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
1950
1951 $this->DeleteReasonList = $wgRequest->getText( 'wpDeleteReasonList', 'other' );
1952 $this->DeleteReason = $wgRequest->getText( 'wpReason' );
1953
1954 $reason = $this->DeleteReasonList;
1955
1956 if ( $reason != 'other' && $this->DeleteReason != '') {
1957 // Entry from drop down menu + additional comment
1958 $reason .= ': ' . $this->DeleteReason;
1959 } elseif ( $reason == 'other' ) {
1960 $reason = $this->DeleteReason;
1961 }
1962
1963 # This code desperately needs to be totally rewritten
1964
1965 # Check permissions
1966 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'delete', $wgUser );
1967
1968 if (count($permission_errors)>0)
1969 {
1970 $wgOut->showPermissionsErrorPage( $permission_errors );
1971 return;
1972 }
1973
1974 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
1975
1976 # Better double-check that it hasn't been deleted yet!
1977 $dbw = wfGetDB( DB_MASTER );
1978 $conds = $this->mTitle->pageCond();
1979 $latest = $dbw->selectField( 'page', 'page_latest', $conds, __METHOD__ );
1980 if ( $latest === false ) {
1981 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1982 return;
1983 }
1984
1985 if( $confirm ) {
1986 $this->doDelete( $reason );
1987 if( $wgRequest->getCheck( 'wpWatch' ) ) {
1988 $this->doWatch();
1989 } elseif( $this->mTitle->userIsWatching() ) {
1990 $this->doUnwatch();
1991 }
1992 return;
1993 }
1994
1995 // Generate deletion reason
1996 $hasHistory = false;
1997 if ( !$reason ) $reason = $this->generateReason($hasHistory);
1998
1999 // If the page has a history, insert a warning
2000 if( $hasHistory && !$confirm ) {
2001 $skin=$wgUser->getSkin();
2002 $wgOut->addHTML( '<strong>' . wfMsg( 'historywarning' ) . ' ' . $skin->historyLink() . '</strong>' );
2003 }
2004
2005 return $this->confirmDelete( '', $reason );
2006 }
2007
2008 /**
2009 * Get the last N authors
2010 * @param int $num Number of revisions to get
2011 * @param string $revLatest The latest rev_id, selected from the master (optional)
2012 * @return array Array of authors, duplicates not removed
2013 */
2014 function getLastNAuthors( $num, $revLatest = 0 ) {
2015 wfProfileIn( __METHOD__ );
2016
2017 // First try the slave
2018 // If that doesn't have the latest revision, try the master
2019 $continue = 2;
2020 $db = wfGetDB( DB_SLAVE );
2021 do {
2022 $res = $db->select( array( 'page', 'revision' ),
2023 array( 'rev_id', 'rev_user_text' ),
2024 array(
2025 'page_namespace' => $this->mTitle->getNamespace(),
2026 'page_title' => $this->mTitle->getDBkey(),
2027 'rev_page = page_id'
2028 ), __METHOD__, $this->getSelectOptions( array(
2029 'ORDER BY' => 'rev_timestamp DESC',
2030 'LIMIT' => $num
2031 ) )
2032 );
2033 if ( !$res ) {
2034 wfProfileOut( __METHOD__ );
2035 return array();
2036 }
2037 $row = $db->fetchObject( $res );
2038 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
2039 $db = wfGetDB( DB_MASTER );
2040 $continue--;
2041 } else {
2042 $continue = 0;
2043 }
2044 } while ( $continue );
2045
2046 $authors = array( $row->rev_user_text );
2047 while ( $row = $db->fetchObject( $res ) ) {
2048 $authors[] = $row->rev_user_text;
2049 }
2050 wfProfileOut( __METHOD__ );
2051 return $authors;
2052 }
2053
2054 /**
2055 * Output deletion confirmation dialog
2056 */
2057 function confirmDelete( $par, $reason ) {
2058 global $wgOut, $wgUser;
2059
2060 wfDebug( "Article::confirmDelete\n" );
2061
2062 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
2063 $wgOut->setSubtitle( wfMsg( 'deletesub', $sub ) );
2064 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2065 $wgOut->addWikiText( wfMsg( 'confirmdeletetext' ) );
2066
2067 $formaction = $this->mTitle->escapeLocalURL( 'action=delete' . $par );
2068
2069 $confirm = htmlspecialchars( wfMsg( 'deletepage' ) );
2070 $delcom = Xml::label( wfMsg( 'deletecomment' ), 'wpDeleteReasonList' );
2071 $token = htmlspecialchars( $wgUser->editToken() );
2072 $watch = Xml::checkLabel( wfMsg( 'watchthis' ), 'wpWatch', 'wpWatch', $wgUser->getBoolOption( 'watchdeletion' ) || $this->mTitle->userIsWatching(), array( 'tabindex' => '2' ) );
2073
2074 $mDeletereasonother = Xml::label( wfMsg( 'deleteotherreason' ), 'wpReason' );
2075 $mDeletereasonotherlist = wfMsgHtml( 'deletereasonotherlist' );
2076 $scDeleteReasonList = wfMsgForContent( 'deletereason-dropdown' );
2077
2078 $deleteReasonList = '';
2079 if ( $scDeleteReasonList != '' && $scDeleteReasonList != '-' ) {
2080 $deleteReasonList = "<option value=\"other\">$mDeletereasonotherlist</option>";
2081 $optgroup = "";
2082 foreach ( explode( "\n", $scDeleteReasonList ) as $option) {
2083 $value = trim( htmlspecialchars($option) );
2084 if ( $value == '' ) {
2085 continue;
2086 } elseif ( substr( $value, 0, 1) == '*' && substr( $value, 1, 1) != '*' ) {
2087 // A new group is starting ...
2088 $value = trim( substr( $value, 1 ) );
2089 $deleteReasonList .= "$optgroup<optgroup label=\"$value\">";
2090 $optgroup = "</optgroup>";
2091 } elseif ( substr( $value, 0, 2) == '**' ) {
2092 // groupmember
2093 $selected = "";
2094 $value = trim( substr( $value, 2 ) );
2095 if ( $this->DeleteReasonList === $value)
2096 $selected = ' selected="selected"';
2097 $deleteReasonList .= "<option value=\"$value\"$selected>$value</option>";
2098 } else {
2099 // groupless delete reason
2100 $selected = "";
2101 if ( $this->DeleteReasonList === $value)
2102 $selected = ' selected="selected"';
2103 $deleteReasonList .= "$optgroup<option value=\"$value\"$selected>$value</option>";
2104 $optgroup = "";
2105 }
2106 }
2107 $deleteReasonList .= $optgroup;
2108 }
2109 $wgOut->addHTML( "
2110 <form id='deleteconfirm' method='post' action=\"{$formaction}\">
2111 <table border='0'>
2112 <tr id=\"wpDeleteReasonListRow\" name=\"wpDeleteReasonListRow\">
2113 <td align='right'>
2114 $delcom:
2115 </td>
2116 <td align='left'>
2117 <select tabindex='1' id='wpDeleteReasonList' name=\"wpDeleteReasonList\">
2118 $deleteReasonList
2119 </select>
2120 </td>
2121 </tr>
2122 <tr id=\"wpDeleteReasonRow\" name=\"wpDeleteReasonRow\">
2123 <td>
2124 $mDeletereasonother
2125 </td>
2126 <td align='left'>
2127 <input type='text' maxlength='255' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" tabindex=\"2\" />
2128 </td>
2129 </tr>
2130 <tr>
2131 <td>&nbsp;</td>
2132 <td>$watch</td>
2133 </tr>
2134 <tr>
2135 <td>&nbsp;</td>
2136 <td>
2137 <input type='submit' name='wpConfirmB' id='wpConfirmB' value=\"{$confirm}\" tabindex=\"3\" />
2138 </td>
2139 </tr>
2140 </table>
2141 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
2142 </form>\n" );
2143
2144 $wgOut->returnToMain( false, $this->mTitle );
2145
2146 $this->showLogExtract( $wgOut );
2147 }
2148
2149
2150 /**
2151 * Show relevant lines from the deletion log
2152 */
2153 function showLogExtract( $out ) {
2154 $out->addHtml( '<h2>' . htmlspecialchars( LogPage::logName( 'delete' ) ) . '</h2>' );
2155 $logViewer = new LogViewer(
2156 new LogReader(
2157 new FauxRequest(
2158 array( 'page' => $this->mTitle->getPrefixedText(),
2159 'type' => 'delete' ) ) ) );
2160 $logViewer->showList( $out );
2161 }
2162
2163
2164 /**
2165 * Perform a deletion and output success or failure messages
2166 */
2167 function doDelete( $reason ) {
2168 global $wgOut, $wgUser;
2169 wfDebug( __METHOD__."\n" );
2170
2171 if (wfRunHooks('ArticleDelete', array(&$this, &$wgUser, &$reason))) {
2172 if ( $this->doDeleteArticle( $reason ) ) {
2173 $deleted = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
2174
2175 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
2176 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2177
2178 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
2179 $text = wfMsg( 'deletedtext', $deleted, $loglink );
2180
2181 $wgOut->addWikiText( $text );
2182 $wgOut->returnToMain( false );
2183 wfRunHooks('ArticleDeleteComplete', array(&$this, &$wgUser, $reason));
2184 } else {
2185 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
2186 }
2187 }
2188 }
2189
2190 /**
2191 * Back-end article deletion
2192 * Deletes the article with database consistency, writes logs, purges caches
2193 * Returns success
2194 */
2195 function doDeleteArticle( $reason ) {
2196 global $wgUseSquid, $wgDeferredUpdateList;
2197 global $wgUseTrackbacks;
2198
2199 wfDebug( __METHOD__."\n" );
2200
2201 $dbw = wfGetDB( DB_MASTER );
2202 $ns = $this->mTitle->getNamespace();
2203 $t = $this->mTitle->getDBkey();
2204 $id = $this->mTitle->getArticleID();
2205
2206 if ( $t == '' || $id == 0 ) {
2207 return false;
2208 }
2209
2210 $u = new SiteStatsUpdate( 0, 1, -(int)$this->isCountable( $this->getContent() ), -1 );
2211 array_push( $wgDeferredUpdateList, $u );
2212
2213 // For now, shunt the revision data into the archive table.
2214 // Text is *not* removed from the text table; bulk storage
2215 // is left intact to avoid breaking block-compression or
2216 // immutable storage schemes.
2217 //
2218 // For backwards compatibility, note that some older archive
2219 // table entries will have ar_text and ar_flags fields still.
2220 //
2221 // In the future, we may keep revisions and mark them with
2222 // the rev_deleted field, which is reserved for this purpose.
2223 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
2224 array(
2225 'ar_namespace' => 'page_namespace',
2226 'ar_title' => 'page_title',
2227 'ar_comment' => 'rev_comment',
2228 'ar_user' => 'rev_user',
2229 'ar_user_text' => 'rev_user_text',
2230 'ar_timestamp' => 'rev_timestamp',
2231 'ar_minor_edit' => 'rev_minor_edit',
2232 'ar_rev_id' => 'rev_id',
2233 'ar_text_id' => 'rev_text_id',
2234 'ar_text' => '\'\'', // Be explicit to appease
2235 'ar_flags' => '\'\'', // MySQL's "strict mode"...
2236 'ar_len' => 'rev_len',
2237 'ar_page_id' => 'page_id',
2238 ), array(
2239 'page_id' => $id,
2240 'page_id = rev_page'
2241 ), __METHOD__
2242 );
2243
2244 # Delete restrictions for it
2245 $dbw->delete( 'page_restrictions', array ( 'pr_page' => $id ), __METHOD__ );
2246
2247 # Now that it's safely backed up, delete it
2248 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__);
2249
2250 # If using cascading deletes, we can skip some explicit deletes
2251 if ( !$dbw->cascadingDeletes() ) {
2252
2253 $dbw->delete( 'revision', array( 'rev_page' => $id ), __METHOD__ );
2254
2255 if ($wgUseTrackbacks)
2256 $dbw->delete( 'trackbacks', array( 'tb_page' => $id ), __METHOD__ );
2257
2258 # Delete outgoing links
2259 $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
2260 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
2261 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
2262 $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
2263 $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
2264 $dbw->delete( 'langlinks', array( 'll_from' => $id ) );
2265 $dbw->delete( 'redirect', array( 'rd_from' => $id ) );
2266 $dbw->delete( 'imageredirects', array( 'ir_from' => $t ) );
2267 }
2268
2269 # If using cleanup triggers, we can skip some manual deletes
2270 if ( !$dbw->cleanupTriggers() ) {
2271
2272 # Clean up recentchanges entries...
2273 $dbw->delete( 'recentchanges', array( 'rc_namespace' => $ns, 'rc_title' => $t ), __METHOD__ );
2274 }
2275
2276 # Clear caches
2277 Article::onArticleDelete( $this->mTitle );
2278
2279 # Log the deletion
2280 $log = new LogPage( 'delete' );
2281 $log->addEntry( 'delete', $this->mTitle, $reason );
2282
2283 # Clear the cached article id so the interface doesn't act like we exist
2284 $this->mTitle->resetArticleID( 0 );
2285 $this->mTitle->mArticleID = 0;
2286 return true;
2287 }
2288
2289 /**
2290 * Roll back the most recent consecutive set of edits to a page
2291 * from the same user; fails if there are no eligible edits to
2292 * roll back to, e.g. user is the sole contributor
2293 *
2294 * @param string $fromP - Name of the user whose edits to rollback.
2295 * @param string $summary - Custom summary. Set to default summary if empty.
2296 * @param string $token - Rollback token.
2297 * @param bool $bot - If true, mark all reverted edits as bot.
2298 *
2299 * @param array $resultDetails contains result-specific dict of additional values
2300 * ALREADY_ROLLED : 'current' (rev)
2301 * SUCCESS : 'summary' (str), 'current' (rev), 'target' (rev)
2302 *
2303 * @return self::SUCCESS on succes, self::* on failure
2304 */
2305 public function doRollback( $fromP, $summary, $token, $bot, &$resultDetails ) {
2306 global $wgUser, $wgUseRCPatrol;
2307 $resultDetails = null;
2308
2309 # Just in case it's being called from elsewhere
2310
2311 if( $wgUser->isAllowed( 'rollback' ) && $this->mTitle->userCan( 'edit' ) ) {
2312 if( $wgUser->isBlocked() ) {
2313 return self::BLOCKED;
2314 }
2315 } else {
2316 return self::PERM_DENIED;
2317 }
2318
2319 if ( wfReadOnly() ) {
2320 return self::READONLY;
2321 }
2322
2323 if( !$wgUser->matchEditToken( $token, array( $this->mTitle->getPrefixedText(), $fromP ) ) )
2324 return self::BAD_TOKEN;
2325
2326 if ( $wgUser->pingLimiter('rollback') || $wgUser->pingLimiter() ) {
2327 return self::RATE_LIMITED;
2328 }
2329
2330 $dbw = wfGetDB( DB_MASTER );
2331
2332 # Get the last editor
2333 $current = Revision::newFromTitle( $this->mTitle );
2334 if( is_null( $current ) ) {
2335 # Something wrong... no page?
2336 return self::BAD_TITLE;
2337 }
2338
2339 $from = str_replace( '_', ' ', $fromP );
2340 if( $from != $current->getUserText() ) {
2341 $resultDetails = array( 'current' => $current );
2342 return self::ALREADY_ROLLED;
2343 }
2344
2345 # Get the last edit not by this guy
2346 $user = intval( $current->getUser() );
2347 $user_text = $dbw->addQuotes( $current->getUserText() );
2348 $s = $dbw->selectRow( 'revision',
2349 array( 'rev_id', 'rev_timestamp' ),
2350 array(
2351 'rev_page' => $current->getPage(),
2352 "rev_user <> {$user} OR rev_user_text <> {$user_text}"
2353 ), __METHOD__,
2354 array(
2355 'USE INDEX' => 'page_timestamp',
2356 'ORDER BY' => 'rev_timestamp DESC' )
2357 );
2358 if( $s === false ) {
2359 # Something wrong
2360 return self::ONLY_AUTHOR;
2361 }
2362
2363 $set = array();
2364 if ( $bot && $wgUser->isAllowed('markbotedits') ) {
2365 # Mark all reverted edits as bot
2366 $set['rc_bot'] = 1;
2367 }
2368 if ( $wgUseRCPatrol ) {
2369 # Mark all reverted edits as patrolled
2370 $set['rc_patrolled'] = 1;
2371 }
2372
2373 if ( $set ) {
2374 $dbw->update( 'recentchanges', $set,
2375 array( /* WHERE */
2376 'rc_cur_id' => $current->getPage(),
2377 'rc_user_text' => $current->getUserText(),
2378 "rc_timestamp > '{$s->rev_timestamp}'",
2379 ), __METHOD__
2380 );
2381 }
2382
2383 # Get the edit summary
2384 $target = Revision::newFromId( $s->rev_id );
2385 if( empty( $summary ) )
2386 $summary = wfMsgForContent( 'revertpage', $target->getUserText(), $from );
2387
2388 # Save
2389 $flags = EDIT_UPDATE;
2390
2391 if ($wgUser->isAllowed('minoredit'))
2392 $flags |= EDIT_MINOR;
2393
2394 if( $bot )
2395 $flags |= EDIT_FORCE_BOT;
2396 $this->doEdit( $target->getText(), $summary, $flags );
2397
2398 wfRunHooks( 'ArticleRollbackComplete', array( $this, $wgUser, $target ) );
2399
2400 $resultDetails = array(
2401 'summary' => $summary,
2402 'current' => $current,
2403 'target' => $target,
2404 );
2405 return self::SUCCESS;
2406 }
2407
2408 /**
2409 * User interface for rollback operations
2410 */
2411 function rollback() {
2412 global $wgUser, $wgOut, $wgRequest, $wgUseRCPatrol;
2413
2414 $details = null;
2415
2416 # Skip the permissions-checking in doRollback() itself, by checking permissions here.
2417
2418 $perm_errors = array_merge( $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser ),
2419 $this->mTitle->getUserPermissionsErrors( 'rollback', $wgUser ) );
2420
2421 if (count($perm_errors)) {
2422 $wgOut->showPermissionsErrorPage( $perm_errors );
2423 return;
2424 }
2425
2426 $result = $this->doRollback(
2427 $wgRequest->getVal( 'from' ),
2428 $wgRequest->getText( 'summary' ),
2429 $wgRequest->getVal( 'token' ),
2430 $wgRequest->getBool( 'bot' ),
2431 $details
2432 );
2433
2434 switch( $result ) {
2435 case self::BLOCKED:
2436 $wgOut->blockedPage();
2437 break;
2438 case self::PERM_DENIED:
2439 $wgOut->permissionRequired( 'rollback' );
2440 break;
2441 case self::READONLY:
2442 $wgOut->readOnlyPage( $this->getContent() );
2443 break;
2444 case self::BAD_TOKEN:
2445 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2446 $wgOut->addWikiText( wfMsg( 'sessionfailure' ) );
2447 break;
2448 case self::BAD_TITLE:
2449 $wgOut->addHtml( wfMsg( 'notanarticle' ) );
2450 break;
2451 case self::ALREADY_ROLLED:
2452 $current = $details['current'];
2453 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2454 $wgOut->addWikiText(
2455 wfMsg( 'alreadyrolled',
2456 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2457 htmlspecialchars( $wgRequest->getVal( 'from' ) ),
2458 htmlspecialchars( $current->getUserText() )
2459 )
2460 );
2461 if( $current->getComment() != '' ) {
2462 $wgOut->addHtml( wfMsg( 'editcomment',
2463 $wgUser->getSkin()->formatComment( $current->getComment() ) ) );
2464 }
2465 break;
2466 case self::ONLY_AUTHOR:
2467 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2468 $wgOut->addHtml( wfMsg( 'cantrollback' ) );
2469 break;
2470 case self::RATE_LIMITED:
2471 $wgOut->rateLimited();
2472 break;
2473 case self::SUCCESS:
2474 $current = $details['current'];
2475 $target = $details['target'];
2476 $wgOut->setPageTitle( wfMsg( 'actioncomplete' ) );
2477 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2478 $old = $wgUser->getSkin()->userLink( $current->getUser(), $current->getUserText() )
2479 . $wgUser->getSkin()->userToolLinks( $current->getUser(), $current->getUserText() );
2480 $new = $wgUser->getSkin()->userLink( $target->getUser(), $target->getUserText() )
2481 . $wgUser->getSkin()->userToolLinks( $target->getUser(), $target->getUserText() );
2482 $wgOut->addHtml( wfMsgExt( 'rollback-success', array( 'parse', 'replaceafter' ), $old, $new ) );
2483 $wgOut->returnToMain( false, $this->mTitle );
2484 break;
2485 default:
2486 throw new MWException( __METHOD__ . ": Unknown return value `{$result}`" );
2487 }
2488
2489 }
2490
2491
2492 /**
2493 * Do standard deferred updates after page view
2494 * @private
2495 */
2496 function viewUpdates() {
2497 global $wgDeferredUpdateList;
2498
2499 if ( 0 != $this->getID() ) {
2500 global $wgDisableCounters;
2501 if( !$wgDisableCounters ) {
2502 Article::incViewCount( $this->getID() );
2503 $u = new SiteStatsUpdate( 1, 0, 0 );
2504 array_push( $wgDeferredUpdateList, $u );
2505 }
2506 }
2507
2508 # Update newtalk / watchlist notification status
2509 global $wgUser;
2510 $wgUser->clearNotification( $this->mTitle );
2511 }
2512
2513 /**
2514 * Prepare text which is about to be saved.
2515 * Returns a stdclass with source, pst and output members
2516 */
2517 function prepareTextForEdit( $text, $revid=null ) {
2518 if ( $this->mPreparedEdit && $this->mPreparedEdit->newText == $text && $this->mPreparedEdit->revid == $revid) {
2519 // Already prepared
2520 return $this->mPreparedEdit;
2521 }
2522 global $wgParser;
2523 $edit = (object)array();
2524 $edit->revid = $revid;
2525 $edit->newText = $text;
2526 $edit->pst = $this->preSaveTransform( $text );
2527 $options = new ParserOptions;
2528 $options->setTidy( true );
2529 $options->enableLimitReport();
2530 $edit->output = $wgParser->parse( $edit->pst, $this->mTitle, $options, true, true, $revid );
2531 $edit->oldText = $this->getContent();
2532 $this->mPreparedEdit = $edit;
2533 return $edit;
2534 }
2535
2536 /**
2537 * Do standard deferred updates after page edit.
2538 * Update links tables, site stats, search index and message cache.
2539 * Every 100th edit, prune the recent changes table.
2540 *
2541 * @private
2542 * @param $text New text of the article
2543 * @param $summary Edit summary
2544 * @param $minoredit Minor edit
2545 * @param $timestamp_of_pagechange Timestamp associated with the page change
2546 * @param $newid rev_id value of the new revision
2547 * @param $changed Whether or not the content actually changed
2548 */
2549 function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true ) {
2550 global $wgDeferredUpdateList, $wgMessageCache, $wgUser, $wgParser;
2551
2552 wfProfileIn( __METHOD__ );
2553
2554 # Parse the text
2555 # Be careful not to double-PST: $text is usually already PST-ed once
2556 if ( !$this->mPreparedEdit || $this->mPreparedEdit->output->getFlag( 'vary-revision' ) ) {
2557 wfDebug( __METHOD__ . ": No prepared edit or vary-revision is set...\n" );
2558 $editInfo = $this->prepareTextForEdit( $text, $newid );
2559 } else {
2560 wfDebug( __METHOD__ . ": No vary-revision, using prepared edit...\n" );
2561 $editInfo = $this->mPreparedEdit;
2562 }
2563
2564 # Save it to the parser cache
2565 $parserCache =& ParserCache::singleton();
2566 $parserCache->save( $editInfo->output, $this, $wgUser );
2567
2568 # Update the links tables
2569 $u = new LinksUpdate( $this->mTitle, $editInfo->output );
2570 $u->doUpdate();
2571
2572 if( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
2573 if ( 0 == mt_rand( 0, 99 ) ) {
2574 // Flush old entries from the `recentchanges` table; we do this on
2575 // random requests so as to avoid an increase in writes for no good reason
2576 global $wgRCMaxAge;
2577 $dbw = wfGetDB( DB_MASTER );
2578 $cutoff = $dbw->timestamp( time() - $wgRCMaxAge );
2579 $recentchanges = $dbw->tableName( 'recentchanges' );
2580 $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$cutoff}'";
2581 $dbw->query( $sql );
2582 }
2583 }
2584
2585 $id = $this->getID();
2586 $title = $this->mTitle->getPrefixedDBkey();
2587 $shortTitle = $this->mTitle->getDBkey();
2588
2589 if ( 0 == $id ) {
2590 wfProfileOut( __METHOD__ );
2591 return;
2592 }
2593
2594 $u = new SiteStatsUpdate( 0, 1, $this->mGoodAdjustment, $this->mTotalAdjustment );
2595 array_push( $wgDeferredUpdateList, $u );
2596 $u = new SearchUpdate( $id, $title, $text );
2597 array_push( $wgDeferredUpdateList, $u );
2598
2599 # If this is another user's talk page, update newtalk
2600 # Don't do this if $changed = false otherwise some idiot can null-edit a
2601 # load of user talk pages and piss people off, nor if it's a minor edit
2602 # by a properly-flagged bot.
2603 if( $this->mTitle->getNamespace() == NS_USER_TALK && $shortTitle != $wgUser->getTitleKey() && $changed
2604 && !($minoredit && $wgUser->isAllowed('nominornewtalk') ) ) {
2605 if (wfRunHooks('ArticleEditUpdateNewTalk', array(&$this)) ) {
2606 $other = User::newFromName( $shortTitle );
2607 if( is_null( $other ) && User::isIP( $shortTitle ) ) {
2608 // An anonymous user
2609 $other = new User();
2610 $other->setName( $shortTitle );
2611 }
2612 if( $other ) {
2613 $other->setNewtalk( true );
2614 }
2615 }
2616 }
2617
2618 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2619 $wgMessageCache->replace( $shortTitle, $text );
2620 }
2621
2622 wfProfileOut( __METHOD__ );
2623 }
2624
2625 /**
2626 * Perform article updates on a special page creation.
2627 *
2628 * @param Revision $rev
2629 *
2630 * @todo This is a shitty interface function. Kill it and replace the
2631 * other shitty functions like editUpdates and such so it's not needed
2632 * anymore.
2633 */
2634 function createUpdates( $rev ) {
2635 $this->mGoodAdjustment = $this->isCountable( $rev->getText() );
2636 $this->mTotalAdjustment = 1;
2637 $this->editUpdates( $rev->getText(), $rev->getComment(),
2638 $rev->isMinor(), wfTimestamp(), $rev->getId(), true );
2639 }
2640
2641 /**
2642 * Generate the navigation links when browsing through an article revisions
2643 * It shows the information as:
2644 * Revision as of \<date\>; view current revision
2645 * \<- Previous version | Next Version -\>
2646 *
2647 * @private
2648 * @param string $oldid Revision ID of this article revision
2649 */
2650 function setOldSubtitle( $oldid=0 ) {
2651 global $wgLang, $wgOut, $wgUser;
2652
2653 if ( !wfRunHooks( 'DisplayOldSubtitle', array(&$this, &$oldid) ) ) {
2654 return;
2655 }
2656
2657 $revision = Revision::newFromId( $oldid );
2658
2659 $current = ( $oldid == $this->mLatest );
2660 $td = $wgLang->timeanddate( $this->mTimestamp, true );
2661 $sk = $wgUser->getSkin();
2662 $lnk = $current
2663 ? wfMsg( 'currentrevisionlink' )
2664 : $lnk = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'currentrevisionlink' ) );
2665 $curdiff = $current
2666 ? wfMsg( 'diff' )
2667 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=cur&oldid='.$oldid );
2668 $prev = $this->mTitle->getPreviousRevisionID( $oldid ) ;
2669 $prevlink = $prev
2670 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'previousrevision' ), 'direction=prev&oldid='.$oldid )
2671 : wfMsg( 'previousrevision' );
2672 $prevdiff = $prev
2673 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=prev&oldid='.$oldid )
2674 : wfMsg( 'diff' );
2675 $nextlink = $current
2676 ? wfMsg( 'nextrevision' )
2677 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'nextrevision' ), 'direction=next&oldid='.$oldid );
2678 $nextdiff = $current
2679 ? wfMsg( 'diff' )
2680 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=next&oldid='.$oldid );
2681
2682 $userlinks = $sk->userLink( $revision->getUser(), $revision->getUserText() )
2683 . $sk->userToolLinks( $revision->getUser(), $revision->getUserText() );
2684
2685 $m = wfMsg( 'revision-info-current' );
2686 $infomsg = $current && !wfEmptyMsg( 'revision-info-current', $m ) && $m != '-'
2687 ? 'revision-info-current'
2688 : 'revision-info';
2689
2690 $r = "\n\t\t\t\t<div id=\"mw-{$infomsg}\">" . wfMsg( $infomsg, $td, $userlinks ) . "</div>\n" .
2691 "\n\t\t\t\t<div id=\"mw-revision-nav\">" . wfMsg( 'revision-nav', $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
2692 $wgOut->setSubtitle( $r );
2693 }
2694
2695 /**
2696 * This function is called right before saving the wikitext,
2697 * so we can do things like signatures and links-in-context.
2698 *
2699 * @param string $text
2700 */
2701 function preSaveTransform( $text ) {
2702 global $wgParser, $wgUser;
2703 return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
2704 }
2705
2706 /* Caching functions */
2707
2708 /**
2709 * checkLastModified returns true if it has taken care of all
2710 * output to the client that is necessary for this request.
2711 * (that is, it has sent a cached version of the page)
2712 */
2713 function tryFileCache() {
2714 static $called = false;
2715 if( $called ) {
2716 wfDebug( "Article::tryFileCache(): called twice!?\n" );
2717 return;
2718 }
2719 $called = true;
2720 if($this->isFileCacheable()) {
2721 $touched = $this->mTouched;
2722 $cache = new HTMLFileCache( $this->mTitle );
2723 if($cache->isFileCacheGood( $touched )) {
2724 wfDebug( "Article::tryFileCache(): about to load file\n" );
2725 $cache->loadFromFileCache();
2726 return true;
2727 } else {
2728 wfDebug( "Article::tryFileCache(): starting buffer\n" );
2729 ob_start( array(&$cache, 'saveToFileCache' ) );
2730 }
2731 } else {
2732 wfDebug( "Article::tryFileCache(): not cacheable\n" );
2733 }
2734 }
2735
2736 /**
2737 * Check if the page can be cached
2738 * @return bool
2739 */
2740 function isFileCacheable() {
2741 global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest, $wgLang, $wgContLang;
2742 $action = $wgRequest->getVal( 'action' );
2743 $oldid = $wgRequest->getVal( 'oldid' );
2744 $diff = $wgRequest->getVal( 'diff' );
2745 $redirect = $wgRequest->getVal( 'redirect' );
2746 $printable = $wgRequest->getVal( 'printable' );
2747 $page = $wgRequest->getVal( 'page' );
2748
2749 //check for non-standard user language; this covers uselang,
2750 //and extensions for auto-detecting user language.
2751 $ulang = $wgLang->getCode();
2752 $clang = $wgContLang->getCode();
2753
2754 $cacheable = $wgUseFileCache
2755 && (!$wgShowIPinHeader)
2756 && ($this->getID() != 0)
2757 && ($wgUser->isAnon())
2758 && (!$wgUser->getNewtalk())
2759 && ($this->mTitle->getNamespace() != NS_SPECIAL )
2760 && (empty( $action ) || $action == 'view')
2761 && (!isset($oldid))
2762 && (!isset($diff))
2763 && (!isset($redirect))
2764 && (!isset($printable))
2765 && !isset($page)
2766 && (!$this->mRedirectedFrom)
2767 && ($ulang === $clang);
2768
2769 if ( $cacheable ) {
2770 //extension may have reason to disable file caching on some pages.
2771 $cacheable = wfRunHooks( 'IsFileCacheable', array( $this ) );
2772 }
2773
2774 return $cacheable;
2775 }
2776
2777 /**
2778 * Loads page_touched and returns a value indicating if it should be used
2779 *
2780 */
2781 function checkTouched() {
2782 if( !$this->mDataLoaded ) {
2783 $this->loadPageData();
2784 }
2785 return !$this->mIsRedirect;
2786 }
2787
2788 /**
2789 * Get the page_touched field
2790 */
2791 function getTouched() {
2792 # Ensure that page data has been loaded
2793 if( !$this->mDataLoaded ) {
2794 $this->loadPageData();
2795 }
2796 return $this->mTouched;
2797 }
2798
2799 /**
2800 * Get the page_latest field
2801 */
2802 function getLatest() {
2803 if ( !$this->mDataLoaded ) {
2804 $this->loadPageData();
2805 }
2806 return $this->mLatest;
2807 }
2808
2809 /**
2810 * Edit an article without doing all that other stuff
2811 * The article must already exist; link tables etc
2812 * are not updated, caches are not flushed.
2813 *
2814 * @param string $text text submitted
2815 * @param string $comment comment submitted
2816 * @param bool $minor whereas it's a minor modification
2817 */
2818 function quickEdit( $text, $comment = '', $minor = 0 ) {
2819 wfProfileIn( __METHOD__ );
2820
2821 $dbw = wfGetDB( DB_MASTER );
2822 $dbw->begin();
2823 $revision = new Revision( array(
2824 'page' => $this->getId(),
2825 'text' => $text,
2826 'comment' => $comment,
2827 'minor_edit' => $minor ? 1 : 0,
2828 ) );
2829 $revision->insertOn( $dbw );
2830 $this->updateRevisionOn( $dbw, $revision );
2831 $dbw->commit();
2832
2833 wfProfileOut( __METHOD__ );
2834 }
2835
2836 /**
2837 * Used to increment the view counter
2838 *
2839 * @static
2840 * @param integer $id article id
2841 */
2842 function incViewCount( $id ) {
2843 $id = intval( $id );
2844 global $wgHitcounterUpdateFreq, $wgDBtype;
2845
2846 $dbw = wfGetDB( DB_MASTER );
2847 $pageTable = $dbw->tableName( 'page' );
2848 $hitcounterTable = $dbw->tableName( 'hitcounter' );
2849 $acchitsTable = $dbw->tableName( 'acchits' );
2850
2851 if( $wgHitcounterUpdateFreq <= 1 ) {
2852 $dbw->query( "UPDATE $pageTable SET page_counter = page_counter + 1 WHERE page_id = $id" );
2853 return;
2854 }
2855
2856 # Not important enough to warrant an error page in case of failure
2857 $oldignore = $dbw->ignoreErrors( true );
2858
2859 $dbw->query( "INSERT INTO $hitcounterTable (hc_id) VALUES ({$id})" );
2860
2861 $checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
2862 if( (rand() % $checkfreq != 0) or ($dbw->lastErrno() != 0) ){
2863 # Most of the time (or on SQL errors), skip row count check
2864 $dbw->ignoreErrors( $oldignore );
2865 return;
2866 }
2867
2868 $res = $dbw->query("SELECT COUNT(*) as n FROM $hitcounterTable");
2869 $row = $dbw->fetchObject( $res );
2870 $rown = intval( $row->n );
2871 if( $rown >= $wgHitcounterUpdateFreq ){
2872 wfProfileIn( 'Article::incViewCount-collect' );
2873 $old_user_abort = ignore_user_abort( true );
2874
2875 if ($wgDBtype == 'mysql')
2876 $dbw->query("LOCK TABLES $hitcounterTable WRITE");
2877 $tabletype = $wgDBtype == 'mysql' ? "ENGINE=HEAP " : '';
2878 $dbw->query("CREATE TEMPORARY TABLE $acchitsTable $tabletype AS ".
2879 "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable ".
2880 'GROUP BY hc_id');
2881 $dbw->query("DELETE FROM $hitcounterTable");
2882 if ($wgDBtype == 'mysql') {
2883 $dbw->query('UNLOCK TABLES');
2884 $dbw->query("UPDATE $pageTable,$acchitsTable SET page_counter=page_counter + hc_n ".
2885 'WHERE page_id = hc_id');
2886 }
2887 else {
2888 $dbw->query("UPDATE $pageTable SET page_counter=page_counter + hc_n ".
2889 "FROM $acchitsTable WHERE page_id = hc_id");
2890 }
2891 $dbw->query("DROP TABLE $acchitsTable");
2892
2893 ignore_user_abort( $old_user_abort );
2894 wfProfileOut( 'Article::incViewCount-collect' );
2895 }
2896 $dbw->ignoreErrors( $oldignore );
2897 }
2898
2899 /**#@+
2900 * The onArticle*() functions are supposed to be a kind of hooks
2901 * which should be called whenever any of the specified actions
2902 * are done.
2903 *
2904 * This is a good place to put code to clear caches, for instance.
2905 *
2906 * This is called on page move and undelete, as well as edit
2907 * @static
2908 * @param $title_obj a title object
2909 */
2910
2911 static function onArticleCreate($title) {
2912 # The talk page isn't in the regular link tables, so we need to update manually:
2913 if ( $title->isTalkPage() ) {
2914 $other = $title->getSubjectPage();
2915 } else {
2916 $other = $title->getTalkPage();
2917 }
2918 $other->invalidateCache();
2919 $other->purgeSquid();
2920
2921 $title->touchLinks();
2922 $title->purgeSquid();
2923 $title->deleteTitleProtection();
2924 }
2925
2926 static function onArticleDelete( $title ) {
2927 global $wgUseFileCache, $wgMessageCache;
2928
2929 $title->touchLinks();
2930 $title->purgeSquid();
2931
2932 # File cache
2933 if ( $wgUseFileCache ) {
2934 $cm = new HTMLFileCache( $title );
2935 @unlink( $cm->fileCacheName() );
2936 }
2937
2938 if( $title->getNamespace() == NS_MEDIAWIKI) {
2939 $wgMessageCache->replace( $title->getDBkey(), false );
2940 }
2941 }
2942
2943 /**
2944 * Purge caches on page update etc
2945 */
2946 static function onArticleEdit( $title ) {
2947 global $wgDeferredUpdateList, $wgUseFileCache;
2948
2949 // Invalidate caches of articles which include this page
2950 $update = new HTMLCacheUpdate( $title, 'templatelinks' );
2951 $wgDeferredUpdateList[] = $update;
2952
2953 # Purge squid for this page only
2954 $title->purgeSquid();
2955
2956 # Clear file cache
2957 if ( $wgUseFileCache ) {
2958 $cm = new HTMLFileCache( $title );
2959 @unlink( $cm->fileCacheName() );
2960 }
2961 }
2962
2963 /**#@-*/
2964
2965 /**
2966 * Info about this page
2967 * Called for ?action=info when $wgAllowPageInfo is on.
2968 *
2969 * @public
2970 */
2971 function info() {
2972 global $wgLang, $wgOut, $wgAllowPageInfo, $wgUser;
2973
2974 if ( !$wgAllowPageInfo ) {
2975 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
2976 return;
2977 }
2978
2979 $page = $this->mTitle->getSubjectPage();
2980
2981 $wgOut->setPagetitle( $page->getPrefixedText() );
2982 $wgOut->setPageTitleActionText( wfMsg( 'info_short' ) );
2983 $wgOut->setSubtitle( wfMsg( 'infosubtitle' ) );
2984
2985 if( !$this->mTitle->exists() ) {
2986 $wgOut->addHtml( '<div class="noarticletext">' );
2987 if( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2988 // This doesn't quite make sense; the user is asking for
2989 // information about the _page_, not the message... -- RC
2990 $wgOut->addHtml( htmlspecialchars( wfMsgWeirdKey( $this->mTitle->getText() ) ) );
2991 } else {
2992 $msg = $wgUser->isLoggedIn()
2993 ? 'noarticletext'
2994 : 'noarticletextanon';
2995 $wgOut->addHtml( wfMsgExt( $msg, 'parse' ) );
2996 }
2997 $wgOut->addHtml( '</div>' );
2998 } else {
2999 $dbr = wfGetDB( DB_SLAVE );
3000 $wl_clause = array(
3001 'wl_title' => $page->getDBkey(),
3002 'wl_namespace' => $page->getNamespace() );
3003 $numwatchers = $dbr->selectField(
3004 'watchlist',
3005 'COUNT(*)',
3006 $wl_clause,
3007 __METHOD__,
3008 $this->getSelectOptions() );
3009
3010 $pageInfo = $this->pageCountInfo( $page );
3011 $talkInfo = $this->pageCountInfo( $page->getTalkPage() );
3012
3013 $wgOut->addHTML( "<ul><li>" . wfMsg("numwatchers", $wgLang->formatNum( $numwatchers ) ) . '</li>' );
3014 $wgOut->addHTML( "<li>" . wfMsg('numedits', $wgLang->formatNum( $pageInfo['edits'] ) ) . '</li>');
3015 if( $talkInfo ) {
3016 $wgOut->addHTML( '<li>' . wfMsg("numtalkedits", $wgLang->formatNum( $talkInfo['edits'] ) ) . '</li>');
3017 }
3018 $wgOut->addHTML( '<li>' . wfMsg("numauthors", $wgLang->formatNum( $pageInfo['authors'] ) ) . '</li>' );
3019 if( $talkInfo ) {
3020 $wgOut->addHTML( '<li>' . wfMsg('numtalkauthors', $wgLang->formatNum( $talkInfo['authors'] ) ) . '</li>' );
3021 }
3022 $wgOut->addHTML( '</ul>' );
3023
3024 }
3025 }
3026
3027 /**
3028 * Return the total number of edits and number of unique editors
3029 * on a given page. If page does not exist, returns false.
3030 *
3031 * @param Title $title
3032 * @return array
3033 * @private
3034 */
3035 function pageCountInfo( $title ) {
3036 $id = $title->getArticleId();
3037 if( $id == 0 ) {
3038 return false;
3039 }
3040
3041 $dbr = wfGetDB( DB_SLAVE );
3042
3043 $rev_clause = array( 'rev_page' => $id );
3044
3045 $edits = $dbr->selectField(
3046 'revision',
3047 'COUNT(rev_page)',
3048 $rev_clause,
3049 __METHOD__,
3050 $this->getSelectOptions() );
3051
3052 $authors = $dbr->selectField(
3053 'revision',
3054 'COUNT(DISTINCT rev_user_text)',
3055 $rev_clause,
3056 __METHOD__,
3057 $this->getSelectOptions() );
3058
3059 return array( 'edits' => $edits, 'authors' => $authors );
3060 }
3061
3062 /**
3063 * Return a list of templates used by this article.
3064 * Uses the templatelinks table
3065 *
3066 * @return array Array of Title objects
3067 */
3068 function getUsedTemplates() {
3069 $result = array();
3070 $id = $this->mTitle->getArticleID();
3071 if( $id == 0 ) {
3072 return array();
3073 }
3074
3075 $dbr = wfGetDB( DB_SLAVE );
3076 $res = $dbr->select( array( 'templatelinks' ),
3077 array( 'tl_namespace', 'tl_title' ),
3078 array( 'tl_from' => $id ),
3079 'Article:getUsedTemplates' );
3080 if ( false !== $res ) {
3081 if ( $dbr->numRows( $res ) ) {
3082 while ( $row = $dbr->fetchObject( $res ) ) {
3083 $result[] = Title::makeTitle( $row->tl_namespace, $row->tl_title );
3084 }
3085 }
3086 }
3087 $dbr->freeResult( $res );
3088 return $result;
3089 }
3090
3091 /**
3092 * Return an auto-generated summary if the text provided is a redirect.
3093 *
3094 * @param string $text The wikitext to check
3095 * @return string '' or an appropriate summary
3096 */
3097 public static function getRedirectAutosummary( $text ) {
3098 $rt = Title::newFromRedirect( $text );
3099 if( is_object( $rt ) )
3100 return wfMsgForContent( 'autoredircomment', $rt->getFullText() );
3101 else
3102 return '';
3103 }
3104
3105 /**
3106 * Return an auto-generated summary if the new text is much shorter than
3107 * the old text.
3108 *
3109 * @param string $oldtext The previous text of the page
3110 * @param string $text The submitted text of the page
3111 * @return string An appropriate autosummary, or an empty string.
3112 */
3113 public static function getBlankingAutosummary( $oldtext, $text ) {
3114 if ($oldtext!='' && $text=='') {
3115 return wfMsgForContent('autosumm-blank');
3116 } elseif (strlen($oldtext) > 10 * strlen($text) && strlen($text) < 500) {
3117 #Removing more than 90% of the article
3118 global $wgContLang;
3119 $truncatedtext = $wgContLang->truncate($text, max(0, 200 - strlen(wfMsgForContent('autosumm-replace'))), '...');
3120 return wfMsgForContent('autosumm-replace', $truncatedtext);
3121 } else {
3122 return '';
3123 }
3124 }
3125
3126 /**
3127 * Return an applicable autosummary if one exists for the given edit.
3128 * @param string $oldtext The previous text of the page.
3129 * @param string $newtext The submitted text of the page.
3130 * @param bitmask $flags A bitmask of flags submitted for the edit.
3131 * @return string An appropriate autosummary, or an empty string.
3132 */
3133 public static function getAutosummary( $oldtext, $newtext, $flags ) {
3134
3135 # This code is UGLY UGLY UGLY.
3136 # Somebody PLEASE come up with a more elegant way to do it.
3137
3138 #Redirect autosummaries
3139 $summary = self::getRedirectAutosummary( $newtext );
3140
3141 if ($summary)
3142 return $summary;
3143
3144 #Blanking autosummaries
3145 if (!($flags & EDIT_NEW))
3146 $summary = self::getBlankingAutosummary( $oldtext, $newtext );
3147
3148 if ($summary)
3149 return $summary;
3150
3151 #New page autosummaries
3152 if ($flags & EDIT_NEW && strlen($newtext)) {
3153 #If they're making a new article, give its text, truncated, in the summary.
3154 global $wgContLang;
3155 $truncatedtext = $wgContLang->truncate(
3156 str_replace("\n", ' ', $newtext),
3157 max( 0, 200 - strlen( wfMsgForContent( 'autosumm-new') ) ),
3158 '...' );
3159 $summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
3160 }
3161
3162 if ($summary)
3163 return $summary;
3164
3165 return $summary;
3166 }
3167
3168 /**
3169 * Add the primary page-view wikitext to the output buffer
3170 * Saves the text into the parser cache if possible.
3171 * Updates templatelinks if it is out of date.
3172 *
3173 * @param string $text
3174 * @param bool $cache
3175 */
3176 public function outputWikiText( $text, $cache = true ) {
3177 global $wgParser, $wgUser, $wgOut;
3178
3179 $popts = $wgOut->parserOptions();
3180 $popts->setTidy(true);
3181 $popts->enableLimitReport();
3182 $parserOutput = $wgParser->parse( $text, $this->mTitle,
3183 $popts, true, true, $this->getRevIdFetched() );
3184 $popts->setTidy(false);
3185 $popts->enableLimitReport( false );
3186 if ( $cache && $this && $parserOutput->getCacheTime() != -1 ) {
3187 $parserCache =& ParserCache::singleton();
3188 $parserCache->save( $parserOutput, $this, $wgUser );
3189 }
3190
3191 if ( !wfReadOnly() && $this->mTitle->areRestrictionsCascading() ) {
3192 // templatelinks table may have become out of sync,
3193 // especially if using variable-based transclusions.
3194 // For paranoia, check if things have changed and if
3195 // so apply updates to the database. This will ensure
3196 // that cascaded protections apply as soon as the changes
3197 // are visible.
3198
3199 # Get templates from templatelinks
3200 $id = $this->mTitle->getArticleID();
3201
3202 $tlTemplates = array();
3203
3204 $dbr = wfGetDB( DB_SLAVE );
3205 $res = $dbr->select( array( 'templatelinks' ),
3206 array( 'tl_namespace', 'tl_title' ),
3207 array( 'tl_from' => $id ),
3208 'Article:getUsedTemplates' );
3209
3210 global $wgContLang;
3211
3212 if ( false !== $res ) {
3213 if ( $dbr->numRows( $res ) ) {
3214 while ( $row = $dbr->fetchObject( $res ) ) {
3215 $tlTemplates[] = $wgContLang->getNsText( $row->tl_namespace ) . ':' . $row->tl_title ;
3216 }
3217 }
3218 }
3219
3220 # Get templates from parser output.
3221 $poTemplates_allns = $parserOutput->getTemplates();
3222
3223 $poTemplates = array ();
3224 foreach ( $poTemplates_allns as $ns_templates ) {
3225 $poTemplates = array_merge( $poTemplates, $ns_templates );
3226 }
3227
3228 # Get the diff
3229 $templates_diff = array_diff( $poTemplates, $tlTemplates );
3230
3231 if ( count( $templates_diff ) > 0 ) {
3232 # Whee, link updates time.
3233 $u = new LinksUpdate( $this->mTitle, $parserOutput );
3234
3235 $dbw = wfGetDb( DB_MASTER );
3236 $dbw->begin();
3237
3238 $u->doUpdate();
3239
3240 $dbw->commit();
3241 }
3242 }
3243
3244 $wgOut->addParserOutput( $parserOutput );
3245 }
3246
3247 }