Return nothing on empty math tags instead of char encoding
[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 # The default policy. Dev note: make sure you change the documentation
636 # in DefaultSettings.php before changing it.
637 $policy = 'index,follow';
638 }
639 $wgOut->setRobotpolicy( $policy );
640
641 # If we got diff and oldid in the query, we want to see a
642 # diff page instead of the article.
643
644 if ( !is_null( $diff ) ) {
645 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
646
647 $de = new DifferenceEngine( $this->mTitle, $oldid, $diff, $rcid );
648 // DifferenceEngine directly fetched the revision:
649 $this->mRevIdFetched = $de->mNewid;
650 $de->showDiffPage();
651
652 // Needed to get the page's current revision
653 $this->loadPageData();
654 if( $diff == 0 || $diff == $this->mLatest ) {
655 # Run view updates for current revision only
656 $this->viewUpdates();
657 }
658 wfProfileOut( __METHOD__ );
659 return;
660 }
661
662 if ( empty( $oldid ) && $this->checkTouched() ) {
663 $wgOut->setETag($parserCache->getETag($this, $wgUser));
664
665 if( $wgOut->checkLastModified( $this->mTouched ) ){
666 wfProfileOut( __METHOD__ );
667 return;
668 } else if ( $this->tryFileCache() ) {
669 # tell wgOut that output is taken care of
670 $wgOut->disable();
671 $this->viewUpdates();
672 wfProfileOut( __METHOD__ );
673 return;
674 }
675 }
676
677 # Should the parser cache be used?
678 $pcache = $wgEnableParserCache &&
679 intval( $wgUser->getOption( 'stubthreshold' ) ) == 0 &&
680 $this->exists() &&
681 empty( $oldid );
682 wfDebug( 'Article::view using parser cache: ' . ($pcache ? 'yes' : 'no' ) . "\n" );
683 if ( $wgUser->getOption( 'stubthreshold' ) ) {
684 wfIncrStats( 'pcache_miss_stub' );
685 }
686
687 $wasRedirected = false;
688 if ( isset( $this->mRedirectedFrom ) ) {
689 // This is an internally redirected page view.
690 // We'll need a backlink to the source page for navigation.
691 if ( wfRunHooks( 'ArticleViewRedirect', array( &$this ) ) ) {
692 $sk = $wgUser->getSkin();
693 $redir = $sk->makeKnownLinkObj( $this->mRedirectedFrom, '', 'redirect=no' );
694 $s = wfMsg( 'redirectedfrom', $redir );
695 $wgOut->setSubtitle( $s );
696
697 // Set the fragment if one was specified in the redirect
698 if ( strval( $this->mTitle->getFragment() ) != '' ) {
699 $fragment = Xml::escapeJsString( $this->mTitle->getFragmentForURL() );
700 $wgOut->addInlineScript( "redirectToFragment(\"$fragment\");" );
701 }
702 $wasRedirected = true;
703 }
704 } elseif ( !empty( $rdfrom ) ) {
705 // This is an externally redirected view, from some other wiki.
706 // If it was reported from a trusted site, supply a backlink.
707 global $wgRedirectSources;
708 if( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
709 $sk = $wgUser->getSkin();
710 $redir = $sk->makeExternalLink( $rdfrom, $rdfrom );
711 $s = wfMsg( 'redirectedfrom', $redir );
712 $wgOut->setSubtitle( $s );
713 $wasRedirected = true;
714 }
715 }
716
717 $outputDone = false;
718 if ( $pcache ) {
719 if ( $wgOut->tryParserCache( $this, $wgUser ) ) {
720 wfRunHooks( 'ArticleViewHeader', array( &$this ) );
721 $outputDone = true;
722 }
723 }
724 if ( !$outputDone ) {
725 $text = $this->getContent();
726 if ( $text === false ) {
727 # Failed to load, replace text with error message
728 $t = $this->mTitle->getPrefixedText();
729 if( $oldid ) {
730 $t .= ',oldid='.$oldid;
731 $text = wfMsg( 'missingarticle', $t );
732 } else {
733 $text = wfMsg( 'noarticletext', $t );
734 }
735 }
736
737 # Another whitelist check in case oldid is altering the title
738 if ( !$this->mTitle->userCanRead() ) {
739 $wgOut->loginToUse();
740 $wgOut->output();
741 exit;
742 }
743
744 # We're looking at an old revision
745
746 if ( !empty( $oldid ) ) {
747 $wgOut->setRobotpolicy( 'noindex,nofollow' );
748 if( is_null( $this->mRevision ) ) {
749 // FIXME: This would be a nice place to load the 'no such page' text.
750 } else {
751 $this->setOldSubtitle( isset($this->mOldId) ? $this->mOldId : $oldid );
752 if( $this->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
753 if( !$this->mRevision->userCan( Revision::DELETED_TEXT ) ) {
754 $wgOut->addWikiText( wfMsg( 'rev-deleted-text-permission' ) );
755 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
756 return;
757 } else {
758 $wgOut->addWikiText( wfMsg( 'rev-deleted-text-view' ) );
759 // and we are allowed to see...
760 }
761 }
762 }
763
764 }
765 }
766 if( !$outputDone ) {
767 /**
768 * @fixme: this hook doesn't work most of the time, as it doesn't
769 * trigger when the parser cache is used.
770 */
771 wfRunHooks( 'ArticleViewHeader', array( &$this ) ) ;
772 $wgOut->setRevisionId( $this->getRevIdFetched() );
773 # wrap user css and user js in pre and don't parse
774 # XXX: use $this->mTitle->usCssJsSubpage() when php is fixed/ a workaround is found
775 if (
776 $ns == NS_USER &&
777 preg_match('/\\/[\\w]+\\.(css|js)$/', $this->mTitle->getDBkey())
778 ) {
779 $wgOut->addWikiText( wfMsg('clearyourcache'));
780 $wgOut->addHTML( '<pre>'.htmlspecialchars($this->mContent)."\n</pre>" );
781 } else if ( $rt = Title::newFromRedirect( $text ) ) {
782 # Display redirect
783 $imageDir = $wgContLang->isRTL() ? 'rtl' : 'ltr';
784 $imageUrl = $wgStylePath.'/common/images/redirect' . $imageDir . '.png';
785 # Don't overwrite the subtitle if this was an old revision
786 if( !$wasRedirected && $this->isCurrent() ) {
787 $wgOut->setSubtitle( wfMsgHtml( 'redirectpagesub' ) );
788 }
789 $link = $sk->makeLinkObj( $rt, $rt->getFullText() );
790
791 $wgOut->addHTML( '<img src="'.$imageUrl.'" alt="#REDIRECT " />' .
792 '<span class="redirectText">'.$link.'</span>' );
793
794 $parseout = $wgParser->parse($text, $this->mTitle, ParserOptions::newFromUser($wgUser));
795 $wgOut->addParserOutputNoText( $parseout );
796 } else if ( $pcache ) {
797 # Display content and save to parser cache
798 $wgOut->addPrimaryWikiText( $text, $this );
799 } else {
800 # Display content, don't attempt to save to parser cache
801 # Don't show section-edit links on old revisions... this way lies madness.
802 if( !$this->isCurrent() ) {
803 $oldEditSectionSetting = $wgOut->parserOptions()->setEditSection( false );
804 }
805 # Display content and don't save to parser cache
806 $wgOut->addPrimaryWikiText( $text, $this, false );
807
808 if( !$this->isCurrent() ) {
809 $wgOut->parserOptions()->setEditSection( $oldEditSectionSetting );
810 }
811 }
812 }
813 /* title may have been set from the cache */
814 $t = $wgOut->getPageTitle();
815 if( empty( $t ) ) {
816 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
817 }
818
819 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
820 if( $ns == NS_USER_TALK &&
821 User::isIP( $this->mTitle->getText() ) ) {
822 $wgOut->addWikiText( wfMsg('anontalkpagetext') );
823 }
824
825 # If we have been passed an &rcid= parameter, we want to give the user a
826 # chance to mark this new article as patrolled.
827 if ( $wgUseRCPatrol && !is_null( $rcid ) && $rcid != 0 && $wgUser->isAllowed( 'patrol' ) ) {
828 $wgOut->addHTML(
829 "<div class='patrollink'>" .
830 wfMsg ( 'markaspatrolledlink',
831 $sk->makeKnownLinkObj( $this->mTitle, wfMsg('markaspatrolledtext'), "action=markpatrolled&rcid=$rcid" )
832 ) .
833 '</div>'
834 );
835 }
836
837 # Trackbacks
838 if ($wgUseTrackbacks)
839 $this->addTrackbacks();
840
841 $this->viewUpdates();
842 wfProfileOut( __METHOD__ );
843 }
844
845 function addTrackbacks() {
846 global $wgOut, $wgUser;
847
848 $dbr =& wfGetDB(DB_SLAVE);
849 $tbs = $dbr->select(
850 /* FROM */ 'trackbacks',
851 /* SELECT */ array('tb_id', 'tb_title', 'tb_url', 'tb_ex', 'tb_name'),
852 /* WHERE */ array('tb_page' => $this->getID())
853 );
854
855 if (!$dbr->numrows($tbs))
856 return;
857
858 $tbtext = "";
859 while ($o = $dbr->fetchObject($tbs)) {
860 $rmvtxt = "";
861 if ($wgUser->isAllowed( 'trackback' )) {
862 $delurl = $this->mTitle->getFullURL("action=deletetrackback&tbid="
863 . $o->tb_id . "&token=" . $wgUser->editToken());
864 $rmvtxt = wfMsg('trackbackremove', $delurl);
865 }
866 $tbtext .= wfMsg(strlen($o->tb_ex) ? 'trackbackexcerpt' : 'trackback',
867 $o->tb_title,
868 $o->tb_url,
869 $o->tb_ex,
870 $o->tb_name,
871 $rmvtxt);
872 }
873 $wgOut->addWikitext(wfMsg('trackbackbox', $tbtext));
874 }
875
876 function deletetrackback() {
877 global $wgUser, $wgRequest, $wgOut, $wgTitle;
878
879 if (!$wgUser->matchEditToken($wgRequest->getVal('token'))) {
880 $wgOut->addWikitext(wfMsg('sessionfailure'));
881 return;
882 }
883
884 if ((!$wgUser->isAllowed('delete'))) {
885 $wgOut->permissionRequired( 'delete' );
886 return;
887 }
888
889 if (wfReadOnly()) {
890 $wgOut->readOnlyPage();
891 return;
892 }
893
894 $db =& wfGetDB(DB_MASTER);
895 $db->delete('trackbacks', array('tb_id' => $wgRequest->getInt('tbid')));
896 $wgTitle->invalidateCache();
897 $wgOut->addWikiText(wfMsg('trackbackdeleteok'));
898 }
899
900 function render() {
901 global $wgOut;
902
903 $wgOut->setArticleBodyOnly(true);
904 $this->view();
905 }
906
907 /**
908 * Handle action=purge
909 */
910 function purge() {
911 global $wgUser, $wgRequest, $wgOut;
912
913 if ( $wgUser->isLoggedIn() || $wgRequest->wasPosted() ) {
914 if( wfRunHooks( 'ArticlePurge', array( &$this ) ) ) {
915 $this->doPurge();
916 }
917 } else {
918 $msg = $wgOut->parse( wfMsg( 'confirm_purge' ) );
919 $action = $this->mTitle->escapeLocalURL( 'action=purge' );
920 $button = htmlspecialchars( wfMsg( 'confirm_purge_button' ) );
921 $msg = str_replace( '$1',
922 "<form method=\"post\" action=\"$action\">\n" .
923 "<input type=\"submit\" name=\"submit\" value=\"$button\" />\n" .
924 "</form>\n", $msg );
925
926 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
927 $wgOut->setRobotpolicy( 'noindex,nofollow' );
928 $wgOut->addHTML( $msg );
929 }
930 }
931
932 /**
933 * Perform the actions of a page purging
934 */
935 function doPurge() {
936 global $wgUseSquid;
937 // Invalidate the cache
938 $this->mTitle->invalidateCache();
939
940 if ( $wgUseSquid ) {
941 // Commit the transaction before the purge is sent
942 $dbw = wfGetDB( DB_MASTER );
943 $dbw->immediateCommit();
944
945 // Send purge
946 $update = SquidUpdate::newSimplePurge( $this->mTitle );
947 $update->doUpdate();
948 }
949 $this->view();
950 }
951
952 /**
953 * Insert a new empty page record for this article.
954 * This *must* be followed up by creating a revision
955 * and running $this->updateToLatest( $rev_id );
956 * or else the record will be left in a funky state.
957 * Best if all done inside a transaction.
958 *
959 * @param Database $dbw
960 * @param string $restrictions
961 * @return int The newly created page_id key
962 * @private
963 */
964 function insertOn( &$dbw, $restrictions = '' ) {
965 wfProfileIn( __METHOD__ );
966
967 $page_id = $dbw->nextSequenceValue( 'page_page_id_seq' );
968 $dbw->insert( 'page', array(
969 'page_id' => $page_id,
970 'page_namespace' => $this->mTitle->getNamespace(),
971 'page_title' => $this->mTitle->getDBkey(),
972 'page_counter' => 0,
973 'page_restrictions' => $restrictions,
974 'page_is_redirect' => 0, # Will set this shortly...
975 'page_is_new' => 1,
976 'page_random' => wfRandom(),
977 'page_touched' => $dbw->timestamp(),
978 'page_latest' => 0, # Fill this in shortly...
979 'page_len' => 0, # Fill this in shortly...
980 ), __METHOD__ );
981 $newid = $dbw->insertId();
982
983 $this->mTitle->resetArticleId( $newid );
984
985 wfProfileOut( __METHOD__ );
986 return $newid;
987 }
988
989 /**
990 * Update the page record to point to a newly saved revision.
991 *
992 * @param Database $dbw
993 * @param Revision $revision For ID number, and text used to set
994 length and redirect status fields
995 * @param int $lastRevision If given, will not overwrite the page field
996 * when different from the currently set value.
997 * Giving 0 indicates the new page flag should
998 * be set on.
999 * @param bool $lastRevIsRedirect If given, will optimize adding and
1000 * removing rows in redirect table.
1001 * @return bool true on success, false on failure
1002 * @private
1003 */
1004 function updateRevisionOn( &$dbw, $revision, $lastRevision = null, $lastRevIsRedirect = null ) {
1005 wfProfileIn( __METHOD__ );
1006
1007 $text = $revision->getText();
1008 $rt = Title::newFromRedirect( $text );
1009
1010 $conditions = array( 'page_id' => $this->getId() );
1011 if( !is_null( $lastRevision ) ) {
1012 # An extra check against threads stepping on each other
1013 $conditions['page_latest'] = $lastRevision;
1014 }
1015
1016 $dbw->update( 'page',
1017 array( /* SET */
1018 'page_latest' => $revision->getId(),
1019 'page_touched' => $dbw->timestamp(),
1020 'page_is_new' => ($lastRevision === 0) ? 1 : 0,
1021 'page_is_redirect' => $rt !== NULL ? 1 : 0,
1022 'page_len' => strlen( $text ),
1023 ),
1024 $conditions,
1025 __METHOD__ );
1026
1027 $result = $dbw->affectedRows() != 0;
1028
1029 if ($result) {
1030 // FIXME: Should the result from updateRedirectOn() be returned instead?
1031 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1032 }
1033
1034 wfProfileOut( __METHOD__ );
1035 return $result;
1036 }
1037
1038 /**
1039 * Add row to the redirect table if this is a redirect, remove otherwise.
1040 *
1041 * @param Database $dbw
1042 * @param $redirectTitle a title object pointing to the redirect target,
1043 * or NULL if this is not a redirect
1044 * @param bool $lastRevIsRedirect If given, will optimize adding and
1045 * removing rows in redirect table.
1046 * @return bool true on success, false on failure
1047 * @private
1048 */
1049 function updateRedirectOn( &$dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1050
1051 // Always update redirects (target link might have changed)
1052 // Update/Insert if we don't know if the last revision was a redirect or not
1053 // Delete if changing from redirect to non-redirect
1054 $isRedirect = !is_null($redirectTitle);
1055 if ($isRedirect || is_null($lastRevIsRedirect) || $lastRevIsRedirect !== $isRedirect) {
1056
1057 wfProfileIn( __METHOD__ );
1058
1059 if ($isRedirect) {
1060
1061 // This title is a redirect, Add/Update row in the redirect table
1062 $set = array( /* SET */
1063 'rd_namespace' => $redirectTitle->getNamespace(),
1064 'rd_title' => $redirectTitle->getDBkey(),
1065 'rd_from' => $this->getId(),
1066 );
1067
1068 $dbw->replace( 'redirect', array( 'rd_from' ), $set, __METHOD__ );
1069 } else {
1070 // This is not a redirect, remove row from redirect table
1071 $where = array( 'rd_from' => $this->getId() );
1072 $dbw->delete( 'redirect', $where, __METHOD__);
1073 }
1074
1075 wfProfileOut( __METHOD__ );
1076 return ( $dbw->affectedRows() != 0 );
1077 }
1078
1079 return true;
1080 }
1081
1082 /**
1083 * If the given revision is newer than the currently set page_latest,
1084 * update the page record. Otherwise, do nothing.
1085 *
1086 * @param Database $dbw
1087 * @param Revision $revision
1088 */
1089 function updateIfNewerOn( &$dbw, $revision ) {
1090 wfProfileIn( __METHOD__ );
1091
1092 $row = $dbw->selectRow(
1093 array( 'revision', 'page' ),
1094 array( 'rev_id', 'rev_timestamp', 'page_is_redirect' ),
1095 array(
1096 'page_id' => $this->getId(),
1097 'page_latest=rev_id' ),
1098 __METHOD__ );
1099 if( $row ) {
1100 if( wfTimestamp(TS_MW, $row->rev_timestamp) >= $revision->getTimestamp() ) {
1101 wfProfileOut( __METHOD__ );
1102 return false;
1103 }
1104 $prev = $row->rev_id;
1105 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1106 } else {
1107 # No or missing previous revision; mark the page as new
1108 $prev = 0;
1109 $lastRevIsRedirect = null;
1110 }
1111
1112 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1113 wfProfileOut( __METHOD__ );
1114 return $ret;
1115 }
1116
1117 /**
1118 * @return string Complete article text, or null if error
1119 */
1120 function replaceSection($section, $text, $summary = '', $edittime = NULL) {
1121 wfProfileIn( __METHOD__ );
1122
1123 if( $section == '' ) {
1124 // Whole-page edit; let the text through unmolested.
1125 } else {
1126 if( is_null( $edittime ) ) {
1127 $rev = Revision::newFromTitle( $this->mTitle );
1128 } else {
1129 $dbw =& wfGetDB( DB_MASTER );
1130 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1131 }
1132 if( is_null( $rev ) ) {
1133 wfDebug( "Article::replaceSection asked for bogus section (page: " .
1134 $this->getId() . "; section: $section; edittime: $edittime)\n" );
1135 return null;
1136 }
1137 $oldtext = $rev->getText();
1138
1139 if( $section == 'new' ) {
1140 # Inserting a new section
1141 $subject = $summary ? "== {$summary} ==\n\n" : '';
1142 $text = strlen( trim( $oldtext ) ) > 0
1143 ? "{$oldtext}\n\n{$subject}{$text}"
1144 : "{$subject}{$text}";
1145 } else {
1146 # Replacing an existing section; roll out the big guns
1147 global $wgParser;
1148 $text = $wgParser->replaceSection( $oldtext, $section, $text );
1149 }
1150
1151 }
1152
1153 wfProfileOut( __METHOD__ );
1154 return $text;
1155 }
1156
1157 /**
1158 * @deprecated use Article::doEdit()
1159 */
1160 function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false ) {
1161 $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1162 ( $isminor ? EDIT_MINOR : 0 ) |
1163 ( $suppressRC ? EDIT_SUPPRESS_RC : 0 );
1164
1165 # If this is a comment, add the summary as headline
1166 if ( $comment && $summary != "" ) {
1167 $text = "== {$summary} ==\n\n".$text;
1168 }
1169
1170 $this->doEdit( $text, $summary, $flags );
1171
1172 $dbw =& wfGetDB( DB_MASTER );
1173 if ($watchthis) {
1174 if (!$this->mTitle->userIsWatching()) {
1175 $dbw->begin();
1176 $this->doWatch();
1177 $dbw->commit();
1178 }
1179 } else {
1180 if ( $this->mTitle->userIsWatching() ) {
1181 $dbw->begin();
1182 $this->doUnwatch();
1183 $dbw->commit();
1184 }
1185 }
1186 $this->doRedirect( $this->isRedirect( $text ) );
1187 }
1188
1189 /**
1190 * @deprecated use Article::doEdit()
1191 */
1192 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
1193 $flags = EDIT_UPDATE | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1194 ( $minor ? EDIT_MINOR : 0 ) |
1195 ( $forceBot ? EDIT_FORCE_BOT : 0 );
1196
1197 $good = $this->doEdit( $text, $summary, $flags );
1198 if ( $good ) {
1199 $dbw =& wfGetDB( DB_MASTER );
1200 if ($watchthis) {
1201 if (!$this->mTitle->userIsWatching()) {
1202 $dbw->begin();
1203 $this->doWatch();
1204 $dbw->commit();
1205 }
1206 } else {
1207 if ( $this->mTitle->userIsWatching() ) {
1208 $dbw->begin();
1209 $this->doUnwatch();
1210 $dbw->commit();
1211 }
1212 }
1213
1214 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1215 }
1216 return $good;
1217 }
1218
1219 /**
1220 * Article::doEdit()
1221 *
1222 * Change an existing article or create a new article. Updates RC and all necessary caches,
1223 * optionally via the deferred update array.
1224 *
1225 * $wgUser must be set before calling this function.
1226 *
1227 * @param string $text New text
1228 * @param string $summary Edit summary
1229 * @param integer $flags bitfield:
1230 * EDIT_NEW
1231 * Article is known or assumed to be non-existent, create a new one
1232 * EDIT_UPDATE
1233 * Article is known or assumed to be pre-existing, update it
1234 * EDIT_MINOR
1235 * Mark this edit minor, if the user is allowed to do so
1236 * EDIT_SUPPRESS_RC
1237 * Do not log the change in recentchanges
1238 * EDIT_FORCE_BOT
1239 * Mark the edit a "bot" edit regardless of user rights
1240 * EDIT_DEFER_UPDATES
1241 * Defer some of the updates until the end of index.php
1242 * EDIT_AUTOSUMMARY
1243 * Fill in blank summaries with generated text where possible
1244 *
1245 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1246 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return false. If
1247 * EDIT_NEW is specified and the article does exist, a duplicate key error will cause an exception
1248 * to be thrown from the Database. These two conditions are also possible with auto-detection due
1249 * to MediaWiki's performance-optimised locking strategy.
1250 *
1251 * @return bool success
1252 */
1253 function doEdit( $text, $summary, $flags = 0 ) {
1254 global $wgUser, $wgDBtransactions;
1255
1256 wfProfileIn( __METHOD__ );
1257 $good = true;
1258
1259 if ( !($flags & EDIT_NEW) && !($flags & EDIT_UPDATE) ) {
1260 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
1261 if ( $aid ) {
1262 $flags |= EDIT_UPDATE;
1263 } else {
1264 $flags |= EDIT_NEW;
1265 }
1266 }
1267
1268 if( !wfRunHooks( 'ArticleSave', array( &$this, &$wgUser, &$text,
1269 &$summary, $flags & EDIT_MINOR,
1270 null, null, &$flags ) ) )
1271 {
1272 wfDebug( __METHOD__ . ": ArticleSave hook aborted save!\n" );
1273 wfProfileOut( __METHOD__ );
1274 return false;
1275 }
1276
1277 # Silently ignore EDIT_MINOR if not allowed
1278 $isminor = ( $flags & EDIT_MINOR ) && $wgUser->isAllowed('minoredit');
1279 $bot = $wgUser->isAllowed( 'bot' ) || ( $flags & EDIT_FORCE_BOT );
1280
1281 $oldtext = $this->getContent();
1282 $oldsize = strlen( $oldtext );
1283
1284 # Provide autosummaries if one is not provided.
1285 if ($flags & EDIT_AUTOSUMMARY && $summary == '')
1286 $summary = $this->getAutosummary( $oldtext, $text, $flags );
1287
1288 $text = $this->preSaveTransform( $text );
1289 $newsize = strlen( $text );
1290
1291 $dbw =& wfGetDB( DB_MASTER );
1292 $now = wfTimestampNow();
1293
1294 if ( $flags & EDIT_UPDATE ) {
1295 # Update article, but only if changed.
1296
1297 # Make sure the revision is either completely inserted or not inserted at all
1298 if( !$wgDBtransactions ) {
1299 $userAbort = ignore_user_abort( true );
1300 }
1301
1302 $lastRevision = 0;
1303 $revisionId = 0;
1304
1305 if ( 0 != strcmp( $text, $oldtext ) ) {
1306 $this->mGoodAdjustment = (int)$this->isCountable( $text )
1307 - (int)$this->isCountable( $oldtext );
1308 $this->mTotalAdjustment = 0;
1309
1310 $lastRevision = $dbw->selectField(
1311 'page', 'page_latest', array( 'page_id' => $this->getId() ) );
1312
1313 if ( !$lastRevision ) {
1314 # Article gone missing
1315 wfDebug( __METHOD__.": EDIT_UPDATE specified but article doesn't exist\n" );
1316 wfProfileOut( __METHOD__ );
1317 return false;
1318 }
1319
1320 $revision = new Revision( array(
1321 'page' => $this->getId(),
1322 'comment' => $summary,
1323 'minor_edit' => $isminor,
1324 'text' => $text
1325 ) );
1326
1327 $dbw->begin();
1328 $revisionId = $revision->insertOn( $dbw );
1329
1330 # Update page
1331 $ok = $this->updateRevisionOn( $dbw, $revision, $lastRevision );
1332
1333 if( !$ok ) {
1334 /* Belated edit conflict! Run away!! */
1335 $good = false;
1336 $dbw->rollback();
1337 } else {
1338 # Update recentchanges
1339 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1340 $rcid = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $wgUser, $summary,
1341 $lastRevision, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
1342 $revisionId );
1343
1344 # Mark as patrolled if the user can do so
1345 if( $wgUser->isAllowed( 'autopatrol' ) ) {
1346 RecentChange::markPatrolled( $rcid );
1347 }
1348 }
1349 $wgUser->incEditCount();
1350 $dbw->commit();
1351 }
1352 } else {
1353 // Keep the same revision ID, but do some updates on it
1354 $revisionId = $this->getRevIdFetched();
1355 // Update page_touched, this is usually implicit in the page update
1356 // Other cache updates are done in onArticleEdit()
1357 $this->mTitle->invalidateCache();
1358 }
1359
1360 if( !$wgDBtransactions ) {
1361 ignore_user_abort( $userAbort );
1362 }
1363
1364 if ( $good ) {
1365 # Invalidate cache of this article and all pages using this article
1366 # as a template. Partly deferred.
1367 Article::onArticleEdit( $this->mTitle );
1368
1369 # Update links tables, site stats, etc.
1370 $changed = ( strcmp( $oldtext, $text ) != 0 );
1371 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, $changed );
1372 }
1373 } else {
1374 # Create new article
1375
1376 # Set statistics members
1377 # We work out if it's countable after PST to avoid counter drift
1378 # when articles are created with {{subst:}}
1379 $this->mGoodAdjustment = (int)$this->isCountable( $text );
1380 $this->mTotalAdjustment = 1;
1381
1382 $dbw->begin();
1383
1384 # Add the page record; stake our claim on this title!
1385 # This will fail with a database query exception if the article already exists
1386 $newid = $this->insertOn( $dbw );
1387
1388 # Save the revision text...
1389 $revision = new Revision( array(
1390 'page' => $newid,
1391 'comment' => $summary,
1392 'minor_edit' => $isminor,
1393 'text' => $text
1394 ) );
1395 $revisionId = $revision->insertOn( $dbw );
1396
1397 $this->mTitle->resetArticleID( $newid );
1398
1399 # Update the page record with revision data
1400 $this->updateRevisionOn( $dbw, $revision, 0 );
1401
1402 if( !( $flags & EDIT_SUPPRESS_RC ) ) {
1403 $rcid = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary, $bot,
1404 '', strlen( $text ), $revisionId );
1405 # Mark as patrolled if the user can
1406 if( $wgUser->isAllowed( 'autopatrol' ) ) {
1407 RecentChange::markPatrolled( $rcid );
1408 }
1409 }
1410 $wgUser->incEditCount();
1411 $dbw->commit();
1412
1413 # Update links, etc.
1414 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, true );
1415
1416 # Clear caches
1417 Article::onArticleCreate( $this->mTitle );
1418
1419 wfRunHooks( 'ArticleInsertComplete', array( &$this, &$wgUser, $text,
1420 $summary, $flags & EDIT_MINOR,
1421 null, null, &$flags ) );
1422 }
1423
1424 if ( $good && !( $flags & EDIT_DEFER_UPDATES ) ) {
1425 wfDoUpdates();
1426 }
1427
1428 wfRunHooks( 'ArticleSaveComplete',
1429 array( &$this, &$wgUser, $text,
1430 $summary, $flags & EDIT_MINOR,
1431 null, null, &$flags ) );
1432
1433 wfProfileOut( __METHOD__ );
1434 return $good;
1435 }
1436
1437 /**
1438 * @deprecated wrapper for doRedirect
1439 */
1440 function showArticle( $text, $subtitle , $sectionanchor = '', $me2, $now, $summary, $oldid ) {
1441 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor );
1442 }
1443
1444 /**
1445 * Output a redirect back to the article.
1446 * This is typically used after an edit.
1447 *
1448 * @param boolean $noRedir Add redirect=no
1449 * @param string $sectionAnchor section to redirect to, including "#"
1450 */
1451 function doRedirect( $noRedir = false, $sectionAnchor = '' ) {
1452 global $wgOut;
1453 if ( $noRedir ) {
1454 $query = 'redirect=no';
1455 } else {
1456 $query = '';
1457 }
1458 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $sectionAnchor );
1459 }
1460
1461 /**
1462 * Mark this particular edit as patrolled
1463 */
1464 function markpatrolled() {
1465 global $wgOut, $wgRequest, $wgUseRCPatrol, $wgUser;
1466 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1467
1468 # Check RC patrol config. option
1469 if( !$wgUseRCPatrol ) {
1470 $wgOut->errorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1471 return;
1472 }
1473
1474 # Check permissions
1475 if( !$wgUser->isAllowed( 'patrol' ) ) {
1476 $wgOut->permissionRequired( 'patrol' );
1477 return;
1478 }
1479
1480 # If we haven't been given an rc_id value, we can't do anything
1481 $rcid = $wgRequest->getVal( 'rcid' );
1482 if( !$rcid ) {
1483 $wgOut->errorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1484 return;
1485 }
1486
1487 # Handle the 'MarkPatrolled' hook
1488 if( !wfRunHooks( 'MarkPatrolled', array( $rcid, &$wgUser, false ) ) ) {
1489 return;
1490 }
1491
1492 $return = SpecialPage::getTitleFor( 'Recentchanges' );
1493 # If it's left up to us, check that the user is allowed to patrol this edit
1494 # If the user has the "autopatrol" right, then we'll assume there are no
1495 # other conditions stopping them doing so
1496 if( !$wgUser->isAllowed( 'autopatrol' ) ) {
1497 $rc = RecentChange::newFromId( $rcid );
1498 # Graceful error handling, as we've done before here...
1499 # (If the recent change doesn't exist, then it doesn't matter whether
1500 # the user is allowed to patrol it or not; nothing is going to happen
1501 if( is_object( $rc ) && $wgUser->getName() == $rc->getAttribute( 'rc_user_text' ) ) {
1502 # The user made this edit, and can't patrol it
1503 # Tell them so, and then back off
1504 $wgOut->setPageTitle( wfMsg( 'markedaspatrollederror' ) );
1505 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrollederror-noautopatrol' ) );
1506 $wgOut->returnToMain( false, $return );
1507 return;
1508 }
1509 }
1510
1511 # Mark the edit as patrolled
1512 RecentChange::markPatrolled( $rcid );
1513 wfRunHooks( 'MarkPatrolledComplete', array( &$rcid, &$wgUser, false ) );
1514
1515 # Inform the user
1516 $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
1517 $wgOut->addWikiText( wfMsgNoTrans( 'markedaspatrolledtext' ) );
1518 $wgOut->returnToMain( false, $return );
1519 }
1520
1521 /**
1522 * User-interface handler for the "watch" action
1523 */
1524
1525 function watch() {
1526
1527 global $wgUser, $wgOut;
1528
1529 if ( $wgUser->isAnon() ) {
1530 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1531 return;
1532 }
1533 if ( wfReadOnly() ) {
1534 $wgOut->readOnlyPage();
1535 return;
1536 }
1537
1538 if( $this->doWatch() ) {
1539 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
1540 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1541
1542 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1543 $text = wfMsg( 'addedwatchtext', $link );
1544 $wgOut->addWikiText( $text );
1545 }
1546
1547 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1548 }
1549
1550 /**
1551 * Add this page to $wgUser's watchlist
1552 * @return bool true on successful watch operation
1553 */
1554 function doWatch() {
1555 global $wgUser;
1556 if( $wgUser->isAnon() ) {
1557 return false;
1558 }
1559
1560 if (wfRunHooks('WatchArticle', array(&$wgUser, &$this))) {
1561 $wgUser->addWatch( $this->mTitle );
1562
1563 return wfRunHooks('WatchArticleComplete', array(&$wgUser, &$this));
1564 }
1565
1566 return false;
1567 }
1568
1569 /**
1570 * User interface handler for the "unwatch" action.
1571 */
1572 function unwatch() {
1573
1574 global $wgUser, $wgOut;
1575
1576 if ( $wgUser->isAnon() ) {
1577 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
1578 return;
1579 }
1580 if ( wfReadOnly() ) {
1581 $wgOut->readOnlyPage();
1582 return;
1583 }
1584
1585 if( $this->doUnwatch() ) {
1586 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
1587 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1588
1589 $link = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1590 $text = wfMsg( 'removedwatchtext', $link );
1591 $wgOut->addWikiText( $text );
1592 }
1593
1594 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1595 }
1596
1597 /**
1598 * Stop watching a page
1599 * @return bool true on successful unwatch
1600 */
1601 function doUnwatch() {
1602 global $wgUser;
1603 if( $wgUser->isAnon() ) {
1604 return false;
1605 }
1606
1607 if (wfRunHooks('UnwatchArticle', array(&$wgUser, &$this))) {
1608 $wgUser->removeWatch( $this->mTitle );
1609
1610 return wfRunHooks('UnwatchArticleComplete', array(&$wgUser, &$this));
1611 }
1612
1613 return false;
1614 }
1615
1616 /**
1617 * action=protect handler
1618 */
1619 function protect() {
1620 $form = new ProtectionForm( $this );
1621 $form->show();
1622 }
1623
1624 /**
1625 * action=unprotect handler (alias)
1626 */
1627 function unprotect() {
1628 $this->protect();
1629 }
1630
1631 /**
1632 * Update the article's restriction field, and leave a log entry.
1633 *
1634 * @param array $limit set of restriction keys
1635 * @param string $reason
1636 * @return bool true on success
1637 */
1638 function updateRestrictions( $limit = array(), $reason = '' ) {
1639 global $wgUser, $wgRestrictionTypes, $wgContLang;
1640
1641 $id = $this->mTitle->getArticleID();
1642 if( !$wgUser->isAllowed( 'protect' ) || wfReadOnly() || $id == 0 ) {
1643 return false;
1644 }
1645
1646 # FIXME: Same limitations as described in ProtectionForm.php (line 37);
1647 # we expect a single selection, but the schema allows otherwise.
1648 $current = array();
1649 foreach( $wgRestrictionTypes as $action )
1650 $current[$action] = implode( '', $this->mTitle->getRestrictions( $action ) );
1651
1652 $current = Article::flattenRestrictions( $current );
1653 $updated = Article::flattenRestrictions( $limit );
1654
1655 $changed = ( $current != $updated );
1656 $protect = ( $updated != '' );
1657
1658 # If nothing's changed, do nothing
1659 if( $changed ) {
1660 if( wfRunHooks( 'ArticleProtect', array( &$this, &$wgUser, $limit, $reason ) ) ) {
1661
1662 $dbw =& wfGetDB( DB_MASTER );
1663
1664 # Prepare a null revision to be added to the history
1665 $comment = $wgContLang->ucfirst( wfMsgForContent( $protect ? 'protectedarticle' : 'unprotectedarticle', $this->mTitle->getPrefixedText() ) );
1666 if( $reason )
1667 $comment .= ": $reason";
1668 if( $protect )
1669 $comment .= " [$updated]";
1670 $nullRevision = Revision::newNullRevision( $dbw, $id, $comment, true );
1671 $nullRevId = $nullRevision->insertOn( $dbw );
1672
1673 # Update page record
1674 $dbw->update( 'page',
1675 array( /* SET */
1676 'page_touched' => $dbw->timestamp(),
1677 'page_restrictions' => $updated,
1678 'page_latest' => $nullRevId
1679 ), array( /* WHERE */
1680 'page_id' => $id
1681 ), 'Article::protect'
1682 );
1683 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$wgUser, $limit, $reason ) );
1684
1685 # Update the protection log
1686 $log = new LogPage( 'protect' );
1687 if( $protect ) {
1688 $log->addEntry( 'protect', $this->mTitle, trim( $reason . " [$updated]" ) );
1689 } else {
1690 $log->addEntry( 'unprotect', $this->mTitle, $reason );
1691 }
1692
1693 } # End hook
1694 } # End "changed" check
1695
1696 return true;
1697 }
1698
1699 /**
1700 * Take an array of page restrictions and flatten it to a string
1701 * suitable for insertion into the page_restrictions field.
1702 * @param array $limit
1703 * @return string
1704 * @private
1705 */
1706 function flattenRestrictions( $limit ) {
1707 if( !is_array( $limit ) ) {
1708 throw new MWException( 'Article::flattenRestrictions given non-array restriction set' );
1709 }
1710 $bits = array();
1711 ksort( $limit );
1712 foreach( $limit as $action => $restrictions ) {
1713 if( $restrictions != '' ) {
1714 $bits[] = "$action=$restrictions";
1715 }
1716 }
1717 return implode( ':', $bits );
1718 }
1719
1720 /*
1721 * UI entry point for page deletion
1722 */
1723 function delete() {
1724 global $wgUser, $wgOut, $wgRequest;
1725 $confirm = $wgRequest->wasPosted() &&
1726 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
1727 $reason = $wgRequest->getText( 'wpReason' );
1728
1729 # This code desperately needs to be totally rewritten
1730
1731 # Check permissions
1732 if( $wgUser->isAllowed( 'delete' ) ) {
1733 if( $wgUser->isBlocked( !$confirm ) ) {
1734 $wgOut->blockedPage();
1735 return;
1736 }
1737 } else {
1738 $wgOut->permissionRequired( 'delete' );
1739 return;
1740 }
1741
1742 if( wfReadOnly() ) {
1743 $wgOut->readOnlyPage();
1744 return;
1745 }
1746
1747 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
1748
1749 # Better double-check that it hasn't been deleted yet!
1750 $dbw =& wfGetDB( DB_MASTER );
1751 $conds = $this->mTitle->pageCond();
1752 $latest = $dbw->selectField( 'page', 'page_latest', $conds, __METHOD__ );
1753 if ( $latest === false ) {
1754 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1755 return;
1756 }
1757
1758 if( $confirm ) {
1759 $this->doDelete( $reason );
1760 if( $wgRequest->getCheck( 'wpWatch' ) ) {
1761 $this->doWatch();
1762 } elseif( $this->mTitle->userIsWatching() ) {
1763 $this->doUnwatch();
1764 }
1765 return;
1766 }
1767
1768 # determine whether this page has earlier revisions
1769 # and insert a warning if it does
1770 $maxRevisions = 20;
1771 $authors = $this->getLastNAuthors( $maxRevisions, $latest );
1772
1773 if( count( $authors ) > 1 && !$confirm ) {
1774 $skin=$wgUser->getSkin();
1775 $wgOut->addHTML( '<strong>' . wfMsg( 'historywarning' ) . ' ' . $skin->historyLink() . '</strong>' );
1776 }
1777
1778 # If a single user is responsible for all revisions, find out who they are
1779 if ( count( $authors ) == $maxRevisions ) {
1780 // Query bailed out, too many revisions to find out if they're all the same
1781 $authorOfAll = false;
1782 } else {
1783 $authorOfAll = reset( $authors );
1784 foreach ( $authors as $author ) {
1785 if ( $authorOfAll != $author ) {
1786 $authorOfAll = false;
1787 break;
1788 }
1789 }
1790 }
1791 # Fetch article text
1792 $rev = Revision::newFromTitle( $this->mTitle );
1793
1794 if( !is_null( $rev ) ) {
1795 # if this is a mini-text, we can paste part of it into the deletion reason
1796 $text = $rev->getText();
1797
1798 #if this is empty, an earlier revision may contain "useful" text
1799 $blanked = false;
1800 if( $text == '' ) {
1801 $prev = $rev->getPrevious();
1802 if( $prev ) {
1803 $text = $prev->getText();
1804 $blanked = true;
1805 }
1806 }
1807
1808 $length = strlen( $text );
1809
1810 # this should not happen, since it is not possible to store an empty, new
1811 # page. Let's insert a standard text in case it does, though
1812 if( $length == 0 && $reason === '' ) {
1813 $reason = wfMsgForContent( 'exblank' );
1814 }
1815
1816 if( $length < 500 && $reason === '' ) {
1817 # comment field=255, let's grep the first 150 to have some user
1818 # space left
1819 global $wgContLang;
1820 $text = $wgContLang->truncate( $text, 150, '...' );
1821
1822 # let's strip out newlines
1823 $text = preg_replace( "/[\n\r]/", '', $text );
1824
1825 if( !$blanked ) {
1826 if( $authorOfAll === false ) {
1827 $reason = wfMsgForContent( 'excontent', $text );
1828 } else {
1829 $reason = wfMsgForContent( 'excontentauthor', $text, $authorOfAll );
1830 }
1831 } else {
1832 $reason = wfMsgForContent( 'exbeforeblank', $text );
1833 }
1834 }
1835 }
1836
1837 return $this->confirmDelete( '', $reason );
1838 }
1839
1840 /**
1841 * Get the last N authors
1842 * @param int $num Number of revisions to get
1843 * @param string $revLatest The latest rev_id, selected from the master (optional)
1844 * @return array Array of authors, duplicates not removed
1845 */
1846 function getLastNAuthors( $num, $revLatest = 0 ) {
1847 wfProfileIn( __METHOD__ );
1848
1849 // First try the slave
1850 // If that doesn't have the latest revision, try the master
1851 $continue = 2;
1852 $db =& wfGetDB( DB_SLAVE );
1853 do {
1854 $res = $db->select( array( 'page', 'revision' ),
1855 array( 'rev_id', 'rev_user_text' ),
1856 array(
1857 'page_namespace' => $this->mTitle->getNamespace(),
1858 'page_title' => $this->mTitle->getDBkey(),
1859 'rev_page = page_id'
1860 ), __METHOD__, $this->getSelectOptions( array(
1861 'ORDER BY' => 'rev_timestamp DESC',
1862 'LIMIT' => $num
1863 ) )
1864 );
1865 if ( !$res ) {
1866 wfProfileOut( __METHOD__ );
1867 return array();
1868 }
1869 $row = $db->fetchObject( $res );
1870 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
1871 $db =& wfGetDB( DB_MASTER );
1872 $continue--;
1873 } else {
1874 $continue = 0;
1875 }
1876 } while ( $continue );
1877
1878 $authors = array( $row->rev_user_text );
1879 while ( $row = $db->fetchObject( $res ) ) {
1880 $authors[] = $row->rev_user_text;
1881 }
1882 wfProfileOut( __METHOD__ );
1883 return $authors;
1884 }
1885
1886 /**
1887 * Output deletion confirmation dialog
1888 */
1889 function confirmDelete( $par, $reason ) {
1890 global $wgOut, $wgUser;
1891
1892 wfDebug( "Article::confirmDelete\n" );
1893
1894 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
1895 $wgOut->setSubtitle( wfMsg( 'deletesub', $sub ) );
1896 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1897 $wgOut->addWikiText( wfMsg( 'confirmdeletetext' ) );
1898
1899 $formaction = $this->mTitle->escapeLocalURL( 'action=delete' . $par );
1900
1901 $confirm = htmlspecialchars( wfMsg( 'deletepage' ) );
1902 $delcom = htmlspecialchars( wfMsg( 'deletecomment' ) );
1903 $token = htmlspecialchars( $wgUser->editToken() );
1904 $watch = Xml::checkLabel( wfMsg( 'watchthis' ), 'wpWatch', 'wpWatch', $wgUser->getBoolOption( 'watchdeletion' ) || $this->mTitle->userIsWatching(), array( 'tabindex' => '2' ) );
1905
1906 $wgOut->addHTML( "
1907 <form id='deleteconfirm' method='post' action=\"{$formaction}\">
1908 <table border='0'>
1909 <tr>
1910 <td align='right'>
1911 <label for='wpReason'>{$delcom}:</label>
1912 </td>
1913 <td align='left'>
1914 <input type='text' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" tabindex=\"1\" />
1915 </td>
1916 </tr>
1917 <tr>
1918 <td>&nbsp;</td>
1919 <td>$watch</td>
1920 </tr>
1921 <tr>
1922 <td>&nbsp;</td>
1923 <td>
1924 <input type='submit' name='wpConfirmB' id='wpConfirmB' value=\"{$confirm}\" tabindex=\"3\" />
1925 </td>
1926 </tr>
1927 </table>
1928 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
1929 </form>\n" );
1930
1931 $wgOut->returnToMain( false );
1932 }
1933
1934
1935 /**
1936 * Perform a deletion and output success or failure messages
1937 */
1938 function doDelete( $reason ) {
1939 global $wgOut, $wgUser;
1940 wfDebug( __METHOD__."\n" );
1941
1942 if (wfRunHooks('ArticleDelete', array(&$this, &$wgUser, &$reason))) {
1943 if ( $this->doDeleteArticle( $reason ) ) {
1944 $deleted = wfEscapeWikiText( $this->mTitle->getPrefixedText() );
1945
1946 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
1947 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1948
1949 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
1950 $text = wfMsg( 'deletedtext', $deleted, $loglink );
1951
1952 $wgOut->addWikiText( $text );
1953 $wgOut->returnToMain( false );
1954 wfRunHooks('ArticleDeleteComplete', array(&$this, &$wgUser, $reason));
1955 } else {
1956 $wgOut->showFatalError( wfMsg( 'cannotdelete' ) );
1957 }
1958 }
1959 }
1960
1961 /**
1962 * Back-end article deletion
1963 * Deletes the article with database consistency, writes logs, purges caches
1964 * Returns success
1965 */
1966 function doDeleteArticle( $reason ) {
1967 global $wgUseSquid, $wgDeferredUpdateList;
1968 global $wgUseTrackbacks;
1969
1970 wfDebug( __METHOD__."\n" );
1971
1972 $dbw =& wfGetDB( DB_MASTER );
1973 $ns = $this->mTitle->getNamespace();
1974 $t = $this->mTitle->getDBkey();
1975 $id = $this->mTitle->getArticleID();
1976
1977 if ( $t == '' || $id == 0 ) {
1978 return false;
1979 }
1980
1981 $u = new SiteStatsUpdate( 0, 1, -(int)$this->isCountable( $this->getContent() ), -1 );
1982 array_push( $wgDeferredUpdateList, $u );
1983
1984 // For now, shunt the revision data into the archive table.
1985 // Text is *not* removed from the text table; bulk storage
1986 // is left intact to avoid breaking block-compression or
1987 // immutable storage schemes.
1988 //
1989 // For backwards compatibility, note that some older archive
1990 // table entries will have ar_text and ar_flags fields still.
1991 //
1992 // In the future, we may keep revisions and mark them with
1993 // the rev_deleted field, which is reserved for this purpose.
1994 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
1995 array(
1996 'ar_namespace' => 'page_namespace',
1997 'ar_title' => 'page_title',
1998 'ar_comment' => 'rev_comment',
1999 'ar_user' => 'rev_user',
2000 'ar_user_text' => 'rev_user_text',
2001 'ar_timestamp' => 'rev_timestamp',
2002 'ar_minor_edit' => 'rev_minor_edit',
2003 'ar_rev_id' => 'rev_id',
2004 'ar_text_id' => 'rev_text_id',
2005 'ar_text' => '\'\'', // Be explicit to appease
2006 'ar_flags' => '\'\'', // MySQL's "strict mode"...
2007 ), array(
2008 'page_id' => $id,
2009 'page_id = rev_page'
2010 ), __METHOD__
2011 );
2012
2013 # Now that it's safely backed up, delete it
2014 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__);
2015
2016 # If using cascading deletes, we can skip some explicit deletes
2017 if ( !$dbw->cascadingDeletes() ) {
2018
2019 $dbw->delete( 'revision', array( 'rev_page' => $id ), __METHOD__ );
2020
2021 if ($wgUseTrackbacks)
2022 $dbw->delete( 'trackbacks', array( 'tb_page' => $id ), __METHOD__ );
2023
2024 # Delete outgoing links
2025 $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
2026 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
2027 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
2028 $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
2029 $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
2030 $dbw->delete( 'langlinks', array( 'll_from' => $id ) );
2031 $dbw->delete( 'redirect', array( 'rd_from' => $id ) );
2032 }
2033
2034 # If using cleanup triggers, we can skip some manual deletes
2035 if ( !$dbw->cleanupTriggers() ) {
2036
2037 # Clean up recentchanges entries...
2038 $dbw->delete( 'recentchanges', array( 'rc_namespace' => $ns, 'rc_title' => $t ), __METHOD__ );
2039 }
2040
2041 # Clear caches
2042 Article::onArticleDelete( $this->mTitle );
2043
2044 # Log the deletion
2045 $log = new LogPage( 'delete' );
2046 $log->addEntry( 'delete', $this->mTitle, $reason );
2047
2048 # Clear the cached article id so the interface doesn't act like we exist
2049 $this->mTitle->resetArticleID( 0 );
2050 $this->mTitle->mArticleID = 0;
2051 return true;
2052 }
2053
2054 /**
2055 * Revert a modification
2056 */
2057 function rollback() {
2058 global $wgUser, $wgOut, $wgRequest, $wgUseRCPatrol;
2059
2060 if( $wgUser->isAllowed( 'rollback' ) ) {
2061 if( $wgUser->isBlocked() ) {
2062 $wgOut->blockedPage();
2063 return;
2064 }
2065 } else {
2066 $wgOut->permissionRequired( 'rollback' );
2067 return;
2068 }
2069
2070 if ( wfReadOnly() ) {
2071 $wgOut->readOnlyPage( $this->getContent() );
2072 return;
2073 }
2074 if( !$wgUser->matchEditToken( $wgRequest->getVal( 'token' ),
2075 array( $this->mTitle->getPrefixedText(),
2076 $wgRequest->getVal( 'from' ) ) ) ) {
2077 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
2078 $wgOut->addWikiText( wfMsg( 'sessionfailure' ) );
2079 return;
2080 }
2081 $dbw =& wfGetDB( DB_MASTER );
2082
2083 # Enhanced rollback, marks edits rc_bot=1
2084 $bot = $wgRequest->getBool( 'bot' );
2085
2086 # Replace all this user's current edits with the next one down
2087
2088 # Get the last editor
2089 $current = Revision::newFromTitle( $this->mTitle );
2090 if( is_null( $current ) ) {
2091 # Something wrong... no page?
2092 $wgOut->addHTML( wfMsg( 'notanarticle' ) );
2093 return;
2094 }
2095
2096 $from = str_replace( '_', ' ', $wgRequest->getVal( 'from' ) );
2097 if( $from != $current->getUserText() ) {
2098 $wgOut->setPageTitle( wfMsg('rollbackfailed') );
2099 $wgOut->addWikiText( wfMsg( 'alreadyrolled',
2100 htmlspecialchars( $this->mTitle->getPrefixedText()),
2101 htmlspecialchars( $from ),
2102 htmlspecialchars( $current->getUserText() ) ) );
2103 if( $current->getComment() != '') {
2104 $wgOut->addHTML(
2105 wfMsg( 'editcomment',
2106 htmlspecialchars( $current->getComment() ) ) );
2107 }
2108 return;
2109 }
2110
2111 # Get the last edit not by this guy
2112 $user = intval( $current->getUser() );
2113 $user_text = $dbw->addQuotes( $current->getUserText() );
2114 $s = $dbw->selectRow( 'revision',
2115 array( 'rev_id', 'rev_timestamp' ),
2116 array(
2117 'rev_page' => $current->getPage(),
2118 "rev_user <> {$user} OR rev_user_text <> {$user_text}"
2119 ), __METHOD__,
2120 array(
2121 'USE INDEX' => 'page_timestamp',
2122 'ORDER BY' => 'rev_timestamp DESC' )
2123 );
2124 if( $s === false ) {
2125 # Something wrong
2126 $wgOut->setPageTitle(wfMsg('rollbackfailed'));
2127 $wgOut->addHTML( wfMsg( 'cantrollback' ) );
2128 return;
2129 }
2130
2131 $set = array();
2132 if ( $bot ) {
2133 # Mark all reverted edits as bot
2134 $set['rc_bot'] = 1;
2135 }
2136 if ( $wgUseRCPatrol ) {
2137 # Mark all reverted edits as patrolled
2138 $set['rc_patrolled'] = 1;
2139 }
2140
2141 if ( $set ) {
2142 $dbw->update( 'recentchanges', $set,
2143 array( /* WHERE */
2144 'rc_cur_id' => $current->getPage(),
2145 'rc_user_text' => $current->getUserText(),
2146 "rc_timestamp > '{$s->rev_timestamp}'",
2147 ), __METHOD__
2148 );
2149 }
2150
2151 # Get the edit summary
2152 $target = Revision::newFromId( $s->rev_id );
2153 $newComment = wfMsgForContent( 'revertpage', $target->getUserText(), $from );
2154 $newComment = $wgRequest->getText( 'summary', $newComment );
2155
2156 # Save it!
2157 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
2158 $wgOut->setRobotpolicy( 'noindex,nofollow' );
2159 $wgOut->addHTML( '<h2>' . htmlspecialchars( $newComment ) . "</h2>\n<hr />\n" );
2160
2161 $this->updateArticle( $target->getText(), $newComment, 1, $this->mTitle->userIsWatching(), $bot );
2162
2163 $wgOut->returnToMain( false );
2164 }
2165
2166
2167 /**
2168 * Do standard deferred updates after page view
2169 * @private
2170 */
2171 function viewUpdates() {
2172 global $wgDeferredUpdateList;
2173
2174 if ( 0 != $this->getID() ) {
2175 global $wgDisableCounters;
2176 if( !$wgDisableCounters ) {
2177 Article::incViewCount( $this->getID() );
2178 $u = new SiteStatsUpdate( 1, 0, 0 );
2179 array_push( $wgDeferredUpdateList, $u );
2180 }
2181 }
2182
2183 # Update newtalk / watchlist notification status
2184 global $wgUser;
2185 $wgUser->clearNotification( $this->mTitle );
2186 }
2187
2188 /**
2189 * Do standard deferred updates after page edit.
2190 * Update links tables, site stats, search index and message cache.
2191 * Every 1000th edit, prune the recent changes table.
2192 *
2193 * @private
2194 * @param $text New text of the article
2195 * @param $summary Edit summary
2196 * @param $minoredit Minor edit
2197 * @param $timestamp_of_pagechange Timestamp associated with the page change
2198 * @param $newid rev_id value of the new revision
2199 * @param $changed Whether or not the content actually changed
2200 */
2201 function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true ) {
2202 global $wgDeferredUpdateList, $wgMessageCache, $wgUser, $wgParser;
2203
2204 wfProfileIn( __METHOD__ );
2205
2206 # Parse the text
2207 $options = new ParserOptions;
2208 $options->setTidy(true);
2209 $poutput = $wgParser->parse( $text, $this->mTitle, $options, true, true, $newid );
2210
2211 # Save it to the parser cache
2212 $parserCache =& ParserCache::singleton();
2213 $parserCache->save( $poutput, $this, $wgUser );
2214
2215 # Update the links tables
2216 $u = new LinksUpdate( $this->mTitle, $poutput );
2217 $u->doUpdate();
2218
2219 if ( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
2220 wfSeedRandom();
2221 if ( 0 == mt_rand( 0, 999 ) ) {
2222 # Periodically flush old entries from the recentchanges table.
2223 global $wgRCMaxAge;
2224
2225 $dbw =& wfGetDB( DB_MASTER );
2226 $cutoff = $dbw->timestamp( time() - $wgRCMaxAge );
2227 $recentchanges = $dbw->tableName( 'recentchanges' );
2228 $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$cutoff}'";
2229 $dbw->query( $sql );
2230 }
2231 }
2232
2233 $id = $this->getID();
2234 $title = $this->mTitle->getPrefixedDBkey();
2235 $shortTitle = $this->mTitle->getDBkey();
2236
2237 if ( 0 == $id ) {
2238 wfProfileOut( __METHOD__ );
2239 return;
2240 }
2241
2242 $u = new SiteStatsUpdate( 0, 1, $this->mGoodAdjustment, $this->mTotalAdjustment );
2243 array_push( $wgDeferredUpdateList, $u );
2244 $u = new SearchUpdate( $id, $title, $text );
2245 array_push( $wgDeferredUpdateList, $u );
2246
2247 # If this is another user's talk page, update newtalk
2248 # Don't do this if $changed = false otherwise some idiot can null-edit a
2249 # load of user talk pages and piss people off, nor if it's a minor edit
2250 # by a properly-flagged bot.
2251 if( $this->mTitle->getNamespace() == NS_USER_TALK && $shortTitle != $wgUser->getTitleKey() && $changed
2252 && !($minoredit && $wgUser->isAllowed('nominornewtalk') ) ) {
2253 if (wfRunHooks('ArticleEditUpdateNewTalk', array(&$this)) ) {
2254 $other = User::newFromName( $shortTitle );
2255 if( is_null( $other ) && User::isIP( $shortTitle ) ) {
2256 // An anonymous user
2257 $other = new User();
2258 $other->setName( $shortTitle );
2259 }
2260 if( $other ) {
2261 $other->setNewtalk( true );
2262 }
2263 }
2264 }
2265
2266 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2267 $wgMessageCache->replace( $shortTitle, $text );
2268 }
2269
2270 wfProfileOut( __METHOD__ );
2271 }
2272
2273 /**
2274 * Perform article updates on a special page creation.
2275 *
2276 * @param Revision $rev
2277 *
2278 * @fixme This is a shitty interface function. Kill it and replace the
2279 * other shitty functions like editUpdates and such so it's not needed
2280 * anymore.
2281 */
2282 function createUpdates( $rev ) {
2283 $this->mGoodAdjustment = $this->isCountable( $rev->getText() );
2284 $this->mTotalAdjustment = 1;
2285 $this->editUpdates( $rev->getText(), $rev->getComment(),
2286 $rev->isMinor(), wfTimestamp(), $rev->getId(), true );
2287 }
2288
2289 /**
2290 * Generate the navigation links when browsing through an article revisions
2291 * It shows the information as:
2292 * Revision as of \<date\>; view current revision
2293 * \<- Previous version | Next Version -\>
2294 *
2295 * @private
2296 * @param string $oldid Revision ID of this article revision
2297 */
2298 function setOldSubtitle( $oldid=0 ) {
2299 global $wgLang, $wgOut, $wgUser;
2300
2301 if ( !wfRunHooks( 'DisplayOldSubtitle', array(&$this, &$oldid) ) ) {
2302 return;
2303 }
2304
2305 $revision = Revision::newFromId( $oldid );
2306
2307 $current = ( $oldid == $this->mLatest );
2308 $td = $wgLang->timeanddate( $this->mTimestamp, true );
2309 $sk = $wgUser->getSkin();
2310 $lnk = $current
2311 ? wfMsg( 'currentrevisionlink' )
2312 : $lnk = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'currentrevisionlink' ) );
2313 $curdiff = $current
2314 ? wfMsg( 'diff' )
2315 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=cur&oldid='.$oldid );
2316 $prev = $this->mTitle->getPreviousRevisionID( $oldid ) ;
2317 $prevlink = $prev
2318 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'previousrevision' ), 'direction=prev&oldid='.$oldid )
2319 : wfMsg( 'previousrevision' );
2320 $prevdiff = $prev
2321 ? $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=prev&oldid='.$oldid )
2322 : wfMsg( 'diff' );
2323 $nextlink = $current
2324 ? wfMsg( 'nextrevision' )
2325 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'nextrevision' ), 'direction=next&oldid='.$oldid );
2326 $nextdiff = $current
2327 ? wfMsg( 'diff' )
2328 : $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'diff' ), 'diff=next&oldid='.$oldid );
2329
2330 $userlinks = $sk->userLink( $revision->getUser(), $revision->getUserText() )
2331 . $sk->userToolLinks( $revision->getUser(), $revision->getUserText() );
2332
2333 $r = "\n\t\t\t\t<div id=\"mw-revision-info\">" . wfMsg( 'revision-info', $td, $userlinks ) . "</div>\n" .
2334 "\n\t\t\t\t<div id=\"mw-revision-nav\">" . wfMsg( 'revision-nav', $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
2335 $wgOut->setSubtitle( $r );
2336 }
2337
2338 /**
2339 * This function is called right before saving the wikitext,
2340 * so we can do things like signatures and links-in-context.
2341 *
2342 * @param string $text
2343 */
2344 function preSaveTransform( $text ) {
2345 global $wgParser, $wgUser;
2346 return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
2347 }
2348
2349 /* Caching functions */
2350
2351 /**
2352 * checkLastModified returns true if it has taken care of all
2353 * output to the client that is necessary for this request.
2354 * (that is, it has sent a cached version of the page)
2355 */
2356 function tryFileCache() {
2357 static $called = false;
2358 if( $called ) {
2359 wfDebug( "Article::tryFileCache(): called twice!?\n" );
2360 return;
2361 }
2362 $called = true;
2363 if($this->isFileCacheable()) {
2364 $touched = $this->mTouched;
2365 $cache = new HTMLFileCache( $this->mTitle );
2366 if($cache->isFileCacheGood( $touched )) {
2367 wfDebug( "Article::tryFileCache(): about to load file\n" );
2368 $cache->loadFromFileCache();
2369 return true;
2370 } else {
2371 wfDebug( "Article::tryFileCache(): starting buffer\n" );
2372 ob_start( array(&$cache, 'saveToFileCache' ) );
2373 }
2374 } else {
2375 wfDebug( "Article::tryFileCache(): not cacheable\n" );
2376 }
2377 }
2378
2379 /**
2380 * Check if the page can be cached
2381 * @return bool
2382 */
2383 function isFileCacheable() {
2384 global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest;
2385 $action = $wgRequest->getVal( 'action' );
2386 $oldid = $wgRequest->getVal( 'oldid' );
2387 $diff = $wgRequest->getVal( 'diff' );
2388 $redirect = $wgRequest->getVal( 'redirect' );
2389 $printable = $wgRequest->getVal( 'printable' );
2390
2391 return $wgUseFileCache
2392 and (!$wgShowIPinHeader)
2393 and ($this->getID() != 0)
2394 and ($wgUser->isAnon())
2395 and (!$wgUser->getNewtalk())
2396 and ($this->mTitle->getNamespace() != NS_SPECIAL )
2397 and (empty( $action ) || $action == 'view')
2398 and (!isset($oldid))
2399 and (!isset($diff))
2400 and (!isset($redirect))
2401 and (!isset($printable))
2402 and (!$this->mRedirectedFrom);
2403 }
2404
2405 /**
2406 * Loads page_touched and returns a value indicating if it should be used
2407 *
2408 */
2409 function checkTouched() {
2410 if( !$this->mDataLoaded ) {
2411 $this->loadPageData();
2412 }
2413 return !$this->mIsRedirect;
2414 }
2415
2416 /**
2417 * Get the page_touched field
2418 */
2419 function getTouched() {
2420 # Ensure that page data has been loaded
2421 if( !$this->mDataLoaded ) {
2422 $this->loadPageData();
2423 }
2424 return $this->mTouched;
2425 }
2426
2427 /**
2428 * Get the page_latest field
2429 */
2430 function getLatest() {
2431 if ( !$this->mDataLoaded ) {
2432 $this->loadPageData();
2433 }
2434 return $this->mLatest;
2435 }
2436
2437 /**
2438 * Edit an article without doing all that other stuff
2439 * The article must already exist; link tables etc
2440 * are not updated, caches are not flushed.
2441 *
2442 * @param string $text text submitted
2443 * @param string $comment comment submitted
2444 * @param bool $minor whereas it's a minor modification
2445 */
2446 function quickEdit( $text, $comment = '', $minor = 0 ) {
2447 wfProfileIn( __METHOD__ );
2448
2449 $dbw =& wfGetDB( DB_MASTER );
2450 $dbw->begin();
2451 $revision = new Revision( array(
2452 'page' => $this->getId(),
2453 'text' => $text,
2454 'comment' => $comment,
2455 'minor_edit' => $minor ? 1 : 0,
2456 ) );
2457 $revision->insertOn( $dbw );
2458 $this->updateRevisionOn( $dbw, $revision );
2459 $dbw->commit();
2460
2461 wfProfileOut( __METHOD__ );
2462 }
2463
2464 /**
2465 * Used to increment the view counter
2466 *
2467 * @static
2468 * @param integer $id article id
2469 */
2470 function incViewCount( $id ) {
2471 $id = intval( $id );
2472 global $wgHitcounterUpdateFreq, $wgDBtype;
2473
2474 $dbw =& wfGetDB( DB_MASTER );
2475 $pageTable = $dbw->tableName( 'page' );
2476 $hitcounterTable = $dbw->tableName( 'hitcounter' );
2477 $acchitsTable = $dbw->tableName( 'acchits' );
2478
2479 if( $wgHitcounterUpdateFreq <= 1 ) {
2480 $dbw->query( "UPDATE $pageTable SET page_counter = page_counter + 1 WHERE page_id = $id" );
2481 return;
2482 }
2483
2484 # Not important enough to warrant an error page in case of failure
2485 $oldignore = $dbw->ignoreErrors( true );
2486
2487 $dbw->query( "INSERT INTO $hitcounterTable (hc_id) VALUES ({$id})" );
2488
2489 $checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
2490 if( (rand() % $checkfreq != 0) or ($dbw->lastErrno() != 0) ){
2491 # Most of the time (or on SQL errors), skip row count check
2492 $dbw->ignoreErrors( $oldignore );
2493 return;
2494 }
2495
2496 $res = $dbw->query("SELECT COUNT(*) as n FROM $hitcounterTable");
2497 $row = $dbw->fetchObject( $res );
2498 $rown = intval( $row->n );
2499 if( $rown >= $wgHitcounterUpdateFreq ){
2500 wfProfileIn( 'Article::incViewCount-collect' );
2501 $old_user_abort = ignore_user_abort( true );
2502
2503 if ($wgDBtype == 'mysql')
2504 $dbw->query("LOCK TABLES $hitcounterTable WRITE");
2505 $tabletype = $wgDBtype == 'mysql' ? "ENGINE=HEAP " : '';
2506 $dbw->query("CREATE TEMPORARY TABLE $acchitsTable $tabletype AS ".
2507 "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable ".
2508 'GROUP BY hc_id');
2509 $dbw->query("DELETE FROM $hitcounterTable");
2510 if ($wgDBtype == 'mysql') {
2511 $dbw->query('UNLOCK TABLES');
2512 $dbw->query("UPDATE $pageTable,$acchitsTable SET page_counter=page_counter + hc_n ".
2513 'WHERE page_id = hc_id');
2514 }
2515 else {
2516 $dbw->query("UPDATE $pageTable SET page_counter=page_counter + hc_n ".
2517 "FROM $acchitsTable WHERE page_id = hc_id");
2518 }
2519 $dbw->query("DROP TABLE $acchitsTable");
2520
2521 ignore_user_abort( $old_user_abort );
2522 wfProfileOut( 'Article::incViewCount-collect' );
2523 }
2524 $dbw->ignoreErrors( $oldignore );
2525 }
2526
2527 /**#@+
2528 * The onArticle*() functions are supposed to be a kind of hooks
2529 * which should be called whenever any of the specified actions
2530 * are done.
2531 *
2532 * This is a good place to put code to clear caches, for instance.
2533 *
2534 * This is called on page move and undelete, as well as edit
2535 * @static
2536 * @param $title_obj a title object
2537 */
2538
2539 static function onArticleCreate($title) {
2540 # The talk page isn't in the regular link tables, so we need to update manually:
2541 if ( $title->isTalkPage() ) {
2542 $other = $title->getSubjectPage();
2543 } else {
2544 $other = $title->getTalkPage();
2545 }
2546 $other->invalidateCache();
2547 $other->purgeSquid();
2548
2549 $title->touchLinks();
2550 $title->purgeSquid();
2551 }
2552
2553 static function onArticleDelete( $title ) {
2554 global $wgUseFileCache, $wgMessageCache;
2555
2556 $title->touchLinks();
2557 $title->purgeSquid();
2558
2559 # File cache
2560 if ( $wgUseFileCache ) {
2561 $cm = new HTMLFileCache( $title );
2562 @unlink( $cm->fileCacheName() );
2563 }
2564
2565 if( $title->getNamespace() == NS_MEDIAWIKI) {
2566 $wgMessageCache->replace( $title->getDBkey(), false );
2567 }
2568 }
2569
2570 /**
2571 * Purge caches on page update etc
2572 */
2573 static function onArticleEdit( $title ) {
2574 global $wgDeferredUpdateList, $wgUseFileCache;
2575
2576 // Invalidate caches of articles which include this page
2577 $update = new HTMLCacheUpdate( $title, 'templatelinks' );
2578 $wgDeferredUpdateList[] = $update;
2579
2580 # Purge squid for this page only
2581 $title->purgeSquid();
2582
2583 # Clear file cache
2584 if ( $wgUseFileCache ) {
2585 $cm = new HTMLFileCache( $title );
2586 @unlink( $cm->fileCacheName() );
2587 }
2588 }
2589
2590 /**#@-*/
2591
2592 /**
2593 * Info about this page
2594 * Called for ?action=info when $wgAllowPageInfo is on.
2595 *
2596 * @public
2597 */
2598 function info() {
2599 global $wgLang, $wgOut, $wgAllowPageInfo, $wgUser;
2600
2601 if ( !$wgAllowPageInfo ) {
2602 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
2603 return;
2604 }
2605
2606 $page = $this->mTitle->getSubjectPage();
2607
2608 $wgOut->setPagetitle( $page->getPrefixedText() );
2609 $wgOut->setSubtitle( wfMsg( 'infosubtitle' ));
2610
2611 # first, see if the page exists at all.
2612 $exists = $page->getArticleId() != 0;
2613 if( !$exists ) {
2614 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2615 $wgOut->addHTML(wfMsgWeirdKey ( $this->mTitle->getText() ) );
2616 } else {
2617 $wgOut->addHTML(wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' ) );
2618 }
2619 } else {
2620 $dbr =& wfGetDB( DB_SLAVE );
2621 $wl_clause = array(
2622 'wl_title' => $page->getDBkey(),
2623 'wl_namespace' => $page->getNamespace() );
2624 $numwatchers = $dbr->selectField(
2625 'watchlist',
2626 'COUNT(*)',
2627 $wl_clause,
2628 __METHOD__,
2629 $this->getSelectOptions() );
2630
2631 $pageInfo = $this->pageCountInfo( $page );
2632 $talkInfo = $this->pageCountInfo( $page->getTalkPage() );
2633
2634 $wgOut->addHTML( "<ul><li>" . wfMsg("numwatchers", $wgLang->formatNum( $numwatchers ) ) . '</li>' );
2635 $wgOut->addHTML( "<li>" . wfMsg('numedits', $wgLang->formatNum( $pageInfo['edits'] ) ) . '</li>');
2636 if( $talkInfo ) {
2637 $wgOut->addHTML( '<li>' . wfMsg("numtalkedits", $wgLang->formatNum( $talkInfo['edits'] ) ) . '</li>');
2638 }
2639 $wgOut->addHTML( '<li>' . wfMsg("numauthors", $wgLang->formatNum( $pageInfo['authors'] ) ) . '</li>' );
2640 if( $talkInfo ) {
2641 $wgOut->addHTML( '<li>' . wfMsg('numtalkauthors', $wgLang->formatNum( $talkInfo['authors'] ) ) . '</li>' );
2642 }
2643 $wgOut->addHTML( '</ul>' );
2644
2645 }
2646 }
2647
2648 /**
2649 * Return the total number of edits and number of unique editors
2650 * on a given page. If page does not exist, returns false.
2651 *
2652 * @param Title $title
2653 * @return array
2654 * @private
2655 */
2656 function pageCountInfo( $title ) {
2657 $id = $title->getArticleId();
2658 if( $id == 0 ) {
2659 return false;
2660 }
2661
2662 $dbr =& wfGetDB( DB_SLAVE );
2663
2664 $rev_clause = array( 'rev_page' => $id );
2665
2666 $edits = $dbr->selectField(
2667 'revision',
2668 'COUNT(rev_page)',
2669 $rev_clause,
2670 __METHOD__,
2671 $this->getSelectOptions() );
2672
2673 $authors = $dbr->selectField(
2674 'revision',
2675 'COUNT(DISTINCT rev_user_text)',
2676 $rev_clause,
2677 __METHOD__,
2678 $this->getSelectOptions() );
2679
2680 return array( 'edits' => $edits, 'authors' => $authors );
2681 }
2682
2683 /**
2684 * Return a list of templates used by this article.
2685 * Uses the templatelinks table
2686 *
2687 * @return array Array of Title objects
2688 */
2689 function getUsedTemplates() {
2690 $result = array();
2691 $id = $this->mTitle->getArticleID();
2692 if( $id == 0 ) {
2693 return array();
2694 }
2695
2696 $dbr =& wfGetDB( DB_SLAVE );
2697 $res = $dbr->select( array( 'templatelinks' ),
2698 array( 'tl_namespace', 'tl_title' ),
2699 array( 'tl_from' => $id ),
2700 'Article:getUsedTemplates' );
2701 if ( false !== $res ) {
2702 if ( $dbr->numRows( $res ) ) {
2703 while ( $row = $dbr->fetchObject( $res ) ) {
2704 $result[] = Title::makeTitle( $row->tl_namespace, $row->tl_title );
2705 }
2706 }
2707 }
2708 $dbr->freeResult( $res );
2709 return $result;
2710 }
2711
2712 /**
2713 * Return an auto-generated summary if the text provided is a redirect.
2714 *
2715 * @param string $text The wikitext to check
2716 * @return string '' or an appropriate summary
2717 */
2718 public static function getRedirectAutosummary( $text ) {
2719 $rt = Title::newFromRedirect( $text );
2720 if( is_object( $rt ) )
2721 return wfMsgForContent( 'autoredircomment', $rt->getFullText() );
2722 else
2723 return '';
2724 }
2725
2726 /**
2727 * Return an auto-generated summary if the new text is much shorter than
2728 * the old text.
2729 *
2730 * @param string $oldtext The previous text of the page
2731 * @param string $text The submitted text of the page
2732 * @return string An appropriate autosummary, or an empty string.
2733 */
2734 public static function getBlankingAutosummary( $oldtext, $text ) {
2735 if ($oldtext!='' && $text=='') {
2736 return wfMsgForContent('autosumm-blank');
2737 } elseif (strlen($oldtext) > 10 * strlen($text) && strlen($text) < 500) {
2738 #Removing more than 90% of the article
2739 global $wgContLang;
2740 $truncatedtext = $wgContLang->truncate($text, max(0, 200 - strlen(wfMsgForContent('autosumm-replace'))), '...');
2741 return wfMsgForContent('autosumm-replace', $truncatedtext);
2742 } else {
2743 return '';
2744 }
2745 }
2746
2747 /**
2748 * Return an applicable autosummary if one exists for the given edit.
2749 * @param string $oldtext The previous text of the page.
2750 * @param string $newtext The submitted text of the page.
2751 * @param bitmask $flags A bitmask of flags submitted for the edit.
2752 * @return string An appropriate autosummary, or an empty string.
2753 */
2754 public static function getAutosummary( $oldtext, $newtext, $flags ) {
2755
2756 # This code is UGLY UGLY UGLY.
2757 # Somebody PLEASE come up with a more elegant way to do it.
2758
2759 #Redirect autosummaries
2760 $summary = self::getRedirectAutosummary( $newtext );
2761
2762 if ($summary)
2763 return $summary;
2764
2765 #Blanking autosummaries
2766 if (!($flags & EDIT_NEW))
2767 $summary = self::getBlankingAutosummary( $oldtext, $newtext );
2768
2769 if ($summary)
2770 return $summary;
2771
2772 #New page autosummaries
2773 if ($flags & EDIT_NEW && strlen($newtext)) {
2774 #If they're making a new article, give its text, truncated, in the summary.
2775 global $wgContLang;
2776 $truncatedtext = $wgContLang->truncate(
2777 str_replace("\n", ' ', $newtext),
2778 max( 0, 200 - strlen( wfMsgForContent( 'autosumm-new') ) ),
2779 '...' );
2780 $summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
2781 }
2782
2783 if ($summary)
2784 return $summary;
2785
2786 return $summary;
2787 }
2788 }
2789
2790 ?>