* (bug 12567) Fix for misformatted read-only messages on edit, protect.
[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 wfProfileIn( __METHOD__ );
1102
1103 if ($isRedirect) {
1104
1105 // This title is a redirect, Add/Update row in the redirect table
1106 $set = array( /* SET */
1107 'rd_namespace' => $redirectTitle->getNamespace(),
1108 'rd_title' => $redirectTitle->getDBkey(),
1109 'rd_from' => $this->getId(),
1110 );
1111
1112 $dbw->replace( 'redirect', array( 'rd_from' ), $set, __METHOD__ );
1113 } else {
1114 // This is not a redirect, remove row from redirect table
1115 $where = array( 'rd_from' => $this->getId() );
1116 $dbw->delete( 'redirect', $where, __METHOD__);
1117 }
1118
1119 wfProfileOut( __METHOD__ );
1120 return ( $dbw->affectedRows() != 0 );
1121 }
1122
1123 return true;
1124 }
1125
1126 /**
1127 * If the given revision is newer than the currently set page_latest,
1128 * update the page record. Otherwise, do nothing.
1129 *
1130 * @param Database $dbw
1131 * @param Revision $revision
1132 */
1133 function updateIfNewerOn( &$dbw, $revision ) {
1134 wfProfileIn( __METHOD__ );
1135
1136 $row = $dbw->selectRow(
1137 array( 'revision', 'page' ),
1138 array( 'rev_id', 'rev_timestamp', 'page_is_redirect' ),
1139 array(
1140 'page_id' => $this->getId(),
1141 'page_latest=rev_id' ),
1142 __METHOD__ );
1143 if( $row ) {
1144 if( wfTimestamp(TS_MW, $row->rev_timestamp) >= $revision->getTimestamp() ) {
1145 wfProfileOut( __METHOD__ );
1146 return false;
1147 }
1148 $prev = $row->rev_id;
1149 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1150 } else {
1151 # No or missing previous revision; mark the page as new
1152 $prev = 0;
1153 $lastRevIsRedirect = null;
1154 }
1155
1156 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1157 wfProfileOut( __METHOD__ );
1158 return $ret;
1159 }
1160
1161 /**
1162 * @return string Complete article text, or null if error
1163 */
1164 function replaceSection($section, $text, $summary = '', $edittime = NULL) {
1165 wfProfileIn( __METHOD__ );
1166
1167 if( $section == '' ) {
1168 // Whole-page edit; let the text through unmolested.
1169 } else {
1170 if( is_null( $edittime ) ) {
1171 $rev = Revision::newFromTitle( $this->mTitle );
1172 } else {
1173 $dbw = wfGetDB( DB_MASTER );
1174 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1175 }
1176 if( is_null( $rev ) ) {
1177 wfDebug( "Article::replaceSection asked for bogus section (page: " .
1178 $this->getId() . "; section: $section; edittime: $edittime)\n" );
1179 return null;
1180 }
1181 $oldtext = $rev->getText();
1182
1183 if( $section == 'new' ) {
1184 # Inserting a new section
1185 $subject = $summary ? wfMsgForContent('newsectionheaderdefaultlevel',$summary) . "\n\n" : '';
1186 $text = strlen( trim( $oldtext ) ) > 0
1187 ? "{$oldtext}\n\n{$subject}{$text}"
1188 : "{$subject}{$text}";
1189 } else {
1190 # Replacing an existing section; roll out the big guns
1191 global $wgParser;
1192 $text = $wgParser->replaceSection( $oldtext, $section, $text );
1193 }
1194
1195 }
1196
1197 wfProfileOut( __METHOD__ );
1198 return $text;
1199 }
1200
1201 /**
1202 * @deprecated use Article::doEdit()
1203 */
1204 function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false, $bot=false ) {
1205 $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1206 ( $isminor ? EDIT_MINOR : 0 ) |
1207 ( $suppressRC ? EDIT_SUPPRESS_RC : 0 ) |
1208 ( $bot ? EDIT_FORCE_BOT : 0 );
1209
1210 # If this is a comment, add the summary as headline
1211 if ( $comment && $summary != "" ) {
1212 $text = wfMsgForContent('newsectionheaderdefaultlevel',$summary) . "\n\n".$text;
1213 }
1214
1215 $this->doEdit( $text, $summary, $flags );
1216
1217 $dbw = wfGetDB( DB_MASTER );
1218 if ($watchthis) {
1219 if (!$this->mTitle->userIsWatching()) {
1220 $dbw->begin();
1221 $this->doWatch();
1222 $dbw->commit();
1223 }
1224 } else {
1225 if ( $this->mTitle->userIsWatching() ) {
1226 $dbw->begin();
1227 $this->doUnwatch();
1228 $dbw->commit();
1229 }
1230 }
1231 $this->doRedirect( $this->isRedirect( $text ) );
1232 }
1233
1234 /**
1235 * @deprecated use Article::doEdit()
1236 */
1237 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
1238 $flags = EDIT_UPDATE | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1239 ( $minor ? EDIT_MINOR : 0 ) |
1240 ( $forceBot ? EDIT_FORCE_BOT : 0 );
1241
1242 $good = $this->doEdit( $text, $summary, $flags );
1243 if ( $good ) {
1244 $dbw = wfGetDB( DB_MASTER );
1245 if ($watchthis) {
1246 if (!$this->mTitle->userIsWatching()) {
1247 $dbw->begin();
1248 $this->doWatch();
1249 $dbw->commit();
1250 }
1251 } else {
1252 if ( $this->mTitle->userIsWatching() ) {
1253 $dbw->begin();
1254 $this->doUnwatch();
1255 $dbw->commit();
1256 }
1257 }
1258
1259 $extraq = ''; // Give extensions a chance to modify URL query on update
1260 wfRunHooks( 'ArticleUpdateBeforeRedirect', array( $this, &$sectionanchor, &$extraq ) );
1261
1262 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor, $extraq );
1263 }
1264 return $good;
1265 }
1266
1267 /**
1268 * Article::doEdit()
1269 *
1270 * Change an existing article or create a new article. Updates RC and all necessary caches,
1271 * optionally via the deferred update array.
1272 *
1273 * $wgUser must be set before calling this function.
1274 *
1275 * @param string $text New text
1276 * @param string $summary Edit summary
1277 * @param integer $flags bitfield:
1278 * EDIT_NEW
1279 * Article is known or assumed to be non-existent, create a new one
1280 * EDIT_UPDATE
1281 * Article is known or assumed to be pre-existing, update it
1282 * EDIT_MINOR
1283 * Mark this edit minor, if the user is allowed to do so
1284 * EDIT_SUPPRESS_RC
1285 * Do not log the change in recentchanges
1286 * EDIT_FORCE_BOT
1287 * Mark the edit a "bot" edit regardless of user rights
1288 * EDIT_DEFER_UPDATES
1289 * Defer some of the updates until the end of index.php
1290 * EDIT_AUTOSUMMARY
1291 * Fill in blank summaries with generated text where possible
1292 *
1293 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1294 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return false. If
1295 * EDIT_NEW is specified and the article does exist, a duplicate key error will cause an exception
1296 * to be thrown from the Database. These two conditions are also possible with auto-detection due
1297 * to MediaWiki's performance-optimised locking strategy.
1298 *
1299 * @return bool success
1300 */
1301 function doEdit( $text, $summary, $flags = 0 ) {
1302 global $wgUser, $wgDBtransactions;
1303
1304 wfProfileIn( __METHOD__ );
1305 $good = true;
1306
1307 if ( !($flags & EDIT_NEW) && !($flags & EDIT_UPDATE) ) {
1308 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
1309 if ( $aid ) {
1310 $flags |= EDIT_UPDATE;
1311 } else {
1312 $flags |= EDIT_NEW;
1313 }
1314 }
1315
1316 if( !wfRunHooks( 'ArticleSave', array( &$this, &$wgUser, &$text,
1317 &$summary, $flags & EDIT_MINOR,
1318 null, null, &$flags ) ) )
1319 {
1320 wfDebug( __METHOD__ . ": ArticleSave hook aborted save!\n" );
1321 wfProfileOut( __METHOD__ );
1322 return false;
1323 }
1324
1325 # Silently ignore EDIT_MINOR if not allowed
1326 $isminor = ( $flags & EDIT_MINOR ) && $wgUser->isAllowed('minoredit');
1327 $bot = $flags & EDIT_FORCE_BOT;
1328
1329 $oldtext = $this->getContent();
1330 $oldsize = strlen( $oldtext );
1331
1332 # Provide autosummaries if one is not provided.
1333 if ($flags & EDIT_AUTOSUMMARY && $summary == '')
1334 $summary = $this->getAutosummary( $oldtext, $text, $flags );
1335
1336 $editInfo = $this->prepareTextForEdit( $text );
1337 $text = $editInfo->pst;
1338 $newsize = strlen( $text );
1339
1340 $dbw = wfGetDB( DB_MASTER );
1341 $now = wfTimestampNow();
1342
1343 if ( $flags & EDIT_UPDATE ) {
1344 # Update article, but only if changed.
1345
1346 # Make sure the revision is either completely inserted or not inserted at all
1347 if( !$wgDBtransactions ) {
1348 $userAbort = ignore_user_abort( true );
1349 }
1350
1351 $lastRevision = 0;
1352 $revisionId = 0;
1353
1354 $changed = ( strcmp( $text, $oldtext ) != 0 );
1355
1356 if ( $changed ) {
1357 $this->mGoodAdjustment = (int)$this->isCountable( $text )
1358 - (int)$this->isCountable( $oldtext );
1359 $this->mTotalAdjustment = 0;
1360
1361 $lastRevision = $dbw->selectField(
1362 'page', 'page_latest', array( 'page_id' => $this->getId() ) );
1363
1364 if ( !$lastRevision ) {
1365 # Article gone missing
1366 wfDebug( __METHOD__.": EDIT_UPDATE specified but article doesn't exist\n" );
1367 wfProfileOut( __METHOD__ );
1368 return false;
1369 }
1370
1371 $revision = new Revision( array(
1372 'page' => $this->getId(),
1373 'comment' => $summary,
1374 'minor_edit' => $isminor,
1375 'text' => $text
1376 ) );
1377
1378 $dbw->begin();
1379 $revisionId = $revision->insertOn( $dbw );
1380
1381 # Update page
1382 $ok = $this->updateRevisionOn( $dbw, $revision, $lastRevision );
1383
1384 if( !$ok ) {
1385 /* Belated edit conflict! Run away!! */
1386 $good = false;
1387 $dbw->rollback();
1388 } else {
1389 # Update recentchanges
1390 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1391 $rcid = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $wgUser, $summary,
1392 $lastRevision, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
1393 $revisionId );
1394
1395 # Mark as patrolled if the user can do so
1396 if( $GLOBALS['wgUseRCPatrol'] && $wgUser->isAllowed( 'autopatrol' ) ) {
1397 RecentChange::markPatrolled( $rcid );
1398 PatrolLog::record( $rcid, true );
1399 }
1400 }
1401 $wgUser->incEditCount();
1402 $dbw->commit();
1403 }
1404 } else {
1405 $revision = null;
1406 // Keep the same revision ID, but do some updates on it
1407 $revisionId = $this->getRevIdFetched();
1408 // Update page_touched, this is usually implicit in the page update
1409 // Other cache updates are done in onArticleEdit()
1410 $this->mTitle->invalidateCache();
1411 }
1412
1413 if( !$wgDBtransactions ) {
1414 ignore_user_abort( $userAbort );
1415 }
1416
1417 if ( $good ) {
1418 # Invalidate cache of this article and all pages using this article
1419 # as a template. Partly deferred.
1420 Article::onArticleEdit( $this->mTitle );
1421
1422 # Update links tables, site stats, etc.
1423 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, $changed );
1424 }
1425 } else {
1426 # Create new article
1427
1428 # Set statistics members
1429 # We work out if it's countable after PST to avoid counter drift
1430 # when articles are created with {{subst:}}
1431 $this->mGoodAdjustment = (int)$this->isCountable( $text );
1432 $this->mTotalAdjustment = 1;
1433
1434 $dbw->begin();
1435
1436 # Add the page record; stake our claim on this title!
1437 # This will fail with a database query exception if the article already exists
1438 $newid = $this->insertOn( $dbw );
1439
1440 # Save the revision text...
1441 $revision = new Revision( array(
1442 'page' => $newid,
1443 'comment' => $summary,
1444 'minor_edit' => $isminor,
1445 'text' => $text
1446 ) );
1447 $revisionId = $revision->insertOn( $dbw );
1448
1449 $this->mTitle->resetArticleID( $newid );
1450
1451 # Update the page record with revision data
1452 $this->updateRevisionOn( $dbw, $revision, 0 );
1453
1454 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1455 $rcid = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary, $bot,
1456 '', strlen( $text ), $revisionId );
1457 # Mark as patrolled if the user can
1458 if( ($GLOBALS['wgUseRCPatrol'] || $GLOBALS['wgUseNPPatrol']) && $wgUser->isAllowed( 'autopatrol' ) ) {
1459 RecentChange::markPatrolled( $rcid );
1460 PatrolLog::record( $rcid, true );
1461 }
1462 }
1463 $wgUser->incEditCount();
1464 $dbw->commit();
1465
1466 # Update links, etc.
1467 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, true );
1468
1469 # Clear caches
1470 Article::onArticleCreate( $this->mTitle );
1471
1472 wfRunHooks( 'ArticleInsertComplete', array( &$this, &$wgUser, $text, $summary,
1473 $flags & EDIT_MINOR, null, null, &$flags, $revision ) );
1474 }
1475
1476 if ( $good && !( $flags & EDIT_DEFER_UPDATES ) ) {
1477 wfDoUpdates();
1478 }
1479
1480 if ( $good ) {
1481 wfRunHooks( 'ArticleSaveComplete', array( &$this, &$wgUser, $text, $summary,
1482 $flags & EDIT_MINOR, null, null, &$flags, $revision ) );
1483 }
1484
1485 wfProfileOut( __METHOD__ );
1486 return $good;
1487 }
1488
1489 /**
1490 * @deprecated wrapper for doRedirect
1491 */
1492 function showArticle( $text, $subtitle , $sectionanchor = '', $me2, $now, $summary, $oldid ) {
1493 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1494 }
1495
1496 /**
1497 * Output a redirect back to the article.
1498 * This is typically used after an edit.
1499 *
1500 * @param boolean $noRedir Add redirect=no
1501 * @param string $sectionAnchor section to redirect to, including "#"
1502 */
1503 function doRedirect( $noRedir = false, $sectionAnchor = '', $extraq = '' ) {
1504 global $wgOut;
1505 if ( $noRedir ) {
1506 $query = 'redirect=no';
1507 if( $extraq )
1508 $query .= "&$query";
1509 } else {
1510 $query = $extraq;
1511 }
1512 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $sectionAnchor );
1513 }
1514
1515 /**
1516 * Mark this particular edit/page as patrolled
1517 */
1518 function markpatrolled() {
1519 global $wgOut, $wgRequest, $wgUseRCPatrol, $wgUseNPPatrol, $wgUser;
1520 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1521
1522 # Check patrol config options
1523
1524 if ( !($wgUseNPPatrol || $wgUseRCPatrol)) {
1525 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1526 return;
1527 }
1528
1529 # If we haven't been given an rc_id value, we can't do anything
1530 $rcid = (int) $wgRequest->getVal('rcid');
1531 $rc = $rcid ? RecentChange::newFromId($rcid) : null;
1532 if ( is_null ( $rc ) )
1533 {
1534 $wgOut->errorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1535 return;
1536 }
1537
1538 if ( !$wgUseRCPatrol && $rc->mAttribs['rc_type'] != RC_NEW) {
1539 // Only new pages can be patrolled if the general patrolling is off....???
1540 // @fixme -- is this necessary? Shouldn't we only bother controlling the
1541 // front end here?
1542 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1543 return;
1544 }
1545
1546 # Check permissions
1547 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'patrol', $wgUser );
1548
1549 if (count($permission_errors)>0)
1550 {
1551 $wgOut->showPermissionsErrorPage( $permission_errors );
1552 return;
1553 }
1554
1555 # Handle the 'MarkPatrolled' hook
1556 if( !wfRunHooks( 'MarkPatrolled', array( $rcid, &$wgUser, false ) ) ) {
1557 return;
1558 }
1559
1560 #It would be nice to see where the user had actually come from, but for now just guess
1561 $returnto = $rc->mAttribs['rc_type'] == RC_NEW ? 'Newpages' : 'Recentchanges';
1562 $return = Title::makeTitle( NS_SPECIAL, $returnto );
1563
1564 # If it's left up to us, check that the user is allowed to patrol this edit
1565 # If the user has the "autopatrol" right, then we'll assume there are no
1566 # other conditions stopping them doing so
1567 if( !$wgUser->isAllowed( 'autopatrol' ) ) {
1568 $rc = RecentChange::newFromId( $rcid );
1569 # Graceful error handling, as we've done before here...
1570 # (If the recent change doesn't exist, then it doesn't matter whether
1571 # the user is allowed to patrol it or not; nothing is going to happen
1572 if( is_object( $rc ) && $wgUser->getName() == $rc->getAttribute( 'rc_user_text' ) ) {
1573 # The user made this edit, and can't patrol it
1574 # Tell them so, and then back off
1575 $wgOut->setPageTitle( wfMsg( 'markedaspatrollederror' ) );
1576 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrollederror-noautopatrol' ) );
1577 $wgOut->returnToMain( false, $return );
1578 return;
1579 }
1580 }
1581
1582 # Mark the edit as patrolled
1583 RecentChange::markPatrolled( $rcid );
1584 PatrolLog::record( $rcid );
1585 wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
1586
1587 # Inform the user
1588 $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
1589 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrolledtext' ) );
1590 $wgOut->returnToMain( false, $return );
1591 }
1592
1593 /**
1594 * User-interface handler for the "watch" action
1595 */
1596
1597 function watch() {
1598
1599 global $wgUser, $wgOut;
1600
1601 if ( $wgUser->isAnon() ) {
1602 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1603 return;
1604 }
1605 if ( wfReadOnly() ) {
1606 $wgOut->readOnlyPage();
1607 return;
1608 }
1609
1610 if( $this->doWatch() ) {
1611 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
1612 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1613
1614 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1615 $text = wfMsg( 'addedwatchtext', $link );
1616 $wgOut->addWikiText( $text );
1617 }
1618
1619 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1620 }
1621
1622 /**
1623 * Add this page to $wgUser's watchlist
1624 * @return bool true on successful watch operation
1625 */
1626 function doWatch() {
1627 global $wgUser;
1628 if( $wgUser->isAnon() ) {
1629 return false;
1630 }
1631
1632 if (wfRunHooks('WatchArticle', array(&$wgUser, &$this))) {
1633 $wgUser->addWatch( $this->mTitle );
1634
1635 return wfRunHooks('WatchArticleComplete', array(&$wgUser, &$this));
1636 }
1637
1638 return false;
1639 }
1640
1641 /**
1642 * User interface handler for the "unwatch" action.
1643 */
1644 function unwatch() {
1645
1646 global $wgUser, $wgOut;
1647
1648 if ( $wgUser->isAnon() ) {
1649 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1650 return;
1651 }
1652 if ( wfReadOnly() ) {
1653 $wgOut->readOnlyPage();
1654 return;
1655 }
1656
1657 if( $this->doUnwatch() ) {
1658 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
1659 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1660
1661 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1662 $text = wfMsg( 'removedwatchtext', $link );
1663 $wgOut->addWikiText( $text );
1664 }
1665
1666 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1667 }
1668
1669 /**
1670 * Stop watching a page
1671 * @return bool true on successful unwatch
1672 */
1673 function doUnwatch() {
1674 global $wgUser;
1675 if( $wgUser->isAnon() ) {
1676 return false;
1677 }
1678
1679 if (wfRunHooks('UnwatchArticle', array(&$wgUser, &$this))) {
1680 $wgUser->removeWatch( $this->mTitle );
1681
1682 return wfRunHooks('UnwatchArticleComplete', array(&$wgUser, &$this));
1683 }
1684
1685 return false;
1686 }
1687
1688 /**
1689 * action=protect handler
1690 */
1691 function protect() {
1692 $form = new ProtectionForm( $this );
1693 $form->execute();
1694 }
1695
1696 /**
1697 * action=unprotect handler (alias)
1698 */
1699 function unprotect() {
1700 $this->protect();
1701 }
1702
1703 /**
1704 * Update the article's restriction field, and leave a log entry.
1705 *
1706 * @param array $limit set of restriction keys
1707 * @param string $reason
1708 * @return bool true on success
1709 */
1710 function updateRestrictions( $limit = array(), $reason = '', $cascade = 0, $expiry = null ) {
1711 global $wgUser, $wgRestrictionTypes, $wgContLang;
1712
1713 $id = $this->mTitle->getArticleID();
1714 if( array() != $this->mTitle->getUserPermissionsErrors( 'protect', $wgUser ) || wfReadOnly() || $id == 0 ) {
1715 return false;
1716 }
1717
1718 if (!$cascade) {
1719 $cascade = false;
1720 }
1721
1722 // Take this opportunity to purge out expired restrictions
1723 Title::purgeExpiredRestrictions();
1724
1725 # FIXME: Same limitations as described in ProtectionForm.php (line 37);
1726 # we expect a single selection, but the schema allows otherwise.
1727 $current = array();
1728 foreach( $wgRestrictionTypes as $action )
1729 $current[$action] = implode( '', $this->mTitle->getRestrictions( $action ) );
1730
1731 $current = Article::flattenRestrictions( $current );
1732 $updated = Article::flattenRestrictions( $limit );
1733
1734 $changed = ( $current != $updated );
1735 $changed = $changed || ($this->mTitle->areRestrictionsCascading() != $cascade);
1736 $changed = $changed || ($this->mTitle->mRestrictionsExpiry != $expiry);
1737 $protect = ( $updated != '' );
1738
1739 # If nothing's changed, do nothing
1740 if( $changed ) {
1741 global $wgGroupPermissions;
1742 if( wfRunHooks( 'ArticleProtect', array( &$this, &$wgUser, $limit, $reason ) ) ) {
1743
1744 $dbw = wfGetDB( DB_MASTER );
1745
1746 $encodedExpiry = Block::encodeExpiry($expiry, $dbw );
1747
1748 $expiry_description = '';
1749 if ( $encodedExpiry != 'infinity' ) {
1750 $expiry_description = ' (' . wfMsgForContent( 'protect-expiring', $wgContLang->timeanddate( $expiry ) ).')';
1751 }
1752
1753 # Prepare a null revision to be added to the history
1754 $modified = $current != '' && $protect;
1755 if ( $protect ) {
1756 $comment_type = $modified ? 'modifiedarticleprotection' : 'protectedarticle';
1757 } else {
1758 $comment_type = 'unprotectedarticle';
1759 }
1760 $comment = $wgContLang->ucfirst( wfMsgForContent( $comment_type, $this->mTitle->getPrefixedText() ) );
1761
1762 foreach( $limit as $action => $restrictions ) {
1763 # Check if the group level required to edit also can protect pages
1764 # Otherwise, people who cannot normally protect can "protect" pages via transclusion
1765 $cascade = ( $cascade && isset($wgGroupPermissions[$restrictions]['protect']) && $wgGroupPermissions[$restrictions]['protect'] );
1766 }
1767
1768 $cascade_description = '';
1769 if ($cascade) {
1770 $cascade_description = ' ['.wfMsg('protect-summary-cascade').']';
1771 }
1772
1773 if( $reason )
1774 $comment .= ": $reason";
1775 if( $protect )
1776 $comment .= " [$updated]";
1777 if ( $expiry_description && $protect )
1778 $comment .= "$expiry_description";
1779 if ( $cascade )
1780 $comment .= "$cascade_description";
1781
1782 $nullRevision = Revision::newNullRevision( $dbw, $id, $comment, true );
1783 $nullRevId = $nullRevision->insertOn( $dbw );
1784
1785 # Update restrictions table
1786 foreach( $limit as $action => $restrictions ) {
1787 if ($restrictions != '' ) {
1788 $dbw->replace( 'page_restrictions', array(array('pr_page', 'pr_type')),
1789 array( 'pr_page' => $id, 'pr_type' => $action
1790 , 'pr_level' => $restrictions, 'pr_cascade' => $cascade ? 1 : 0
1791 , 'pr_expiry' => $encodedExpiry ), __METHOD__ );
1792 } else {
1793 $dbw->delete( 'page_restrictions', array( 'pr_page' => $id,
1794 'pr_type' => $action ), __METHOD__ );
1795 }
1796 }
1797
1798 # Update page record
1799 $dbw->update( 'page',
1800 array( /* SET */
1801 'page_touched' => $dbw->timestamp(),
1802 'page_restrictions' => '',
1803 'page_latest' => $nullRevId
1804 ), array( /* WHERE */
1805 'page_id' => $id
1806 ), 'Article::protect'
1807 );
1808 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$wgUser, $limit, $reason ) );
1809
1810 # Update the protection log
1811 $log = new LogPage( 'protect' );
1812
1813 if( $protect ) {
1814 $log->addEntry( $modified ? 'modify' : 'protect', $this->mTitle, trim( $reason . " [$updated]$cascade_description$expiry_description" ) );
1815 } else {
1816 $log->addEntry( 'unprotect', $this->mTitle, $reason );
1817 }
1818
1819 } # End hook
1820 } # End "changed" check
1821
1822 return true;
1823 }
1824
1825 /**
1826 * Take an array of page restrictions and flatten it to a string
1827 * suitable for insertion into the page_restrictions field.
1828 * @param array $limit
1829 * @return string
1830 * @private
1831 */
1832 function flattenRestrictions( $limit ) {
1833 if( !is_array( $limit ) ) {
1834 throw new MWException( 'Article::flattenRestrictions given non-array restriction set' );
1835 }
1836 $bits = array();
1837 ksort( $limit );
1838 foreach( $limit as $action => $restrictions ) {
1839 if( $restrictions != '' ) {
1840 $bits[] = "$action=$restrictions";
1841 }
1842 }
1843 return implode( ':', $bits );
1844 }
1845
1846 /**
1847 * Auto-generates a deletion reason
1848 * @param bool &$hasHistory Whether the page has a history
1849 */
1850 public function generateReason(&$hasHistory)
1851 {
1852 global $wgContLang;
1853 $dbw = wfGetDB(DB_MASTER);
1854 // Get the last revision
1855 $rev = Revision::newFromTitle($this->mTitle);
1856 if(is_null($rev))
1857 return false;
1858 // Get the article's contents
1859 $contents = $rev->getText();
1860 $blank = false;
1861 // If the page is blank, use the text from the previous revision,
1862 // which can only be blank if there's a move/import/protect dummy revision involved
1863 if($contents == '')
1864 {
1865 $prev = $rev->getPrevious();
1866 if($prev)
1867 {
1868 $contents = $prev->getText();
1869 $blank = true;
1870 }
1871 }
1872
1873 // Find out if there was only one contributor
1874 // Only scan the last 20 revisions
1875 $limit = 20;
1876 $res = $dbw->select('revision', 'rev_user_text', array('rev_page' => $this->getID()), __METHOD__,
1877 array('LIMIT' => $limit));
1878 if($res === false)
1879 // This page has no revisions, which is very weird
1880 return false;
1881 if($res->numRows() > 1)
1882 $hasHistory = true;
1883 else
1884 $hasHistory = false;
1885 $row = $dbw->fetchObject($res);
1886 $onlyAuthor = $row->rev_user_text;
1887 // Try to find a second contributor
1888 while( $row = $dbw->fetchObject($res) ) {
1889 if($row->rev_user_text != $onlyAuthor) {
1890 $onlyAuthor = false;
1891 break;
1892 }
1893 }
1894 $dbw->freeResult($res);
1895
1896 // Generate the summary with a '$1' placeholder
1897 if($blank) {
1898 // The current revision is blank and the one before is also
1899 // blank. It's just not our lucky day
1900 $reason = wfMsgForContent('exbeforeblank', '$1');
1901 } else {
1902 if($onlyAuthor)
1903 $reason = wfMsgForContent('excontentauthor', '$1', $onlyAuthor);
1904 else
1905 $reason = wfMsgForContent('excontent', '$1');
1906 }
1907
1908 // Replace newlines with spaces to prevent uglyness
1909 $contents = preg_replace("/[\n\r]/", ' ', $contents);
1910 // Calculate the maximum amount of chars to get
1911 // Max content length = max comment length - length of the comment (excl. $1) - '...'
1912 $maxLength = 255 - (strlen($reason) - 2) - 3;
1913 $contents = $wgContLang->truncate($contents, $maxLength, '...');
1914 // Remove possible unfinished links
1915 $contents = preg_replace( '/\[\[([^\]]*)\]?$/', '$1', $contents );
1916 // Now replace the '$1' placeholder
1917 $reason = str_replace( '$1', $contents, $reason );
1918 return $reason;
1919 }
1920
1921
1922 /*
1923 * UI entry point for page deletion
1924 */
1925 function delete() {
1926 global $wgUser, $wgOut, $wgRequest;
1927
1928 $confirm = $wgRequest->wasPosted() &&
1929 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
1930
1931 $this->DeleteReasonList = $wgRequest->getText( 'wpDeleteReasonList', 'other' );
1932 $this->DeleteReason = $wgRequest->getText( 'wpReason' );
1933
1934 $reason = $this->DeleteReasonList;
1935
1936 if ( $reason != 'other' && $this->DeleteReason != '') {
1937 // Entry from drop down menu + additional comment
1938 $reason .= ': ' . $this->DeleteReason;
1939 } elseif ( $reason == 'other' ) {
1940 $reason = $this->DeleteReason;
1941 }
1942
1943 # This code desperately needs to be totally rewritten
1944
1945 # Read-only check...
1946 if ( wfReadOnly() ) {
1947 $wgOut->readOnlyPage();
1948 return;
1949 }
1950
1951 # Check permissions
1952 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'delete', $wgUser );
1953
1954 if (count($permission_errors)>0) {
1955 $wgOut->showPermissionsErrorPage( $permission_errors );
1956 return;
1957 }
1958
1959 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
1960
1961 # Better double-check that it hasn't been deleted yet!
1962 $dbw = wfGetDB( DB_MASTER );
1963 $conds = $this->mTitle->pageCond();
1964 $latest = $dbw->selectField( 'page', 'page_latest', $conds, __METHOD__ );
1965 if ( $latest === false ) {
1966 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1967 return;
1968 }
1969
1970 if( $confirm ) {
1971 $this->doDelete( $reason );
1972 if( $wgRequest->getCheck( 'wpWatch' ) ) {
1973 $this->doWatch();
1974 } elseif( $this->mTitle->userIsWatching() ) {
1975 $this->doUnwatch();
1976 }
1977 return;
1978 }
1979
1980 // Generate deletion reason
1981 $hasHistory = false;
1982 if ( !$reason ) $reason = $this->generateReason($hasHistory);
1983
1984 // If the page has a history, insert a warning
1985 if( $hasHistory && !$confirm ) {
1986 $skin=$wgUser->getSkin();
1987 $wgOut->addHTML( '<strong>' . wfMsg( 'historywarning' ) . ' ' . $skin->historyLink() . '</strong>' );
1988 }
1989
1990 return $this->confirmDelete( '', $reason );
1991 }
1992
1993 /**
1994 * Get the last N authors
1995 * @param int $num Number of revisions to get
1996 * @param string $revLatest The latest rev_id, selected from the master (optional)
1997 * @return array Array of authors, duplicates not removed
1998 */
1999 function getLastNAuthors( $num, $revLatest = 0 ) {
2000 wfProfileIn( __METHOD__ );
2001
2002 // First try the slave
2003 // If that doesn't have the latest revision, try the master
2004 $continue = 2;
2005 $db = wfGetDB( DB_SLAVE );
2006 do {
2007 $res = $db->select( array( 'page', 'revision' ),
2008 array( 'rev_id', 'rev_user_text' ),
2009 array(
2010 'page_namespace' => $this->mTitle->getNamespace(),
2011 'page_title' => $this->mTitle->getDBkey(),
2012 'rev_page = page_id'
2013 ), __METHOD__, $this->getSelectOptions( array(
2014 'ORDER BY' => 'rev_timestamp DESC',
2015 'LIMIT' => $num
2016 ) )
2017 );
2018 if ( !$res ) {
2019 wfProfileOut( __METHOD__ );
2020 return array();
2021 }
2022 $row = $db->fetchObject( $res );
2023 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
2024 $db = wfGetDB( DB_MASTER );
2025 $continue--;
2026 } else {
2027 $continue = 0;
2028 }
2029 } while ( $continue );
2030
2031 $authors = array( $row->rev_user_text );
2032 while ( $row = $db->fetchObject( $res ) ) {
2033 $authors[] = $row->rev_user_text;
2034 }
2035 wfProfileOut( __METHOD__ );
2036 return $authors;
2037 }
2038
2039 /**
2040 * Output deletion confirmation dialog
2041 */
2042 function confirmDelete( $par, $reason ) {
2043 global $wgOut, $wgUser;
2044
2045 wfDebug( "Article::confirmDelete\n" );
2046
2047 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
2048 $wgOut->setSubtitle( wfMsg( 'deletesub', $sub ) );
2049 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2050 $wgOut->addWikiText( wfMsg( 'confirmdeletetext' ) );
2051
2052 $formaction = $this->mTitle->escapeLocalURL( 'action=delete' . $par );
2053
2054 $confirm = htmlspecialchars( wfMsg( 'deletepage' ) );
2055 $delcom = Xml::label( wfMsg( 'deletecomment' ), 'wpDeleteReasonList' );
2056 $token = htmlspecialchars( $wgUser->editToken() );
2057 $watch = Xml::checkLabel( wfMsg( 'watchthis' ), 'wpWatch', 'wpWatch', $wgUser->getBoolOption( 'watchdeletion' ) || $this->mTitle->userIsWatching(), array( 'tabindex' => '2' ) );
2058
2059 $mDeletereasonother = Xml::label( wfMsg( 'deleteotherreason' ), 'wpReason' );
2060 $mDeletereasonotherlist = wfMsgHtml( 'deletereasonotherlist' );
2061 $scDeleteReasonList = wfMsgForContent( 'deletereason-dropdown' );
2062
2063 $deleteReasonList = '';
2064 if ( $scDeleteReasonList != '' && $scDeleteReasonList != '-' ) {
2065 $deleteReasonList = "<option value=\"other\">$mDeletereasonotherlist</option>";
2066 $optgroup = "";
2067 foreach ( explode( "\n", $scDeleteReasonList ) as $option) {
2068 $value = trim( htmlspecialchars($option) );
2069 if ( $value == '' ) {
2070 continue;
2071 } elseif ( substr( $value, 0, 1) == '*' && substr( $value, 1, 1) != '*' ) {
2072 // A new group is starting ...
2073 $value = trim( substr( $value, 1 ) );
2074 $deleteReasonList .= "$optgroup<optgroup label=\"$value\">";
2075 $optgroup = "</optgroup>";
2076 } elseif ( substr( $value, 0, 2) == '**' ) {
2077 // groupmember
2078 $selected = "";
2079 $value = trim( substr( $value, 2 ) );
2080 if ( $this->DeleteReasonList === $value)
2081 $selected = ' selected="selected"';
2082 $deleteReasonList .= "<option value=\"$value\"$selected>$value</option>";
2083 } else {
2084 // groupless delete reason
2085 $selected = "";
2086 if ( $this->DeleteReasonList === $value)
2087 $selected = ' selected="selected"';
2088 $deleteReasonList .= "$optgroup<option value=\"$value\"$selected>$value</option>";
2089 $optgroup = "";
2090 }
2091 }
2092 $deleteReasonList .= $optgroup;
2093 }
2094 $wgOut->addHTML( "
2095 <form id='deleteconfirm' method='post' action=\"{$formaction}\">
2096 <table border='0'>
2097 <tr id=\"wpDeleteReasonListRow\" name=\"wpDeleteReasonListRow\">
2098 <td align='right'>
2099 $delcom:
2100 </td>
2101 <td align='left'>
2102 <select tabindex='1' id='wpDeleteReasonList' name=\"wpDeleteReasonList\">
2103 $deleteReasonList
2104 </select>
2105 </td>
2106 </tr>
2107 <tr id=\"wpDeleteReasonRow\" name=\"wpDeleteReasonRow\">
2108 <td>
2109 $mDeletereasonother
2110 </td>
2111 <td align='left'>
2112 <input type='text' maxlength='255' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" tabindex=\"2\" />
2113 </td>
2114 </tr>
2115 <tr>
2116 <td>&nbsp;</td>
2117 <td>$watch</td>
2118 </tr>
2119 <tr>
2120 <td>&nbsp;</td>
2121 <td>
2122 <input type='submit' name='wpConfirmB' id='wpConfirmB' value=\"{$confirm}\" tabindex=\"3\" />
2123 </td>
2124 </tr>
2125 </table>
2126 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
2127 </form>\n" );
2128
2129 $wgOut->returnToMain( false, $this->mTitle );
2130
2131 $this->showLogExtract( $wgOut );
2132 }
2133
2134
2135 /**
2136 * Show relevant lines from the deletion log
2137 */
2138 function showLogExtract( $out ) {
2139 $out->addHtml( '<h2>' . htmlspecialchars( LogPage::logName( 'delete' ) ) . '</h2>' );
2140 $logViewer = new LogViewer(
2141 new LogReader(
2142 new FauxRequest(
2143 array( 'page' => $this->mTitle->getPrefixedText(),
2144 'type' => 'delete' ) ) ) );
2145 $logViewer->showList( $out );
2146 }
2147
2148
2149 /**
2150 * Perform a deletion and output success or failure messages
2151 */
2152 function doDelete( $reason ) {
2153 global $wgOut, $wgUser;
2154 wfDebug( __METHOD__."\n" );
2155
2156 if (wfRunHooks('ArticleDelete', array(&$this, &$wgUser, &$reason))) {
2157 if ( $this->doDeleteArticle( $reason ) ) {
2158 $deleted = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
2159
2160 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
2161 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2162
2163 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
2164 $text = wfMsg( 'deletedtext', $deleted, $loglink );
2165
2166 $wgOut->addWikiText( $text );
2167 $wgOut->returnToMain( false );
2168 wfRunHooks('ArticleDeleteComplete', array(&$this, &$wgUser, $reason));
2169 } else {
2170 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
2171 }
2172 }
2173 }
2174
2175 /**
2176 * Back-end article deletion
2177 * Deletes the article with database consistency, writes logs, purges caches
2178 * Returns success
2179 */
2180 function doDeleteArticle( $reason ) {
2181 global $wgUseSquid, $wgDeferredUpdateList;
2182 global $wgUseTrackbacks;
2183
2184 wfDebug( __METHOD__."\n" );
2185
2186 $dbw = wfGetDB( DB_MASTER );
2187 $ns = $this->mTitle->getNamespace();
2188 $t = $this->mTitle->getDBkey();
2189 $id = $this->mTitle->getArticleID();
2190
2191 if ( $t == '' || $id == 0 ) {
2192 return false;
2193 }
2194
2195 $u = new SiteStatsUpdate( 0, 1, -(int)$this->isCountable( $this->getContent() ), -1 );
2196 array_push( $wgDeferredUpdateList, $u );
2197
2198 // For now, shunt the revision data into the archive table.
2199 // Text is *not* removed from the text table; bulk storage
2200 // is left intact to avoid breaking block-compression or
2201 // immutable storage schemes.
2202 //
2203 // For backwards compatibility, note that some older archive
2204 // table entries will have ar_text and ar_flags fields still.
2205 //
2206 // In the future, we may keep revisions and mark them with
2207 // the rev_deleted field, which is reserved for this purpose.
2208 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
2209 array(
2210 'ar_namespace' => 'page_namespace',
2211 'ar_title' => 'page_title',
2212 'ar_comment' => 'rev_comment',
2213 'ar_user' => 'rev_user',
2214 'ar_user_text' => 'rev_user_text',
2215 'ar_timestamp' => 'rev_timestamp',
2216 'ar_minor_edit' => 'rev_minor_edit',
2217 'ar_rev_id' => 'rev_id',
2218 'ar_text_id' => 'rev_text_id',
2219 'ar_text' => '\'\'', // Be explicit to appease
2220 'ar_flags' => '\'\'', // MySQL's "strict mode"...
2221 'ar_len' => 'rev_len',
2222 'ar_page_id' => 'page_id',
2223 ), array(
2224 'page_id' => $id,
2225 'page_id = rev_page'
2226 ), __METHOD__
2227 );
2228
2229 # Delete restrictions for it
2230 $dbw->delete( 'page_restrictions', array ( 'pr_page' => $id ), __METHOD__ );
2231
2232 # Now that it's safely backed up, delete it
2233 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__);
2234
2235 # If using cascading deletes, we can skip some explicit deletes
2236 if ( !$dbw->cascadingDeletes() ) {
2237
2238 $dbw->delete( 'revision', array( 'rev_page' => $id ), __METHOD__ );
2239
2240 if ($wgUseTrackbacks)
2241 $dbw->delete( 'trackbacks', array( 'tb_page' => $id ), __METHOD__ );
2242
2243 # Delete outgoing links
2244 $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
2245 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
2246 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
2247 $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
2248 $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
2249 $dbw->delete( 'langlinks', array( 'll_from' => $id ) );
2250 $dbw->delete( 'redirect', array( 'rd_from' => $id ) );
2251 }
2252
2253 # If using cleanup triggers, we can skip some manual deletes
2254 if ( !$dbw->cleanupTriggers() ) {
2255
2256 # Clean up recentchanges entries...
2257 $dbw->delete( 'recentchanges', array( 'rc_namespace' => $ns, 'rc_title' => $t ), __METHOD__ );
2258 }
2259
2260 # Clear caches
2261 Article::onArticleDelete( $this->mTitle );
2262
2263 # Log the deletion
2264 $log = new LogPage( 'delete' );
2265 $log->addEntry( 'delete', $this->mTitle, $reason );
2266
2267 # Clear the cached article id so the interface doesn't act like we exist
2268 $this->mTitle->resetArticleID( 0 );
2269 $this->mTitle->mArticleID = 0;
2270 return true;
2271 }
2272
2273 /**
2274 * Roll back the most recent consecutive set of edits to a page
2275 * from the same user; fails if there are no eligible edits to
2276 * roll back to, e.g. user is the sole contributor
2277 *
2278 * @param string $fromP - Name of the user whose edits to rollback.
2279 * @param string $summary - Custom summary. Set to default summary if empty.
2280 * @param string $token - Rollback token.
2281 * @param bool $bot - If true, mark all reverted edits as bot.
2282 *
2283 * @param array $resultDetails contains result-specific dict of additional values
2284 * ALREADY_ROLLED : 'current' (rev)
2285 * SUCCESS : 'summary' (str), 'current' (rev), 'target' (rev)
2286 *
2287 * @return self::SUCCESS on succes, self::* on failure
2288 */
2289 public function doRollback( $fromP, $summary, $token, $bot, &$resultDetails ) {
2290 global $wgUser, $wgUseRCPatrol;
2291 $resultDetails = null;
2292
2293 # Just in case it's being called from elsewhere
2294
2295 if( $wgUser->isAllowed( 'rollback' ) && $this->mTitle->userCan( 'edit' ) ) {
2296 if( $wgUser->isBlocked() ) {
2297 return self::BLOCKED;
2298 }
2299 } else {
2300 return self::PERM_DENIED;
2301 }
2302
2303 if ( wfReadOnly() ) {
2304 return self::READONLY;
2305 }
2306
2307 if( !$wgUser->matchEditToken( $token, array( $this->mTitle->getPrefixedText(), $fromP ) ) )
2308 return self::BAD_TOKEN;
2309
2310 if ( $wgUser->pingLimiter('rollback') || $wgUser->pingLimiter() ) {
2311 return self::RATE_LIMITED;
2312 }
2313
2314 $dbw = wfGetDB( DB_MASTER );
2315
2316 # Get the last editor
2317 $current = Revision::newFromTitle( $this->mTitle );
2318 if( is_null( $current ) ) {
2319 # Something wrong... no page?
2320 return self::BAD_TITLE;
2321 }
2322
2323 $from = str_replace( '_', ' ', $fromP );
2324 if( $from != $current->getUserText() ) {
2325 $resultDetails = array( 'current' => $current );
2326 return self::ALREADY_ROLLED;
2327 }
2328
2329 # Get the last edit not by this guy
2330 $user = intval( $current->getUser() );
2331 $user_text = $dbw->addQuotes( $current->getUserText() );
2332 $s = $dbw->selectRow( 'revision',
2333 array( 'rev_id', 'rev_timestamp' ),
2334 array(
2335 'rev_page' => $current->getPage(),
2336 "rev_user <> {$user} OR rev_user_text <> {$user_text}"
2337 ), __METHOD__,
2338 array(
2339 'USE INDEX' => 'page_timestamp',
2340 'ORDER BY' => 'rev_timestamp DESC' )
2341 );
2342 if( $s === false ) {
2343 # Something wrong
2344 return self::ONLY_AUTHOR;
2345 }
2346
2347 $set = array();
2348 if ( $bot && $wgUser->isAllowed('markbotedits') ) {
2349 # Mark all reverted edits as bot
2350 $set['rc_bot'] = 1;
2351 }
2352 if ( $wgUseRCPatrol ) {
2353 # Mark all reverted edits as patrolled
2354 $set['rc_patrolled'] = 1;
2355 }
2356
2357 if ( $set ) {
2358 $dbw->update( 'recentchanges', $set,
2359 array( /* WHERE */
2360 'rc_cur_id' => $current->getPage(),
2361 'rc_user_text' => $current->getUserText(),
2362 "rc_timestamp > '{$s->rev_timestamp}'",
2363 ), __METHOD__
2364 );
2365 }
2366
2367 # Get the edit summary
2368 $target = Revision::newFromId( $s->rev_id );
2369 if( empty( $summary ) )
2370 $summary = wfMsgForContent( 'revertpage', $target->getUserText(), $from );
2371
2372 # Save
2373 $flags = EDIT_UPDATE;
2374
2375 if ($wgUser->isAllowed('minoredit'))
2376 $flags |= EDIT_MINOR;
2377
2378 if( $bot && ($wgUser->isAllowed('markbotedits') || $wgUser->isAllowed('bot')) )
2379 $flags |= EDIT_FORCE_BOT;
2380 $this->doEdit( $target->getText(), $summary, $flags );
2381
2382 wfRunHooks( 'ArticleRollbackComplete', array( $this, $wgUser, $target ) );
2383
2384 $resultDetails = array(
2385 'summary' => $summary,
2386 'current' => $current,
2387 'target' => $target,
2388 );
2389 return self::SUCCESS;
2390 }
2391
2392 /**
2393 * User interface for rollback operations
2394 */
2395 function rollback() {
2396 global $wgUser, $wgOut, $wgRequest, $wgUseRCPatrol;
2397
2398 $details = null;
2399
2400 # Skip the permissions-checking in doRollback() itself, by checking permissions here.
2401
2402 $perm_errors = array_merge( $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser ),
2403 $this->mTitle->getUserPermissionsErrors( 'rollback', $wgUser ) );
2404
2405 if (count($perm_errors)) {
2406 $wgOut->showPermissionsErrorPage( $perm_errors );
2407 return;
2408 }
2409
2410 $result = $this->doRollback(
2411 $wgRequest->getVal( 'from' ),
2412 $wgRequest->getText( 'summary' ),
2413 $wgRequest->getVal( 'token' ),
2414 $wgRequest->getBool( 'bot' ),
2415 $details
2416 );
2417
2418 switch( $result ) {
2419 case self::BLOCKED:
2420 $wgOut->blockedPage();
2421 break;
2422 case self::PERM_DENIED:
2423 $wgOut->permissionRequired( 'rollback' );
2424 break;
2425 case self::READONLY:
2426 $wgOut->readOnlyPage( $this->getContent() );
2427 break;
2428 case self::BAD_TOKEN:
2429 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2430 $wgOut->addWikiText( wfMsg( 'sessionfailure' ) );
2431 break;
2432 case self::BAD_TITLE:
2433 $wgOut->addHtml( wfMsg( 'notanarticle' ) );
2434 break;
2435 case self::ALREADY_ROLLED:
2436 $current = $details['current'];
2437 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2438 $wgOut->addWikiText(
2439 wfMsg( 'alreadyrolled',
2440 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2441 htmlspecialchars( $wgRequest->getVal( 'from' ) ),
2442 htmlspecialchars( $current->getUserText() )
2443 )
2444 );
2445 if( $current->getComment() != '' ) {
2446 $wgOut->addHtml( wfMsg( 'editcomment',
2447 $wgUser->getSkin()->formatComment( $current->getComment() ) ) );
2448 }
2449 break;
2450 case self::ONLY_AUTHOR:
2451 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2452 $wgOut->addHtml( wfMsg( 'cantrollback' ) );
2453 break;
2454 case self::RATE_LIMITED:
2455 $wgOut->rateLimited();
2456 break;
2457 case self::SUCCESS:
2458 $current = $details['current'];
2459 $target = $details['target'];
2460 $wgOut->setPageTitle( wfMsg( 'actioncomplete' ) );
2461 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2462 $old = $wgUser->getSkin()->userLink( $current->getUser(), $current->getUserText() )
2463 . $wgUser->getSkin()->userToolLinks( $current->getUser(), $current->getUserText() );
2464 $new = $wgUser->getSkin()->userLink( $target->getUser(), $target->getUserText() )
2465 . $wgUser->getSkin()->userToolLinks( $target->getUser(), $target->getUserText() );
2466 $wgOut->addHtml( wfMsgExt( 'rollback-success', array( 'parse', 'replaceafter' ), $old, $new ) );
2467 $wgOut->returnToMain( false, $this->mTitle );
2468 break;
2469 default:
2470 throw new MWException( __METHOD__ . ": Unknown return value `{$result}`" );
2471 }
2472
2473 }
2474
2475
2476 /**
2477 * Do standard deferred updates after page view
2478 * @private
2479 */
2480 function viewUpdates() {
2481 global $wgDeferredUpdateList;
2482
2483 if ( 0 != $this->getID() ) {
2484 global $wgDisableCounters;
2485 if( !$wgDisableCounters ) {
2486 Article::incViewCount( $this->getID() );
2487 $u = new SiteStatsUpdate( 1, 0, 0 );
2488 array_push( $wgDeferredUpdateList, $u );
2489 }
2490 }
2491
2492 # Update newtalk / watchlist notification status
2493 global $wgUser;
2494 $wgUser->clearNotification( $this->mTitle );
2495 }
2496
2497 /**
2498 * Prepare text which is about to be saved.
2499 * Returns a stdclass with source, pst and output members
2500 */
2501 function prepareTextForEdit( $text, $revid=null ) {
2502 if ( $this->mPreparedEdit && $this->mPreparedEdit->newText == $text && $this->mPreparedEdit->revid == $revid) {
2503 // Already prepared
2504 return $this->mPreparedEdit;
2505 }
2506 global $wgParser;
2507 $edit = (object)array();
2508 $edit->revid = $revid;
2509 $edit->newText = $text;
2510 $edit->pst = $this->preSaveTransform( $text );
2511 $options = new ParserOptions;
2512 $options->setTidy( true );
2513 $options->enableLimitReport();
2514 $edit->output = $wgParser->parse( $edit->pst, $this->mTitle, $options, true, true, $revid );
2515 $edit->oldText = $this->getContent();
2516 $this->mPreparedEdit = $edit;
2517 return $edit;
2518 }
2519
2520 /**
2521 * Do standard deferred updates after page edit.
2522 * Update links tables, site stats, search index and message cache.
2523 * Every 100th edit, prune the recent changes table.
2524 *
2525 * @private
2526 * @param $text New text of the article
2527 * @param $summary Edit summary
2528 * @param $minoredit Minor edit
2529 * @param $timestamp_of_pagechange Timestamp associated with the page change
2530 * @param $newid rev_id value of the new revision
2531 * @param $changed Whether or not the content actually changed
2532 */
2533 function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true ) {
2534 global $wgDeferredUpdateList, $wgMessageCache, $wgUser, $wgParser;
2535
2536 wfProfileIn( __METHOD__ );
2537
2538 # Parse the text
2539 # Be careful not to double-PST: $text is usually already PST-ed once
2540 if ( !$this->mPreparedEdit || $this->mPreparedEdit->output->getFlag( 'vary-revision' ) ) {
2541 wfDebug( __METHOD__ . ": No prepared edit or vary-revision is set...\n" );
2542 $editInfo = $this->prepareTextForEdit( $text, $newid );
2543 } else {
2544 wfDebug( __METHOD__ . ": No vary-revision, using prepared edit...\n" );
2545 $editInfo = $this->mPreparedEdit;
2546 }
2547
2548 # Save it to the parser cache
2549 $parserCache =& ParserCache::singleton();
2550 $parserCache->save( $editInfo->output, $this, $wgUser );
2551
2552 # Update the links tables
2553 $u = new LinksUpdate( $this->mTitle, $editInfo->output );
2554 $u->doUpdate();
2555
2556 if( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
2557 if ( 0 == mt_rand( 0, 99 ) ) {
2558 // Flush old entries from the `recentchanges` table; we do this on
2559 // random requests so as to avoid an increase in writes for no good reason
2560 global $wgRCMaxAge;
2561 $dbw = wfGetDB( DB_MASTER );
2562 $cutoff = $dbw->timestamp( time() - $wgRCMaxAge );
2563 $recentchanges = $dbw->tableName( 'recentchanges' );
2564 $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$cutoff}'";
2565 $dbw->query( $sql );
2566 }
2567 }
2568
2569 $id = $this->getID();
2570 $title = $this->mTitle->getPrefixedDBkey();
2571 $shortTitle = $this->mTitle->getDBkey();
2572
2573 if ( 0 == $id ) {
2574 wfProfileOut( __METHOD__ );
2575 return;
2576 }
2577
2578 $u = new SiteStatsUpdate( 0, 1, $this->mGoodAdjustment, $this->mTotalAdjustment );
2579 array_push( $wgDeferredUpdateList, $u );
2580 $u = new SearchUpdate( $id, $title, $text );
2581 array_push( $wgDeferredUpdateList, $u );
2582
2583 # If this is another user's talk page, update newtalk
2584 # Don't do this if $changed = false otherwise some idiot can null-edit a
2585 # load of user talk pages and piss people off, nor if it's a minor edit
2586 # by a properly-flagged bot.
2587 if( $this->mTitle->getNamespace() == NS_USER_TALK && $shortTitle != $wgUser->getTitleKey() && $changed
2588 && !($minoredit && $wgUser->isAllowed('nominornewtalk') ) ) {
2589 if (wfRunHooks('ArticleEditUpdateNewTalk', array(&$this)) ) {
2590 $other = User::newFromName( $shortTitle );
2591 if( is_null( $other ) && User::isIP( $shortTitle ) ) {
2592 // An anonymous user
2593 $other = new User();
2594 $other->setName( $shortTitle );
2595 }
2596 if( $other ) {
2597 $other->setNewtalk( true );
2598 }
2599 }
2600 }
2601
2602 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2603 $wgMessageCache->replace( $shortTitle, $text );
2604 }
2605
2606 wfProfileOut( __METHOD__ );
2607 }
2608
2609 /**
2610 * Perform article updates on a special page creation.
2611 *
2612 * @param Revision $rev
2613 *
2614 * @todo This is a shitty interface function. Kill it and replace the
2615 * other shitty functions like editUpdates and such so it's not needed
2616 * anymore.
2617 */
2618 function createUpdates( $rev ) {
2619 $this->mGoodAdjustment = $this->isCountable( $rev->getText() );
2620 $this->mTotalAdjustment = 1;
2621 $this->editUpdates( $rev->getText(), $rev->getComment(),
2622 $rev->isMinor(), wfTimestamp(), $rev->getId(), true );
2623 }
2624
2625 /**
2626 * Generate the navigation links when browsing through an article revisions
2627 * It shows the information as:
2628 * Revision as of \<date\>; view current revision
2629 * \<- Previous version | Next Version -\>
2630 *
2631 * @private
2632 * @param string $oldid Revision ID of this article revision
2633 */
2634 function setOldSubtitle( $oldid=0 ) {
2635 global $wgLang, $wgOut, $wgUser;
2636
2637 if ( !wfRunHooks( 'DisplayOldSubtitle', array(&$this, &$oldid) ) ) {
2638 return;
2639 }
2640
2641 $revision = Revision::newFromId( $oldid );
2642
2643 $current = ( $oldid == $this->mLatest );
2644 $td = $wgLang->timeanddate( $this->mTimestamp, true );
2645 $sk = $wgUser->getSkin();
2646 $lnk = $current
2647 ? wfMsg( 'currentrevisionlink' )
2648 : $lnk = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'currentrevisionlink' ) );
2649 $curdiff = $current
2650 ? wfMsg( 'diff' )
2651 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=cur&oldid='.$oldid );
2652 $prev = $this->mTitle->getPreviousRevisionID( $oldid ) ;
2653 $prevlink = $prev
2654 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'previousrevision' ), 'direction=prev&oldid='.$oldid )
2655 : wfMsg( 'previousrevision' );
2656 $prevdiff = $prev
2657 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=prev&oldid='.$oldid )
2658 : wfMsg( 'diff' );
2659 $nextlink = $current
2660 ? wfMsg( 'nextrevision' )
2661 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'nextrevision' ), 'direction=next&oldid='.$oldid );
2662 $nextdiff = $current
2663 ? wfMsg( 'diff' )
2664 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=next&oldid='.$oldid );
2665
2666 $userlinks = $sk->userLink( $revision->getUser(), $revision->getUserText() )
2667 . $sk->userToolLinks( $revision->getUser(), $revision->getUserText() );
2668
2669 $m = wfMsg( 'revision-info-current' );
2670 $infomsg = $current && !wfEmptyMsg( 'revision-info-current', $m ) && $m != '-'
2671 ? 'revision-info-current'
2672 : 'revision-info';
2673
2674 $r = "\n\t\t\t\t<div id=\"mw-{$infomsg}\">" . wfMsg( $infomsg, $td, $userlinks ) . "</div>\n" .
2675 "\n\t\t\t\t<div id=\"mw-revision-nav\">" . wfMsg( 'revision-nav', $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
2676 $wgOut->setSubtitle( $r );
2677 }
2678
2679 /**
2680 * This function is called right before saving the wikitext,
2681 * so we can do things like signatures and links-in-context.
2682 *
2683 * @param string $text
2684 */
2685 function preSaveTransform( $text ) {
2686 global $wgParser, $wgUser;
2687 return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
2688 }
2689
2690 /* Caching functions */
2691
2692 /**
2693 * checkLastModified returns true if it has taken care of all
2694 * output to the client that is necessary for this request.
2695 * (that is, it has sent a cached version of the page)
2696 */
2697 function tryFileCache() {
2698 static $called = false;
2699 if( $called ) {
2700 wfDebug( "Article::tryFileCache(): called twice!?\n" );
2701 return;
2702 }
2703 $called = true;
2704 if($this->isFileCacheable()) {
2705 $touched = $this->mTouched;
2706 $cache = new HTMLFileCache( $this->mTitle );
2707 if($cache->isFileCacheGood( $touched )) {
2708 wfDebug( "Article::tryFileCache(): about to load file\n" );
2709 $cache->loadFromFileCache();
2710 return true;
2711 } else {
2712 wfDebug( "Article::tryFileCache(): starting buffer\n" );
2713 ob_start( array(&$cache, 'saveToFileCache' ) );
2714 }
2715 } else {
2716 wfDebug( "Article::tryFileCache(): not cacheable\n" );
2717 }
2718 }
2719
2720 /**
2721 * Check if the page can be cached
2722 * @return bool
2723 */
2724 function isFileCacheable() {
2725 global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest, $wgLang, $wgContLang;
2726 $action = $wgRequest->getVal( 'action' );
2727 $oldid = $wgRequest->getVal( 'oldid' );
2728 $diff = $wgRequest->getVal( 'diff' );
2729 $redirect = $wgRequest->getVal( 'redirect' );
2730 $printable = $wgRequest->getVal( 'printable' );
2731 $page = $wgRequest->getVal( 'page' );
2732
2733 //check for non-standard user language; this covers uselang,
2734 //and extensions for auto-detecting user language.
2735 $ulang = $wgLang->getCode();
2736 $clang = $wgContLang->getCode();
2737
2738 $cacheable = $wgUseFileCache
2739 && (!$wgShowIPinHeader)
2740 && ($this->getID() != 0)
2741 && ($wgUser->isAnon())
2742 && (!$wgUser->getNewtalk())
2743 && ($this->mTitle->getNamespace() != NS_SPECIAL )
2744 && (empty( $action ) || $action == 'view')
2745 && (!isset($oldid))
2746 && (!isset($diff))
2747 && (!isset($redirect))
2748 && (!isset($printable))
2749 && !isset($page)
2750 && (!$this->mRedirectedFrom)
2751 && ($ulang === $clang);
2752
2753 if ( $cacheable ) {
2754 //extension may have reason to disable file caching on some pages.
2755 $cacheable = wfRunHooks( 'IsFileCacheable', array( $this ) );
2756 }
2757
2758 return $cacheable;
2759 }
2760
2761 /**
2762 * Loads page_touched and returns a value indicating if it should be used
2763 *
2764 */
2765 function checkTouched() {
2766 if( !$this->mDataLoaded ) {
2767 $this->loadPageData();
2768 }
2769 return !$this->mIsRedirect;
2770 }
2771
2772 /**
2773 * Get the page_touched field
2774 */
2775 function getTouched() {
2776 # Ensure that page data has been loaded
2777 if( !$this->mDataLoaded ) {
2778 $this->loadPageData();
2779 }
2780 return $this->mTouched;
2781 }
2782
2783 /**
2784 * Get the page_latest field
2785 */
2786 function getLatest() {
2787 if ( !$this->mDataLoaded ) {
2788 $this->loadPageData();
2789 }
2790 return $this->mLatest;
2791 }
2792
2793 /**
2794 * Edit an article without doing all that other stuff
2795 * The article must already exist; link tables etc
2796 * are not updated, caches are not flushed.
2797 *
2798 * @param string $text text submitted
2799 * @param string $comment comment submitted
2800 * @param bool $minor whereas it's a minor modification
2801 */
2802 function quickEdit( $text, $comment = '', $minor = 0 ) {
2803 wfProfileIn( __METHOD__ );
2804
2805 $dbw = wfGetDB( DB_MASTER );
2806 $dbw->begin();
2807 $revision = new Revision( array(
2808 'page' => $this->getId(),
2809 'text' => $text,
2810 'comment' => $comment,
2811 'minor_edit' => $minor ? 1 : 0,
2812 ) );
2813 $revision->insertOn( $dbw );
2814 $this->updateRevisionOn( $dbw, $revision );
2815 $dbw->commit();
2816
2817 wfProfileOut( __METHOD__ );
2818 }
2819
2820 /**
2821 * Used to increment the view counter
2822 *
2823 * @static
2824 * @param integer $id article id
2825 */
2826 function incViewCount( $id ) {
2827 $id = intval( $id );
2828 global $wgHitcounterUpdateFreq, $wgDBtype;
2829
2830 $dbw = wfGetDB( DB_MASTER );
2831 $pageTable = $dbw->tableName( 'page' );
2832 $hitcounterTable = $dbw->tableName( 'hitcounter' );
2833 $acchitsTable = $dbw->tableName( 'acchits' );
2834
2835 if( $wgHitcounterUpdateFreq <= 1 ) {
2836 $dbw->query( "UPDATE $pageTable SET page_counter = page_counter + 1 WHERE page_id = $id" );
2837 return;
2838 }
2839
2840 # Not important enough to warrant an error page in case of failure
2841 $oldignore = $dbw->ignoreErrors( true );
2842
2843 $dbw->query( "INSERT INTO $hitcounterTable (hc_id) VALUES ({$id})" );
2844
2845 $checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
2846 if( (rand() % $checkfreq != 0) or ($dbw->lastErrno() != 0) ){
2847 # Most of the time (or on SQL errors), skip row count check
2848 $dbw->ignoreErrors( $oldignore );
2849 return;
2850 }
2851
2852 $res = $dbw->query("SELECT COUNT(*) as n FROM $hitcounterTable");
2853 $row = $dbw->fetchObject( $res );
2854 $rown = intval( $row->n );
2855 if( $rown >= $wgHitcounterUpdateFreq ){
2856 wfProfileIn( 'Article::incViewCount-collect' );
2857 $old_user_abort = ignore_user_abort( true );
2858
2859 if ($wgDBtype == 'mysql')
2860 $dbw->query("LOCK TABLES $hitcounterTable WRITE");
2861 $tabletype = $wgDBtype == 'mysql' ? "ENGINE=HEAP " : '';
2862 $dbw->query("CREATE TEMPORARY TABLE $acchitsTable $tabletype AS ".
2863 "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable ".
2864 'GROUP BY hc_id');
2865 $dbw->query("DELETE FROM $hitcounterTable");
2866 if ($wgDBtype == 'mysql') {
2867 $dbw->query('UNLOCK TABLES');
2868 $dbw->query("UPDATE $pageTable,$acchitsTable SET page_counter=page_counter + hc_n ".
2869 'WHERE page_id = hc_id');
2870 }
2871 else {
2872 $dbw->query("UPDATE $pageTable SET page_counter=page_counter + hc_n ".
2873 "FROM $acchitsTable WHERE page_id = hc_id");
2874 }
2875 $dbw->query("DROP TABLE $acchitsTable");
2876
2877 ignore_user_abort( $old_user_abort );
2878 wfProfileOut( 'Article::incViewCount-collect' );
2879 }
2880 $dbw->ignoreErrors( $oldignore );
2881 }
2882
2883 /**#@+
2884 * The onArticle*() functions are supposed to be a kind of hooks
2885 * which should be called whenever any of the specified actions
2886 * are done.
2887 *
2888 * This is a good place to put code to clear caches, for instance.
2889 *
2890 * This is called on page move and undelete, as well as edit
2891 * @static
2892 * @param $title_obj a title object
2893 */
2894
2895 static function onArticleCreate($title) {
2896 # The talk page isn't in the regular link tables, so we need to update manually:
2897 if ( $title->isTalkPage() ) {
2898 $other = $title->getSubjectPage();
2899 } else {
2900 $other = $title->getTalkPage();
2901 }
2902 $other->invalidateCache();
2903 $other->purgeSquid();
2904
2905 $title->touchLinks();
2906 $title->purgeSquid();
2907 $title->deleteTitleProtection();
2908 }
2909
2910 static function onArticleDelete( $title ) {
2911 global $wgUseFileCache, $wgMessageCache;
2912
2913 $title->touchLinks();
2914 $title->purgeSquid();
2915
2916 # File cache
2917 if ( $wgUseFileCache ) {
2918 $cm = new HTMLFileCache( $title );
2919 @unlink( $cm->fileCacheName() );
2920 }
2921
2922 if( $title->getNamespace() == NS_MEDIAWIKI) {
2923 $wgMessageCache->replace( $title->getDBkey(), false );
2924 }
2925 }
2926
2927 /**
2928 * Purge caches on page update etc
2929 */
2930 static function onArticleEdit( $title ) {
2931 global $wgDeferredUpdateList, $wgUseFileCache;
2932
2933 // Invalidate caches of articles which include this page
2934 $update = new HTMLCacheUpdate( $title, 'templatelinks' );
2935 $wgDeferredUpdateList[] = $update;
2936
2937 # Purge squid for this page only
2938 $title->purgeSquid();
2939
2940 # Clear file cache
2941 if ( $wgUseFileCache ) {
2942 $cm = new HTMLFileCache( $title );
2943 @unlink( $cm->fileCacheName() );
2944 }
2945 }
2946
2947 /**#@-*/
2948
2949 /**
2950 * Info about this page
2951 * Called for ?action=info when $wgAllowPageInfo is on.
2952 *
2953 * @public
2954 */
2955 function info() {
2956 global $wgLang, $wgOut, $wgAllowPageInfo, $wgUser;
2957
2958 if ( !$wgAllowPageInfo ) {
2959 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
2960 return;
2961 }
2962
2963 $page = $this->mTitle->getSubjectPage();
2964
2965 $wgOut->setPagetitle( $page->getPrefixedText() );
2966 $wgOut->setPageTitleActionText( wfMsg( 'info_short' ) );
2967 $wgOut->setSubtitle( wfMsg( 'infosubtitle' ) );
2968
2969 if( !$this->mTitle->exists() ) {
2970 $wgOut->addHtml( '<div class="noarticletext">' );
2971 if( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2972 // This doesn't quite make sense; the user is asking for
2973 // information about the _page_, not the message... -- RC
2974 $wgOut->addHtml( htmlspecialchars( wfMsgWeirdKey( $this->mTitle->getText() ) ) );
2975 } else {
2976 $msg = $wgUser->isLoggedIn()
2977 ? 'noarticletext'
2978 : 'noarticletextanon';
2979 $wgOut->addHtml( wfMsgExt( $msg, 'parse' ) );
2980 }
2981 $wgOut->addHtml( '</div>' );
2982 } else {
2983 $dbr = wfGetDB( DB_SLAVE );
2984 $wl_clause = array(
2985 'wl_title' => $page->getDBkey(),
2986 'wl_namespace' => $page->getNamespace() );
2987 $numwatchers = $dbr->selectField(
2988 'watchlist',
2989 'COUNT(*)',
2990 $wl_clause,
2991 __METHOD__,
2992 $this->getSelectOptions() );
2993
2994 $pageInfo = $this->pageCountInfo( $page );
2995 $talkInfo = $this->pageCountInfo( $page->getTalkPage() );
2996
2997 $wgOut->addHTML( "<ul><li>" . wfMsg("numwatchers", $wgLang->formatNum( $numwatchers ) ) . '</li>' );
2998 $wgOut->addHTML( "<li>" . wfMsg('numedits', $wgLang->formatNum( $pageInfo['edits'] ) ) . '</li>');
2999 if( $talkInfo ) {
3000 $wgOut->addHTML( '<li>' . wfMsg("numtalkedits", $wgLang->formatNum( $talkInfo['edits'] ) ) . '</li>');
3001 }
3002 $wgOut->addHTML( '<li>' . wfMsg("numauthors", $wgLang->formatNum( $pageInfo['authors'] ) ) . '</li>' );
3003 if( $talkInfo ) {
3004 $wgOut->addHTML( '<li>' . wfMsg('numtalkauthors', $wgLang->formatNum( $talkInfo['authors'] ) ) . '</li>' );
3005 }
3006 $wgOut->addHTML( '</ul>' );
3007
3008 }
3009 }
3010
3011 /**
3012 * Return the total number of edits and number of unique editors
3013 * on a given page. If page does not exist, returns false.
3014 *
3015 * @param Title $title
3016 * @return array
3017 * @private
3018 */
3019 function pageCountInfo( $title ) {
3020 $id = $title->getArticleId();
3021 if( $id == 0 ) {
3022 return false;
3023 }
3024
3025 $dbr = wfGetDB( DB_SLAVE );
3026
3027 $rev_clause = array( 'rev_page' => $id );
3028
3029 $edits = $dbr->selectField(
3030 'revision',
3031 'COUNT(rev_page)',
3032 $rev_clause,
3033 __METHOD__,
3034 $this->getSelectOptions() );
3035
3036 $authors = $dbr->selectField(
3037 'revision',
3038 'COUNT(DISTINCT rev_user_text)',
3039 $rev_clause,
3040 __METHOD__,
3041 $this->getSelectOptions() );
3042
3043 return array( 'edits' => $edits, 'authors' => $authors );
3044 }
3045
3046 /**
3047 * Return a list of templates used by this article.
3048 * Uses the templatelinks table
3049 *
3050 * @return array Array of Title objects
3051 */
3052 function getUsedTemplates() {
3053 $result = array();
3054 $id = $this->mTitle->getArticleID();
3055 if( $id == 0 ) {
3056 return array();
3057 }
3058
3059 $dbr = wfGetDB( DB_SLAVE );
3060 $res = $dbr->select( array( 'templatelinks' ),
3061 array( 'tl_namespace', 'tl_title' ),
3062 array( 'tl_from' => $id ),
3063 'Article:getUsedTemplates' );
3064 if ( false !== $res ) {
3065 if ( $dbr->numRows( $res ) ) {
3066 while ( $row = $dbr->fetchObject( $res ) ) {
3067 $result[] = Title::makeTitle( $row->tl_namespace, $row->tl_title );
3068 }
3069 }
3070 }
3071 $dbr->freeResult( $res );
3072 return $result;
3073 }
3074
3075 /**
3076 * Return an auto-generated summary if the text provided is a redirect.
3077 *
3078 * @param string $text The wikitext to check
3079 * @return string '' or an appropriate summary
3080 */
3081 public static function getRedirectAutosummary( $text ) {
3082 $rt = Title::newFromRedirect( $text );
3083 if( is_object( $rt ) )
3084 return wfMsgForContent( 'autoredircomment', $rt->getFullText() );
3085 else
3086 return '';
3087 }
3088
3089 /**
3090 * Return an auto-generated summary if the new text is much shorter than
3091 * the old text.
3092 *
3093 * @param string $oldtext The previous text of the page
3094 * @param string $text The submitted text of the page
3095 * @return string An appropriate autosummary, or an empty string.
3096 */
3097 public static function getBlankingAutosummary( $oldtext, $text ) {
3098 if ($oldtext!='' && $text=='') {
3099 return wfMsgForContent('autosumm-blank');
3100 } elseif (strlen($oldtext) > 10 * strlen($text) && strlen($text) < 500) {
3101 #Removing more than 90% of the article
3102 global $wgContLang;
3103 $truncatedtext = $wgContLang->truncate($text, max(0, 200 - strlen(wfMsgForContent('autosumm-replace'))), '...');
3104 return wfMsgForContent('autosumm-replace', $truncatedtext);
3105 } else {
3106 return '';
3107 }
3108 }
3109
3110 /**
3111 * Return an applicable autosummary if one exists for the given edit.
3112 * @param string $oldtext The previous text of the page.
3113 * @param string $newtext The submitted text of the page.
3114 * @param bitmask $flags A bitmask of flags submitted for the edit.
3115 * @return string An appropriate autosummary, or an empty string.
3116 */
3117 public static function getAutosummary( $oldtext, $newtext, $flags ) {
3118
3119 # This code is UGLY UGLY UGLY.
3120 # Somebody PLEASE come up with a more elegant way to do it.
3121
3122 #Redirect autosummaries
3123 $summary = self::getRedirectAutosummary( $newtext );
3124
3125 if ($summary)
3126 return $summary;
3127
3128 #Blanking autosummaries
3129 if (!($flags & EDIT_NEW))
3130 $summary = self::getBlankingAutosummary( $oldtext, $newtext );
3131
3132 if ($summary)
3133 return $summary;
3134
3135 #New page autosummaries
3136 if ($flags & EDIT_NEW && strlen($newtext)) {
3137 #If they're making a new article, give its text, truncated, in the summary.
3138 global $wgContLang;
3139 $truncatedtext = $wgContLang->truncate(
3140 str_replace("\n", ' ', $newtext),
3141 max( 0, 200 - strlen( wfMsgForContent( 'autosumm-new') ) ),
3142 '...' );
3143 $summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
3144 }
3145
3146 if ($summary)
3147 return $summary;
3148
3149 return $summary;
3150 }
3151
3152 /**
3153 * Add the primary page-view wikitext to the output buffer
3154 * Saves the text into the parser cache if possible.
3155 * Updates templatelinks if it is out of date.
3156 *
3157 * @param string $text
3158 * @param bool $cache
3159 */
3160 public function outputWikiText( $text, $cache = true ) {
3161 global $wgParser, $wgUser, $wgOut;
3162
3163 $popts = $wgOut->parserOptions();
3164 $popts->setTidy(true);
3165 $popts->enableLimitReport();
3166 $parserOutput = $wgParser->parse( $text, $this->mTitle,
3167 $popts, true, true, $this->getRevIdFetched() );
3168 $popts->setTidy(false);
3169 $popts->enableLimitReport( false );
3170 if ( $cache && $this && $parserOutput->getCacheTime() != -1 ) {
3171 $parserCache =& ParserCache::singleton();
3172 $parserCache->save( $parserOutput, $this, $wgUser );
3173 }
3174
3175 if ( !wfReadOnly() && $this->mTitle->areRestrictionsCascading() ) {
3176 // templatelinks table may have become out of sync,
3177 // especially if using variable-based transclusions.
3178 // For paranoia, check if things have changed and if
3179 // so apply updates to the database. This will ensure
3180 // that cascaded protections apply as soon as the changes
3181 // are visible.
3182
3183 # Get templates from templatelinks
3184 $id = $this->mTitle->getArticleID();
3185
3186 $tlTemplates = array();
3187
3188 $dbr = wfGetDB( DB_SLAVE );
3189 $res = $dbr->select( array( 'templatelinks' ),
3190 array( 'tl_namespace', 'tl_title' ),
3191 array( 'tl_from' => $id ),
3192 'Article:getUsedTemplates' );
3193
3194 global $wgContLang;
3195
3196 if ( false !== $res ) {
3197 if ( $dbr->numRows( $res ) ) {
3198 while ( $row = $dbr->fetchObject( $res ) ) {
3199 $tlTemplates[] = $wgContLang->getNsText( $row->tl_namespace ) . ':' . $row->tl_title ;
3200 }
3201 }
3202 }
3203
3204 # Get templates from parser output.
3205 $poTemplates_allns = $parserOutput->getTemplates();
3206
3207 $poTemplates = array ();
3208 foreach ( $poTemplates_allns as $ns_templates ) {
3209 $poTemplates = array_merge( $poTemplates, $ns_templates );
3210 }
3211
3212 # Get the diff
3213 $templates_diff = array_diff( $poTemplates, $tlTemplates );
3214
3215 if ( count( $templates_diff ) > 0 ) {
3216 # Whee, link updates time.
3217 $u = new LinksUpdate( $this->mTitle, $parserOutput );
3218
3219 $dbw = wfGetDb( DB_MASTER );
3220 $dbw->begin();
3221
3222 $u->doUpdate();
3223
3224 $dbw->commit();
3225 }
3226 }
3227
3228 $wgOut->addParserOutput( $parserOutput );
3229 }
3230
3231 }