* Added redirect to section feature. Use it wisely.
[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 if($summary) $subject="== {$summary} ==\n\n";
1139 $text=$oldtext."\n\n".$subject.$text;
1140 } else {
1141 global $wgParser;
1142 $text = $wgParser->replaceSection( $oldtext, $section, $text );
1143 }
1144 }
1145
1146 wfProfileOut( __METHOD__ );
1147 return $text;
1148 }
1149
1150 /**
1151 * @deprecated use Article::doEdit()
1152 */
1153 function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false ) {
1154 $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1155 ( $isminor ? EDIT_MINOR : 0 ) |
1156 ( $suppressRC ? EDIT_SUPPRESS_RC : 0 );
1157
1158 # If this is a comment, add the summary as headline
1159 if ( $comment && $summary != "" ) {
1160 $text = "== {$summary} ==\n\n".$text;
1161 }
1162
1163 $this->doEdit( $text, $summary, $flags );
1164
1165 $dbw =& wfGetDB( DB_MASTER );
1166 if ($watchthis) {
1167 if (!$this->mTitle->userIsWatching()) {
1168 $dbw->begin();
1169 $this->doWatch();
1170 $dbw->commit();
1171 }
1172 } else {
1173 if ( $this->mTitle->userIsWatching() ) {
1174 $dbw->begin();
1175 $this->doUnwatch();
1176 $dbw->commit();
1177 }
1178 }
1179 $this->doRedirect( $this->isRedirect( $text ) );
1180 }
1181
1182 /**
1183 * @deprecated use Article::doEdit()
1184 */
1185 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
1186 $flags = EDIT_UPDATE | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1187 ( $minor ? EDIT_MINOR : 0 ) |
1188 ( $forceBot ? EDIT_FORCE_BOT : 0 );
1189
1190 $good = $this->doEdit( $text, $summary, $flags );
1191 if ( $good ) {
1192 $dbw =& wfGetDB( DB_MASTER );
1193 if ($watchthis) {
1194 if (!$this->mTitle->userIsWatching()) {
1195 $dbw->begin();
1196 $this->doWatch();
1197 $dbw->commit();
1198 }
1199 } else {
1200 if ( $this->mTitle->userIsWatching() ) {
1201 $dbw->begin();
1202 $this->doUnwatch();
1203 $dbw->commit();
1204 }
1205 }
1206
1207 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1208 }
1209 return $good;
1210 }
1211
1212 /**
1213 * Article::doEdit()
1214 *
1215 * Change an existing article or create a new article. Updates RC and all necessary caches,
1216 * optionally via the deferred update array.
1217 *
1218 * $wgUser must be set before calling this function.
1219 *
1220 * @param string $text New text
1221 * @param string $summary Edit summary
1222 * @param integer $flags bitfield:
1223 * EDIT_NEW
1224 * Article is known or assumed to be non-existent, create a new one
1225 * EDIT_UPDATE
1226 * Article is known or assumed to be pre-existing, update it
1227 * EDIT_MINOR
1228 * Mark this edit minor, if the user is allowed to do so
1229 * EDIT_SUPPRESS_RC
1230 * Do not log the change in recentchanges
1231 * EDIT_FORCE_BOT
1232 * Mark the edit a "bot" edit regardless of user rights
1233 * EDIT_DEFER_UPDATES
1234 * Defer some of the updates until the end of index.php
1235 * EDIT_AUTOSUMMARY
1236 * Fill in blank summaries with generated text where possible
1237 *
1238 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1239 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return false. If
1240 * EDIT_NEW is specified and the article does exist, a duplicate key error will cause an exception
1241 * to be thrown from the Database. These two conditions are also possible with auto-detection due
1242 * to MediaWiki's performance-optimised locking strategy.
1243 *
1244 * @return bool success
1245 */
1246 function doEdit( $text, $summary, $flags = 0 ) {
1247 global $wgUser, $wgDBtransactions;
1248
1249 wfProfileIn( __METHOD__ );
1250 $good = true;
1251
1252 if ( !($flags & EDIT_NEW) && !($flags & EDIT_UPDATE) ) {
1253 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
1254 if ( $aid ) {
1255 $flags |= EDIT_UPDATE;
1256 } else {
1257 $flags |= EDIT_NEW;
1258 }
1259 }
1260
1261 if( !wfRunHooks( 'ArticleSave', array( &$this, &$wgUser, &$text,
1262 &$summary, $flags & EDIT_MINOR,
1263 null, null, &$flags ) ) )
1264 {
1265 wfDebug( __METHOD__ . ": ArticleSave hook aborted save!\n" );
1266 wfProfileOut( __METHOD__ );
1267 return false;
1268 }
1269
1270 # Silently ignore EDIT_MINOR if not allowed
1271 $isminor = ( $flags & EDIT_MINOR ) && $wgUser->isAllowed('minoredit');
1272 $bot = $wgUser->isAllowed( 'bot' ) || ( $flags & EDIT_FORCE_BOT );
1273
1274 $oldtext = $this->getContent();
1275 $oldsize = strlen( $oldtext );
1276 $newsize = strlen( $text );
1277
1278 # Provide autosummaries if one is not provided.
1279 if ($flags & EDIT_AUTOSUMMARY && $summary == '')
1280 $summary = $this->getAutosummary( $oldtext, $text, $flags );
1281
1282 $text = $this->preSaveTransform( $text );
1283
1284 $dbw =& wfGetDB( DB_MASTER );
1285 $now = wfTimestampNow();
1286
1287 if ( $flags & EDIT_UPDATE ) {
1288 # Update article, but only if changed.
1289
1290 # Make sure the revision is either completely inserted or not inserted at all
1291 if( !$wgDBtransactions ) {
1292 $userAbort = ignore_user_abort( true );
1293 }
1294
1295 $lastRevision = 0;
1296 $revisionId = 0;
1297
1298 if ( 0 != strcmp( $text, $oldtext ) ) {
1299 $this->mGoodAdjustment = (int)$this->isCountable( $text )
1300 - (int)$this->isCountable( $oldtext );
1301 $this->mTotalAdjustment = 0;
1302
1303 $lastRevision = $dbw->selectField(
1304 'page', 'page_latest', array( 'page_id' => $this->getId() ) );
1305
1306 if ( !$lastRevision ) {
1307 # Article gone missing
1308 wfDebug( __METHOD__.": EDIT_UPDATE specified but article doesn't exist\n" );
1309 wfProfileOut( __METHOD__ );
1310 return false;
1311 }
1312
1313 $revision = new Revision( array(
1314 'page' => $this->getId(),
1315 'comment' => $summary,
1316 'minor_edit' => $isminor,
1317 'text' => $text
1318 ) );
1319
1320 $dbw->begin();
1321 $revisionId = $revision->insertOn( $dbw );
1322
1323 # Update page
1324 $ok = $this->updateRevisionOn( $dbw, $revision, $lastRevision );
1325
1326 if( !$ok ) {
1327 /* Belated edit conflict! Run away!! */
1328 $good = false;
1329 $dbw->rollback();
1330 } else {
1331 # Update recentchanges
1332 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1333 $rcid = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $wgUser, $summary,
1334 $lastRevision, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
1335 $revisionId );
1336
1337 # Mark as patrolled if the user can do so and has it set in their options
1338 if( $wgUser->isAllowed( 'patrol' ) && $wgUser->getOption( 'autopatrol' ) ) {
1339 RecentChange::markPatrolled( $rcid );
1340 }
1341 }
1342 $dbw->commit();
1343 }
1344 } else {
1345 // Keep the same revision ID, but do some updates on it
1346 $revisionId = $this->getRevIdFetched();
1347 // Update page_touched, this is usually implicit in the page update
1348 // Other cache updates are done in onArticleEdit()
1349 $this->mTitle->invalidateCache();
1350 }
1351
1352 if( !$wgDBtransactions ) {
1353 ignore_user_abort( $userAbort );
1354 }
1355
1356 if ( $good ) {
1357 # Invalidate cache of this article and all pages using this article
1358 # as a template. Partly deferred.
1359 Article::onArticleEdit( $this->mTitle );
1360
1361 # Update links tables, site stats, etc.
1362 $changed = ( strcmp( $oldtext, $text ) != 0 );
1363 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, $changed );
1364 }
1365 } else {
1366 # Create new article
1367
1368 # Set statistics members
1369 # We work out if it's countable after PST to avoid counter drift
1370 # when articles are created with {{subst:}}
1371 $this->mGoodAdjustment = (int)$this->isCountable( $text );
1372 $this->mTotalAdjustment = 1;
1373
1374 $dbw->begin();
1375
1376 # Add the page record; stake our claim on this title!
1377 # This will fail with a database query exception if the article already exists
1378 $newid = $this->insertOn( $dbw );
1379
1380 # Save the revision text...
1381 $revision = new Revision( array(
1382 'page' => $newid,
1383 'comment' => $summary,
1384 'minor_edit' => $isminor,
1385 'text' => $text
1386 ) );
1387 $revisionId = $revision->insertOn( $dbw );
1388
1389 $this->mTitle->resetArticleID( $newid );
1390
1391 # Update the page record with revision data
1392 $this->updateRevisionOn( $dbw, $revision, 0 );
1393
1394 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1395 $rcid = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary, $bot,
1396 '', strlen( $text ), $revisionId );
1397 # Mark as patrolled if the user can and has the option set
1398 if( $wgUser->isAllowed( 'patrol' ) && $wgUser->getOption( 'autopatrol' ) ) {
1399 RecentChange::markPatrolled( $rcid );
1400 }
1401 }
1402 $dbw->commit();
1403
1404 # Update links, etc.
1405 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, true );
1406
1407 # Clear caches
1408 Article::onArticleCreate( $this->mTitle );
1409
1410 wfRunHooks( 'ArticleInsertComplete', array( &$this, &$wgUser, $text,
1411 $summary, $flags & EDIT_MINOR,
1412 null, null, &$flags ) );
1413 }
1414
1415 if ( $good && !( $flags & EDIT_DEFER_UPDATES ) ) {
1416 wfDoUpdates();
1417 }
1418
1419 wfRunHooks( 'ArticleSaveComplete',
1420 array( &$this, &$wgUser, $text,
1421 $summary, $flags & EDIT_MINOR,
1422 null, null, &$flags ) );
1423
1424 wfProfileOut( __METHOD__ );
1425 return $good;
1426 }
1427
1428 /**
1429 * @deprecated wrapper for doRedirect
1430 */
1431 function showArticle( $text, $subtitle , $sectionanchor = '', $me2, $now, $summary, $oldid ) {
1432 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1433 }
1434
1435 /**
1436 * Output a redirect back to the article.
1437 * This is typically used after an edit.
1438 *
1439 * @param boolean $noRedir Add redirect=no
1440 * @param string $sectionAnchor section to redirect to, including "#"
1441 */
1442 function doRedirect( $noRedir = false, $sectionAnchor = '' ) {
1443 global $wgOut;
1444 if ( $noRedir ) {
1445 $query = 'redirect=no';
1446 } else {
1447 $query = '';
1448 }
1449 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $sectionAnchor );
1450 }
1451
1452 /**
1453 * Mark this particular edit as patrolled
1454 */
1455 function markpatrolled() {
1456 global $wgOut, $wgRequest, $wgUseRCPatrol, $wgUser;
1457 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1458
1459 # Check RC patrol config. option
1460 if( !$wgUseRCPatrol ) {
1461 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1462 return;
1463 }
1464
1465 # Check permissions
1466 if( !$wgUser->isAllowed( 'patrol' ) ) {
1467 $wgOut->permissionRequired( 'patrol' );
1468 return;
1469 }
1470
1471 $rcid = $wgRequest->getVal( 'rcid' );
1472 if ( !is_null ( $rcid ) ) {
1473 if( wfRunHooks( 'MarkPatrolled', array( &$rcid, &$wgUser, false ) ) ) {
1474 RecentChange::markPatrolled( $rcid );
1475 wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
1476 $wgOut->setPagetitle( wfMsg( 'markedaspatrolled' ) );
1477 $wgOut->addWikiText( wfMsg( 'markedaspatrolledtext' ) );
1478 }
1479 $rcTitle = SpecialPage::getTitleFor( 'Recentchanges' );
1480 $wgOut->returnToMain( false, $rcTitle->getPrefixedText() );
1481 }
1482 else {
1483 $wgOut->showErrorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1484 }
1485 }
1486
1487 /**
1488 * User-interface handler for the "watch" action
1489 */
1490
1491 function watch() {
1492
1493 global $wgUser, $wgOut;
1494
1495 if ( $wgUser->isAnon() ) {
1496 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1497 return;
1498 }
1499 if ( wfReadOnly() ) {
1500 $wgOut->readOnlyPage();
1501 return;
1502 }
1503
1504 if( $this->doWatch() ) {
1505 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
1506 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1507
1508 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1509 $text = wfMsg( 'addedwatchtext', $link );
1510 $wgOut->addWikiText( $text );
1511 }
1512
1513 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1514 }
1515
1516 /**
1517 * Add this page to $wgUser's watchlist
1518 * @return bool true on successful watch operation
1519 */
1520 function doWatch() {
1521 global $wgUser;
1522 if( $wgUser->isAnon() ) {
1523 return false;
1524 }
1525
1526 if (wfRunHooks('WatchArticle', array(&$wgUser, &$this))) {
1527 $wgUser->addWatch( $this->mTitle );
1528
1529 return wfRunHooks('WatchArticleComplete', array(&$wgUser, &$this));
1530 }
1531
1532 return false;
1533 }
1534
1535 /**
1536 * User interface handler for the "unwatch" action.
1537 */
1538 function unwatch() {
1539
1540 global $wgUser, $wgOut;
1541
1542 if ( $wgUser->isAnon() ) {
1543 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1544 return;
1545 }
1546 if ( wfReadOnly() ) {
1547 $wgOut->readOnlyPage();
1548 return;
1549 }
1550
1551 if( $this->doUnwatch() ) {
1552 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
1553 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1554
1555 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1556 $text = wfMsg( 'removedwatchtext', $link );
1557 $wgOut->addWikiText( $text );
1558 }
1559
1560 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1561 }
1562
1563 /**
1564 * Stop watching a page
1565 * @return bool true on successful unwatch
1566 */
1567 function doUnwatch() {
1568 global $wgUser;
1569 if( $wgUser->isAnon() ) {
1570 return false;
1571 }
1572
1573 if (wfRunHooks('UnwatchArticle', array(&$wgUser, &$this))) {
1574 $wgUser->removeWatch( $this->mTitle );
1575
1576 return wfRunHooks('UnwatchArticleComplete', array(&$wgUser, &$this));
1577 }
1578
1579 return false;
1580 }
1581
1582 /**
1583 * action=protect handler
1584 */
1585 function protect() {
1586 $form = new ProtectionForm( $this );
1587 $form->show();
1588 }
1589
1590 /**
1591 * action=unprotect handler (alias)
1592 */
1593 function unprotect() {
1594 $this->protect();
1595 }
1596
1597 /**
1598 * Update the article's restriction field, and leave a log entry.
1599 *
1600 * @param array $limit set of restriction keys
1601 * @param string $reason
1602 * @return bool true on success
1603 */
1604 function updateRestrictions( $limit = array(), $reason = '' ) {
1605 global $wgUser, $wgRestrictionTypes, $wgContLang;
1606
1607 $id = $this->mTitle->getArticleID();
1608 if( !$wgUser->isAllowed( 'protect' ) || wfReadOnly() || $id == 0 ) {
1609 return false;
1610 }
1611
1612 # FIXME: Same limitations as described in ProtectionForm.php (line 37);
1613 # we expect a single selection, but the schema allows otherwise.
1614 $current = array();
1615 foreach( $wgRestrictionTypes as $action )
1616 $current[$action] = implode( '', $this->mTitle->getRestrictions( $action ) );
1617
1618 $current = Article::flattenRestrictions( $current );
1619 $updated = Article::flattenRestrictions( $limit );
1620
1621 $changed = ( $current != $updated );
1622 $protect = ( $updated != '' );
1623
1624 # If nothing's changed, do nothing
1625 if( $changed ) {
1626 if( wfRunHooks( 'ArticleProtect', array( &$this, &$wgUser, $limit, $reason ) ) ) {
1627
1628 $dbw =& wfGetDB( DB_MASTER );
1629
1630 # Prepare a null revision to be added to the history
1631 $comment = $wgContLang->ucfirst( wfMsgForContent( $protect ? 'protectedarticle' : 'unprotectedarticle', $this->mTitle->getPrefixedText() ) );
1632 if( $reason )
1633 $comment .= ": $reason";
1634 if( $protect )
1635 $comment .= " [$updated]";
1636 $nullRevision = Revision::newNullRevision( $dbw, $id, $comment, true );
1637 $nullRevId = $nullRevision->insertOn( $dbw );
1638
1639 # Update page record
1640 $dbw->update( 'page',
1641 array( /* SET */
1642 'page_touched' => $dbw->timestamp(),
1643 'page_restrictions' => $updated,
1644 'page_latest' => $nullRevId
1645 ), array( /* WHERE */
1646 'page_id' => $id
1647 ), 'Article::protect'
1648 );
1649 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$wgUser, $limit, $reason ) );
1650
1651 # Update the protection log
1652 $log = new LogPage( 'protect' );
1653 if( $protect ) {
1654 $log->addEntry( 'protect', $this->mTitle, trim( $reason . " [$updated]" ) );
1655 } else {
1656 $log->addEntry( 'unprotect', $this->mTitle, $reason );
1657 }
1658
1659 } # End hook
1660 } # End "changed" check
1661
1662 return true;
1663 }
1664
1665 /**
1666 * Take an array of page restrictions and flatten it to a string
1667 * suitable for insertion into the page_restrictions field.
1668 * @param array $limit
1669 * @return string
1670 * @private
1671 */
1672 function flattenRestrictions( $limit ) {
1673 if( !is_array( $limit ) ) {
1674 throw new MWException( 'Article::flattenRestrictions given non-array restriction set' );
1675 }
1676 $bits = array();
1677 ksort( $limit );
1678 foreach( $limit as $action => $restrictions ) {
1679 if( $restrictions != '' ) {
1680 $bits[] = "$action=$restrictions";
1681 }
1682 }
1683 return implode( ':', $bits );
1684 }
1685
1686 /*
1687 * UI entry point for page deletion
1688 */
1689 function delete() {
1690 global $wgUser, $wgOut, $wgRequest;
1691 $confirm = $wgRequest->wasPosted() &&
1692 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
1693 $reason = $wgRequest->getText( 'wpReason' );
1694
1695 # This code desperately needs to be totally rewritten
1696
1697 # Check permissions
1698 if( $wgUser->isAllowed( 'delete' ) ) {
1699 if( $wgUser->isBlocked( !$confirm ) ) {
1700 $wgOut->blockedPage();
1701 return;
1702 }
1703 } else {
1704 $wgOut->permissionRequired( 'delete' );
1705 return;
1706 }
1707
1708 if( wfReadOnly() ) {
1709 $wgOut->readOnlyPage();
1710 return;
1711 }
1712
1713 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
1714
1715 # Better double-check that it hasn't been deleted yet!
1716 $dbw =& wfGetDB( DB_MASTER );
1717 $conds = $this->mTitle->pageCond();
1718 $latest = $dbw->selectField( 'page', 'page_latest', $conds, __METHOD__ );
1719 if ( $latest === false ) {
1720 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1721 return;
1722 }
1723
1724 if( $confirm ) {
1725 $this->doDelete( $reason );
1726 return;
1727 }
1728
1729 # determine whether this page has earlier revisions
1730 # and insert a warning if it does
1731 $maxRevisions = 20;
1732 $authors = $this->getLastNAuthors( $maxRevisions, $latest );
1733
1734 if( count( $authors ) > 1 && !$confirm ) {
1735 $skin=$wgUser->getSkin();
1736 $wgOut->addHTML( '<strong>' . wfMsg( 'historywarning' ) . ' ' . $skin->historyLink() . '</strong>' );
1737 }
1738
1739 # If a single user is responsible for all revisions, find out who they are
1740 if ( count( $authors ) == $maxRevisions ) {
1741 // Query bailed out, too many revisions to find out if they're all the same
1742 $authorOfAll = false;
1743 } else {
1744 $authorOfAll = reset( $authors );
1745 foreach ( $authors as $author ) {
1746 if ( $authorOfAll != $author ) {
1747 $authorOfAll = false;
1748 break;
1749 }
1750 }
1751 }
1752 # Fetch article text
1753 $rev = Revision::newFromTitle( $this->mTitle );
1754
1755 if( !is_null( $rev ) ) {
1756 # if this is a mini-text, we can paste part of it into the deletion reason
1757 $text = $rev->getText();
1758
1759 #if this is empty, an earlier revision may contain "useful" text
1760 $blanked = false;
1761 if( $text == '' ) {
1762 $prev = $rev->getPrevious();
1763 if( $prev ) {
1764 $text = $prev->getText();
1765 $blanked = true;
1766 }
1767 }
1768
1769 $length = strlen( $text );
1770
1771 # this should not happen, since it is not possible to store an empty, new
1772 # page. Let's insert a standard text in case it does, though
1773 if( $length == 0 && $reason === '' ) {
1774 $reason = wfMsgForContent( 'exblank' );
1775 }
1776
1777 if( $length < 500 && $reason === '' ) {
1778 # comment field=255, let's grep the first 150 to have some user
1779 # space left
1780 global $wgContLang;
1781 $text = $wgContLang->truncate( $text, 150, '...' );
1782
1783 # let's strip out newlines
1784 $text = preg_replace( "/[\n\r]/", '', $text );
1785
1786 if( !$blanked ) {
1787 if( $authorOfAll === false ) {
1788 $reason = wfMsgForContent( 'excontent', $text );
1789 } else {
1790 $reason = wfMsgForContent( 'excontentauthor', $text, $authorOfAll );
1791 }
1792 } else {
1793 $reason = wfMsgForContent( 'exbeforeblank', $text );
1794 }
1795 }
1796 }
1797
1798 return $this->confirmDelete( '', $reason );
1799 }
1800
1801 /**
1802 * Get the last N authors
1803 * @param int $num Number of revisions to get
1804 * @param string $revLatest The latest rev_id, selected from the master (optional)
1805 * @return array Array of authors, duplicates not removed
1806 */
1807 function getLastNAuthors( $num, $revLatest = 0 ) {
1808 wfProfileIn( __METHOD__ );
1809
1810 // First try the slave
1811 // If that doesn't have the latest revision, try the master
1812 $continue = 2;
1813 $db =& wfGetDB( DB_SLAVE );
1814 do {
1815 $res = $db->select( array( 'page', 'revision' ),
1816 array( 'rev_id', 'rev_user_text' ),
1817 array(
1818 'page_namespace' => $this->mTitle->getNamespace(),
1819 'page_title' => $this->mTitle->getDBkey(),
1820 'rev_page = page_id'
1821 ), __METHOD__, $this->getSelectOptions( array(
1822 'ORDER BY' => 'rev_timestamp DESC',
1823 'LIMIT' => $num
1824 ) )
1825 );
1826 if ( !$res ) {
1827 wfProfileOut( __METHOD__ );
1828 return array();
1829 }
1830 $row = $db->fetchObject( $res );
1831 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
1832 $db =& wfGetDB( DB_MASTER );
1833 $continue--;
1834 } else {
1835 $continue = 0;
1836 }
1837 } while ( $continue );
1838
1839 $authors = array( $row->rev_user_text );
1840 while ( $row = $db->fetchObject( $res ) ) {
1841 $authors[] = $row->rev_user_text;
1842 }
1843 wfProfileOut( __METHOD__ );
1844 return $authors;
1845 }
1846
1847 /**
1848 * Output deletion confirmation dialog
1849 */
1850 function confirmDelete( $par, $reason ) {
1851 global $wgOut, $wgUser;
1852
1853 wfDebug( "Article::confirmDelete\n" );
1854
1855 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
1856 $wgOut->setSubtitle( wfMsg( 'deletesub', $sub ) );
1857 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1858 $wgOut->addWikiText( wfMsg( 'confirmdeletetext' ) );
1859
1860 $formaction = $this->mTitle->escapeLocalURL( 'action=delete' . $par );
1861
1862 $confirm = htmlspecialchars( wfMsg( 'deletepage' ) );
1863 $delcom = htmlspecialchars( wfMsg( 'deletecomment' ) );
1864 $token = htmlspecialchars( $wgUser->editToken() );
1865
1866 $wgOut->addHTML( "
1867 <form id='deleteconfirm' method='post' action=\"{$formaction}\">
1868 <table border='0'>
1869 <tr>
1870 <td align='right'>
1871 <label for='wpReason'>{$delcom}:</label>
1872 </td>
1873 <td align='left'>
1874 <input type='text' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" />
1875 </td>
1876 </tr>
1877 <tr>
1878 <td>&nbsp;</td>
1879 <td>
1880 <input type='submit' name='wpConfirmB' id='wpConfirmB' value=\"{$confirm}\" />
1881 </td>
1882 </tr>
1883 </table>
1884 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
1885 </form>\n" );
1886
1887 $wgOut->returnToMain( false );
1888 }
1889
1890
1891 /**
1892 * Perform a deletion and output success or failure messages
1893 */
1894 function doDelete( $reason ) {
1895 global $wgOut, $wgUser;
1896 wfDebug( __METHOD__."\n" );
1897
1898 if (wfRunHooks('ArticleDelete', array(&$this, &$wgUser, &$reason))) {
1899 if ( $this->doDeleteArticle( $reason ) ) {
1900 $deleted = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1901
1902 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
1903 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1904
1905 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
1906 $text = wfMsg( 'deletedtext', $deleted, $loglink );
1907
1908 $wgOut->addWikiText( $text );
1909 $wgOut->returnToMain( false );
1910 wfRunHooks('ArticleDeleteComplete', array(&$this, &$wgUser, $reason));
1911 } else {
1912 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1913 }
1914 }
1915 }
1916
1917 /**
1918 * Back-end article deletion
1919 * Deletes the article with database consistency, writes logs, purges caches
1920 * Returns success
1921 */
1922 function doDeleteArticle( $reason ) {
1923 global $wgUseSquid, $wgDeferredUpdateList;
1924 global $wgUseTrackbacks;
1925
1926 wfDebug( __METHOD__."\n" );
1927
1928 $dbw =& wfGetDB( DB_MASTER );
1929 $ns = $this->mTitle->getNamespace();
1930 $t = $this->mTitle->getDBkey();
1931 $id = $this->mTitle->getArticleID();
1932
1933 if ( $t == '' || $id == 0 ) {
1934 return false;
1935 }
1936
1937 $u = new SiteStatsUpdate( 0, 1, -(int)$this->isCountable( $this->getContent() ), -1 );
1938 array_push( $wgDeferredUpdateList, $u );
1939
1940 // For now, shunt the revision data into the archive table.
1941 // Text is *not* removed from the text table; bulk storage
1942 // is left intact to avoid breaking block-compression or
1943 // immutable storage schemes.
1944 //
1945 // For backwards compatibility, note that some older archive
1946 // table entries will have ar_text and ar_flags fields still.
1947 //
1948 // In the future, we may keep revisions and mark them with
1949 // the rev_deleted field, which is reserved for this purpose.
1950 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
1951 array(
1952 'ar_namespace' => 'page_namespace',
1953 'ar_title' => 'page_title',
1954 'ar_comment' => 'rev_comment',
1955 'ar_user' => 'rev_user',
1956 'ar_user_text' => 'rev_user_text',
1957 'ar_timestamp' => 'rev_timestamp',
1958 'ar_minor_edit' => 'rev_minor_edit',
1959 'ar_rev_id' => 'rev_id',
1960 'ar_text_id' => 'rev_text_id',
1961 ), array(
1962 'page_id' => $id,
1963 'page_id = rev_page'
1964 ), __METHOD__
1965 );
1966
1967 # Now that it's safely backed up, delete it
1968 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__);
1969
1970 # If using cascading deletes, we can skip some explicit deletes
1971 if ( !$dbw->cascadingDeletes() ) {
1972
1973 $dbw->delete( 'revision', array( 'rev_page' => $id ), __METHOD__ );
1974
1975 if ($wgUseTrackbacks)
1976 $dbw->delete( 'trackbacks', array( 'tb_page' => $id ), __METHOD__ );
1977
1978 # Delete outgoing links
1979 $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
1980 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
1981 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
1982 $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
1983 $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
1984 $dbw->delete( 'langlinks', array( 'll_from' => $id ) );
1985 $dbw->delete( 'redirect', array( 'rd_from' => $id ) );
1986 }
1987
1988 # If using cleanup triggers, we can skip some manual deletes
1989 if ( !$dbw->cleanupTriggers() ) {
1990
1991 # Clean up recentchanges entries...
1992 $dbw->delete( 'recentchanges', array( 'rc_namespace' => $ns, 'rc_title' => $t ), __METHOD__ );
1993 }
1994
1995 # Clear caches
1996 Article::onArticleDelete( $this->mTitle );
1997
1998 # Log the deletion
1999 $log = new LogPage( 'delete' );
2000 $log->addEntry( 'delete', $this->mTitle, $reason );
2001
2002 # Clear the cached article id so the interface doesn't act like we exist
2003 $this->mTitle->resetArticleID( 0 );
2004 $this->mTitle->mArticleID = 0;
2005 return true;
2006 }
2007
2008 /**
2009 * Revert a modification
2010 */
2011 function rollback() {
2012 global $wgUser, $wgOut, $wgRequest, $wgUseRCPatrol;
2013
2014 if( $wgUser->isAllowed( 'rollback' ) ) {
2015 if( $wgUser->isBlocked() ) {
2016 $wgOut->blockedPage();
2017 return;
2018 }
2019 } else {
2020 $wgOut->permissionRequired( 'rollback' );
2021 return;
2022 }
2023
2024 if ( wfReadOnly() ) {
2025 $wgOut->readOnlyPage( $this->getContent() );
2026 return;
2027 }
2028 if( !$wgUser->matchEditToken( $wgRequest->getVal( 'token' ),
2029 array( $this->mTitle->getPrefixedText(),
2030 $wgRequest->getVal( 'from' ) ) ) ) {
2031 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2032 $wgOut->addWikiText( wfMsg( 'sessionfailure' ) );
2033 return;
2034 }
2035 $dbw =& wfGetDB( DB_MASTER );
2036
2037 # Enhanced rollback, marks edits rc_bot=1
2038 $bot = $wgRequest->getBool( 'bot' );
2039
2040 # Replace all this user's current edits with the next one down
2041
2042 # Get the last editor
2043 $current = Revision::newFromTitle( $this->mTitle );
2044 if( is_null( $current ) ) {
2045 # Something wrong... no page?
2046 $wgOut->addHTML( wfMsg( 'notanarticle' ) );
2047 return;
2048 }
2049
2050 $from = str_replace( '_', ' ', $wgRequest->getVal( 'from' ) );
2051 if( $from != $current->getUserText() ) {
2052 $wgOut->setPageTitle( wfMsg('rollbackfailed') );
2053 $wgOut->addWikiText( wfMsg( 'alreadyrolled',
2054 htmlspecialchars( $this->mTitle->getPrefixedText()),
2055 htmlspecialchars( $from ),
2056 htmlspecialchars( $current->getUserText() ) ) );
2057 if( $current->getComment() != '') {
2058 $wgOut->addHTML(
2059 wfMsg( 'editcomment',
2060 htmlspecialchars( $current->getComment() ) ) );
2061 }
2062 return;
2063 }
2064
2065 # Get the last edit not by this guy
2066 $user = intval( $current->getUser() );
2067 $user_text = $dbw->addQuotes( $current->getUserText() );
2068 $s = $dbw->selectRow( 'revision',
2069 array( 'rev_id', 'rev_timestamp' ),
2070 array(
2071 'rev_page' => $current->getPage(),
2072 "rev_user <> {$user} OR rev_user_text <> {$user_text}"
2073 ), __METHOD__,
2074 array(
2075 'USE INDEX' => 'page_timestamp',
2076 'ORDER BY' => 'rev_timestamp DESC' )
2077 );
2078 if( $s === false ) {
2079 # Something wrong
2080 $wgOut->setPageTitle(wfMsg('rollbackfailed'));
2081 $wgOut->addHTML( wfMsg( 'cantrollback' ) );
2082 return;
2083 }
2084
2085 $set = array();
2086 if ( $bot ) {
2087 # Mark all reverted edits as bot
2088 $set['rc_bot'] = 1;
2089 }
2090 if ( $wgUseRCPatrol ) {
2091 # Mark all reverted edits as patrolled
2092 $set['rc_patrolled'] = 1;
2093 }
2094
2095 if ( $set ) {
2096 $dbw->update( 'recentchanges', $set,
2097 array( /* WHERE */
2098 'rc_cur_id' => $current->getPage(),
2099 'rc_user_text' => $current->getUserText(),
2100 "rc_timestamp > '{$s->rev_timestamp}'",
2101 ), __METHOD__
2102 );
2103 }
2104
2105 # Get the edit summary
2106 $target = Revision::newFromId( $s->rev_id );
2107 $newComment = wfMsgForContent( 'revertpage', $target->getUserText(), $from );
2108 $newComment = $wgRequest->getText( 'summary', $newComment );
2109
2110 # Save it!
2111 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
2112 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2113 $wgOut->addHTML( '<h2>' . htmlspecialchars( $newComment ) . "</h2>\n<hr />\n" );
2114
2115 $this->updateArticle( $target->getText(), $newComment, 1, $this->mTitle->userIsWatching(), $bot );
2116
2117 $wgOut->returnToMain( false );
2118 }
2119
2120
2121 /**
2122 * Do standard deferred updates after page view
2123 * @private
2124 */
2125 function viewUpdates() {
2126 global $wgDeferredUpdateList;
2127
2128 if ( 0 != $this->getID() ) {
2129 global $wgDisableCounters;
2130 if( !$wgDisableCounters ) {
2131 Article::incViewCount( $this->getID() );
2132 $u = new SiteStatsUpdate( 1, 0, 0 );
2133 array_push( $wgDeferredUpdateList, $u );
2134 }
2135 }
2136
2137 # Update newtalk / watchlist notification status
2138 global $wgUser;
2139 $wgUser->clearNotification( $this->mTitle );
2140 }
2141
2142 /**
2143 * Do standard deferred updates after page edit.
2144 * Update links tables, site stats, search index and message cache.
2145 * Every 1000th edit, prune the recent changes table.
2146 *
2147 * @private
2148 * @param $text New text of the article
2149 * @param $summary Edit summary
2150 * @param $minoredit Minor edit
2151 * @param $timestamp_of_pagechange Timestamp associated with the page change
2152 * @param $newid rev_id value of the new revision
2153 * @param $changed Whether or not the content actually changed
2154 */
2155 function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true ) {
2156 global $wgDeferredUpdateList, $wgMessageCache, $wgUser, $wgParser;
2157
2158 wfProfileIn( __METHOD__ );
2159
2160 # Parse the text
2161 $options = new ParserOptions;
2162 $options->setTidy(true);
2163 $poutput = $wgParser->parse( $text, $this->mTitle, $options, true, true, $newid );
2164
2165 # Save it to the parser cache
2166 $parserCache =& ParserCache::singleton();
2167 $parserCache->save( $poutput, $this, $wgUser );
2168
2169 # Update the links tables
2170 $u = new LinksUpdate( $this->mTitle, $poutput );
2171 $u->doUpdate();
2172
2173 if ( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
2174 wfSeedRandom();
2175 if ( 0 == mt_rand( 0, 999 ) ) {
2176 # Periodically flush old entries from the recentchanges table.
2177 global $wgRCMaxAge;
2178
2179 $dbw =& wfGetDB( DB_MASTER );
2180 $cutoff = $dbw->timestamp( time() - $wgRCMaxAge );
2181 $recentchanges = $dbw->tableName( 'recentchanges' );
2182 $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$cutoff}'";
2183 $dbw->query( $sql );
2184 }
2185 }
2186
2187 $id = $this->getID();
2188 $title = $this->mTitle->getPrefixedDBkey();
2189 $shortTitle = $this->mTitle->getDBkey();
2190
2191 if ( 0 == $id ) {
2192 wfProfileOut( __METHOD__ );
2193 return;
2194 }
2195
2196 $u = new SiteStatsUpdate( 0, 1, $this->mGoodAdjustment, $this->mTotalAdjustment );
2197 array_push( $wgDeferredUpdateList, $u );
2198 $u = new SearchUpdate( $id, $title, $text );
2199 array_push( $wgDeferredUpdateList, $u );
2200
2201 # If this is another user's talk page, update newtalk
2202 # Don't do this if $changed = false otherwise some idiot can null-edit a
2203 # load of user talk pages and piss people off, nor if it's a minor edit
2204 # by a properly-flagged bot.
2205 if( $this->mTitle->getNamespace() == NS_USER_TALK && $shortTitle != $wgUser->getTitleKey() && $changed
2206 && !($minoredit && $wgUser->isAllowed('nominornewtalk') ) ) {
2207 if (wfRunHooks('ArticleEditUpdateNewTalk', array(&$this)) ) {
2208 $other = User::newFromName( $shortTitle );
2209 if( is_null( $other ) && User::isIP( $shortTitle ) ) {
2210 // An anonymous user
2211 $other = new User();
2212 $other->setName( $shortTitle );
2213 }
2214 if( $other ) {
2215 $other->setNewtalk( true );
2216 }
2217 }
2218 }
2219
2220 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2221 $wgMessageCache->replace( $shortTitle, $text );
2222 }
2223
2224 wfProfileOut( __METHOD__ );
2225 }
2226
2227 /**
2228 * Perform article updates on a special page creation.
2229 *
2230 * @param Revision $rev
2231 *
2232 * @fixme This is a shitty interface function. Kill it and replace the
2233 * other shitty functions like editUpdates and such so it's not needed
2234 * anymore.
2235 */
2236 function createUpdates( $rev ) {
2237 $this->mGoodAdjustment = $this->isCountable( $rev->getText() );
2238 $this->mTotalAdjustment = 1;
2239 $this->editUpdates( $rev->getText(), $rev->getComment(),
2240 $rev->isMinor(), wfTimestamp(), $rev->getId(), true );
2241 }
2242
2243 /**
2244 * Generate the navigation links when browsing through an article revisions
2245 * It shows the information as:
2246 * Revision as of \<date\>; view current revision
2247 * \<- Previous version | Next Version -\>
2248 *
2249 * @private
2250 * @param string $oldid Revision ID of this article revision
2251 */
2252 function setOldSubtitle( $oldid=0 ) {
2253 global $wgLang, $wgOut, $wgUser;
2254
2255 if ( !wfRunHooks( 'DisplayOldSubtitle', array(&$this, &$oldid) ) ) {
2256 return;
2257 }
2258
2259 $revision = Revision::newFromId( $oldid );
2260
2261 $current = ( $oldid == $this->mLatest );
2262 $td = $wgLang->timeanddate( $this->mTimestamp, true );
2263 $sk = $wgUser->getSkin();
2264 $lnk = $current
2265 ? wfMsg( 'currentrevisionlink' )
2266 : $lnk = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'currentrevisionlink' ) );
2267 $curdiff = $current
2268 ? wfMsg( 'diff' )
2269 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=cur&oldid='.$oldid );
2270 $prev = $this->mTitle->getPreviousRevisionID( $oldid ) ;
2271 $prevlink = $prev
2272 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'previousrevision' ), 'direction=prev&oldid='.$oldid )
2273 : wfMsg( 'previousrevision' );
2274 $prevdiff = $prev
2275 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=prev&oldid='.$oldid )
2276 : wfMsg( 'diff' );
2277 $nextlink = $current
2278 ? wfMsg( 'nextrevision' )
2279 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'nextrevision' ), 'direction=next&oldid='.$oldid );
2280 $nextdiff = $current
2281 ? wfMsg( 'diff' )
2282 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=next&oldid='.$oldid );
2283
2284 $userlinks = $sk->userLink( $revision->getUser(), $revision->getUserText() )
2285 . $sk->userToolLinks( $revision->getUser(), $revision->getUserText() );
2286
2287 $r = "\n\t\t\t\t<div id=\"mw-revision-info\">" . wfMsg( 'revision-info', $td, $userlinks ) . "</div>\n" .
2288 "\n\t\t\t\t<div id=\"mw-revision-nav\">" . wfMsg( 'revision-nav', $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
2289 $wgOut->setSubtitle( $r );
2290 }
2291
2292 /**
2293 * This function is called right before saving the wikitext,
2294 * so we can do things like signatures and links-in-context.
2295 *
2296 * @param string $text
2297 */
2298 function preSaveTransform( $text ) {
2299 global $wgParser, $wgUser;
2300 return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
2301 }
2302
2303 /* Caching functions */
2304
2305 /**
2306 * checkLastModified returns true if it has taken care of all
2307 * output to the client that is necessary for this request.
2308 * (that is, it has sent a cached version of the page)
2309 */
2310 function tryFileCache() {
2311 static $called = false;
2312 if( $called ) {
2313 wfDebug( "Article::tryFileCache(): called twice!?\n" );
2314 return;
2315 }
2316 $called = true;
2317 if($this->isFileCacheable()) {
2318 $touched = $this->mTouched;
2319 $cache = new HTMLFileCache( $this->mTitle );
2320 if($cache->isFileCacheGood( $touched )) {
2321 wfDebug( "Article::tryFileCache(): about to load file\n" );
2322 $cache->loadFromFileCache();
2323 return true;
2324 } else {
2325 wfDebug( "Article::tryFileCache(): starting buffer\n" );
2326 ob_start( array(&$cache, 'saveToFileCache' ) );
2327 }
2328 } else {
2329 wfDebug( "Article::tryFileCache(): not cacheable\n" );
2330 }
2331 }
2332
2333 /**
2334 * Check if the page can be cached
2335 * @return bool
2336 */
2337 function isFileCacheable() {
2338 global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest;
2339 $action = $wgRequest->getVal( 'action' );
2340 $oldid = $wgRequest->getVal( 'oldid' );
2341 $diff = $wgRequest->getVal( 'diff' );
2342 $redirect = $wgRequest->getVal( 'redirect' );
2343 $printable = $wgRequest->getVal( 'printable' );
2344
2345 return $wgUseFileCache
2346 and (!$wgShowIPinHeader)
2347 and ($this->getID() != 0)
2348 and ($wgUser->isAnon())
2349 and (!$wgUser->getNewtalk())
2350 and ($this->mTitle->getNamespace() != NS_SPECIAL )
2351 and (empty( $action ) || $action == 'view')
2352 and (!isset($oldid))
2353 and (!isset($diff))
2354 and (!isset($redirect))
2355 and (!isset($printable))
2356 and (!$this->mRedirectedFrom);
2357 }
2358
2359 /**
2360 * Loads page_touched and returns a value indicating if it should be used
2361 *
2362 */
2363 function checkTouched() {
2364 if( !$this->mDataLoaded ) {
2365 $this->loadPageData();
2366 }
2367 return !$this->mIsRedirect;
2368 }
2369
2370 /**
2371 * Get the page_touched field
2372 */
2373 function getTouched() {
2374 # Ensure that page data has been loaded
2375 if( !$this->mDataLoaded ) {
2376 $this->loadPageData();
2377 }
2378 return $this->mTouched;
2379 }
2380
2381 /**
2382 * Get the page_latest field
2383 */
2384 function getLatest() {
2385 if ( !$this->mDataLoaded ) {
2386 $this->loadPageData();
2387 }
2388 return $this->mLatest;
2389 }
2390
2391 /**
2392 * Edit an article without doing all that other stuff
2393 * The article must already exist; link tables etc
2394 * are not updated, caches are not flushed.
2395 *
2396 * @param string $text text submitted
2397 * @param string $comment comment submitted
2398 * @param bool $minor whereas it's a minor modification
2399 */
2400 function quickEdit( $text, $comment = '', $minor = 0 ) {
2401 wfProfileIn( __METHOD__ );
2402
2403 $dbw =& wfGetDB( DB_MASTER );
2404 $dbw->begin();
2405 $revision = new Revision( array(
2406 'page' => $this->getId(),
2407 'text' => $text,
2408 'comment' => $comment,
2409 'minor_edit' => $minor ? 1 : 0,
2410 ) );
2411 $revision->insertOn( $dbw );
2412 $this->updateRevisionOn( $dbw, $revision );
2413 $dbw->commit();
2414
2415 wfProfileOut( __METHOD__ );
2416 }
2417
2418 /**
2419 * Used to increment the view counter
2420 *
2421 * @static
2422 * @param integer $id article id
2423 */
2424 function incViewCount( $id ) {
2425 $id = intval( $id );
2426 global $wgHitcounterUpdateFreq, $wgDBtype;
2427
2428 $dbw =& wfGetDB( DB_MASTER );
2429 $pageTable = $dbw->tableName( 'page' );
2430 $hitcounterTable = $dbw->tableName( 'hitcounter' );
2431 $acchitsTable = $dbw->tableName( 'acchits' );
2432
2433 if( $wgHitcounterUpdateFreq <= 1 ) {
2434 $dbw->query( "UPDATE $pageTable SET page_counter = page_counter + 1 WHERE page_id = $id" );
2435 return;
2436 }
2437
2438 # Not important enough to warrant an error page in case of failure
2439 $oldignore = $dbw->ignoreErrors( true );
2440
2441 $dbw->query( "INSERT INTO $hitcounterTable (hc_id) VALUES ({$id})" );
2442
2443 $checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
2444 if( (rand() % $checkfreq != 0) or ($dbw->lastErrno() != 0) ){
2445 # Most of the time (or on SQL errors), skip row count check
2446 $dbw->ignoreErrors( $oldignore );
2447 return;
2448 }
2449
2450 $res = $dbw->query("SELECT COUNT(*) as n FROM $hitcounterTable");
2451 $row = $dbw->fetchObject( $res );
2452 $rown = intval( $row->n );
2453 if( $rown >= $wgHitcounterUpdateFreq ){
2454 wfProfileIn( 'Article::incViewCount-collect' );
2455 $old_user_abort = ignore_user_abort( true );
2456
2457 if ($wgDBtype == 'mysql')
2458 $dbw->query("LOCK TABLES $hitcounterTable WRITE");
2459 $tabletype = $wgDBtype == 'mysql' ? "ENGINE=HEAP " : '';
2460 $dbw->query("CREATE TEMPORARY TABLE $acchitsTable $tabletype AS".
2461 "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable ".
2462 'GROUP BY hc_id');
2463 $dbw->query("DELETE FROM $hitcounterTable");
2464 if ($wgDBtype == 'mysql') {
2465 $dbw->query('UNLOCK TABLES');
2466 $dbw->query("UPDATE $pageTable,$acchitsTable SET page_counter=page_counter + hc_n ".
2467 'WHERE page_id = hc_id');
2468 }
2469 else {
2470 $dbw->query("UPDATE $pageTable SET page_counter=page_counter + hc_n ".
2471 "FROM $acchitsTable WHERE page_id = hc_id");
2472 }
2473 $dbw->query("DROP TABLE $acchitsTable");
2474
2475 ignore_user_abort( $old_user_abort );
2476 wfProfileOut( 'Article::incViewCount-collect' );
2477 }
2478 $dbw->ignoreErrors( $oldignore );
2479 }
2480
2481 /**#@+
2482 * The onArticle*() functions are supposed to be a kind of hooks
2483 * which should be called whenever any of the specified actions
2484 * are done.
2485 *
2486 * This is a good place to put code to clear caches, for instance.
2487 *
2488 * This is called on page move and undelete, as well as edit
2489 * @static
2490 * @param $title_obj a title object
2491 */
2492
2493 static function onArticleCreate($title) {
2494 # The talk page isn't in the regular link tables, so we need to update manually:
2495 if ( $title->isTalkPage() ) {
2496 $other = $title->getSubjectPage();
2497 } else {
2498 $other = $title->getTalkPage();
2499 }
2500 $other->invalidateCache();
2501 $other->purgeSquid();
2502
2503 $title->touchLinks();
2504 $title->purgeSquid();
2505 }
2506
2507 static function onArticleDelete( $title ) {
2508 global $wgUseFileCache, $wgMessageCache;
2509
2510 $title->touchLinks();
2511 $title->purgeSquid();
2512
2513 # File cache
2514 if ( $wgUseFileCache ) {
2515 $cm = new HTMLFileCache( $title );
2516 @unlink( $cm->fileCacheName() );
2517 }
2518
2519 if( $title->getNamespace() == NS_MEDIAWIKI) {
2520 $wgMessageCache->replace( $title->getDBkey(), false );
2521 }
2522 }
2523
2524 /**
2525 * Purge caches on page update etc
2526 */
2527 static function onArticleEdit( $title ) {
2528 global $wgDeferredUpdateList, $wgUseFileCache;
2529
2530 // Invalidate caches of articles which include this page
2531 $update = new HTMLCacheUpdate( $title, 'templatelinks' );
2532 $wgDeferredUpdateList[] = $update;
2533
2534 # Purge squid for this page only
2535 $title->purgeSquid();
2536
2537 # Clear file cache
2538 if ( $wgUseFileCache ) {
2539 $cm = new HTMLFileCache( $title );
2540 @unlink( $cm->fileCacheName() );
2541 }
2542 }
2543
2544 /**#@-*/
2545
2546 /**
2547 * Info about this page
2548 * Called for ?action=info when $wgAllowPageInfo is on.
2549 *
2550 * @public
2551 */
2552 function info() {
2553 global $wgLang, $wgOut, $wgAllowPageInfo, $wgUser;
2554
2555 if ( !$wgAllowPageInfo ) {
2556 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
2557 return;
2558 }
2559
2560 $page = $this->mTitle->getSubjectPage();
2561
2562 $wgOut->setPagetitle( $page->getPrefixedText() );
2563 $wgOut->setSubtitle( wfMsg( 'infosubtitle' ));
2564
2565 # first, see if the page exists at all.
2566 $exists = $page->getArticleId() != 0;
2567 if( !$exists ) {
2568 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2569 $wgOut->addHTML(wfMsgWeirdKey ( $this->mTitle->getText() ) );
2570 } else {
2571 $wgOut->addHTML(wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' ) );
2572 }
2573 } else {
2574 $dbr =& wfGetDB( DB_SLAVE );
2575 $wl_clause = array(
2576 'wl_title' => $page->getDBkey(),
2577 'wl_namespace' => $page->getNamespace() );
2578 $numwatchers = $dbr->selectField(
2579 'watchlist',
2580 'COUNT(*)',
2581 $wl_clause,
2582 __METHOD__,
2583 $this->getSelectOptions() );
2584
2585 $pageInfo = $this->pageCountInfo( $page );
2586 $talkInfo = $this->pageCountInfo( $page->getTalkPage() );
2587
2588 $wgOut->addHTML( "<ul><li>" . wfMsg("numwatchers", $wgLang->formatNum( $numwatchers ) ) . '</li>' );
2589 $wgOut->addHTML( "<li>" . wfMsg('numedits', $wgLang->formatNum( $pageInfo['edits'] ) ) . '</li>');
2590 if( $talkInfo ) {
2591 $wgOut->addHTML( '<li>' . wfMsg("numtalkedits", $wgLang->formatNum( $talkInfo['edits'] ) ) . '</li>');
2592 }
2593 $wgOut->addHTML( '<li>' . wfMsg("numauthors", $wgLang->formatNum( $pageInfo['authors'] ) ) . '</li>' );
2594 if( $talkInfo ) {
2595 $wgOut->addHTML( '<li>' . wfMsg('numtalkauthors', $wgLang->formatNum( $talkInfo['authors'] ) ) . '</li>' );
2596 }
2597 $wgOut->addHTML( '</ul>' );
2598
2599 }
2600 }
2601
2602 /**
2603 * Return the total number of edits and number of unique editors
2604 * on a given page. If page does not exist, returns false.
2605 *
2606 * @param Title $title
2607 * @return array
2608 * @private
2609 */
2610 function pageCountInfo( $title ) {
2611 $id = $title->getArticleId();
2612 if( $id == 0 ) {
2613 return false;
2614 }
2615
2616 $dbr =& wfGetDB( DB_SLAVE );
2617
2618 $rev_clause = array( 'rev_page' => $id );
2619
2620 $edits = $dbr->selectField(
2621 'revision',
2622 'COUNT(rev_page)',
2623 $rev_clause,
2624 __METHOD__,
2625 $this->getSelectOptions() );
2626
2627 $authors = $dbr->selectField(
2628 'revision',
2629 'COUNT(DISTINCT rev_user_text)',
2630 $rev_clause,
2631 __METHOD__,
2632 $this->getSelectOptions() );
2633
2634 return array( 'edits' => $edits, 'authors' => $authors );
2635 }
2636
2637 /**
2638 * Return a list of templates used by this article.
2639 * Uses the templatelinks table
2640 *
2641 * @return array Array of Title objects
2642 */
2643 function getUsedTemplates() {
2644 $result = array();
2645 $id = $this->mTitle->getArticleID();
2646 if( $id == 0 ) {
2647 return array();
2648 }
2649
2650 $dbr =& wfGetDB( DB_SLAVE );
2651 $res = $dbr->select( array( 'templatelinks' ),
2652 array( 'tl_namespace', 'tl_title' ),
2653 array( 'tl_from' => $id ),
2654 'Article:getUsedTemplates' );
2655 if ( false !== $res ) {
2656 if ( $dbr->numRows( $res ) ) {
2657 while ( $row = $dbr->fetchObject( $res ) ) {
2658 $result[] = Title::makeTitle( $row->tl_namespace, $row->tl_title );
2659 }
2660 }
2661 }
2662 $dbr->freeResult( $res );
2663 return $result;
2664 }
2665
2666 /**
2667 * Return an auto-generated summary if the text provided is a redirect.
2668 *
2669 * @param string $text The wikitext to check
2670 * @return string '' or an appropriate summary
2671 */
2672 public static function getRedirectAutosummary( $text ) {
2673 $rt = Title::newFromRedirect( $text );
2674 if( is_object( $rt ) )
2675 return wfMsgForContent( 'autoredircomment', $rt->getFullText() );
2676 else
2677 return '';
2678 }
2679
2680 /**
2681 * Return an auto-generated summary if the new text is much shorter than
2682 * the old text.
2683 *
2684 * @param string $oldtext The previous text of the page
2685 * @param string $text The submitted text of the page
2686 * @return string An appropriate autosummary, or an empty string.
2687 */
2688 public static function getBlankingAutosummary( $oldtext, $text ) {
2689 if ($oldtext!='' && $text=='') {
2690 return wfMsgForContent('autosumm-blank');
2691 } elseif (strlen($oldtext) > 10 * strlen($text) && strlen($text) < 500) {
2692 #Removing more than 90% of the article
2693 global $wgContLang;
2694 $truncatedtext = $wgContLang->truncate($text, max(0, 200 - strlen(wfMsgForContent('autosumm-replace'))), '...');
2695 return wfMsgForContent('autosumm-replace', $truncatedtext);
2696 } else {
2697 return '';
2698 }
2699 }
2700
2701 /**
2702 * Return an applicable autosummary if one exists for the given edit.
2703 * @param string $oldtext The previous text of the page.
2704 * @param string $newtext The submitted text of the page.
2705 * @param bitmask $flags A bitmask of flags submitted for the edit.
2706 * @return string An appropriate autosummary, or an empty string.
2707 */
2708 public static function getAutosummary( $oldtext, $newtext, $flags ) {
2709
2710 # This code is UGLY UGLY UGLY.
2711 # Somebody PLEASE come up with a more elegant way to do it.
2712
2713 #Redirect autosummaries
2714 $summary = self::getRedirectAutosummary( $newtext );
2715
2716 if ($summary)
2717 return $summary;
2718
2719 #Blanking autosummaries
2720 if (!($flags & EDIT_NEW))
2721 $summary = self::getBlankingAutosummary( $oldtext, $newtext );
2722
2723 if ($summary)
2724 return $summary;
2725
2726 #New page autosummaries
2727 if ($flags & EDIT_NEW && strlen($newtext)) {
2728 #If they're making a new article, give its text, truncated, in the summary.
2729 global $wgContLang;
2730 $truncatedtext = $wgContLang->truncate( $newtext, max( 0, 200 -
2731 strlen( wfMsgForContent( 'autosumm-new') ) ), '...' );
2732 $summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
2733 }
2734
2735 if ($summary)
2736 return $summary;
2737
2738 return $summary;
2739 }
2740 }
2741
2742 ?>