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