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