MediaWiki: namespace memcached synchronisation
[lhc/web/wiklou.git] / includes / Article.php
1 <?
2 # Class representing a Wikipedia article and history.
3 # See design.doc for an overview.
4
5 # Note: edit user interface and cache support functions have been
6 # moved to separate EditPage and CacheManager classes.
7
8 /* CHECK MERGE @@@
9 TEST THIS @@@
10
11 * s/\$wgTitle/\$this->mTitle/ performed, many replacements
12 * mTitle variable added to class
13 */
14
15 include_once( "CacheManager.php" );
16
17 class Article {
18 /* private */ var $mContent, $mContentLoaded;
19 /* private */ var $mUser, $mTimestamp, $mUserText;
20 /* private */ var $mCounter, $mComment, $mCountAdjustment;
21 /* private */ var $mMinorEdit, $mRedirectedFrom;
22 /* private */ var $mTouched, $mFileCache, $mTitle;
23
24 function Article( &$title ) {
25 $this->mTitle =& $title;
26 $this->clear();
27 }
28
29 /* private */ function clear()
30 {
31 $this->mContentLoaded = false;
32 $this->mUser = $this->mCounter = -1; # Not loaded
33 $this->mRedirectedFrom = $this->mUserText =
34 $this->mTimestamp = $this->mComment = $this->mFileCache = "";
35 $this->mCountAdjustment = 0;
36 $this->mTouched = "19700101000000";
37 }
38
39 # Note that getContent/loadContent may follow redirects if
40 # not told otherwise, and so may cause a change to mTitle.
41
42 function getContent( $noredir = false )
43 {
44 global $action,$section,$count; # From query string
45 $fname = "Article::getContent";
46 wfProfileIn( $fname );
47
48 if ( 0 == $this->getID() ) {
49 if ( "edit" == $action ) {
50 wfProfileOut( $fname );
51 return ""; # was "newarticletext", now moved above the box)
52 }
53 wfProfileOut( $fname );
54 return wfMsg( "noarticletext" );
55 } else {
56 $this->loadContent( $noredir );
57
58 if(
59 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
60 ( $this->mTitle->getNamespace() == Namespace::getTalk( Namespace::getUser()) ) &&
61 preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$this->mTitle->getText()) &&
62 $action=="view"
63 )
64 {
65 wfProfileOut( $fname );
66 return $this->mContent . "\n" .wfMsg("anontalkpagetext"); }
67 else {
68 if($action=="edit") {
69 if($section!="") {
70 if($section=="new") {
71 wfProfileOut( $fname );
72 return "";
73 }
74
75 $secs=preg_split("/(^=+.*?=+|^<h[1-6].*?>.*?<\/h[1-6].*?>)/mi",
76 $this->mContent, -1,
77 PREG_SPLIT_DELIM_CAPTURE);
78 if($section==0) {
79 wfProfileOut( $fname );
80 return trim($secs[0]);
81 } else {
82 wfProfileOut( $fname );
83 return trim($secs[$section*2-1] . $secs[$section*2]);
84 }
85 }
86 }
87 wfProfileOut( $fname );
88 return $this->mContent;
89 }
90 }
91 }
92
93 function loadContent( $noredir = false )
94 {
95 global $wgOut, $wgMwRedir;
96 global $oldid, $redirect; # From query
97
98 if ( $this->mContentLoaded ) return;
99 $fname = "Article::loadContent";
100
101 # Pre-fill content with error message so that if something
102 # fails we'll have something telling us what we intended.
103
104 $t = $this->mTitle->getPrefixedText();
105 if ( isset( $oldid ) ) {
106 $oldid = IntVal( $oldid );
107 $t .= ",oldid={$oldid}";
108 }
109 if ( isset( $redirect ) ) {
110 $redirect = ($redirect == "no") ? "no" : "yes";
111 $t .= ",redirect={$redirect}";
112 }
113 $this->mContent = wfMsg( "missingarticle", $t );
114
115 if ( ! $oldid ) { # Retrieve current version
116 $id = $this->getID();
117 if ( 0 == $id ) return;
118
119 $sql = "SELECT " .
120 "cur_text,cur_timestamp,cur_user,cur_counter,cur_restrictions,cur_touched " .
121 "FROM cur WHERE cur_id={$id}";
122 wfDebug( "$sql\n" );
123 $res = wfQuery( $sql, DB_READ, $fname );
124 if ( 0 == wfNumRows( $res ) ) {
125 return;
126 }
127
128 $s = wfFetchObject( $res );
129 # If we got a redirect, follow it (unless we've been told
130 # not to by either the function parameter or the query
131 if ( ( "no" != $redirect ) && ( false == $noredir ) &&
132 ( $wgMwRedir->matchStart( $s->cur_text ) ) ) {
133 if ( preg_match( "/\\[\\[([^\\]\\|]+)[\\]\\|]/",
134 $s->cur_text, $m ) ) {
135 $rt = Title::newFromText( $m[1] );
136
137 # Gotta hand redirects to special pages differently:
138 # Fill the HTTP response "Location" header and ignore
139 # the rest of the page we're on.
140
141 if ( $rt->getInterwiki() != "" ) {
142 $wgOut->redirect( $rt->getFullURL() ) ;
143 return;
144 }
145 if ( $rt->getNamespace() == Namespace::getSpecial() ) {
146 $wgOut->redirect( wfLocalUrl(
147 $rt->getPrefixedURL() ) );
148 return;
149 }
150 $rid = $rt->getArticleID();
151 if ( 0 != $rid ) {
152 $sql = "SELECT cur_text,cur_timestamp,cur_user," .
153 "cur_counter,cur_restrictions,cur_touched FROM cur WHERE cur_id={$rid}";
154 $res = wfQuery( $sql, DB_READ, $fname );
155
156 if ( 0 != wfNumRows( $res ) ) {
157 $this->mRedirectedFrom = $this->mTitle->getPrefixedText();
158 $this->mTitle = $rt;
159 $s = wfFetchObject( $res );
160 }
161 }
162 }
163 }
164
165 $this->mContent = $s->cur_text;
166 $this->mUser = $s->cur_user;
167 $this->mCounter = $s->cur_counter;
168 $this->mTimestamp = $s->cur_timestamp;
169 $this->mTouched = $s->cur_touched;
170 $this->mTitle->mRestrictions = explode( ",", trim( $s->cur_restrictions ) );
171 $this->mTitle->mRestrictionsLoaded = true;
172 wfFreeResult( $res );
173 } else { # oldid set, retrieve historical version
174 $sql = "SELECT old_text,old_timestamp,old_user FROM old " .
175 "WHERE old_id={$oldid}";
176 $res = wfQuery( $sql, DB_READ, $fname );
177 if ( 0 == wfNumRows( $res ) ) { return; }
178
179 $s = wfFetchObject( $res );
180 $this->mContent = $s->old_text;
181 $this->mUser = $s->old_user;
182 $this->mCounter = 0;
183 $this->mTimestamp = $s->old_timestamp;
184 wfFreeResult( $res );
185 }
186 $this->mContentLoaded = true;
187 }
188
189 function getID() {
190 if( $this->mTitle ) {
191 return $this->mTitle->getArticleID();
192 } else {
193 return 0;
194 }
195 }
196
197 function getCount()
198 {
199 if ( -1 == $this->mCounter ) {
200 $id = $this->getID();
201 $this->mCounter = wfGetSQL( "cur", "cur_counter", "cur_id={$id}" );
202 }
203 return $this->mCounter;
204 }
205
206 # Would the given text make this article a "good" article (i.e.,
207 # suitable for including in the article count)?
208
209 function isCountable( $text )
210 {
211 global $wgUseCommaCount, $wgMwRedir;
212
213 if ( 0 != $this->mTitle->getNamespace() ) { return 0; }
214 if ( $wgMwRedir->matchStart( $text ) ) { return 0; }
215 $token = ($wgUseCommaCount ? "," : "[[" );
216 if ( false === strstr( $text, $token ) ) { return 0; }
217 return 1;
218 }
219
220 # Load the field related to the last edit time of the article.
221 # This isn't necessary for all uses, so it's only done if needed.
222
223 /* private */ function loadLastEdit()
224 {
225 global $wgOut;
226 if ( -1 != $this->mUser ) return;
227
228 $sql = "SELECT cur_user,cur_user_text,cur_timestamp," .
229 "cur_comment,cur_minor_edit FROM cur WHERE " .
230 "cur_id=" . $this->getID();
231 $res = wfQuery( $sql, DB_READ, "Article::loadLastEdit" );
232
233 if ( wfNumRows( $res ) > 0 ) {
234 $s = wfFetchObject( $res );
235 $this->mUser = $s->cur_user;
236 $this->mUserText = $s->cur_user_text;
237 $this->mTimestamp = $s->cur_timestamp;
238 $this->mComment = $s->cur_comment;
239 $this->mMinorEdit = $s->cur_minor_edit;
240 }
241 }
242
243 function getTimestamp()
244 {
245 $this->loadLastEdit();
246 return $this->mTimestamp;
247 }
248
249 function getUser()
250 {
251 $this->loadLastEdit();
252 return $this->mUser;
253 }
254
255 function getUserText()
256 {
257 $this->loadLastEdit();
258 return $this->mUserText;
259 }
260
261 function getComment()
262 {
263 $this->loadLastEdit();
264 return $this->mComment;
265 }
266
267 function getMinorEdit()
268 {
269 $this->loadLastEdit();
270 return $this->mMinorEdit;
271 }
272
273 # This is the default action of the script: just view the page of
274 # the given title.
275
276 function view()
277 {
278 global $wgUser, $wgOut, $wgLang;
279 global $oldid, $diff; # From query
280 global $wgLinkCache, $IP;
281 $fname = "Article::view";
282 wfProfileIn( $fname );
283
284 $wgOut->setArticleFlag( true );
285 $wgOut->setRobotpolicy( "index,follow" );
286
287 # If we got diff and oldid in the query, we want to see a
288 # diff page instead of the article.
289
290 if ( isset( $diff ) ) {
291 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
292 $de = new DifferenceEngine( $oldid, $diff );
293 $de->showDiffPage();
294 wfProfileOut( $fname );
295 return;
296 }
297
298 if ( !isset( $oldid ) ) {
299 if( $this->checkTouched() ) {
300 $wgOut->checkLastModified( $this->mTouched );
301 $this->tryFileCache();
302 }
303 }
304
305 $text = $this->getContent(); # May change mTitle
306 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
307 $wgOut->setHTMLTitle( $this->mTitle->getPrefixedText() .
308 " - " . wfMsg( "wikititlesuffix" ) );
309
310 # We're looking at an old revision
311
312 if ( $oldid ) {
313 $this->setOldSubtitle();
314 $wgOut->setRobotpolicy( "noindex,follow" );
315 }
316 if ( "" != $this->mRedirectedFrom ) {
317 $sk = $wgUser->getSkin();
318 $redir = $sk->makeKnownLink( $this->mRedirectedFrom, "",
319 "redirect=no" );
320 $s = wfMsg( "redirectedfrom", $redir );
321 $wgOut->setSubtitle( $s );
322 }
323 $wgLinkCache->preFill( $this->mTitle );
324 $wgOut->addWikiText( $text );
325
326 $this->viewUpdates();
327 wfProfileOut( $fname );
328 }
329
330 # Theoretically we could defer these whole insert and update
331 # functions for after display, but that's taking a big leap
332 # of faith, and we want to be able to report database
333 # errors at some point.
334
335 /* private */ function insertNewArticle( $text, $summary, $isminor, $watchthis )
336 {
337 global $wgOut, $wgUser, $wgLinkCache, $wgMwRedir;
338 global $wgEnablePersistentLC;
339
340 $fname = "Article::insertNewArticle";
341
342 $this->mCountAdjustment = $this->isCountable( $text );
343
344 $ns = $this->mTitle->getNamespace();
345 $ttl = $this->mTitle->getDBkey();
346 $text = $this->preSaveTransform( $text );
347 if ( $wgMwRedir->matchStart( $text ) ) { $redir = 1; }
348 else { $redir = 0; }
349
350 $now = wfTimestampNow();
351 $won = wfInvertTimestamp( $now );
352 wfSeedRandom();
353 $rand = number_format( mt_rand() / mt_getrandmax(), 12, ".", "" );
354 $sql = "INSERT INTO cur (cur_namespace,cur_title,cur_text," .
355 "cur_comment,cur_user,cur_timestamp,cur_minor_edit,cur_counter," .
356 "cur_restrictions,cur_user_text,cur_is_redirect," .
357 "cur_is_new,cur_random,cur_touched,inverse_timestamp) VALUES ({$ns},'" . wfStrencode( $ttl ) . "', '" .
358 wfStrencode( $text ) . "', '" .
359 wfStrencode( $summary ) . "', '" .
360 $wgUser->getID() . "', '{$now}', " .
361 ( $isminor ? 1 : 0 ) . ", 0, '', '" .
362 wfStrencode( $wgUser->getName() ) . "', $redir, 1, $rand, '{$now}', '{$won}')";
363 $res = wfQuery( $sql, DB_WRITE, $fname );
364
365 $newid = wfInsertId();
366 $this->mTitle->resetArticleID( $newid );
367
368 if ( $wgEnablePersistentLC ) {
369 // Purge related entries in links cache on new page, to heal broken links
370 $ptitle = wfStrencode( $ttl );
371 wfQuery("DELETE linkscc FROM linkscc,brokenlinks ".
372 "WHERE lcc_pageid=bl_from AND bl_to='{$ptitle}'", DB_WRITE);
373 }
374
375 $sql = "INSERT INTO recentchanges (rc_timestamp,rc_cur_time," .
376 "rc_namespace,rc_title,rc_new,rc_minor,rc_cur_id,rc_user," .
377 "rc_user_text,rc_comment,rc_this_oldid,rc_last_oldid,rc_bot) VALUES (" .
378 "'{$now}','{$now}',{$ns},'" . wfStrencode( $ttl ) . "',1," .
379 ( $isminor ? 1 : 0 ) . ",{$newid}," . $wgUser->getID() . ",'" .
380 wfStrencode( $wgUser->getName() ) . "','" .
381 wfStrencode( $summary ) . "',0,0," .
382 ( $wgUser->isBot() ? 1 : 0 ) . ")";
383 wfQuery( $sql, DB_WRITE, $fname );
384 if ($watchthis) {
385 if(!$this->mTitle->userIsWatching()) $this->watch();
386 } else {
387 if ( $this->mTitle->userIsWatching() ) {
388 $this->unwatch();
389 }
390 }
391
392 # The talk page isn't in the regular link tables, so we need to update manually:
393 $talkns = $ns ^ 1; # talk -> normal; normal -> talk
394 $sql = "UPDATE cur set cur_touched='$now' WHERE cur_namespace=$talkns AND cur_title='" . wfStrencode( $ttl ) . "'";
395 wfQuery( $sql, DB_WRITE );
396
397 $this->showArticle( $text, wfMsg( "newarticle" ) );
398 }
399
400 function updateArticle( $text, $summary, $minor, $watchthis, $section = "")
401 {
402 global $wgOut, $wgUser, $wgLinkCache;
403 global $wgDBtransactions, $wgMwRedir;
404 $fname = "Article::updateArticle";
405
406 $this->loadLastEdit();
407
408 // insert updated section into old text if we have only edited part
409 // of the article
410 if ($section != "") {
411 $oldtext=$this->getContent();
412 if($section=="new") {
413 if($summary) $subject="== {$summary} ==\n\n";
414 $text=$oldtext."\n\n".$subject.$text;
415 } else {
416 $secs=preg_split("/(^=+.*?=+|^<h[1-6].*?>.*?<\/h[1-6].*?>)/mi",
417 $oldtext,-1,PREG_SPLIT_DELIM_CAPTURE);
418 $secs[$section*2]=$text."\n\n"; // replace with edited
419 if($section) { $secs[$section*2-1]=""; } // erase old headline
420 $text=join("",$secs);
421 }
422 }
423 if ( $this->mMinorEdit ) { $me1 = 1; } else { $me1 = 0; }
424 if ( $minor ) { $me2 = 1; } else { $me2 = 0; }
425 if ( preg_match( "/^((" . $wgMwRedir->getBaseRegex() . ")[^\\n]+)/i", $text, $m ) ) {
426 $redir = 1;
427 $text = $m[1] . "\n"; # Remove all content but redirect
428 }
429 else { $redir = 0; }
430
431 $text = $this->preSaveTransform( $text );
432
433 # Update article, but only if changed.
434
435 if( $wgDBtransactions ) {
436 $sql = "BEGIN";
437 wfQuery( $sql, DB_WRITE );
438 }
439 $oldtext = $this->getContent( true );
440
441 if ( 0 != strcmp( $text, $oldtext ) ) {
442 $this->mCountAdjustment = $this->isCountable( $text )
443 - $this->isCountable( $oldtext );
444
445 $now = wfTimestampNow();
446 $won = wfInvertTimestamp( $now );
447 $sql = "UPDATE cur SET cur_text='" . wfStrencode( $text ) .
448 "',cur_comment='" . wfStrencode( $summary ) .
449 "',cur_minor_edit={$me2}, cur_user=" . $wgUser->getID() .
450 ",cur_timestamp='{$now}',cur_user_text='" .
451 wfStrencode( $wgUser->getName() ) .
452 "',cur_is_redirect={$redir}, cur_is_new=0, cur_touched='{$now}', inverse_timestamp='{$won}' " .
453 "WHERE cur_id=" . $this->getID() .
454 " AND cur_timestamp='" . $this->getTimestamp() . "'";
455 $res = wfQuery( $sql, DB_WRITE, $fname );
456
457 if( wfAffectedRows() == 0 ) {
458 /* Belated edit conflict! Run away!! */
459 return false;
460 }
461
462 $sql = "INSERT INTO old (old_namespace,old_title,old_text," .
463 "old_comment,old_user,old_user_text,old_timestamp," .
464 "old_minor_edit,inverse_timestamp) VALUES (" .
465 $this->mTitle->getNamespace() . ", '" .
466 wfStrencode( $this->mTitle->getDBkey() ) . "', '" .
467 wfStrencode( $oldtext ) . "', '" .
468 wfStrencode( $this->getComment() ) . "', " .
469 $this->getUser() . ", '" .
470 wfStrencode( $this->getUserText() ) . "', '" .
471 $this->getTimestamp() . "', " . $me1 . ", '" .
472 wfInvertTimestamp( $this->getTimestamp() ) . "')";
473 $res = wfQuery( $sql, DB_WRITE, $fname );
474 $oldid = wfInsertID( $res );
475
476 $sql = "INSERT INTO recentchanges (rc_timestamp,rc_cur_time," .
477 "rc_namespace,rc_title,rc_new,rc_minor,rc_bot,rc_cur_id,rc_user," .
478 "rc_user_text,rc_comment,rc_this_oldid,rc_last_oldid) VALUES (" .
479 "'{$now}','{$now}'," . $this->mTitle->getNamespace() . ",'" .
480 wfStrencode( $this->mTitle->getDBkey() ) . "',0,{$me2}," .
481 ( $wgUser->isBot() ? 1 : 0 ) . "," .
482 $this->getID() . "," . $wgUser->getID() . ",'" .
483 wfStrencode( $wgUser->getName() ) . "','" .
484 wfStrencode( $summary ) . "',0,{$oldid})";
485 wfQuery( $sql, DB_WRITE, $fname );
486
487 $sql = "UPDATE recentchanges SET rc_this_oldid={$oldid} " .
488 "WHERE rc_namespace=" . $this->mTitle->getNamespace() . " AND " .
489 "rc_title='" . wfStrencode( $this->mTitle->getDBkey() ) . "' AND " .
490 "rc_timestamp='" . $this->getTimestamp() . "'";
491 wfQuery( $sql, DB_WRITE, $fname );
492
493 $sql = "UPDATE recentchanges SET rc_cur_time='{$now}' " .
494 "WHERE rc_cur_id=" . $this->getID();
495 wfQuery( $sql, DB_WRITE, $fname );
496
497 global $wgEnablePersistentLC;
498 if ( $wgEnablePersistentLC ) {
499 // Purge link cache for this page
500 $pageid=$this->getID();
501 wfQuery("DELETE FROM linkscc WHERE lcc_pageid='{$pageid}'", DB_WRITE);
502 }
503 }
504
505 if( $wgDBtransactions ) {
506 $sql = "COMMIT";
507 wfQuery( $sql, DB_WRITE );
508 }
509
510 if ($watchthis) {
511 if (!$this->mTitle->userIsWatching()) $this->watch();
512 } else {
513 if ( $this->mTitle->userIsWatching() ) {
514 $this->unwatch();
515 }
516 }
517
518 $this->showArticle( $text, wfMsg( "updated" ) );
519 return true;
520 }
521
522 # After we've either updated or inserted the article, update
523 # the link tables and redirect to the new page.
524
525 function showArticle( $text, $subtitle )
526 {
527 global $wgOut, $wgUser, $wgLinkCache, $wgUseBetterLinksUpdate;
528 global $wgMwRedir;
529
530 $wgLinkCache = new LinkCache();
531
532 # Get old version of link table to allow incremental link updates
533 if ( $wgUseBetterLinksUpdate ) {
534 $wgLinkCache->preFill( $this->mTitle );
535 $wgLinkCache->clear();
536 }
537
538 # Now update the link cache by parsing the text
539 $wgOut = new OutputPage();
540 $wgOut->addWikiText( $text );
541
542 $this->editUpdates( $text );
543 if( $wgMwRedir->matchStart( $text ) )
544 $r = "redirect=no";
545 else
546 $r = "";
547 $wgOut->redirect( wfLocalUrl( $this->mTitle->getPrefixedURL(), $r ) );
548 }
549
550 # Add this page to my watchlist
551
552 function watch( $add = true )
553 {
554 global $wgUser, $wgOut, $wgLang;
555 global $wgDeferredUpdateList;
556
557 if ( 0 == $wgUser->getID() ) {
558 $wgOut->errorpage( "watchnologin", "watchnologintext" );
559 return;
560 }
561 if ( wfReadOnly() ) {
562 $wgOut->readOnlyPage();
563 return;
564 }
565 if( $add )
566 $wgUser->addWatch( $this->mTitle );
567 else
568 $wgUser->removeWatch( $this->mTitle );
569
570 $wgOut->setPagetitle( wfMsg( $add ? "addedwatch" : "removedwatch" ) );
571 $wgOut->setRobotpolicy( "noindex,follow" );
572
573 $sk = $wgUser->getSkin() ;
574 $link = $sk->makeKnownLink ( $this->mTitle->getPrefixedText() ) ;
575
576 if($add)
577 $text = wfMsg( "addedwatchtext", $link );
578 else
579 $text = wfMsg( "removedwatchtext", $link );
580 $wgOut->addHTML( $text );
581
582 $up = new UserUpdate();
583 array_push( $wgDeferredUpdateList, $up );
584
585 $wgOut->returnToMain( false );
586 }
587
588 function unwatch()
589 {
590 $this->watch( false );
591 }
592
593 # This shares a lot of issues (and code) with Recent Changes
594
595 function history()
596 {
597 global $wgUser, $wgOut, $wgLang, $offset, $limit;
598
599 # If page hasn't changed, client can cache this
600
601 $wgOut->checkLastModified( $this->getTimestamp() );
602 $fname = "Article::history";
603 wfProfileIn( $fname );
604
605 $wgOut->setPageTitle( $this->mTitle->getPRefixedText() );
606 $wgOut->setSubtitle( wfMsg( "revhistory" ) );
607 $wgOut->setArticleFlag( false );
608 $wgOut->setRobotpolicy( "noindex,nofollow" );
609
610 if( $this->mTitle->getArticleID() == 0 ) {
611 $wgOut->addHTML( wfMsg( "nohistory" ) );
612 wfProfileOut( $fname );
613 return;
614 }
615
616 $offset = (int)$offset;
617 $limit = (int)$limit;
618 if( $limit == 0 ) $limit = 50;
619 $namespace = $this->mTitle->getNamespace();
620 $title = $this->mTitle->getText();
621 $sql = "SELECT old_id,old_user," .
622 "old_comment,old_user_text,old_timestamp,old_minor_edit ".
623 "FROM old USE INDEX (name_title_timestamp) " .
624 "WHERE old_namespace={$namespace} AND " .
625 "old_title='" . wfStrencode( $this->mTitle->getDBkey() ) . "' " .
626 "ORDER BY inverse_timestamp LIMIT $offset, $limit";
627 $res = wfQuery( $sql, DB_READ, "Article::history" );
628
629 $revs = wfNumRows( $res );
630 if( $this->mTitle->getArticleID() == 0 ) {
631 $wgOut->addHTML( wfMsg( "nohistory" ) );
632 wfProfileOut( $fname );
633 return;
634 }
635
636 $sk = $wgUser->getSkin();
637 $numbar = wfViewPrevNext(
638 $offset, $limit,
639 $this->mTitle->getPrefixedText(),
640 "action=history" );
641 $s = $numbar;
642 $s .= $sk->beginHistoryList();
643
644 if($offset == 0 )
645 $s .= $sk->historyLine( $this->getTimestamp(), $this->getUser(),
646 $this->getUserText(), $namespace,
647 $title, 0, $this->getComment(),
648 ( $this->getMinorEdit() > 0 ) );
649
650 $revs = wfNumRows( $res );
651 while ( $line = wfFetchObject( $res ) ) {
652 $s .= $sk->historyLine( $line->old_timestamp, $line->old_user,
653 $line->old_user_text, $namespace,
654 $title, $line->old_id,
655 $line->old_comment, ( $line->old_minor_edit > 0 ) );
656 }
657 $s .= $sk->endHistoryList();
658 $s .= $numbar;
659 $wgOut->addHTML( $s );
660 wfProfileOut( $fname );
661 }
662
663 function protect( $limit = "sysop" )
664 {
665 global $wgUser, $wgOut;
666
667 if ( ! $wgUser->isSysop() ) {
668 $wgOut->sysopRequired();
669 return;
670 }
671 if ( wfReadOnly() ) {
672 $wgOut->readOnlyPage();
673 return;
674 }
675 $id = $this->mTitle->getArticleID();
676 if ( 0 == $id ) {
677 $wgOut->fatalEror( wfMsg( "badarticleerror" ) );
678 return;
679 }
680 $sql = "UPDATE cur SET cur_touched='" . wfTimestampNow() . "'," .
681 "cur_restrictions='{$limit}' WHERE cur_id={$id}";
682 wfQuery( $sql, DB_WRITE, "Article::protect" );
683
684 $log = new LogPage( wfMsg( "protectlogpage" ), wfMsg( "protectlogtext" ) );
685 if ( $limit === "" ) {
686 $log->addEntry( wfMsg( "unprotectedarticle", $this->mTitle->getPrefixedText() ), "" );
687 } else {
688 $log->addEntry( wfMsg( "protectedarticle", $this->mTitle->getPrefixedText() ), "" );
689 }
690 $wgOut->redirect( wfLocalUrl( $this->mTitle->getPrefixedURL() ) );
691 }
692
693 function unprotect()
694 {
695 return $this->protect( "" );
696 }
697
698 function delete()
699 {
700 global $wgUser, $wgOut;
701 global $wpConfirm, $wpReason, $image, $oldimage;
702
703 # This code desperately needs to be totally rewritten
704
705 if ( ( ! $wgUser->isSysop() ) ) {
706 $wgOut->sysopRequired();
707 return;
708 }
709 if ( wfReadOnly() ) {
710 $wgOut->readOnlyPage();
711 return;
712 }
713
714 # Better double-check that it hasn't been deleted yet!
715 $wgOut->setPagetitle( wfMsg( "confirmdelete" ) );
716 if ( ( "" == trim( $this->mTitle->getText() ) )
717 or ( $this->mTitle->getArticleId() == 0 ) ) {
718 $wgOut->fatalError( wfMsg( "cannotdelete" ) );
719 return;
720 }
721
722 if ( $_POST["wpConfirm"] ) {
723 $this->doDelete();
724 return;
725 }
726
727 # determine whether this page has earlier revisions
728 # and insert a warning if it does
729 # we select the text because it might be useful below
730 $ns = $this->mTitle->getNamespace();
731 $title = $this->mTitle->getDBkey();
732 $etitle = wfStrencode( $title );
733 $sql = "SELECT old_text FROM old WHERE old_namespace=$ns and old_title='$etitle' ORDER BY inverse_timestamp LIMIT 1";
734 $res = wfQuery( $sql, DB_READ, $fname );
735 if( ($old=wfFetchObject($res)) && !$wpConfirm ) {
736 $skin=$wgUser->getSkin();
737 $wgOut->addHTML("<B>".wfMsg("historywarning"));
738 $wgOut->addHTML( $skin->historyLink() ."</B><P>");
739 }
740
741 $sql="SELECT cur_text FROM cur WHERE cur_namespace=$ns and cur_title='$etitle'";
742 $res=wfQuery($sql, DB_READ, $fname);
743 if( ($s=wfFetchObject($res))) {
744
745 # if this is a mini-text, we can paste part of it into the deletion reason
746
747 #if this is empty, an earlier revision may contain "useful" text
748 if($s->cur_text!="") {
749 $text=$s->cur_text;
750 } else {
751 if($old) {
752 $text=$old->old_text;
753 $blanked=1;
754 }
755
756 }
757
758 $length=strlen($text);
759
760 # this should not happen, since it is not possible to store an empty, new
761 # page. Let's insert a standard text in case it does, though
762 if($length==0 && !$wpReason) { $wpReason=wfmsg("exblank");}
763
764
765 if($length < 500 && !$wpReason) {
766
767 # comment field=255, let's grep the first 150 to have some user
768 # space left
769 $text=substr($text,0,150);
770 # let's strip out newlines and HTML tags
771 $text=preg_replace("/\"/","'",$text);
772 $text=preg_replace("/\</","&lt;",$text);
773 $text=preg_replace("/\>/","&gt;",$text);
774 $text=preg_replace("/[\n\r]/","",$text);
775 if(!$blanked) {
776 $wpReason=wfMsg("excontent"). " '".$text;
777 } else {
778 $wpReason=wfMsg("exbeforeblank") . " '".$text;
779 }
780 if($length>150) { $wpReason .= "..."; } # we've only pasted part of the text
781 $wpReason.="'";
782 }
783 }
784
785 return $this->confirmDelete();
786 }
787
788 function confirmDelete( $par = "" )
789 {
790 global $wgOut;
791 global $wpReason;
792
793 wfDebug( "Article::confirmDelete\n" );
794
795 $sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
796 $wgOut->setSubtitle( wfMsg( "deletesub", $sub ) );
797 $wgOut->setRobotpolicy( "noindex,nofollow" );
798 $wgOut->addWikiText( wfMsg( "confirmdeletetext" ) );
799
800 $t = $this->mTitle->getPrefixedURL();
801
802 $formaction = wfEscapeHTML( wfLocalUrl( $t, "action=delete" . $par ) );
803 $confirm = wfMsg( "confirm" );
804 $check = wfMsg( "confirmcheck" );
805 $delcom = wfMsg( "deletecomment" );
806
807 $wgOut->addHTML( "
808 <form id=\"deleteconfirm\" method=\"post\" action=\"{$formaction}\">
809 <table border=0><tr><td align=right>
810 {$delcom}:</td><td align=left>
811 <input type=text size=60 name=\"wpReason\" value=\"" . htmlspecialchars( $wpReason ) . "\">
812 </td></tr><tr><td>&nbsp;</td></tr>
813 <tr><td align=right>
814 <input type=checkbox name=\"wpConfirm\" value='1' id=\"wpConfirm\">
815 </td><td><label for=\"wpConfirm\">{$check}</label></td>
816 </tr><tr><td>&nbsp;</td><td>
817 <input type=submit name=\"wpConfirmB\" value=\"{$confirm}\">
818 </td></tr></table></form>\n" );
819
820 $wgOut->returnToMain( false );
821 }
822
823 function doDelete()
824 {
825 global $wgOut, $wgUser, $wgLang;
826 global $wpReason;
827 $fname = "Article::doDelete";
828 wfDebug( "$fname\n" );
829
830 $this->doDeleteArticle( $this->mTitle );
831 $deleted = $this->mTitle->getPrefixedText();
832
833 $wgOut->setPagetitle( wfMsg( "actioncomplete" ) );
834 $wgOut->setRobotpolicy( "noindex,nofollow" );
835
836 $sk = $wgUser->getSkin();
837 $loglink = $sk->makeKnownLink( $wgLang->getNsText(
838 Namespace::getWikipedia() ) .
839 ":" . wfMsg( "dellogpage" ), wfMsg( "deletionlog" ) );
840
841 $text = wfMsg( "deletedtext", $deleted, $loglink );
842
843 $wgOut->addHTML( "<p>" . $text );
844 $wgOut->returnToMain( false );
845 }
846
847 function doDeleteArticle( $title )
848 {
849 global $wgUser, $wgOut, $wgLang, $wpReason, $wgDeferredUpdateList,
850 $wgEnablePersistentLC;
851
852 $fname = "Article::doDeleteArticle";
853 wfDebug( "$fname\n" );
854
855 $ns = $title->getNamespace();
856 $t = wfStrencode( $title->getDBkey() );
857 $id = $title->getArticleID();
858
859 if ( "" == $t ) {
860 $wgOut->fatalError( wfMsg( "cannotdelete" ) );
861 return;
862 }
863
864 $u = new SiteStatsUpdate( 0, 1, -$this->isCountable( $this->getContent( true ) ) );
865 array_push( $wgDeferredUpdateList, $u );
866
867 # Move article and history to the "archive" table
868 $sql = "INSERT INTO archive (ar_namespace,ar_title,ar_text," .
869 "ar_comment,ar_user,ar_user_text,ar_timestamp,ar_minor_edit," .
870 "ar_flags) SELECT cur_namespace,cur_title,cur_text,cur_comment," .
871 "cur_user,cur_user_text,cur_timestamp,cur_minor_edit,0 FROM cur " .
872 "WHERE cur_namespace={$ns} AND cur_title='{$t}'";
873 wfQuery( $sql, DB_WRITE, $fname );
874
875 $sql = "INSERT INTO archive (ar_namespace,ar_title,ar_text," .
876 "ar_comment,ar_user,ar_user_text,ar_timestamp,ar_minor_edit," .
877 "ar_flags) SELECT old_namespace,old_title,old_text,old_comment," .
878 "old_user,old_user_text,old_timestamp,old_minor_edit,old_flags " .
879 "FROM old WHERE old_namespace={$ns} AND old_title='{$t}'";
880 wfQuery( $sql, DB_WRITE, $fname );
881
882 # Now that it's safely backed up, delete it
883
884 $sql = "DELETE FROM cur WHERE cur_namespace={$ns} AND " .
885 "cur_title='{$t}'";
886 wfQuery( $sql, DB_WRITE, $fname );
887
888 $sql = "DELETE FROM old WHERE old_namespace={$ns} AND " .
889 "old_title='{$t}'";
890 wfQuery( $sql, DB_WRITE, $fname );
891
892 $sql = "DELETE FROM recentchanges WHERE rc_namespace={$ns} AND " .
893 "rc_title='{$t}'";
894 wfQuery( $sql, DB_WRITE, $fname );
895
896 # Finally, clean up the link tables
897
898 if ( 0 != $id ) {
899
900 $t = wfStrencode( $title->getPrefixedDBkey() );
901
902 if ( $wgEnablePersistentLC ) {
903 // Purge related entries in links cache on delete,
904 wfQuery("DELETE linkscc FROM linkscc,links ".
905 "WHERE lcc_title=links.l_from AND l_to={$id}", DB_WRITE);
906 wfQuery("DELETE FROM linkscc WHERE lcc_title='{$t}'", DB_WRITE);
907 }
908
909 $sql = "SELECT l_from FROM links WHERE l_to={$id}";
910 $res = wfQuery( $sql, DB_READ, $fname );
911
912 $sql = "INSERT INTO brokenlinks (bl_from,bl_to) VALUES ";
913 $now = wfTimestampNow();
914 $sql2 = "UPDATE cur SET cur_touched='{$now}' WHERE cur_id IN (";
915 $first = true;
916
917 while ( $s = wfFetchObject( $res ) ) {
918 $nt = Title::newFromDBkey( $s->l_from );
919 $lid = $nt->getArticleID();
920
921 if ( ! $first ) { $sql .= ","; $sql2 .= ","; }
922 $first = false;
923 $sql .= "({$lid},'{$t}')";
924 $sql2 .= "{$lid}";
925 }
926 $sql2 .= ")";
927 if ( ! $first ) {
928 wfQuery( $sql, DB_WRITE, $fname );
929 wfQuery( $sql2, DB_WRITE, $fname );
930 }
931 wfFreeResult( $res );
932
933 $sql = "DELETE FROM links WHERE l_to={$id}";
934 wfQuery( $sql, DB_WRITE, $fname );
935
936 $sql = "DELETE FROM links WHERE l_from='{$t}'";
937 wfQuery( $sql, DB_WRITE, $fname );
938
939 $sql = "DELETE FROM imagelinks WHERE il_from='{$t}'";
940 wfQuery( $sql, DB_WRITE, $fname );
941
942 $sql = "DELETE FROM brokenlinks WHERE bl_from={$id}";
943 wfQuery( $sql, DB_WRITE, $fname );
944 }
945
946 $log = new LogPage( wfMsg( "dellogpage" ), wfMsg( "dellogpagetext" ) );
947 $art = $title->getPrefixedText();
948 $wpReason = wfCleanQueryVar( $wpReason );
949 $log->addEntry( wfMsg( "deletedarticle", $art ), $wpReason );
950
951 # Clear the cached article id so the interface doesn't act like we exist
952 $this->mTitle->resetArticleID( 0 );
953 $this->mTitle->mArticleID = 0;
954 }
955
956 function rollback()
957 {
958 global $wgUser, $wgLang, $wgOut, $from;
959
960 if ( ! $wgUser->isSysop() ) {
961 $wgOut->sysopRequired();
962 return;
963 }
964 if ( wfReadOnly() ) {
965 $wgOut->readOnlyPage( $this->getContent() );
966 return;
967 }
968
969 # Replace all this user's current edits with the next one down
970 $tt = wfStrencode( $this->mTitle->getDBKey() );
971 $n = $this->mTitle->getNamespace();
972
973 # Get the last editor
974 $sql = "SELECT cur_id,cur_user,cur_user_text,cur_comment FROM cur WHERE cur_title='{$tt}' AND cur_namespace={$n}";
975 $res = wfQuery( $sql, DB_READ );
976 if( ($x = wfNumRows( $res )) != 1 ) {
977 # Something wrong
978 $wgOut->addHTML( wfMsg( "notanarticle" ) );
979 return;
980 }
981 $s = wfFetchObject( $res );
982 $ut = wfStrencode( $s->cur_user_text );
983 $uid = $s->cur_user;
984 $pid = $s->cur_id;
985
986 $from = str_replace( '_', ' ', wfCleanQueryVar( $from ) );
987 if( $from != $s->cur_user_text ) {
988 $wgOut->setPageTitle(wfmsg("rollbackfailed"));
989 $wgOut->addWikiText( wfMsg( "alreadyrolled",
990 htmlspecialchars( $this->mTitle->getPrefixedText()),
991 htmlspecialchars( $from ),
992 htmlspecialchars( $s->cur_user_text ) ) );
993 if($s->cur_comment != "") {
994 $wgOut->addHTML(
995 wfMsg("editcomment",
996 htmlspecialchars( $s->cur_comment ) ) );
997 }
998 return;
999 }
1000
1001 # Get the last edit not by this guy
1002 $sql = "SELECT old_text,old_user,old_user_text
1003 FROM old USE INDEX (name_title_timestamp)
1004 WHERE old_namespace={$n} AND old_title='{$tt}'
1005 AND (old_user <> {$uid} OR old_user_text <> '{$ut}')
1006 ORDER BY inverse_timestamp LIMIT 1";
1007 $res = wfQuery( $sql, DB_READ );
1008 if( wfNumRows( $res ) != 1 ) {
1009 # Something wrong
1010 $wgOut->setPageTitle(wfMsg("rollbackfailed"));
1011 $wgOut->addHTML( wfMsg( "cantrollback" ) );
1012 return;
1013 }
1014 $s = wfFetchObject( $res );
1015
1016 # Save it!
1017 $newcomment = wfMsg( "revertpage", $s->old_user_text );
1018 $wgOut->setPagetitle( wfMsg( "actioncomplete" ) );
1019 $wgOut->setRobotpolicy( "noindex,nofollow" );
1020 $wgOut->addHTML( "<h2>" . $newcomment . "</h2>\n<hr>\n" );
1021 $this->updateArticle( $s->old_text, $newcomment, 1, $this->mTitle->userIsWatching() );
1022
1023 global $wgEnablePersistentLC;
1024 if ( $wgEnablePersistentLC ) {
1025 wfQuery("DELETE FROM linkscc WHERE lcc_pageid='{$pid}'", DB_WRITE);
1026 }
1027
1028 $wgOut->returnToMain( false );
1029 }
1030
1031
1032 # Do standard deferred updates after page view
1033
1034 /* private */ function viewUpdates()
1035 {
1036 global $wgDeferredUpdateList;
1037
1038 if ( 0 != $this->getID() ) {
1039 global $wgDisableCounters;
1040 if( !$wgDisableCounters ) {
1041 $u = new ViewCountUpdate( $this->getID() );
1042 array_push( $wgDeferredUpdateList, $u );
1043 $u = new SiteStatsUpdate( 1, 0, 0 );
1044 array_push( $wgDeferredUpdateList, $u );
1045 }
1046 $u = new UserTalkUpdate( 0, $this->mTitle->getNamespace(),
1047 $this->mTitle->getDBkey() );
1048 array_push( $wgDeferredUpdateList, $u );
1049 }
1050 }
1051
1052 # Do standard deferred updates after page edit.
1053 # Every 1000th edit, prune the recent changes table.
1054
1055 /* private */ function editUpdates( $text )
1056 {
1057 global $wgDeferredUpdateList, $wgDBname, $wgMemc;
1058
1059 wfSeedRandom();
1060 if ( 0 == mt_rand( 0, 999 ) ) {
1061 $cutoff = wfUnix2Timestamp( time() - ( 7 * 86400 ) );
1062 $sql = "DELETE FROM recentchanges WHERE rc_timestamp < '{$cutoff}'";
1063 wfQuery( $sql, DB_WRITE );
1064 }
1065 $id = $this->getID();
1066 $title = $this->mTitle->getPrefixedDBkey();
1067 $adj = $this->mCountAdjustment;
1068
1069 if ( 0 != $id ) {
1070 $u = new LinksUpdate( $id, $title );
1071 array_push( $wgDeferredUpdateList, $u );
1072 $u = new SiteStatsUpdate( 0, 1, $adj );
1073 array_push( $wgDeferredUpdateList, $u );
1074 $u = new SearchUpdate( $id, $title, $text );
1075 array_push( $wgDeferredUpdateList, $u );
1076
1077 $u = new UserTalkUpdate( 1, $this->mTitle->getNamespace(),
1078 $this->mTitle->getDBkey() );
1079 array_push( $wgDeferredUpdateList, $u );
1080
1081 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1082 $messageCache = $wgMemc->get( "$wgDBname:messages" );
1083
1084 # If another thread is loading, poll
1085 for ( $i=0; $i<70 && $messageCache == 'loading'; $i++ ) {
1086 sleep(1);
1087 $messageCache = $wgMemc->get( "$wgDBname:messages" );
1088 }
1089
1090 if ( !$messageCache || $messageCache == 'loading' ) {
1091 $messageCache = wfLoadAllMessages();
1092 }
1093 $messageCache[$this->mTitle->getDBkey()] = $text;
1094 $wgMemc->set( "$wgDBname:messages", $messageCache, 86400 );
1095 }
1096 }
1097 }
1098
1099 /* private */ function setOldSubtitle()
1100 {
1101 global $wgLang, $wgOut;
1102
1103 $td = $wgLang->timeanddate( $this->mTimestamp, true );
1104 $r = wfMsg( "revisionasof", $td );
1105 $wgOut->setSubtitle( "({$r})" );
1106 }
1107
1108 # This function is called right before saving the wikitext,
1109 # so we can do things like signatures and links-in-context.
1110
1111 function preSaveTransform( $text )
1112 {
1113 $s = "";
1114 while ( "" != $text ) {
1115 $p = preg_split( "/<\\s*nowiki\\s*>/i", $text, 2 );
1116 $s .= $this->pstPass2( $p[0] );
1117
1118 if ( ( count( $p ) < 2 ) || ( "" == $p[1] ) ) { $text = ""; }
1119 else {
1120 $q = preg_split( "/<\\/\\s*nowiki\\s*>/i", $p[1], 2 );
1121 $s .= "<nowiki>{$q[0]}</nowiki>";
1122 $text = $q[1];
1123 }
1124 }
1125 return rtrim( $s );
1126 }
1127
1128 /* private */ function pstPass2( $text )
1129 {
1130 global $wgUser, $wgLang, $wgLocaltimezone;
1131
1132 # Signatures
1133 #
1134 $n = $wgUser->getName();
1135 $k = $wgUser->getOption( "nickname" );
1136 if ( "" == $k ) { $k = $n; }
1137 if(isset($wgLocaltimezone)) {
1138 $oldtz = getenv("TZ"); putenv("TZ=$wgLocaltimezone");
1139 }
1140 /* Note: this is an ugly timezone hack for the European wikis */
1141 $d = $wgLang->timeanddate( date( "YmdHis" ), false ) .
1142 " (" . date( "T" ) . ")";
1143 if(isset($wgLocaltimezone)) putenv("TZ=$oldtz");
1144
1145 $text = preg_replace( "/~~~~/", "[[" . $wgLang->getNsText(
1146 Namespace::getUser() ) . ":$n|$k]] $d", $text );
1147 $text = preg_replace( "/~~~/", "[[" . $wgLang->getNsText(
1148 Namespace::getUser() ) . ":$n|$k]]", $text );
1149
1150 # Context links: [[|name]] and [[name (context)|]]
1151 #
1152 $tc = "[&;%\\-,.\\(\\)' _0-9A-Za-z\\/:\\x80-\\xff]";
1153 $np = "[&;%\\-,.' _0-9A-Za-z\\/:\\x80-\\xff]"; # No parens
1154 $namespacechar = '[ _0-9A-Za-z\x80-\xff]'; # Namespaces can use non-ascii!
1155 $conpat = "/^({$np}+) \\(({$tc}+)\\)$/";
1156
1157 $p1 = "/\[\[({$np}+) \\(({$np}+)\\)\\|]]/"; # [[page (context)|]]
1158 $p2 = "/\[\[\\|({$tc}+)]]/"; # [[|page]]
1159 $p3 = "/\[\[($namespacechar+):({$np}+)\\|]]/"; # [[namespace:page|]]
1160 $p4 = "/\[\[($namespacechar+):({$np}+) \\(({$np}+)\\)\\|]]/";
1161 # [[ns:page (cont)|]]
1162 $context = "";
1163 $t = $this->mTitle->getText();
1164 if ( preg_match( $conpat, $t, $m ) ) {
1165 $context = $m[2];
1166 }
1167 $text = preg_replace( $p4, "[[\\1:\\2 (\\3)|\\2]]", $text );
1168 $text = preg_replace( $p1, "[[\\1 (\\2)|\\1]]", $text );
1169 $text = preg_replace( $p3, "[[\\1:\\2|\\2]]", $text );
1170
1171 if ( "" == $context ) {
1172 $text = preg_replace( $p2, "[[\\1]]", $text );
1173 } else {
1174 $text = preg_replace( $p2, "[[\\1 ({$context})|\\1]]", $text );
1175 }
1176
1177 # {{SUBST:xxx}} variables
1178 #
1179 $mw =& MagicWord::get( MAG_SUBST );
1180 $text = $mw->substituteCallback( $text, "wfReplaceSubstVar" );
1181
1182 /* Experimental:
1183 # Trim trailing whitespace
1184 # MAG_END (__END__) tag allows for trailing
1185 # whitespace to be deliberately included
1186 $text = rtrim( $text );
1187 $mw =& MagicWord::get( MAG_END );
1188 $mw->matchAndRemove( $text );
1189 */
1190 return $text;
1191 }
1192
1193 /* Caching functions */
1194
1195 function tryFileCache() {
1196 static $called = false;
1197 if( $called ) {
1198 wfDebug( " tryFileCache() -- called twice!?\n" );
1199 return;
1200 }
1201 $called = true;
1202 if($this->isFileCacheable()) {
1203 $touched = $this->mTouched;
1204 if( strpos( $this->mContent, "{{" ) !== false ) {
1205 # Expire pages with variable replacements in an hour
1206 $expire = wfUnix2Timestamp( time() - 3600 );
1207 $touched = max( $expire, $touched );
1208 }
1209 $cache = new CacheManager( $this->mTitle );
1210 if($cache->isFileCacheGood( $touched )) {
1211 global $wgOut;
1212 wfDebug( " tryFileCache() - about to load\n" );
1213 $cache->loadFromFileCache();
1214 $wgOut->reportTime(); # For profiling
1215 exit;
1216 } else {
1217 wfDebug( " tryFileCache() - starting buffer\n" );
1218 if($cache->useGzip() && wfClientAcceptsGzip()) {
1219 /* For some reason, adding this header line over in
1220 CacheManager::saveToFileCache() fails on my test
1221 setup at home, though it works on the live install.
1222 Make double-sure... --brion */
1223 header( "Content-Encoding: gzip" );
1224 }
1225 ob_start( array(&$cache, 'saveToFileCache' ) );
1226 }
1227 } else {
1228 wfDebug( " tryFileCache() - not cacheable\n" );
1229 }
1230 }
1231
1232 function isFileCacheable() {
1233 global $wgUser, $wgUseFileCache, $wgShowIPinHeader;
1234 global $action, $oldid, $diff, $redirect, $printable;
1235 return $wgUseFileCache
1236 and (!$wgShowIPinHeader)
1237 and ($this->getID() != 0)
1238 and ($wgUser->getId() == 0)
1239 and (!$wgUser->getNewtalk())
1240 and ($this->mTitle->getNamespace != Namespace::getSpecial())
1241 and ($action == "view")
1242 and (!isset($oldid))
1243 and (!isset($diff))
1244 and (!isset($redirect))
1245 and (!isset($printable))
1246 and (!$this->mRedirectedFrom);
1247 }
1248
1249 function checkTouched() {
1250 $id = $this->getID();
1251 $sql = "SELECT cur_touched,cur_is_redirect FROM cur WHERE cur_id=$id";
1252 $res = wfQuery( $sql, DB_READ, "Article::checkTouched" );
1253 if( $s = wfFetchObject( $res ) ) {
1254 $this->mTouched = $s->cur_touched;
1255 return !$s->cur_is_redirect;
1256 } else {
1257 return false;
1258 }
1259 }
1260 }
1261
1262 function wfReplaceSubstVar( $matches ) {
1263 return wfMsg( $matches[1] );
1264 }
1265
1266 ?>