Return somewhere sensible after marking as patrolled, without an annoying meta refresh
[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
12 $wgArticleCurContentFields = false;
13 $wgArticleOldContentFields = false;
14
15 /**
16 * Class representing a Wikipedia article and history.
17 *
18 * See design.doc for an overview.
19 * Note: edit user interface and cache support functions have been
20 * moved to separate EditPage and CacheManager classes.
21 *
22 * @package MediaWiki
23 */
24 class Article {
25 /**#@+
26 * @access private
27 */
28 var $mContent, $mContentLoaded;
29 var $mUser, $mTimestamp, $mUserText;
30 var $mCounter, $mComment, $mCountAdjustment;
31 var $mMinorEdit, $mRedirectedFrom;
32 var $mTouched, $mFileCache, $mTitle;
33 var $mId, $mTable;
34 var $mForUpdate;
35 /**#@-*/
36
37 /**
38 * Constructor and clear the article
39 * @param mixed &$title
40 */
41 function Article( &$title ) {
42 $this->mTitle =& $title;
43 $this->clear();
44 }
45
46 /**
47 * Clear the object
48 * @private
49 */
50 function clear() {
51 $this->mContentLoaded = false;
52 $this->mCurID = $this->mUser = $this->mCounter = -1; # Not loaded
53 $this->mRedirectedFrom = $this->mUserText =
54 $this->mTimestamp = $this->mComment = $this->mFileCache = '';
55 $this->mCountAdjustment = 0;
56 $this->mTouched = '19700101000000';
57 $this->mForUpdate = false;
58 }
59
60 /**
61 * Get revision text associated with an old or archive row
62 * $row is usually an object from wfFetchRow(), both the flags and the text
63 * field must be included
64 * @static
65 * @param integer $row Id of a row
66 * @param string $prefix table prefix (default 'old_')
67 * @return string $text|false the text requested
68 */
69 function getRevisionText( $row, $prefix = 'old_' ) {
70 $fname = 'Article::getRevisionText';
71 wfProfileIn( $fname );
72
73 # Get data
74 $textField = $prefix . 'text';
75 $flagsField = $prefix . 'flags';
76
77 if( isset( $row->$flagsField ) ) {
78 $flags = explode( ',', $row->$flagsField );
79 } else {
80 $flags = array();
81 }
82
83 if( isset( $row->$textField ) ) {
84 $text = $row->$textField;
85 } else {
86 return false;
87 }
88
89 if( in_array( 'gzip', $flags ) ) {
90 # Deal with optional compression of archived pages.
91 # This can be done periodically via maintenance/compressOld.php, and
92 # as pages are saved if $wgCompressRevisions is set.
93 $text = gzinflate( $text );
94 }
95
96 if( in_array( 'object', $flags ) ) {
97 # Generic compressed storage
98 $obj = unserialize( $text );
99
100 # Bugger, corrupted my test database by double-serializing
101 if ( !is_object( $obj ) ) {
102 $obj = unserialize( $obj );
103 }
104
105 $text = $obj->getText();
106 }
107
108 global $wgLegacyEncoding;
109 if( $wgLegacyEncoding && !in_array( 'utf-8', $flags ) ) {
110 # Old revisions kept around in a legacy encoding?
111 # Upconvert on demand.
112 global $wgInputEncoding, $wgContLang;
113 $text = $wgContLang->iconv( $wgLegacyEncoding, $wgInputEncoding, $text );
114 }
115 wfProfileOut( $fname );
116 return $text;
117 }
118
119 /**
120 * If $wgCompressRevisions is enabled, we will compress data.
121 * The input string is modified in place.
122 * Return value is the flags field: contains 'gzip' if the
123 * data is compressed, and 'utf-8' if we're saving in UTF-8
124 * mode.
125 *
126 * @static
127 * @param mixed $text reference to a text
128 * @return string
129 */
130 function compressRevisionText( &$text ) {
131 global $wgCompressRevisions, $wgUseLatin1;
132 $flags = array();
133 if( !$wgUseLatin1 ) {
134 # Revisions not marked this way will be converted
135 # on load if $wgLegacyCharset is set in the future.
136 $flags[] = 'utf-8';
137 }
138 if( $wgCompressRevisions ) {
139 if( function_exists( 'gzdeflate' ) ) {
140 $text = gzdeflate( $text );
141 $flags[] = 'gzip';
142 } else {
143 wfDebug( "Article::compressRevisionText() -- no zlib support, not compressing\n" );
144 }
145 }
146 return implode( ',', $flags );
147 }
148
149 /**
150 * Note that getContent/loadContent may follow redirects if
151 * not told otherwise, and so may cause a change to mTitle.
152 *
153 * @param $noredir
154 * @return Return the text of this revision
155 */
156 function getContent( $noredir ) {
157 global $wgRequest;
158
159 # Get variables from query string :P
160 $action = $wgRequest->getText( 'action', 'view' );
161 $section = $wgRequest->getText( 'section' );
162
163 $fname = 'Article::getContent';
164 wfProfileIn( $fname );
165
166 if ( 0 == $this->getID() ) {
167 if ( 'edit' == $action ) {
168 wfProfileOut( $fname );
169 return ''; # was "newarticletext", now moved above the box)
170 }
171 wfProfileOut( $fname );
172 return wfMsg( 'noarticletext' );
173 } else {
174 $this->loadContent( $noredir );
175 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
176 if ( $this->mTitle->getNamespace() == NS_USER_TALK &&
177 preg_match('/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/',$this->mTitle->getText()) &&
178 $action=='view'
179 ) {
180 wfProfileOut( $fname );
181 return $this->mContent . "\n" .wfMsg('anontalkpagetext');
182 } else {
183 if($action=='edit') {
184 if($section!='') {
185 if($section=='new') {
186 wfProfileOut( $fname );
187 return '';
188 }
189
190 # strip NOWIKI etc. to avoid confusion (true-parameter causes HTML
191 # comments to be stripped as well)
192 $rv=$this->getSection($this->mContent,$section);
193 wfProfileOut( $fname );
194 return $rv;
195 }
196 }
197 wfProfileOut( $fname );
198 return $this->mContent;
199 }
200 }
201 }
202
203 /**
204 * This function returns the text of a section, specified by a number ($section).
205 * A section is text under a heading like == Heading == or <h1>Heading</h1>, or
206 * the first section before any such heading (section 0).
207 *
208 * If a section contains subsections, these are also returned.
209 *
210 * @param string $text text to look in
211 * @param integer $section section number
212 * @return string text of the requested section
213 */
214 function getSection($text,$section) {
215
216 # strip NOWIKI etc. to avoid confusion (true-parameter causes HTML
217 # comments to be stripped as well)
218 $striparray=array();
219 $parser=new Parser();
220 $parser->mOutputType=OT_WIKI;
221 $striptext=$parser->strip($text, $striparray, true);
222
223 # now that we can be sure that no pseudo-sections are in the source,
224 # split it up by section
225 $secs =
226 preg_split(
227 '/(^=+.+?=+|^<h[1-6].*?' . '>.*?<\/h[1-6].*?' . '>)(?!\S)/mi',
228 $striptext, -1,
229 PREG_SPLIT_DELIM_CAPTURE);
230 if($section==0) {
231 $rv=$secs[0];
232 } else {
233 $headline=$secs[$section*2-1];
234 preg_match( '/^(=+).+?=+|^<h([1-6]).*?' . '>.*?<\/h[1-6].*?' . '>(?!\S)/mi',$headline,$matches);
235 $hlevel=$matches[1];
236
237 # translate wiki heading into level
238 if(strpos($hlevel,'=')!==false) {
239 $hlevel=strlen($hlevel);
240 }
241
242 $rv=$headline. $secs[$section*2];
243 $count=$section+1;
244
245 $break=false;
246 while(!empty($secs[$count*2-1]) && !$break) {
247
248 $subheadline=$secs[$count*2-1];
249 preg_match( '/^(=+).+?=+|^<h([1-6]).*?' . '>.*?<\/h[1-6].*?' . '>(?!\S)/mi',$subheadline,$matches);
250 $subhlevel=$matches[1];
251 if(strpos($subhlevel,'=')!==false) {
252 $subhlevel=strlen($subhlevel);
253 }
254 if($subhlevel > $hlevel) {
255 $rv.=$subheadline.$secs[$count*2];
256 }
257 if($subhlevel <= $hlevel) {
258 $break=true;
259 }
260 $count++;
261
262 }
263 }
264 # reinsert stripped tags
265 $rv=$parser->unstrip($rv,$striparray);
266 $rv=$parser->unstripNoWiki($rv,$striparray);
267 $rv=trim($rv);
268 return $rv;
269
270 }
271
272 /**
273 * Return an array of the columns of the "cur"-table
274 */
275 function &getCurContentFields() {
276 global $wgArticleCurContentFields;
277 if ( !$wgArticleCurContentFields ) {
278 $wgArticleCurContentFields = array( 'cur_text','cur_timestamp','cur_user', 'cur_user_text',
279 'cur_comment','cur_counter','cur_restrictions','cur_touched' );
280 }
281 return $wgArticleCurContentFields;
282 }
283
284 /**
285 * Return an array of the columns of the "old"-table
286 */
287 function &getOldContentFields() {
288 global $wgArticleOldContentFields;
289 if ( !$wgArticleOldContentFields ) {
290 $wgArticleOldContentFields = array( 'old_namespace','old_title','old_text','old_timestamp',
291 'old_user','old_user_text','old_comment','old_flags' );
292 }
293 return $wgArticleOldContentFields;
294 }
295
296 /**
297 * Return the oldid of the article that is to be shown.
298 * For requests with a "direction", this is not the oldid of the
299 * query
300 */
301 function getOldID() {
302 global $wgRequest, $wgOut;
303 static $lastid;
304
305 if ( isset( $lastid ) ) {
306 return $lastid;
307 }
308
309 $oldid = $wgRequest->getVal( 'oldid' );
310 if ( isset( $oldid ) ) {
311 $dbr =& $this->getDB();
312 $oldid = IntVal( $oldid );
313 if ( $wgRequest->getVal( 'direction' ) == 'next' ) {
314 $nextid = $this->mTitle->getNextRevisionID( $oldid );
315 if ( $nextid ) {
316 $oldid = $nextid;
317 } else {
318 $wgOut->redirect( $this->mTitle->getFullURL( 'redirect=no' ) );
319 }
320 } elseif ( $wgRequest->getVal( 'direction' ) == 'prev' ) {
321 $previd = $this->mTitle->getPreviousRevisionID( $oldid );
322 if ( $previd ) {
323 $oldid = $previd;
324 } else {
325 # TODO
326 }
327 }
328 $lastid = $oldid;
329 }
330 return @$oldid; # "@" to be able to return "unset" without PHP complaining
331 }
332
333
334 /**
335 * Load the revision (including cur_text) into this object
336 */
337 function loadContent( $noredir = false ) {
338 global $wgOut, $wgRequest;
339
340 if ( $this->mContentLoaded ) return;
341
342 $dbr =& $this->getDB();
343 # Query variables :P
344 $oldid = $this->getOldID();
345 $redirect = $wgRequest->getVal( 'redirect' );
346
347 $fname = 'Article::loadContent';
348
349 # Pre-fill content with error message so that if something
350 # fails we'll have something telling us what we intended.
351
352 $t = $this->mTitle->getPrefixedText();
353
354 if ( isset( $oldid ) ) {
355 $t .= ',oldid='.$oldid;
356 }
357 if ( isset( $redirect ) ) {
358 $redirect = ($redirect == 'no') ? 'no' : 'yes';
359 $t .= ',redirect='.$redirect;
360 }
361 $this->mContent = wfMsg( 'missingarticle', $t );
362
363 if ( ! $oldid ) { # Retrieve current version
364 $id = $this->getID();
365 if ( 0 == $id ) return;
366
367 $s = $dbr->selectRow( 'cur', $this->getCurContentFields(), array( 'cur_id' => $id ), $fname,
368 $this->getSelectOptions() );
369 if ( $s === false ) {
370 return;
371 }
372
373 # If we got a redirect, follow it (unless we've been told
374 # not to by either the function parameter or the query
375 if ( ( 'no' != $redirect ) && ( false == $noredir ) ) {
376 $rt = Title::newFromRedirect( $s->cur_text );
377 # process if title object is valid and not special:userlogout
378 if ( $rt && ! ( $rt->getNamespace() == NS_SPECIAL && $rt->getText() == 'Userlogout' ) ) {
379 # Gotta hand redirects to special pages differently:
380 # Fill the HTTP response "Location" header and ignore
381 # the rest of the page we're on.
382
383 if ( $rt->getInterwiki() != '' ) {
384 $wgOut->redirect( $rt->getFullURL() ) ;
385 return;
386 }
387 if ( $rt->getNamespace() == NS_SPECIAL ) {
388 $wgOut->redirect( $rt->getFullURL() );
389 return;
390 }
391 $rid = $rt->getArticleID();
392 if ( 0 != $rid ) {
393 $redirRow = $dbr->selectRow( 'cur', $this->getCurContentFields(),
394 array( 'cur_id' => $rid ), $fname, $this->getSelectOptions() );
395
396 if ( $redirRow !== false ) {
397 $this->mRedirectedFrom = $this->mTitle->getPrefixedText();
398 $this->mTitle = $rt;
399 $s = $redirRow;
400 }
401 }
402 }
403 }
404
405 $this->mContent = $s->cur_text;
406 $this->mUser = $s->cur_user;
407 $this->mUserText = $s->cur_user_text;
408 $this->mComment = $s->cur_comment;
409 $this->mCounter = $s->cur_counter;
410 $this->mTimestamp = wfTimestamp(TS_MW,$s->cur_timestamp);
411 $this->mTouched = wfTimestamp(TS_MW,$s->cur_touched);
412 $this->mTitle->loadRestrictions( $s->cur_restrictions );
413 } else { # oldid set, retrieve historical version
414 $s = $dbr->selectRow( 'old', $this->getOldContentFields(), array( 'old_id' => $oldid ),
415 $fname, $this->getSelectOptions() );
416 if ( $s === false ) {
417 return;
418 }
419
420 if( $this->mTitle->getNamespace() != $s->old_namespace ||
421 $this->mTitle->getDBkey() != $s->old_title ) {
422 $oldTitle = Title::makeTitle( $s->old_namesapce, $s->old_title );
423 $this->mTitle = $oldTitle;
424 $wgTitle = $oldTitle;
425 }
426 $this->mContent = Article::getRevisionText( $s );
427 $this->mUser = $s->old_user;
428 $this->mUserText = $s->old_user_text;
429 $this->mComment = $s->old_comment;
430 $this->mCounter = 0;
431 $this->mTimestamp = wfTimestamp(TS_MW,$s->old_timestamp);
432 }
433 $this->mContentLoaded = true;
434 return $this->mContent;
435 }
436
437 /**
438 * Gets the article text without using so many damn globals
439 * Returns false on error
440 *
441 * @param integer $oldid
442 */
443 function getContentWithoutUsingSoManyDamnGlobals( $oldid = 0, $noredir = false ) {
444 if ( $this->mContentLoaded ) {
445 return $this->mContent;
446 }
447 $this->mContent = false;
448
449 $fname = 'Article::getContentWithout';
450 $dbr =& $this->getDB();
451
452 if ( ! $oldid ) { # Retrieve current version
453 $id = $this->getID();
454 if ( 0 == $id ) {
455 return false;
456 }
457
458 $s = $dbr->selectRow( 'cur', $this->getCurContentFields(), array( 'cur_id' => $id ),
459 $fname, $this->getSelectOptions() );
460 if ( $s === false ) {
461 return false;
462 }
463
464 # If we got a redirect, follow it (unless we've been told
465 # not to by either the function parameter or the query
466 if ( !$noredir ) {
467 $rt = Title::newFromRedirect( $s->cur_text );
468 if( $rt && $rt->getInterwiki() == '' && $rt->getNamespace() != NS_SPECIAL ) {
469 $rid = $rt->getArticleID();
470 if ( 0 != $rid ) {
471 $redirRow = $dbr->selectRow( 'cur', $this->getCurContentFields(),
472 array( 'cur_id' => $rid ), $fname, $this->getSelectOptions() );
473
474 if ( $redirRow !== false ) {
475 $this->mRedirectedFrom = $this->mTitle->getPrefixedText();
476 $this->mTitle = $rt;
477 $s = $redirRow;
478 }
479 }
480 }
481 }
482
483 $this->mContent = $s->cur_text;
484 $this->mUser = $s->cur_user;
485 $this->mUserText = $s->cur_user_text;
486 $this->mComment = $s->cur_comment;
487 $this->mCounter = $s->cur_counter;
488 $this->mTimestamp = wfTimestamp(TS_MW,$s->cur_timestamp);
489 $this->mTouched = wfTimestamp(TS_MW,$s->cur_touched);
490 $this->mTitle->loadRestrictions( $s->cur_restrictions );
491 } else { # oldid set, retrieve historical version
492 $s = $dbr->selectRow( 'old', $this->getOldContentFields(), array( 'old_id' => $oldid ),
493 $fname, $this->getSelectOptions() );
494 if ( $s === false ) {
495 return false;
496 }
497 $this->mContent = Article::getRevisionText( $s );
498 $this->mUser = $s->old_user;
499 $this->mUserText = $s->old_user_text;
500 $this->mComment = $s->old_comment;
501 $this->mCounter = 0;
502 $this->mTimestamp = wfTimestamp(TS_MW,$s->old_timestamp);
503 }
504 $this->mContentLoaded = true;
505 return $this->mContent;
506 }
507
508 /**
509 * Read/write accessor to select FOR UPDATE
510 */
511 function forUpdate( $x = NULL ) {
512 return wfSetVar( $this->mForUpdate, $x );
513 }
514
515 /**
516 * Get the database which should be used for reads
517 */
518 function &getDB() {
519 if ( $this->mForUpdate ) {
520 return wfGetDB( DB_MASTER );
521 } else {
522 return wfGetDB( DB_SLAVE );
523 }
524 }
525
526 /**
527 * Get options for all SELECT statements
528 * Can pass an option array, to which the class-wide options will be appended
529 */
530 function getSelectOptions( $options = '' ) {
531 if ( $this->mForUpdate ) {
532 if ( $options ) {
533 $options[] = 'FOR UPDATE';
534 } else {
535 $options = 'FOR UPDATE';
536 }
537 }
538 return $options;
539 }
540
541 /**
542 * Return the Article ID
543 */
544 function getID() {
545 if( $this->mTitle ) {
546 return $this->mTitle->getArticleID();
547 } else {
548 return 0;
549 }
550 }
551
552 /**
553 * Get the view count for this article
554 */
555 function getCount() {
556 if ( -1 == $this->mCounter ) {
557 $id = $this->getID();
558 $dbr =& $this->getDB();
559 $this->mCounter = $dbr->selectField( 'cur', 'cur_counter', 'cur_id='.$id,
560 'Article::getCount', $this->getSelectOptions() );
561 }
562 return $this->mCounter;
563 }
564
565 /**
566 * Would the given text make this article a "good" article (i.e.,
567 * suitable for including in the article count)?
568 */
569 function isCountable( $text ) {
570 global $wgUseCommaCount;
571
572 if ( 0 != $this->mTitle->getNamespace() ) { return 0; }
573 if ( $this->isRedirect( $text ) ) { return 0; }
574 $token = ($wgUseCommaCount ? ',' : '[[' );
575 if ( false === strstr( $text, $token ) ) { return 0; }
576 return 1;
577 }
578
579 /**
580 * Tests if the article text represents a redirect
581 */
582 function isRedirect( $text = false ) {
583 if ( $text === false ) {
584 $this->loadContent();
585 $titleObj = Title::newFromRedirect( $this->mText );
586 } else {
587 $titleObj = Title::newFromRedirect( $text );
588 }
589 return $titleObj !== NULL;
590 }
591
592 /**
593 * Loads everything from cur except cur_text
594 * This isn't necessary for all uses, so it's only done if needed.
595 * @private
596 */
597 function loadLastEdit() {
598 global $wgOut;
599 if ( -1 != $this->mUser ) return;
600
601 $fname = 'Article::loadLastEdit';
602
603 $dbr =& $this->getDB();
604 $s = $dbr->selectRow( 'cur',
605 array( 'cur_user','cur_user_text','cur_timestamp', 'cur_comment','cur_minor_edit' ),
606 array( 'cur_id' => $this->getID() ), $fname, $this->getSelectOptions() );
607
608 if ( $s !== false ) {
609 $this->mUser = $s->cur_user;
610 $this->mUserText = $s->cur_user_text;
611 $this->mTimestamp = wfTimestamp(TS_MW,$s->cur_timestamp);
612 $this->mComment = $s->cur_comment;
613 $this->mMinorEdit = $s->cur_minor_edit;
614 }
615 }
616
617 function getTimestamp() {
618 $this->loadLastEdit();
619 return $this->mTimestamp;
620 }
621
622 function getUser() {
623 $this->loadLastEdit();
624 return $this->mUser;
625 }
626
627 function getUserText() {
628 $this->loadLastEdit();
629 return $this->mUserText;
630 }
631
632 function getComment() {
633 $this->loadLastEdit();
634 return $this->mComment;
635 }
636
637 function getMinorEdit() {
638 $this->loadLastEdit();
639 return $this->mMinorEdit;
640 }
641
642 function getContributors($limit = 0, $offset = 0) {
643 $fname = 'Article::getContributors';
644
645 # XXX: this is expensive; cache this info somewhere.
646
647 $title = $this->mTitle;
648 $contribs = array();
649 $dbr =& $this->getDB();
650 $oldTable = $dbr->tableName( 'old' );
651 $userTable = $dbr->tableName( 'user' );
652 $encDBkey = $dbr->addQuotes( $title->getDBkey() );
653 $ns = $title->getNamespace();
654 $user = $this->getUser();
655
656 $sql = "SELECT old_user, old_user_text, user_real_name, MAX(old_timestamp) as timestamp
657 FROM $oldTable LEFT JOIN $userTable ON old_user = user_id
658 WHERE old_namespace = $user
659 AND old_title = $encDBkey
660 AND old_user != $user
661 GROUP BY old_user, old_user_text, user_real_name
662 ORDER BY timestamp DESC";
663
664 if ($limit > 0) { $sql .= ' LIMIT '.$limit; }
665 $sql .= ' '. $this->getSelectOptions();
666
667 $res = $dbr->query($sql, $fname);
668
669 while ( $line = $dbr->fetchObject( $res ) ) {
670 $contribs[] = array($line->old_user, $line->old_user_text, $line->user_real_name);
671 }
672
673 $dbr->freeResult($res);
674 return $contribs;
675 }
676
677 /**
678 * This is the default action of the script: just view the page of
679 * the given title.
680 */
681 function view() {
682 global $wgUser, $wgOut, $wgRequest, $wgOnlySysopsCanPatrol, $wgLang;
683 global $wgLinkCache, $IP, $wgEnableParserCache, $wgStylePath, $wgUseRCPatrol;
684 $sk = $wgUser->getSkin();
685
686 $fname = 'Article::view';
687 wfProfileIn( $fname );
688 # Get variables from query string
689 $oldid = $this->getOldID();
690 $diff = $wgRequest->getVal( 'diff' );
691 $rcid = $wgRequest->getVal( 'rcid' );
692
693 $wgOut->setArticleFlag( true );
694 $wgOut->setRobotpolicy( 'index,follow' );
695 # If we got diff and oldid in the query, we want to see a
696 # diff page instead of the article.
697
698 if ( !is_null( $diff ) ) {
699 require_once( 'DifferenceEngine.php' );
700 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
701 $de = new DifferenceEngine( $oldid, $diff, $rcid );
702 $de->showDiffPage();
703 if( $diff == 0 ) {
704 # Run view updates for current revision only
705 $this->viewUpdates();
706 }
707 wfProfileOut( $fname );
708 return;
709 }
710 if ( empty( $oldid ) && $this->checkTouched() ) {
711 if( $wgOut->checkLastModified( $this->mTouched ) ){
712 wfProfileOut( $fname );
713 return;
714 } else if ( $this->tryFileCache() ) {
715 # tell wgOut that output is taken care of
716 $wgOut->disable();
717 $this->viewUpdates();
718 wfProfileOut( $fname );
719 return;
720 }
721 }
722 # Should the parser cache be used?
723 if ( $wgEnableParserCache && intval($wgUser->getOption( 'stubthreshold' )) == 0 && empty( $oldid ) ) {
724 $pcache = true;
725 } else {
726 $pcache = false;
727 }
728
729 $outputDone = false;
730 if ( $pcache ) {
731 if ( $wgOut->tryParserCache( $this, $wgUser ) ) {
732 $outputDone = true;
733 }
734 }
735 if ( !$outputDone ) {
736 $text = $this->getContent( false ); # May change mTitle by following a redirect
737
738 # Another whitelist check in case oldid or redirects are altering the title
739 if ( !$this->mTitle->userCanRead() ) {
740 $wgOut->loginToUse();
741 $wgOut->output();
742 exit;
743 }
744
745
746 # We're looking at an old revision
747
748 if ( !empty( $oldid ) ) {
749 $this->setOldSubtitle( $oldid );
750 $wgOut->setRobotpolicy( 'noindex,follow' );
751 }
752 if ( '' != $this->mRedirectedFrom ) {
753 $sk = $wgUser->getSkin();
754 $redir = $sk->makeKnownLink( $this->mRedirectedFrom, '',
755 'redirect=no' );
756 $s = wfMsg( 'redirectedfrom', $redir );
757 $wgOut->setSubtitle( $s );
758
759 # Can't cache redirects
760 $pcache = false;
761 }
762
763 # wrap user css and user js in pre and don't parse
764 # XXX: use $this->mTitle->usCssJsSubpage() when php is fixed/ a workaround is found
765 if (
766 $this->mTitle->getNamespace() == NS_USER &&
767 preg_match('/\\/[\\w]+\\.(css|js)$/', $this->mTitle->getDBkey())
768 ) {
769 $wgOut->addWikiText( wfMsg('clearyourcache'));
770 $wgOut->addHTML( '<pre>'.htmlspecialchars($this->mContent)."\n</pre>" );
771 } else if ( $rt = Title::newFromRedirect( $text ) ) {
772 # Display redirect
773 $imageUrl = $wgStylePath.'/common/images/redirect.png';
774 $targetUrl = $rt->escapeLocalURL();
775 $titleText = htmlspecialchars( $rt->getPrefixedText() );
776 $link = $sk->makeLinkObj( $rt );
777
778 $wgOut->addHTML( '<img valign="center" src="'.$imageUrl.'" alt="#REDIRECT" />' .
779 '<span class="redirectText">'.$link.'</span>' );
780
781 } else if ( $pcache ) {
782 # Display content and save to parser cache
783 $wgOut->addPrimaryWikiText( $text, $this );
784 } else {
785 # Display content, don't attempt to save to parser cache
786 $wgOut->addWikiText( $text );
787 }
788 }
789 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
790 # If we have been passed an &rcid= parameter, we want to give the user a
791 # chance to mark this new article as patrolled.
792 if ( $wgUseRCPatrol && !is_null ( $rcid ) && $rcid != 0 && $wgUser->getID() != 0 &&
793 ( $wgUser->isAllowed('patrol') || !$wgOnlySysopsCanPatrol ) )
794 {
795 $wgOut->addHTML( wfMsg ( 'markaspatrolledlink',
796 $sk->makeKnownLinkObj ( $this->mTitle, wfMsg ( 'markaspatrolledtext' ),
797 'action=markpatrolled&rcid='.$rcid )
798 ) );
799 }
800
801 # Put link titles into the link cache
802 $wgOut->transformBuffer();
803
804 # Add link titles as META keywords
805 $wgOut->addMetaTags() ;
806
807 $this->viewUpdates();
808 wfProfileOut( $fname );
809 }
810
811 /**
812 * Theoretically we could defer these whole insert and update
813 * functions for after display, but that's taking a big leap
814 * of faith, and we want to be able to report database
815 * errors at some point.
816 * @private
817 */
818 function insertNewArticle( $text, $summary, $isminor, $watchthis ) {
819 global $wgOut, $wgUser;
820 global $wgUseSquid, $wgDeferredUpdateList, $wgInternalServer;
821
822 $fname = 'Article::insertNewArticle';
823
824 $this->mCountAdjustment = $this->isCountable( $text );
825
826 $ns = $this->mTitle->getNamespace();
827 $ttl = $this->mTitle->getDBkey();
828 $text = $this->preSaveTransform( $text );
829 if ( $this->isRedirect( $text ) ) { $redir = 1; }
830 else { $redir = 0; }
831
832 $now = wfTimestampNow();
833 $won = wfInvertTimestamp( $now );
834 wfSeedRandom();
835 $rand = wfRandom();
836 $dbw =& wfGetDB( DB_MASTER );
837
838 $cur_id = $dbw->nextSequenceValue( 'cur_cur_id_seq' );
839
840 $isminor = ( $isminor && $wgUser->getID() ) ? 1 : 0;
841
842 $dbw->insert( 'cur', array(
843 'cur_id' => $cur_id,
844 'cur_namespace' => $ns,
845 'cur_title' => $ttl,
846 'cur_text' => $text,
847 'cur_comment' => $summary,
848 'cur_user' => $wgUser->getID(),
849 'cur_timestamp' => $dbw->timestamp($now),
850 'cur_minor_edit' => $isminor,
851 'cur_counter' => 0,
852 'cur_restrictions' => '',
853 'cur_user_text' => $wgUser->getName(),
854 'cur_is_redirect' => $redir,
855 'cur_is_new' => 1,
856 'cur_random' => $rand,
857 'cur_touched' => $dbw->timestamp($now),
858 'inverse_timestamp' => $won,
859 ), $fname );
860
861 $newid = $dbw->insertId();
862 $this->mTitle->resetArticleID( $newid );
863
864 Article::onArticleCreate( $this->mTitle );
865 RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary );
866
867 if ($watchthis) {
868 if(!$this->mTitle->userIsWatching()) $this->watch();
869 } else {
870 if ( $this->mTitle->userIsWatching() ) {
871 $this->unwatch();
872 }
873 }
874
875 # The talk page isn't in the regular link tables, so we need to update manually:
876 $talkns = $ns ^ 1; # talk -> normal; normal -> talk
877 $dbw->update( 'cur', array('cur_touched' => $dbw->timestamp($now) ),
878 array( 'cur_namespace' => $talkns, 'cur_title' => $ttl ), $fname );
879
880 # standard deferred updates
881 $this->editUpdates( $text );
882
883 $this->showArticle( $text, wfMsg( 'newarticle' ) );
884 }
885
886
887 /**
888 * Side effects: loads last edit if $edittime is NULL
889 */
890 function getTextOfLastEditWithSectionReplacedOrAdded($section, $text, $summary = '', $edittime = NULL) {
891 $fname = 'Article::getTextOfLastEditWithSectionReplacedOrAdded';
892 if(is_null($edittime)) {
893 $this->loadLastEdit();
894 $oldtext = $this->getContent( true );
895 } else {
896 $dbw =& wfGetDB( DB_MASTER );
897 $ns = $this->mTitle->getNamespace();
898 $title = $this->mTitle->getDBkey();
899 $obj = $dbw->selectRow( 'old',
900 array( 'old_text','old_flags'),
901 array( 'old_namespace' => $ns, 'old_title' => $title,
902 'old_timestamp' => $dbw->timestamp($edittime)),
903 $fname );
904 $oldtext = Article::getRevisionText( $obj );
905 }
906 if ($section != '') {
907 if($section=='new') {
908 if($summary) $subject="== {$summary} ==\n\n";
909 $text=$oldtext."\n\n".$subject.$text;
910 } else {
911
912 # strip NOWIKI etc. to avoid confusion (true-parameter causes HTML
913 # comments to be stripped as well)
914 $striparray=array();
915 $parser=new Parser();
916 $parser->mOutputType=OT_WIKI;
917 $oldtext=$parser->strip($oldtext, $striparray, true);
918
919 # now that we can be sure that no pseudo-sections are in the source,
920 # split it up
921 # Unfortunately we can't simply do a preg_replace because that might
922 # replace the wrong section, so we have to use the section counter instead
923 $secs=preg_split('/(^=+.+?=+|^<h[1-6].*?' . '>.*?<\/h[1-6].*?' . '>)(?!\S)/mi',
924 $oldtext,-1,PREG_SPLIT_DELIM_CAPTURE);
925 $secs[$section*2]=$text."\n\n"; // replace with edited
926
927 # section 0 is top (intro) section
928 if($section!=0) {
929
930 # headline of old section - we need to go through this section
931 # to determine if there are any subsections that now need to
932 # be erased, as the mother section has been replaced with
933 # the text of all subsections.
934 $headline=$secs[$section*2-1];
935 preg_match( '/^(=+).+?=+|^<h([1-6]).*?' . '>.*?<\/h[1-6].*?' . '>(?!\S)/mi',$headline,$matches);
936 $hlevel=$matches[1];
937
938 # determine headline level for wikimarkup headings
939 if(strpos($hlevel,'=')!==false) {
940 $hlevel=strlen($hlevel);
941 }
942
943 $secs[$section*2-1]=''; // erase old headline
944 $count=$section+1;
945 $break=false;
946 while(!empty($secs[$count*2-1]) && !$break) {
947
948 $subheadline=$secs[$count*2-1];
949 preg_match(
950 '/^(=+).+?=+|^<h([1-6]).*?' . '>.*?<\/h[1-6].*?' . '>(?!\S)/mi',$subheadline,$matches);
951 $subhlevel=$matches[1];
952 if(strpos($subhlevel,'=')!==false) {
953 $subhlevel=strlen($subhlevel);
954 }
955 if($subhlevel > $hlevel) {
956 // erase old subsections
957 $secs[$count*2-1]='';
958 $secs[$count*2]='';
959 }
960 if($subhlevel <= $hlevel) {
961 $break=true;
962 }
963 $count++;
964
965 }
966
967 }
968 $text=join('',$secs);
969 # reinsert the stuff that we stripped out earlier
970 $text=$parser->unstrip($text,$striparray);
971 $text=$parser->unstripNoWiki($text,$striparray);
972 }
973
974 }
975 return $text;
976 }
977
978 /**
979 * Change an existing article. Puts the previous version back into the old table, updates RC
980 * and all necessary caches, mostly via the deferred update array.
981 *
982 * It is possible to call this function from a command-line script, but note that you should
983 * first set $wgUser, and clean up $wgDeferredUpdates after each edit.
984 */
985 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
986 global $wgOut, $wgUser;
987 global $wgDBtransactions, $wgMwRedir;
988 global $wgUseSquid, $wgInternalServer;
989
990 $fname = 'Article::updateArticle';
991 $good = true;
992
993 if ( $this->mMinorEdit ) { $me1 = 1; } else { $me1 = 0; }
994 if ( $minor && $wgUser->getID() ) { $me2 = 1; } else { $me2 = 0; }
995 if ( $this->isRedirect( $text ) ) {
996 # Remove all content but redirect
997 # This could be done by reconstructing the redirect from a title given by
998 # Title::newFromRedirect(), but then we wouldn't know which synonym the user
999 # wants to see
1000 if ( preg_match( "/^((" . $wgMwRedir->getBaseRegex() . ')[^\\n]+)/i', $text, $m ) ) {
1001 $redir = 1;
1002 $text = $m[1] . "\n";
1003 }
1004 }
1005 else { $redir = 0; }
1006
1007 $text = $this->preSaveTransform( $text );
1008 $dbw =& wfGetDB( DB_MASTER );
1009
1010 # Update article, but only if changed.
1011
1012 # It's important that we either rollback or complete, otherwise an attacker could
1013 # overwrite cur entries by sending precisely timed user aborts. Random bored users
1014 # could conceivably have the same effect, especially if cur is locked for long periods.
1015 if( $wgDBtransactions ) {
1016 $dbw->query( 'BEGIN', $fname );
1017 } else {
1018 $userAbort = ignore_user_abort( true );
1019 }
1020
1021 $oldtext = $this->getContent( true );
1022
1023 if ( 0 != strcmp( $text, $oldtext ) ) {
1024 $this->mCountAdjustment = $this->isCountable( $text )
1025 - $this->isCountable( $oldtext );
1026 $now = wfTimestampNow();
1027 $won = wfInvertTimestamp( $now );
1028
1029 # First update the cur row
1030 $dbw->update( 'cur',
1031 array( /* SET */
1032 'cur_text' => $text,
1033 'cur_comment' => $summary,
1034 'cur_minor_edit' => $me2,
1035 'cur_user' => $wgUser->getID(),
1036 'cur_timestamp' => $dbw->timestamp($now),
1037 'cur_user_text' => $wgUser->getName(),
1038 'cur_is_redirect' => $redir,
1039 'cur_is_new' => 0,
1040 'cur_touched' => $dbw->timestamp($now),
1041 'inverse_timestamp' => $won
1042 ), array( /* WHERE */
1043 'cur_id' => $this->getID(),
1044 'cur_timestamp' => $dbw->timestamp($this->getTimestamp())
1045 ), $fname
1046 );
1047
1048 if( $dbw->affectedRows() == 0 ) {
1049 /* Belated edit conflict! Run away!! */
1050 $good = false;
1051 } else {
1052 # Now insert the previous revision into old
1053
1054 # This overwrites $oldtext if revision compression is on
1055 $flags = Article::compressRevisionText( $oldtext );
1056
1057 $dbw->insert( 'old',
1058 array(
1059 'old_id' => $dbw->nextSequenceValue( 'old_old_id_seq' ),
1060 'old_namespace' => $this->mTitle->getNamespace(),
1061 'old_title' => $this->mTitle->getDBkey(),
1062 'old_text' => $oldtext,
1063 'old_comment' => $this->getComment(),
1064 'old_user' => $this->getUser(),
1065 'old_user_text' => $this->getUserText(),
1066 'old_timestamp' => $dbw->timestamp($this->getTimestamp()),
1067 'old_minor_edit' => $me1,
1068 'inverse_timestamp' => wfInvertTimestamp( $this->getTimestamp() ),
1069 'old_flags' => $flags,
1070 ), $fname
1071 );
1072
1073 $oldid = $dbw->insertId();
1074
1075 $bot = (int)($wgUser->isBot() || $forceBot);
1076 RecentChange::notifyEdit( $now, $this->mTitle, $me2, $wgUser, $summary,
1077 $oldid, $this->getTimestamp(), $bot );
1078 Article::onArticleEdit( $this->mTitle );
1079 }
1080 }
1081
1082 if( $wgDBtransactions ) {
1083 $dbw->query( 'COMMIT', $fname );
1084 } else {
1085 ignore_user_abort( $userAbort );
1086 }
1087
1088 if ( $good ) {
1089 if ($watchthis) {
1090 if (!$this->mTitle->userIsWatching()) $this->watch();
1091 } else {
1092 if ( $this->mTitle->userIsWatching() ) {
1093 $this->unwatch();
1094 }
1095 }
1096 # standard deferred updates
1097 $this->editUpdates( $text );
1098
1099
1100 $urls = array();
1101 # Template namespace
1102 # Purge all articles linking here
1103 if ( $this->mTitle->getNamespace() == NS_TEMPLATE) {
1104 $titles = $this->mTitle->getLinksTo();
1105 Title::touchArray( $titles );
1106 if ( $wgUseSquid ) {
1107 foreach ( $titles as $title ) {
1108 $urls[] = $title->getInternalURL();
1109 }
1110 }
1111 }
1112
1113 # Squid updates
1114 if ( $wgUseSquid ) {
1115 $urls = array_merge( $urls, $this->mTitle->getSquidURLs() );
1116 $u = new SquidUpdate( $urls );
1117 $u->doUpdate();
1118 }
1119
1120 $this->showArticle( $text, wfMsg( 'updated' ), $sectionanchor );
1121 }
1122 return $good;
1123 }
1124
1125 /**
1126 * After we've either updated or inserted the article, update
1127 * the link tables and redirect to the new page.
1128 */
1129 function showArticle( $text, $subtitle , $sectionanchor = '' ) {
1130 global $wgOut, $wgUser, $wgLinkCache;
1131
1132 $wgLinkCache = new LinkCache();
1133 # Select for update
1134 $wgLinkCache->forUpdate( true );
1135
1136 # Get old version of link table to allow incremental link updates
1137 $wgLinkCache->preFill( $this->mTitle );
1138 $wgLinkCache->clear();
1139
1140 # Parse the text and replace links with placeholders
1141 $wgOut = new OutputPage();
1142 $wgOut->addWikiText( $text );
1143
1144 # Look up the links in the DB and add them to the link cache
1145 $wgOut->transformBuffer( RLH_FOR_UPDATE );
1146
1147 if( $this->isRedirect( $text ) )
1148 $r = 'redirect=no';
1149 else
1150 $r = '';
1151 $wgOut->redirect( $this->mTitle->getFullURL( $r ).$sectionanchor );
1152 }
1153
1154 /**
1155 * Validate article
1156 * @todo document this function a bit more
1157 */
1158 function validate () {
1159 global $wgOut, $wgUseValidation;
1160 if( $wgUseValidation ) {
1161 require_once ( 'SpecialValidate.php' ) ;
1162 $wgOut->setPagetitle( wfMsg( 'validate' ) . ': ' . $this->mTitle->getPrefixedText() );
1163 $wgOut->setRobotpolicy( 'noindex,follow' );
1164 if( $this->mTitle->getNamespace() != 0 ) {
1165 $wgOut->addHTML( wfMsg( 'val_validate_article_namespace_only' ) );
1166 return;
1167 }
1168 $v = new Validation;
1169 $v->validate_form( $this->mTitle->getDBkey() );
1170 } else {
1171 $wgOut->errorpage( 'nosuchaction', 'nosuchactiontext' );
1172 }
1173 }
1174
1175 /**
1176 * Mark this particular edit as patrolled
1177 */
1178 function markpatrolled() {
1179 global $wgOut, $wgRequest, $wgOnlySysopsCanPatrol, $wgUseRCPatrol, $wgUser;
1180 $wgOut->setRobotpolicy( 'noindex,follow' );
1181
1182 if ( !$wgUseRCPatrol )
1183 {
1184 $wgOut->errorpage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
1185 return;
1186 }
1187 if ( $wgUser->getID() == 0 )
1188 {
1189 $wgOut->loginToUse();
1190 return;
1191 }
1192 if ( $wgOnlySysopsCanPatrol && !$wgUser->isAllowed('patrol') )
1193 {
1194 $wgOut->sysopRequired();
1195 return;
1196 }
1197 $rcid = $wgRequest->getVal( 'rcid' );
1198 if ( !is_null ( $rcid ) )
1199 {
1200 RecentChange::markPatrolled( $rcid );
1201 $wgOut->setPagetitle( wfMsg( 'markedaspatrolled' ) );
1202 $wgOut->addWikiText( wfMsg( 'markedaspatrolledtext' ) );
1203
1204 $rcTitle = Title::makeTitle( NS_SPECIAL, 'Recentchanges' );
1205 $wgOut->returnToMain( false, $rcTitle->getPrefixedText() );
1206 }
1207 else
1208 {
1209 $wgOut->errorpage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
1210 }
1211 }
1212
1213
1214 /**
1215 * Add this page to $wgUser's watchlist
1216 */
1217
1218 function watch() {
1219
1220 global $wgUser, $wgOut;
1221
1222 if ( 0 == $wgUser->getID() ) {
1223 $wgOut->errorpage( 'watchnologin', 'watchnologintext' );
1224 return;
1225 }
1226 if ( wfReadOnly() ) {
1227 $wgOut->readOnlyPage();
1228 return;
1229 }
1230
1231 if (wfRunHooks('WatchArticle', $wgUser, $this)) {
1232
1233 $wgUser->addWatch( $this->mTitle );
1234 $wgUser->saveSettings();
1235
1236 wfRunHooks('WatchArticleComplete', $wgUser, $this);
1237
1238 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
1239 $wgOut->setRobotpolicy( 'noindex,follow' );
1240
1241 $link = $this->mTitle->getPrefixedText();
1242 $text = wfMsg( 'addedwatchtext', $link );
1243 $wgOut->addWikiText( $text );
1244 }
1245
1246 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1247 }
1248
1249 /**
1250 * Stop watching a page
1251 */
1252
1253 function unwatch() {
1254
1255 global $wgUser, $wgOut;
1256
1257 if ( 0 == $wgUser->getID() ) {
1258 $wgOut->errorpage( 'watchnologin', 'watchnologintext' );
1259 return;
1260 }
1261 if ( wfReadOnly() ) {
1262 $wgOut->readOnlyPage();
1263 return;
1264 }
1265
1266 if (wfRunHooks('UnwatchArticle', $wgUser, $this)) {
1267
1268 $wgUser->removeWatch( $this->mTitle );
1269 $wgUser->saveSettings();
1270
1271 wfRunHooks('UnwatchArticleComplete', $wgUser, $this);
1272
1273 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
1274 $wgOut->setRobotpolicy( 'noindex,follow' );
1275
1276 $link = $this->mTitle->getPrefixedText();
1277 $text = wfMsg( 'removedwatchtext', $link );
1278 $wgOut->addWikiText( $text );
1279 }
1280
1281 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
1282 }
1283
1284 /**
1285 * protect a page
1286 */
1287 function protect( $limit = 'sysop' ) {
1288 global $wgUser, $wgOut, $wgRequest;
1289
1290 if ( ! $wgUser->isAllowed('protect') ) {
1291 $wgOut->sysopRequired();
1292 return;
1293 }
1294 if ( wfReadOnly() ) {
1295 $wgOut->readOnlyPage();
1296 return;
1297 }
1298 $id = $this->mTitle->getArticleID();
1299 if ( 0 == $id ) {
1300 $wgOut->fatalError( wfMsg( 'badarticleerror' ) );
1301 return;
1302 }
1303
1304 $confirm = $wgRequest->getBool( 'wpConfirmProtect' ) && $wgRequest->wasPosted();
1305 $moveonly = $wgRequest->getBool( 'wpMoveOnly' );
1306 $reason = $wgRequest->getText( 'wpReasonProtect' );
1307
1308 if ( $confirm ) {
1309
1310 $restrictions = "move=" . $limit;
1311 if( !$moveonly ) {
1312 $restrictions .= ":edit=" . $limit;
1313 }
1314 if (wfRunHooks('ArticleProtect', $this, $wgUser, $limit == 'sysop', $reason, $moveonly)) {
1315
1316 $dbw =& wfGetDB( DB_MASTER );
1317 $dbw->update( 'cur',
1318 array( /* SET */
1319 'cur_touched' => $dbw->timestamp(),
1320 'cur_restrictions' => $restrictions
1321 ), array( /* WHERE */
1322 'cur_id' => $id
1323 ), 'Article::protect'
1324 );
1325
1326 wfRunHooks('ArticleProtectComplete', $this, $wgUser, $limit == 'sysop', $reason, $moveonly);
1327
1328 $log = new LogPage( 'protect' );
1329 if ( $limit === '' ) {
1330 $log->addEntry( 'unprotect', $this->mTitle, $reason );
1331 } else {
1332 $log->addEntry( 'protect', $this->mTitle, $reason );
1333 }
1334 $wgOut->redirect( $this->mTitle->getFullURL() );
1335 }
1336 return;
1337 } else {
1338 $reason = htmlspecialchars( wfMsg( 'protectreason' ) );
1339 return $this->confirmProtect( '', $reason, $limit );
1340 }
1341 }
1342
1343 /**
1344 * Output protection confirmation dialog
1345 */
1346 function confirmProtect( $par, $reason, $limit = 'sysop' ) {
1347 global $wgOut;
1348
1349 wfDebug( "Article::confirmProtect\n" );
1350
1351 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
1352 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1353
1354 $check = '';
1355 $protcom = '';
1356 $moveonly = '';
1357
1358 if ( $limit === '' ) {
1359 $wgOut->setPageTitle( wfMsg( 'confirmunprotect' ) );
1360 $wgOut->setSubtitle( wfMsg( 'unprotectsub', $sub ) );
1361 $wgOut->addWikiText( wfMsg( 'confirmunprotecttext' ) );
1362 $check = htmlspecialchars( wfMsg( 'confirmunprotect' ) );
1363 $protcom = htmlspecialchars( wfMsg( 'unprotectcomment' ) );
1364 $formaction = $this->mTitle->escapeLocalURL( 'action=unprotect' . $par );
1365 } else {
1366 $wgOut->setPageTitle( wfMsg( 'confirmprotect' ) );
1367 $wgOut->setSubtitle( wfMsg( 'protectsub', $sub ) );
1368 $wgOut->addWikiText( wfMsg( 'confirmprotecttext' ) );
1369 $check = htmlspecialchars( wfMsg( 'confirmprotect' ) );
1370 $moveonly = htmlspecialchars( wfMsg( 'protectmoveonly' ) );
1371 $protcom = htmlspecialchars( wfMsg( 'protectcomment' ) );
1372 $formaction = $this->mTitle->escapeLocalURL( 'action=protect' . $par );
1373 }
1374
1375 $confirm = htmlspecialchars( wfMsg( 'confirm' ) );
1376
1377 $wgOut->addHTML( "
1378 <form id='protectconfirm' method='post' action=\"{$formaction}\">
1379 <table border='0'>
1380 <tr>
1381 <td align='right'>
1382 <label for='wpReasonProtect'>{$protcom}:</label>
1383 </td>
1384 <td align='left'>
1385 <input type='text' size='60' name='wpReasonProtect' id='wpReasonProtect' value=\"" . htmlspecialchars( $reason ) . "\" />
1386 </td>
1387 </tr>
1388 <tr>
1389 <td>&nbsp;</td>
1390 </tr>
1391 <tr>
1392 <td align='right'>
1393 <input type='checkbox' name='wpConfirmProtect' value='1' id='wpConfirmProtect' />
1394 </td>
1395 <td>
1396 <label for='wpConfirmProtect'>{$check}</label>
1397 </td>
1398 </tr> " );
1399 if($moveonly != '') {
1400 $wgOut->AddHTML( "
1401 <tr>
1402 <td align='right'>
1403 <input type='checkbox' name='wpMoveOnly' value='1' id='wpMoveOnly' />
1404 </td>
1405 <td>
1406 <label for='wpMoveOnly'>{$moveonly}</label>
1407 </td>
1408 </tr> " );
1409 }
1410 $wgOut->addHTML( "
1411 <tr>
1412 <td>&nbsp;</td>
1413 <td>
1414 <input type='submit' name='wpConfirmProtectB' value=\"{$confirm}\" />
1415 </td>
1416 </tr>
1417 </table>
1418 </form>\n" );
1419
1420 $wgOut->returnToMain( false );
1421 }
1422
1423 /**
1424 * Unprotect the pages
1425 */
1426 function unprotect() {
1427 return $this->protect( '' );
1428 }
1429
1430 /*
1431 * UI entry point for page deletion
1432 */
1433 function delete() {
1434 global $wgUser, $wgOut, $wgMessageCache, $wgRequest;
1435 $fname = 'Article::delete';
1436 $confirm = $wgRequest->getBool( 'wpConfirm' ) && $wgRequest->wasPosted();
1437 $reason = $wgRequest->getText( 'wpReason' );
1438
1439 # This code desperately needs to be totally rewritten
1440
1441 # Check permissions
1442 if ( ( ! $wgUser->isAllowed('delete') ) ) {
1443 $wgOut->sysopRequired();
1444 return;
1445 }
1446 if ( wfReadOnly() ) {
1447 $wgOut->readOnlyPage();
1448 return;
1449 }
1450
1451 # Better double-check that it hasn't been deleted yet!
1452 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
1453 if ( ( '' == trim( $this->mTitle->getText() ) )
1454 or ( $this->mTitle->getArticleId() == 0 ) ) {
1455 $wgOut->fatalError( wfMsg( 'cannotdelete' ) );
1456 return;
1457 }
1458
1459 if ( $confirm ) {
1460 $this->doDelete( $reason );
1461 return;
1462 }
1463
1464 # determine whether this page has earlier revisions
1465 # and insert a warning if it does
1466 # we select the text because it might be useful below
1467 $dbr =& $this->getDB();
1468 $ns = $this->mTitle->getNamespace();
1469 $title = $this->mTitle->getDBkey();
1470 $old = $dbr->selectRow( 'old',
1471 array( 'old_text', 'old_flags' ),
1472 array(
1473 'old_namespace' => $ns,
1474 'old_title' => $title,
1475 ), $fname, $this->getSelectOptions( array( 'ORDER BY' => 'inverse_timestamp' ) )
1476 );
1477
1478 if( $old !== false && !$confirm ) {
1479 $skin=$wgUser->getSkin();
1480 $wgOut->addHTML('<b>'.wfMsg('historywarning'));
1481 $wgOut->addHTML( $skin->historyLink() .'</b>');
1482 }
1483
1484 # Fetch cur_text
1485 $s = $dbr->selectRow( 'cur',
1486 array( 'cur_text' ),
1487 array(
1488 'cur_namespace' => $ns,
1489 'cur_title' => $title,
1490 ), $fname, $this->getSelectOptions()
1491 );
1492
1493 if( $s !== false ) {
1494 # if this is a mini-text, we can paste part of it into the deletion reason
1495
1496 #if this is empty, an earlier revision may contain "useful" text
1497 $blanked = false;
1498 if($s->cur_text != '') {
1499 $text=$s->cur_text;
1500 } else {
1501 if($old) {
1502 $text = Article::getRevisionText( $old );
1503 $blanked = true;
1504 }
1505
1506 }
1507
1508 $length=strlen($text);
1509
1510 # this should not happen, since it is not possible to store an empty, new
1511 # page. Let's insert a standard text in case it does, though
1512 if($length == 0 && $reason === '') {
1513 $reason = wfMsg('exblank');
1514 }
1515
1516 if($length < 500 && $reason === '') {
1517
1518 # comment field=255, let's grep the first 150 to have some user
1519 # space left
1520 $text=substr($text,0,150);
1521 # let's strip out newlines and HTML tags
1522 $text=preg_replace('/\"/',"'",$text);
1523 $text=preg_replace('/\</','&lt;',$text);
1524 $text=preg_replace('/\>/','&gt;',$text);
1525 $text=preg_replace("/[\n\r]/",'',$text);
1526 if(!$blanked) {
1527 $reason=wfMsg('excontent'). " '".$text;
1528 } else {
1529 $reason=wfMsg('exbeforeblank') . " '".$text;
1530 }
1531 if($length>150) { $reason .= '...'; } # we've only pasted part of the text
1532 $reason.="'";
1533 }
1534 }
1535
1536 return $this->confirmDelete( '', $reason );
1537 }
1538
1539 /**
1540 * Output deletion confirmation dialog
1541 */
1542 function confirmDelete( $par, $reason ) {
1543 global $wgOut;
1544
1545 wfDebug( "Article::confirmDelete\n" );
1546
1547 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
1548 $wgOut->setSubtitle( wfMsg( 'deletesub', $sub ) );
1549 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1550 $wgOut->addWikiText( wfMsg( 'confirmdeletetext' ) );
1551
1552 $formaction = $this->mTitle->escapeLocalURL( 'action=delete' . $par );
1553
1554 $confirm = htmlspecialchars( wfMsg( 'confirm' ) );
1555 $check = htmlspecialchars( wfMsg( 'confirmcheck' ) );
1556 $delcom = htmlspecialchars( wfMsg( 'deletecomment' ) );
1557
1558 $wgOut->addHTML( "
1559 <form id='deleteconfirm' method='post' action=\"{$formaction}\">
1560 <table border='0'>
1561 <tr>
1562 <td align='right'>
1563 <label for='wpReason'>{$delcom}:</label>
1564 </td>
1565 <td align='left'>
1566 <input type='text' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" />
1567 </td>
1568 </tr>
1569 <tr>
1570 <td>&nbsp;</td>
1571 </tr>
1572 <tr>
1573 <td align='right'>
1574 <input type='checkbox' name='wpConfirm' value='1' id='wpConfirm' />
1575 </td>
1576 <td>
1577 <label for='wpConfirm'>{$check}</label>
1578 </td>
1579 </tr>
1580 <tr>
1581 <td>&nbsp;</td>
1582 <td>
1583 <input type='submit' name='wpConfirmB' value=\"{$confirm}\" />
1584 </td>
1585 </tr>
1586 </table>
1587 </form>\n" );
1588
1589 $wgOut->returnToMain( false );
1590 }
1591
1592
1593 /**
1594 * Perform a deletion and output success or failure messages
1595 */
1596 function doDelete( $reason ) {
1597 global $wgOut, $wgUser, $wgContLang;
1598 $fname = 'Article::doDelete';
1599 wfDebug( $fname."\n" );
1600
1601 if (wfRunHooks('ArticleDelete', $this, $wgUser, $reason)) {
1602 if ( $this->doDeleteArticle( $reason ) ) {
1603 $deleted = $this->mTitle->getPrefixedText();
1604
1605 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
1606 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1607
1608 $sk = $wgUser->getSkin();
1609 $loglink = $sk->makeKnownLink( $wgContLang->getNsText( NS_PROJECT ) .
1610 ':' . wfMsgForContent( 'dellogpage' ),
1611 wfMsg( 'deletionlog' ) );
1612
1613 $text = wfMsg( 'deletedtext', $deleted, $loglink );
1614
1615 $wgOut->addHTML( '<p>' . $text . "</p>\n" );
1616 $wgOut->returnToMain( false );
1617 wfRunHooks('ArticleDeleteComplete', $this, $wgUser, $reason);
1618 } else {
1619 $wgOut->fatalError( wfMsg( 'cannotdelete' ) );
1620 }
1621 }
1622 }
1623
1624 /**
1625 * Back-end article deletion
1626 * Deletes the article with database consistency, writes logs, purges caches
1627 * Returns success
1628 */
1629 function doDeleteArticle( $reason ) {
1630 global $wgUser;
1631 global $wgUseSquid, $wgDeferredUpdateList, $wgInternalServer;
1632
1633 $fname = 'Article::doDeleteArticle';
1634 wfDebug( $fname."\n" );
1635
1636 $dbw =& wfGetDB( DB_MASTER );
1637 $ns = $this->mTitle->getNamespace();
1638 $t = $this->mTitle->getDBkey();
1639 $id = $this->mTitle->getArticleID();
1640
1641 if ( $t == '' || $id == 0 ) {
1642 return false;
1643 }
1644
1645 $u = new SiteStatsUpdate( 0, 1, -$this->isCountable( $this->getContent( true ) ) );
1646 array_push( $wgDeferredUpdateList, $u );
1647
1648 $linksTo = $this->mTitle->getLinksTo();
1649
1650 # Squid purging
1651 if ( $wgUseSquid ) {
1652 $urls = array(
1653 $this->mTitle->getInternalURL(),
1654 $this->mTitle->getInternalURL( 'history' )
1655 );
1656 foreach ( $linksTo as $linkTo ) {
1657 $urls[] = $linkTo->getInternalURL();
1658 }
1659
1660 $u = new SquidUpdate( $urls );
1661 array_push( $wgDeferredUpdateList, $u );
1662
1663 }
1664
1665 # Client and file cache invalidation
1666 Title::touchArray( $linksTo );
1667
1668 # Move article and history to the "archive" table
1669 $archiveTable = $dbw->tableName( 'archive' );
1670 $oldTable = $dbw->tableName( 'old' );
1671 $curTable = $dbw->tableName( 'cur' );
1672 $recentchangesTable = $dbw->tableName( 'recentchanges' );
1673 $linksTable = $dbw->tableName( 'links' );
1674 $brokenlinksTable = $dbw->tableName( 'brokenlinks' );
1675
1676 $dbw->insertSelect( 'archive', 'cur',
1677 array(
1678 'ar_namespace' => 'cur_namespace',
1679 'ar_title' => 'cur_title',
1680 'ar_text' => 'cur_text',
1681 'ar_comment' => 'cur_comment',
1682 'ar_user' => 'cur_user',
1683 'ar_user_text' => 'cur_user_text',
1684 'ar_timestamp' => 'cur_timestamp',
1685 'ar_minor_edit' => 'cur_minor_edit',
1686 'ar_flags' => 0,
1687 ), array(
1688 'cur_namespace' => $ns,
1689 'cur_title' => $t,
1690 ), $fname
1691 );
1692
1693 $dbw->insertSelect( 'archive', 'old',
1694 array(
1695 'ar_namespace' => 'old_namespace',
1696 'ar_title' => 'old_title',
1697 'ar_text' => 'old_text',
1698 'ar_comment' => 'old_comment',
1699 'ar_user' => 'old_user',
1700 'ar_user_text' => 'old_user_text',
1701 'ar_timestamp' => 'old_timestamp',
1702 'ar_minor_edit' => 'old_minor_edit',
1703 'ar_flags' => 'old_flags'
1704 ), array(
1705 'old_namespace' => $ns,
1706 'old_title' => $t,
1707 ), $fname
1708 );
1709
1710 # Now that it's safely backed up, delete it
1711
1712 $dbw->delete( 'cur', array( 'cur_namespace' => $ns, 'cur_title' => $t ), $fname );
1713 $dbw->delete( 'old', array( 'old_namespace' => $ns, 'old_title' => $t ), $fname );
1714 $dbw->delete( 'recentchanges', array( 'rc_namespace' => $ns, 'rc_title' => $t ), $fname );
1715
1716 # Finally, clean up the link tables
1717 $t = $this->mTitle->getPrefixedDBkey();
1718
1719 Article::onArticleDelete( $this->mTitle );
1720
1721 # Insert broken links
1722 $brokenLinks = array();
1723 foreach ( $linksTo as $titleObj ) {
1724 # Get article ID. Efficient because it was loaded into the cache by getLinksTo().
1725 $linkID = $titleObj->getArticleID();
1726 $brokenLinks[] = array( 'bl_from' => $linkID, 'bl_to' => $t );
1727 }
1728 $dbw->insert( 'brokenlinks', $brokenLinks, $fname, 'IGNORE' );
1729
1730 # Delete live links
1731 $dbw->delete( 'links', array( 'l_to' => $id ) );
1732 $dbw->delete( 'links', array( 'l_from' => $id ) );
1733 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
1734 $dbw->delete( 'brokenlinks', array( 'bl_from' => $id ) );
1735 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
1736
1737 # Log the deletion
1738 $log = new LogPage( 'delete' );
1739 $log->addEntry( 'delete', $this->mTitle, $reason );
1740
1741 # Clear the cached article id so the interface doesn't act like we exist
1742 $this->mTitle->resetArticleID( 0 );
1743 $this->mTitle->mArticleID = 0;
1744 return true;
1745 }
1746
1747 /**
1748 * Revert a modification
1749 */
1750 function rollback() {
1751 global $wgUser, $wgOut, $wgRequest;
1752 $fname = 'Article::rollback';
1753
1754 if ( ! $wgUser->isAllowed('rollback') ) {
1755 $wgOut->sysopRequired();
1756 return;
1757 }
1758 if ( wfReadOnly() ) {
1759 $wgOut->readOnlyPage( $this->getContent( true ) );
1760 return;
1761 }
1762 $dbw =& wfGetDB( DB_MASTER );
1763
1764 # Enhanced rollback, marks edits rc_bot=1
1765 $bot = $wgRequest->getBool( 'bot' );
1766
1767 # Replace all this user's current edits with the next one down
1768 $tt = $this->mTitle->getDBKey();
1769 $n = $this->mTitle->getNamespace();
1770
1771 # Get the last editor, lock table exclusively
1772 $s = $dbw->selectRow( 'cur',
1773 array( 'cur_id','cur_user','cur_user_text','cur_comment' ),
1774 array( 'cur_title' => $tt, 'cur_namespace' => $n ),
1775 $fname, 'FOR UPDATE'
1776 );
1777 if( $s === false ) {
1778 # Something wrong
1779 $wgOut->addHTML( wfMsg( 'notanarticle' ) );
1780 return;
1781 }
1782 $ut = $dbw->strencode( $s->cur_user_text );
1783 $uid = $s->cur_user;
1784 $pid = $s->cur_id;
1785
1786 $from = str_replace( '_', ' ', $wgRequest->getVal( 'from' ) );
1787 if( $from != $s->cur_user_text ) {
1788 $wgOut->setPageTitle(wfmsg('rollbackfailed'));
1789 $wgOut->addWikiText( wfMsg( 'alreadyrolled',
1790 htmlspecialchars( $this->mTitle->getPrefixedText()),
1791 htmlspecialchars( $from ),
1792 htmlspecialchars( $s->cur_user_text ) ) );
1793 if($s->cur_comment != '') {
1794 $wgOut->addHTML(
1795 wfMsg('editcomment',
1796 htmlspecialchars( $s->cur_comment ) ) );
1797 }
1798 return;
1799 }
1800
1801 # Get the last edit not by this guy
1802 $s = $dbw->selectRow( 'old',
1803 array( 'old_text','old_user','old_user_text','old_timestamp','old_flags' ),
1804 array(
1805 'old_namespace' => $n,
1806 'old_title' => $tt,
1807 "old_user <> {$uid} OR old_user_text <> '{$ut}'"
1808 ), $fname, array( 'FOR UPDATE', 'USE INDEX' => 'name_title_timestamp' )
1809 );
1810 if( $s === false ) {
1811 # Something wrong
1812 $wgOut->setPageTitle(wfMsg('rollbackfailed'));
1813 $wgOut->addHTML( wfMsg( 'cantrollback' ) );
1814 return;
1815 }
1816
1817 if ( $bot ) {
1818 # Mark all reverted edits as bot
1819 $dbw->update( 'recentchanges',
1820 array( /* SET */
1821 'rc_bot' => 1
1822 ), array( /* WHERE */
1823 'rc_user' => $uid,
1824 "rc_timestamp > '{$s->old_timestamp}'",
1825 ), $fname
1826 );
1827 }
1828
1829 # Save it!
1830 $newcomment = wfMsg( 'revertpage', $s->old_user_text, $from );
1831 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
1832 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1833 $wgOut->addHTML( '<h2>' . htmlspecialchars( $newcomment ) . "</h2>\n<hr />\n" );
1834 $this->updateArticle( Article::getRevisionText( $s ), $newcomment, 1, $this->mTitle->userIsWatching(), $bot );
1835 Article::onArticleEdit( $this->mTitle );
1836 $wgOut->returnToMain( false );
1837 }
1838
1839
1840 /**
1841 * Do standard deferred updates after page view
1842 * @private
1843 */
1844 function viewUpdates() {
1845 global $wgDeferredUpdateList;
1846
1847 if ( 0 != $this->getID() ) {
1848 global $wgDisableCounters;
1849 if( !$wgDisableCounters ) {
1850 Article::incViewCount( $this->getID() );
1851 $u = new SiteStatsUpdate( 1, 0, 0 );
1852 array_push( $wgDeferredUpdateList, $u );
1853 }
1854 }
1855
1856 # Update newtalk status if user is reading their own
1857 # talk page
1858
1859 global $wgUser;
1860
1861 if ($this->mTitle->getNamespace() == NS_USER_TALK &&
1862 $this->mTitle->getText() == $wgUser->getName())
1863 {
1864 $wgUser->setNewtalk(0);
1865 $wgUser->saveNewtalk();
1866 }
1867 }
1868
1869 /**
1870 * Do standard deferred updates after page edit.
1871 * Every 1000th edit, prune the recent changes table.
1872 * @private
1873 * @param string $text
1874 */
1875 function editUpdates( $text ) {
1876 global $wgDeferredUpdateList, $wgDBname, $wgMemc;
1877 global $wgMessageCache, $wgUser;
1878
1879 wfSeedRandom();
1880 if ( 0 == mt_rand( 0, 999 ) ) {
1881 $dbw =& wfGetDB( DB_MASTER );
1882 $cutoff = $dbw->timestamp( time() - ( 7 * 86400 ) );
1883 $sql = "DELETE FROM recentchanges WHERE rc_timestamp < '{$cutoff}'";
1884 $dbw->query( $sql );
1885 }
1886 $id = $this->getID();
1887 $title = $this->mTitle->getPrefixedDBkey();
1888 $shortTitle = $this->mTitle->getDBkey();
1889
1890 $adj = $this->mCountAdjustment;
1891
1892 if ( 0 != $id ) {
1893 $u = new LinksUpdate( $id, $title );
1894 array_push( $wgDeferredUpdateList, $u );
1895 $u = new SiteStatsUpdate( 0, 1, $adj );
1896 array_push( $wgDeferredUpdateList, $u );
1897 $u = new SearchUpdate( $id, $title, $text );
1898 array_push( $wgDeferredUpdateList, $u );
1899
1900 # If this is another user's talk page, save a
1901 # newtalk notification for them
1902
1903 if ($this->mTitle->getNamespace() == NS_USER_TALK &&
1904 $shortTitle != $wgUser->getName())
1905 {
1906 $other = User::newFromName($shortTitle);
1907 $other->setNewtalk(1);
1908 $other->saveNewtalk();
1909 }
1910
1911 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1912 $wgMessageCache->replace( $shortTitle, $text );
1913 }
1914 }
1915 }
1916
1917 /**
1918 * @todo document this function
1919 * @private
1920 * @param string $oldid Revision ID of this article revision
1921 */
1922 function setOldSubtitle( $oldid=0 ) {
1923 global $wgLang, $wgOut, $wgUser;
1924
1925 $td = $wgLang->timeanddate( $this->mTimestamp, true );
1926 $sk = $wgUser->getSkin();
1927 $lnk = $sk->makeKnownLinkObj ( $this->mTitle, wfMsg( 'currentrevisionlink' ) );
1928 $prevlink = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'previousrevision' ), 'direction=prev&oldid='.$oldid );
1929 $nextlink = $sk->makeKnownLinkObj( $this->mTitle, wfMsg( 'nextrevision' ), 'direction=next&oldid='.$oldid );
1930 $r = wfMsg( 'revisionasofwithlink', $td, $lnk, $prevlink, $nextlink );
1931 $wgOut->setSubtitle( $r );
1932 }
1933
1934 /**
1935 * This function is called right before saving the wikitext,
1936 * so we can do things like signatures and links-in-context.
1937 *
1938 * @param string $text
1939 */
1940 function preSaveTransform( $text ) {
1941 global $wgParser, $wgUser;
1942 return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
1943 }
1944
1945 /* Caching functions */
1946
1947 /**
1948 * checkLastModified returns true if it has taken care of all
1949 * output to the client that is necessary for this request.
1950 * (that is, it has sent a cached version of the page)
1951 */
1952 function tryFileCache() {
1953 static $called = false;
1954 if( $called ) {
1955 wfDebug( " tryFileCache() -- called twice!?\n" );
1956 return;
1957 }
1958 $called = true;
1959 if($this->isFileCacheable()) {
1960 $touched = $this->mTouched;
1961 $cache = new CacheManager( $this->mTitle );
1962 if($cache->isFileCacheGood( $touched )) {
1963 global $wgOut;
1964 wfDebug( " tryFileCache() - about to load\n" );
1965 $cache->loadFromFileCache();
1966 return true;
1967 } else {
1968 wfDebug( " tryFileCache() - starting buffer\n" );
1969 ob_start( array(&$cache, 'saveToFileCache' ) );
1970 }
1971 } else {
1972 wfDebug( " tryFileCache() - not cacheable\n" );
1973 }
1974 }
1975
1976 /**
1977 * Check if the page can be cached
1978 * @return bool
1979 */
1980 function isFileCacheable() {
1981 global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest;
1982 extract( $wgRequest->getValues( 'action', 'oldid', 'diff', 'redirect', 'printable' ) );
1983
1984 return $wgUseFileCache
1985 and (!$wgShowIPinHeader)
1986 and ($this->getID() != 0)
1987 and ($wgUser->getId() == 0)
1988 and (!$wgUser->getNewtalk())
1989 and ($this->mTitle->getNamespace() != NS_SPECIAL )
1990 and (empty( $action ) || $action == 'view')
1991 and (!isset($oldid))
1992 and (!isset($diff))
1993 and (!isset($redirect))
1994 and (!isset($printable))
1995 and (!$this->mRedirectedFrom);
1996 }
1997
1998 /**
1999 * Loads cur_touched and returns a value indicating if it should be used
2000 *
2001 */
2002 function checkTouched() {
2003 $fname = 'Article::checkTouched';
2004 $id = $this->getID();
2005 $dbr =& $this->getDB();
2006 $s = $dbr->selectRow( 'cur', array( 'cur_touched', 'cur_is_redirect' ),
2007 array( 'cur_id' => $id ), $fname, $this->getSelectOptions() );
2008 if( $s !== false ) {
2009 $this->mTouched = wfTimestamp(TS_MW,$s->cur_touched);
2010 return !$s->cur_is_redirect;
2011 } else {
2012 return false;
2013 }
2014 }
2015
2016 /**
2017 * Edit an article without doing all that other stuff
2018 *
2019 * @param string $text text submitted
2020 * @param string $comment comment submitted
2021 * @param integer $minor whereas it's a minor modification
2022 */
2023 function quickEdit( $text, $comment = '', $minor = 0 ) {
2024 global $wgUser;
2025 $fname = 'Article::quickEdit';
2026 wfProfileIn( $fname );
2027
2028 $dbw =& wfGetDB( DB_MASTER );
2029 $ns = $this->mTitle->getNamespace();
2030 $dbkey = $this->mTitle->getDBkey();
2031 $encDbKey = $dbw->strencode( $dbkey );
2032 $timestamp = wfTimestampNow();
2033
2034 # Save to history
2035 $dbw->insertSelect( 'old', 'cur',
2036 array(
2037 'old_namespace' => 'cur_namespace',
2038 'old_title' => 'cur_title',
2039 'old_text' => 'cur_text',
2040 'old_comment' => 'cur_comment',
2041 'old_user' => 'cur_user',
2042 'old_user_text' => 'cur_user_text',
2043 'old_timestamp' => 'cur_timestamp',
2044 'inverse_timestamp' => '99999999999999-cur_timestamp',
2045 ), array(
2046 'cur_namespace' => $ns,
2047 'cur_title' => $dbkey,
2048 ), $fname
2049 );
2050
2051 # Use the affected row count to determine if the article is new
2052 $numRows = $dbw->affectedRows();
2053
2054 # Make an array of fields to be inserted
2055 $fields = array(
2056 'cur_text' => $text,
2057 'cur_timestamp' => $timestamp,
2058 'cur_user' => $wgUser->getID(),
2059 'cur_user_text' => $wgUser->getName(),
2060 'inverse_timestamp' => wfInvertTimestamp( $timestamp ),
2061 'cur_comment' => $comment,
2062 'cur_is_redirect' => $this->isRedirect( $text ) ? 1 : 0,
2063 'cur_minor_edit' => intval($minor),
2064 'cur_touched' => $dbw->timestamp($timestamp),
2065 );
2066
2067 if ( $numRows ) {
2068 # Update article
2069 $fields['cur_is_new'] = 0;
2070 $dbw->update( 'cur', $fields, array( 'cur_namespace' => $ns, 'cur_title' => $dbkey ), $fname );
2071 } else {
2072 # Insert new article
2073 $fields['cur_is_new'] = 1;
2074 $fields['cur_namespace'] = $ns;
2075 $fields['cur_title'] = $dbkey;
2076 $fields['cur_random'] = $rand = wfRandom();
2077 $dbw->insert( 'cur', $fields, $fname );
2078 }
2079 wfProfileOut( $fname );
2080 }
2081
2082 /**
2083 * Used to increment the view counter
2084 *
2085 * @static
2086 * @param integer $id article id
2087 */
2088 function incViewCount( $id ) {
2089 $id = intval( $id );
2090 global $wgHitcounterUpdateFreq;
2091
2092 $dbw =& wfGetDB( DB_MASTER );
2093 $curTable = $dbw->tableName( 'cur' );
2094 $hitcounterTable = $dbw->tableName( 'hitcounter' );
2095 $acchitsTable = $dbw->tableName( 'acchits' );
2096
2097 if( $wgHitcounterUpdateFreq <= 1 ){ //
2098 $dbw->query( "UPDATE $curTable SET cur_counter = cur_counter + 1 WHERE cur_id = $id" );
2099 return;
2100 }
2101
2102 # Not important enough to warrant an error page in case of failure
2103 $oldignore = $dbw->ignoreErrors( true );
2104
2105 $dbw->query( "INSERT INTO $hitcounterTable (hc_id) VALUES ({$id})" );
2106
2107 $checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
2108 if( (rand() % $checkfreq != 0) or ($dbw->lastErrno() != 0) ){
2109 # Most of the time (or on SQL errors), skip row count check
2110 $dbw->ignoreErrors( $oldignore );
2111 return;
2112 }
2113
2114 $res = $dbw->query("SELECT COUNT(*) as n FROM $hitcounterTable");
2115 $row = $dbw->fetchObject( $res );
2116 $rown = intval( $row->n );
2117 if( $rown >= $wgHitcounterUpdateFreq ){
2118 wfProfileIn( 'Article::incViewCount-collect' );
2119 $old_user_abort = ignore_user_abort( true );
2120
2121 $dbw->query("LOCK TABLES $hitcounterTable WRITE");
2122 $dbw->query("CREATE TEMPORARY TABLE $acchitsTable TYPE=HEAP ".
2123 "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable ".
2124 'GROUP BY hc_id');
2125 $dbw->query("DELETE FROM $hitcounterTable");
2126 $dbw->query('UNLOCK TABLES');
2127 $dbw->query("UPDATE $curTable,$acchitsTable SET cur_counter=cur_counter + hc_n ".
2128 'WHERE cur_id = hc_id');
2129 $dbw->query("DROP TABLE $acchitsTable");
2130
2131 ignore_user_abort( $old_user_abort );
2132 wfProfileOut( 'Article::incViewCount-collect' );
2133 }
2134 $dbw->ignoreErrors( $oldignore );
2135 }
2136
2137 /**#@+
2138 * The onArticle*() functions are supposed to be a kind of hooks
2139 * which should be called whenever any of the specified actions
2140 * are done.
2141 *
2142 * This is a good place to put code to clear caches, for instance.
2143 *
2144 * This is called on page move and undelete, as well as edit
2145 * @static
2146 * @param $title_obj a title object
2147 */
2148
2149 function onArticleCreate($title_obj) {
2150 global $wgUseSquid, $wgDeferredUpdateList;
2151
2152 $titles = $title_obj->getBrokenLinksTo();
2153
2154 # Purge squid
2155 if ( $wgUseSquid ) {
2156 $urls = $title_obj->getSquidURLs();
2157 foreach ( $titles as $linkTitle ) {
2158 $urls[] = $linkTitle->getInternalURL();
2159 }
2160 $u = new SquidUpdate( $urls );
2161 array_push( $wgDeferredUpdateList, $u );
2162 }
2163
2164 # Clear persistent link cache
2165 LinkCache::linksccClearBrokenLinksTo( $title_obj->getPrefixedDBkey() );
2166 }
2167
2168 function onArticleDelete($title_obj) {
2169 LinkCache::linksccClearLinksTo( $title_obj->getArticleID() );
2170 }
2171 function onArticleEdit($title_obj) {
2172 LinkCache::linksccClearPage( $title_obj->getArticleID() );
2173 }
2174 /**#@-*/
2175
2176 /**
2177 * Info about this page
2178 */
2179 function info() {
2180 global $wgUser, $wgTitle, $wgOut, $wgAllowPageInfo;
2181 $fname = 'Article::info';
2182
2183 if ( !$wgAllowPageInfo ) {
2184 $wgOut->errorpage( 'nosuchaction', 'nosuchactiontext' );
2185 return;
2186 }
2187
2188 $dbr =& $this->getDB();
2189
2190 $basenamespace = $wgTitle->getNamespace() & (~1);
2191 $cur_clause = array( 'cur_title' => $wgTitle->getDBkey(), 'cur_namespace' => $basenamespace );
2192 $old_clause = array( 'old_title' => $wgTitle->getDBkey(), 'old_namespace' => $basenamespace );
2193 $wl_clause = array( 'wl_title' => $wgTitle->getDBkey(), 'wl_namespace' => $basenamespace );
2194 $fullTitle = $wgTitle->makeName($basenamespace, $wgTitle->getDBKey());
2195 $wgOut->setPagetitle( $fullTitle );
2196 $wgOut->setSubtitle( wfMsg( 'infosubtitle' ));
2197
2198 # first, see if the page exists at all.
2199 $exists = $dbr->selectField( 'cur', 'COUNT(*)', $cur_clause, $fname, $this->getSelectOptions() );
2200 if ($exists < 1) {
2201 $wgOut->addHTML( wfMsg('noarticletext') );
2202 } else {
2203 $numwatchers = $dbr->selectField( 'watchlist', 'COUNT(*)', $wl_clause, $fname,
2204 $this->getSelectOptions() );
2205 $wgOut->addHTML( "<ul><li>" . wfMsg("numwatchers", $numwatchers) . '</li>' );
2206 $old = $dbr->selectField( 'old', 'COUNT(*)', $old_clause, $fname, $this->getSelectOptions() );
2207 $wgOut->addHTML( "<li>" . wfMsg('numedits', $old + 1) . '</li>');
2208
2209 # to find number of distinct authors, we need to do some
2210 # funny stuff because of the cur/old table split:
2211 # - first, find the name of the 'cur' author
2212 # - then, find the number of *other* authors in 'old'
2213
2214 # find 'cur' author
2215 $cur_author = $dbr->selectField( 'cur', 'cur_user_text', $cur_clause, $fname,
2216 $this->getSelectOptions() );
2217
2218 # find number of 'old' authors excluding 'cur' author
2219 $authors = $dbr->selectField( 'old', 'COUNT(DISTINCT old_user_text)',
2220 $old_clause + array( 'old_user_text<>' . $dbr->addQuotes( $cur_author ) ), $fname,
2221 $this->getSelectOptions() ) + 1;
2222
2223 # now for the Talk page ...
2224 $cur_clause = array( 'cur_title' => $wgTitle->getDBkey(), 'cur_namespace' => $basenamespace+1 );
2225 $old_clause = array( 'old_title' => $wgTitle->getDBkey(), 'old_namespace' => $basenamespace+1 );
2226
2227 # does it exist?
2228 $exists = $dbr->selectField( 'cur', 'COUNT(*)', $cur_clause, $fname, $this->getSelectOptions() );
2229
2230 # number of edits
2231 if ($exists > 0) {
2232 $old = $dbr->selectField( 'old', 'COUNT(*)', $old_clause, $fname, $this->getSelectOptions() );
2233 $wgOut->addHTML( '<li>' . wfMsg("numtalkedits", $old + 1) . '</li>');
2234 }
2235 $wgOut->addHTML( '<li>' . wfMsg("numauthors", $authors) . '</li>' );
2236
2237 # number of authors
2238 if ($exists > 0) {
2239 $cur_author = $dbr->selectField( 'cur', 'cur_user_text', $cur_clause, $fname,
2240 $this->getSelectOptions() );
2241 $authors = $dbr->selectField( 'cur', 'COUNT(DISTINCT old_user_text)',
2242 $old_clause + array( 'old_user_text<>' . $dbr->addQuotes( $cur_author ) ),
2243 $fname, $this->getSelectOptions() );
2244
2245 $wgOut->addHTML( '<li>' . wfMsg('numtalkauthors', $authors) . '</li></ul>' );
2246 }
2247 }
2248 }
2249 }
2250
2251 ?>