2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-04-14 23:10:40 +00:00
|
|
|
# Class representing a Wikipedia article and history.
|
|
|
|
|
# See design.doc for an overview.
|
|
|
|
|
|
2003-08-02 20:43:11 +00:00
|
|
|
# Note: edit user interface and cache support functions have been
|
|
|
|
|
# moved to separate EditPage and CacheManager classes.
|
|
|
|
|
|
2003-08-08 03:08:06 +00:00
|
|
|
include_once( "CacheManager.php" );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
class Article {
|
|
|
|
|
/* private */ var $mContent, $mContentLoaded;
|
|
|
|
|
/* private */ var $mUser, $mTimestamp, $mUserText;
|
|
|
|
|
/* private */ var $mCounter, $mComment, $mCountAdjustment;
|
|
|
|
|
/* private */ var $mMinorEdit, $mRedirectedFrom;
|
2003-11-09 11:45:12 +00:00
|
|
|
/* private */ var $mTouched, $mFileCache, $mTitle;
|
2004-01-17 05:49:39 +00:00
|
|
|
/* private */ var $mId, $mTable;
|
|
|
|
|
|
2003-09-01 08:30:14 +00:00
|
|
|
function Article( &$title ) {
|
|
|
|
|
$this->mTitle =& $title;
|
|
|
|
|
$this->clear();
|
|
|
|
|
}
|
2004-01-17 05:49:39 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
/* private */ function clear()
|
|
|
|
|
{
|
|
|
|
|
$this->mContentLoaded = false;
|
2004-01-17 05:49:39 +00:00
|
|
|
$this->mCurID = $this->mUser = $this->mCounter = -1; # Not loaded
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mRedirectedFrom = $this->mUserText =
|
2003-05-16 13:56:34 +00:00
|
|
|
$this->mTimestamp = $this->mComment = $this->mFileCache = "";
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mCountAdjustment = 0;
|
|
|
|
|
$this->mTouched = "19700101000000";
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-03 12:32:32 +00:00
|
|
|
/* static */ function getRevisionText( $row, $prefix = "old_" ) {
|
|
|
|
|
# Deal with optional compression of archived pages.
|
2004-01-04 03:35:00 +00:00
|
|
|
# This can be done periodically via maintenance/compressOld.php, and
|
|
|
|
|
# as pages are saved if $wgCompressRevisions is set.
|
2004-01-03 12:32:32 +00:00
|
|
|
$text = $prefix . "text";
|
|
|
|
|
$flags = $prefix . "flags";
|
|
|
|
|
if( isset( $row->$flags ) && (false !== strpos( $row->$flags, "gzip" ) ) ) {
|
|
|
|
|
return gzinflate( $row->$text );
|
|
|
|
|
}
|
|
|
|
|
if( isset( $row->$text ) ) {
|
|
|
|
|
return $row->$text;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-04 03:35:00 +00:00
|
|
|
/* static */ function compressRevisionText( &$text ) {
|
|
|
|
|
global $wgCompressRevisions;
|
|
|
|
|
if( !$wgCompressRevisions ) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
if( !function_exists( "gzdeflate" ) ) {
|
|
|
|
|
wfDebug( "Article::compressRevisionText() -- no zlib support, not compressing\n" );
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
$text = gzdeflate( $text );
|
|
|
|
|
return "gzip";
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Note that getContent/loadContent may follow redirects if
|
2003-11-09 11:45:12 +00:00
|
|
|
# not told otherwise, and so may cause a change to mTitle.
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-01-17 05:49:39 +00:00
|
|
|
# Return the text of this revision
|
2003-04-14 23:10:40 +00:00
|
|
|
function getContent( $noredir = false )
|
|
|
|
|
{
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgRequest;
|
|
|
|
|
|
|
|
|
|
# Get variables from query string :P
|
|
|
|
|
$action = $wgRequest->getText( 'action', 'view' );
|
|
|
|
|
$section = $wgRequest->getText( 'section' );
|
|
|
|
|
|
2003-10-16 13:30:45 +00:00
|
|
|
$fname = "Article::getContent";
|
|
|
|
|
wfProfileIn( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( 0 == $this->getID() ) {
|
|
|
|
|
if ( "edit" == $action ) {
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return ""; # was "newarticletext", now moved above the box)
|
|
|
|
|
}
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return wfMsg( "noarticletext" );
|
|
|
|
|
} else {
|
|
|
|
|
$this->loadContent( $noredir );
|
|
|
|
|
|
|
|
|
|
if(
|
|
|
|
|
# check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
|
2003-09-01 08:30:14 +00:00
|
|
|
( $this->mTitle->getNamespace() == Namespace::getTalk( Namespace::getUser()) ) &&
|
|
|
|
|
preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$this->mTitle->getText()) &&
|
2003-04-14 23:10:40 +00:00
|
|
|
$action=="view"
|
|
|
|
|
)
|
|
|
|
|
{
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $this->mContent . "\n" .wfMsg("anontalkpagetext"); }
|
2003-06-30 00:19:35 +00:00
|
|
|
else {
|
|
|
|
|
if($action=="edit") {
|
|
|
|
|
if($section!="") {
|
2003-10-16 13:30:45 +00:00
|
|
|
if($section=="new") {
|
|
|
|
|
wfProfileOut( $fname );
|
|
|
|
|
return "";
|
|
|
|
|
}
|
2003-06-30 00:19:35 +00:00
|
|
|
|
2003-07-20 13:13:06 +00:00
|
|
|
$secs=preg_split("/(^=+.*?=+|^<h[1-6].*?>.*?<\/h[1-6].*?>)/mi",
|
2003-06-30 00:19:35 +00:00
|
|
|
$this->mContent, -1,
|
|
|
|
|
PREG_SPLIT_DELIM_CAPTURE);
|
|
|
|
|
if($section==0) {
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-06-30 00:19:35 +00:00
|
|
|
return trim($secs[0]);
|
|
|
|
|
} else {
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-06-30 00:19:35 +00:00
|
|
|
return trim($secs[$section*2-1] . $secs[$section*2]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $this->mContent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-01-17 05:49:39 +00:00
|
|
|
|
|
|
|
|
# Load the revision (including cur_text) into this object
|
2003-04-14 23:10:40 +00:00
|
|
|
function loadContent( $noredir = false )
|
|
|
|
|
{
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgOut, $wgMwRedir, $wgRequest;
|
|
|
|
|
|
|
|
|
|
# Query variables :P
|
|
|
|
|
$oldid = $wgRequest->getVal( 'oldid' );
|
|
|
|
|
$redirect = $wgRequest->getVal( 'redirect' );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( $this->mContentLoaded ) return;
|
|
|
|
|
$fname = "Article::loadContent";
|
2004-01-17 05:49:39 +00:00
|
|
|
|
2004-03-21 06:58:12 +00:00
|
|
|
# Pre-fill content with error message so that if something
|
|
|
|
|
# fails we'll have something telling us what we intended.
|
|
|
|
|
|
|
|
|
|
$t = $this->mTitle->getPrefixedText();
|
|
|
|
|
if ( isset( $oldid ) ) {
|
|
|
|
|
$oldid = IntVal( $oldid );
|
|
|
|
|
$t .= ",oldid={$oldid}";
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $redirect ) ) {
|
|
|
|
|
$redirect = ($redirect == "no") ? "no" : "yes";
|
|
|
|
|
$t .= ",redirect={$redirect}";
|
|
|
|
|
}
|
|
|
|
|
$this->mContent = wfMsg( "missingarticle", $t );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( ! $oldid ) { # Retrieve current version
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
if ( 0 == $id ) return;
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT " .
|
|
|
|
|
"cur_text,cur_timestamp,cur_user,cur_counter,cur_restrictions,cur_touched " .
|
|
|
|
|
"FROM cur WHERE cur_id={$id}";
|
2003-11-02 13:57:24 +00:00
|
|
|
wfDebug( "$sql\n" );
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-11-02 13:57:24 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
# If we got a redirect, follow it (unless we've been told
|
|
|
|
|
# not to by either the function parameter or the query
|
|
|
|
|
if ( ( "no" != $redirect ) && ( false == $noredir ) &&
|
2003-08-31 09:46:37 +00:00
|
|
|
( $wgMwRedir->matchStart( $s->cur_text ) ) ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( preg_match( "/\\[\\[([^\\]\\|]+)[\\]\\|]/",
|
|
|
|
|
$s->cur_text, $m ) ) {
|
|
|
|
|
$rt = Title::newFromText( $m[1] );
|
2003-12-17 00:18:27 +00:00
|
|
|
if( $rt ) {
|
|
|
|
|
# Gotta hand redirects to special pages differently:
|
|
|
|
|
# Fill the HTTP response "Location" header and ignore
|
|
|
|
|
# the rest of the page we're on.
|
|
|
|
|
|
|
|
|
|
if ( $rt->getInterwiki() != "" ) {
|
|
|
|
|
$wgOut->redirect( $rt->getFullURL() ) ;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( $rt->getNamespace() == Namespace::getSpecial() ) {
|
2004-03-07 07:26:56 +00:00
|
|
|
$wgOut->redirect( $rt->getFullURL() );
|
2003-12-17 00:18:27 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$rid = $rt->getArticleID();
|
|
|
|
|
if ( 0 != $rid ) {
|
|
|
|
|
$sql = "SELECT cur_text,cur_timestamp,cur_user," .
|
|
|
|
|
"cur_counter,cur_restrictions,cur_touched FROM cur WHERE cur_id={$rid}";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
|
|
|
|
|
if ( 0 != wfNumRows( $res ) ) {
|
|
|
|
|
$this->mRedirectedFrom = $this->mTitle->getPrefixedText();
|
|
|
|
|
$this->mTitle = $rt;
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-11-02 13:57:24 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mContent = $s->cur_text;
|
|
|
|
|
$this->mUser = $s->cur_user;
|
|
|
|
|
$this->mCounter = $s->cur_counter;
|
|
|
|
|
$this->mTimestamp = $s->cur_timestamp;
|
|
|
|
|
$this->mTouched = $s->cur_touched;
|
2003-09-01 08:30:14 +00:00
|
|
|
$this->mTitle->mRestrictions = explode( ",", trim( $s->cur_restrictions ) );
|
|
|
|
|
$this->mTitle->mRestrictionsLoaded = true;
|
2003-04-14 23:10:40 +00:00
|
|
|
wfFreeResult( $res );
|
|
|
|
|
} else { # oldid set, retrieve historical version
|
2004-01-03 12:32:32 +00:00
|
|
|
$sql = "SELECT old_text,old_timestamp,old_user,old_flags FROM old " .
|
2003-04-14 23:10:40 +00:00
|
|
|
"WHERE old_id={$oldid}";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) { return; }
|
|
|
|
|
|
|
|
|
|
$s = wfFetchObject( $res );
|
2004-01-03 12:32:32 +00:00
|
|
|
$this->mContent = Article::getRevisionText( $s );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mUser = $s->old_user;
|
|
|
|
|
$this->mCounter = 0;
|
|
|
|
|
$this->mTimestamp = $s->old_timestamp;
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
}
|
|
|
|
|
$this->mContentLoaded = true;
|
2004-03-23 10:11:24 +00:00
|
|
|
return $this->mContent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Gets the article text without using so many damn globals
|
|
|
|
|
# Returns false on error
|
|
|
|
|
function getContentWithoutUsingSoManyDamnGlobals( $oldid = 0, $noredir = false ) {
|
|
|
|
|
global $wgMwRedir;
|
|
|
|
|
|
|
|
|
|
if ( $this->mContentLoaded ) {
|
|
|
|
|
return $this->mContent;
|
|
|
|
|
}
|
|
|
|
|
$this->mContent = false;
|
|
|
|
|
|
|
|
|
|
$fname = "Article::loadContent";
|
|
|
|
|
|
|
|
|
|
if ( ! $oldid ) { # Retrieve current version
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
if ( 0 == $id ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT " .
|
|
|
|
|
"cur_text,cur_timestamp,cur_user,cur_counter,cur_restrictions,cur_touched " .
|
|
|
|
|
"FROM cur WHERE cur_id={$id}";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
# If we got a redirect, follow it (unless we've been told
|
|
|
|
|
# not to by either the function parameter or the query
|
|
|
|
|
if ( !$noredir && $wgMwRedir->matchStart( $s->cur_text ) ) {
|
|
|
|
|
if ( preg_match( "/\\[\\[([^\\]\\|]+)[\\]\\|]/",
|
|
|
|
|
$s->cur_text, $m ) ) {
|
|
|
|
|
$rt = Title::newFromText( $m[1] );
|
|
|
|
|
if( $rt && $rt->getInterwiki() == "" && $rt->getNamespace() != Namespace::getSpecial() ) {
|
|
|
|
|
$rid = $rt->getArticleID();
|
|
|
|
|
if ( 0 != $rid ) {
|
|
|
|
|
$sql = "SELECT cur_text,cur_timestamp,cur_user," .
|
|
|
|
|
"cur_counter,cur_restrictions,cur_touched FROM cur WHERE cur_id={$rid}";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
|
|
|
|
|
if ( 0 != wfNumRows( $res ) ) {
|
|
|
|
|
$this->mRedirectedFrom = $this->mTitle->getPrefixedText();
|
|
|
|
|
$this->mTitle = $rt;
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->mContent = $s->cur_text;
|
|
|
|
|
$this->mUser = $s->cur_user;
|
|
|
|
|
$this->mCounter = $s->cur_counter;
|
|
|
|
|
$this->mTimestamp = $s->cur_timestamp;
|
|
|
|
|
$this->mTouched = $s->cur_touched;
|
|
|
|
|
$this->mTitle->mRestrictions = explode( ",", trim( $s->cur_restrictions ) );
|
|
|
|
|
$this->mTitle->mRestrictionsLoaded = true;
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
} else { # oldid set, retrieve historical version
|
|
|
|
|
$sql = "SELECT old_text,old_timestamp,old_user,old_flags FROM old " .
|
|
|
|
|
"WHERE old_id={$oldid}";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$this->mContent = Article::getRevisionText( $s );
|
|
|
|
|
$this->mUser = $s->old_user;
|
|
|
|
|
$this->mCounter = 0;
|
|
|
|
|
$this->mTimestamp = $s->old_timestamp;
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
}
|
|
|
|
|
$this->mContentLoaded = true;
|
|
|
|
|
return $this->mContent;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-11-24 10:24:04 +00:00
|
|
|
function getID() {
|
|
|
|
|
if( $this->mTitle ) {
|
|
|
|
|
return $this->mTitle->getArticleID();
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
function getCount()
|
|
|
|
|
{
|
|
|
|
|
if ( -1 == $this->mCounter ) {
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
$this->mCounter = wfGetSQL( "cur", "cur_counter", "cur_id={$id}" );
|
|
|
|
|
}
|
|
|
|
|
return $this->mCounter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Would the given text make this article a "good" article (i.e.,
|
|
|
|
|
# suitable for including in the article count)?
|
|
|
|
|
|
|
|
|
|
function isCountable( $text )
|
|
|
|
|
{
|
2003-09-01 08:30:14 +00:00
|
|
|
global $wgUseCommaCount, $wgMwRedir;
|
2003-08-31 09:46:37 +00:00
|
|
|
|
2003-09-01 08:30:14 +00:00
|
|
|
if ( 0 != $this->mTitle->getNamespace() ) { return 0; }
|
2003-08-31 09:46:37 +00:00
|
|
|
if ( $wgMwRedir->matchStart( $text ) ) { return 0; }
|
2003-04-14 23:10:40 +00:00
|
|
|
$token = ($wgUseCommaCount ? "," : "[[" );
|
|
|
|
|
if ( false === strstr( $text, $token ) ) { return 0; }
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-17 05:49:39 +00:00
|
|
|
# Loads everything from cur except cur_text
|
2003-04-14 23:10:40 +00:00
|
|
|
# This isn't necessary for all uses, so it's only done if needed.
|
|
|
|
|
|
|
|
|
|
/* private */ function loadLastEdit()
|
|
|
|
|
{
|
|
|
|
|
global $wgOut;
|
|
|
|
|
if ( -1 != $this->mUser ) return;
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT cur_user,cur_user_text,cur_timestamp," .
|
|
|
|
|
"cur_comment,cur_minor_edit FROM cur WHERE " .
|
|
|
|
|
"cur_id=" . $this->getID();
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, "Article::loadLastEdit" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( wfNumRows( $res ) > 0 ) {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$this->mUser = $s->cur_user;
|
|
|
|
|
$this->mUserText = $s->cur_user_text;
|
|
|
|
|
$this->mTimestamp = $s->cur_timestamp;
|
|
|
|
|
$this->mComment = $s->cur_comment;
|
|
|
|
|
$this->mMinorEdit = $s->cur_minor_edit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getTimestamp()
|
|
|
|
|
{
|
|
|
|
|
$this->loadLastEdit();
|
|
|
|
|
return $this->mTimestamp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getUser()
|
|
|
|
|
{
|
|
|
|
|
$this->loadLastEdit();
|
|
|
|
|
return $this->mUser;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getUserText()
|
|
|
|
|
{
|
|
|
|
|
$this->loadLastEdit();
|
|
|
|
|
return $this->mUserText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getComment()
|
|
|
|
|
{
|
|
|
|
|
$this->loadLastEdit();
|
|
|
|
|
return $this->mComment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getMinorEdit()
|
|
|
|
|
{
|
|
|
|
|
$this->loadLastEdit();
|
|
|
|
|
return $this->mMinorEdit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# This is the default action of the script: just view the page of
|
|
|
|
|
# the given title.
|
|
|
|
|
|
|
|
|
|
function view()
|
|
|
|
|
{
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgUser, $wgOut, $wgLang, $wgRequest;
|
2004-02-27 02:24:14 +00:00
|
|
|
global $wgLinkCache, $IP, $wgEnableParserCache;
|
|
|
|
|
|
2003-10-16 13:30:45 +00:00
|
|
|
$fname = "Article::view";
|
|
|
|
|
wfProfileIn( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# Get variables from query string :P
|
|
|
|
|
$oldid = $wgRequest->getVal( 'oldid' );
|
|
|
|
|
$diff = $wgRequest->getVal( 'diff' );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setArticleFlag( true );
|
|
|
|
|
$wgOut->setRobotpolicy( "index,follow" );
|
|
|
|
|
|
|
|
|
|
# If we got diff and oldid in the query, we want to see a
|
|
|
|
|
# diff page instead of the article.
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
if ( !is_null( $diff ) ) {
|
2003-09-01 08:30:14 +00:00
|
|
|
$wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
|
2004-03-29 14:48:07 +00:00
|
|
|
$de = new DifferenceEngine( intval($oldid), intval($diff) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$de->showDiffPage();
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2003-11-09 11:45:12 +00:00
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
if ( !is_null( $oldid ) and $this->checkTouched() ) {
|
2003-12-11 20:16:34 +00:00
|
|
|
if( $wgOut->checkLastModified( $this->mTouched ) ){
|
|
|
|
|
return;
|
|
|
|
|
} else if ( $this->tryFileCache() ) {
|
|
|
|
|
# tell wgOut that output is taken care of
|
|
|
|
|
$wgOut->disable();
|
2003-12-13 21:32:32 +00:00
|
|
|
$this->viewUpdates();
|
2003-12-11 20:16:34 +00:00
|
|
|
return;
|
2003-11-09 11:45:12 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$text = $this->getContent(); # May change mTitle
|
2003-09-01 08:30:14 +00:00
|
|
|
$wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
|
|
|
|
|
$wgOut->setHTMLTitle( $this->mTitle->getPrefixedText() .
|
2003-04-14 23:10:40 +00:00
|
|
|
" - " . wfMsg( "wikititlesuffix" ) );
|
|
|
|
|
|
|
|
|
|
# We're looking at an old revision
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
if ( !empty( $oldid ) ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->setOldSubtitle();
|
|
|
|
|
$wgOut->setRobotpolicy( "noindex,follow" );
|
|
|
|
|
}
|
|
|
|
|
if ( "" != $this->mRedirectedFrom ) {
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$redir = $sk->makeKnownLink( $this->mRedirectedFrom, "",
|
|
|
|
|
"redirect=no" );
|
2003-11-15 13:08:12 +00:00
|
|
|
$s = wfMsg( "redirectedfrom", $redir );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setSubtitle( $s );
|
|
|
|
|
}
|
2003-12-11 20:16:34 +00:00
|
|
|
|
2003-09-01 08:30:14 +00:00
|
|
|
$wgLinkCache->preFill( $this->mTitle );
|
2004-02-27 02:24:14 +00:00
|
|
|
|
|
|
|
|
if( $wgEnableParserCache && intval($wgUser->getOption( "stubthreshold" )) == 0 ){
|
|
|
|
|
$wgOut->addWikiText( $text, true, $this );
|
|
|
|
|
} else {
|
|
|
|
|
$wgOut->addWikiText( $text );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 13:27:08 +00:00
|
|
|
# Add link titles as META keywords
|
|
|
|
|
$wgOut->addMetaTags() ;
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->viewUpdates();
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Theoretically we could defer these whole insert and update
|
|
|
|
|
# functions for after display, but that's taking a big leap
|
|
|
|
|
# of faith, and we want to be able to report database
|
|
|
|
|
# errors at some point.
|
|
|
|
|
|
|
|
|
|
/* private */ function insertNewArticle( $text, $summary, $isminor, $watchthis )
|
|
|
|
|
{
|
2003-09-01 08:30:14 +00:00
|
|
|
global $wgOut, $wgUser, $wgLinkCache, $wgMwRedir;
|
2004-02-02 01:40:03 +00:00
|
|
|
global $wgUseSquid, $wgDeferredUpdateList, $wgInternalServer;
|
2003-11-09 11:45:12 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$fname = "Article::insertNewArticle";
|
|
|
|
|
|
2003-11-27 02:04:02 +00:00
|
|
|
$this->mCountAdjustment = $this->isCountable( $text );
|
|
|
|
|
|
2003-09-01 08:30:14 +00:00
|
|
|
$ns = $this->mTitle->getNamespace();
|
|
|
|
|
$ttl = $this->mTitle->getDBkey();
|
2003-04-14 23:10:40 +00:00
|
|
|
$text = $this->preSaveTransform( $text );
|
2003-08-31 09:46:37 +00:00
|
|
|
if ( $wgMwRedir->matchStart( $text ) ) { $redir = 1; }
|
2003-04-14 23:10:40 +00:00
|
|
|
else { $redir = 0; }
|
|
|
|
|
|
|
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$won = wfInvertTimestamp( $now );
|
2003-06-03 21:27:06 +00:00
|
|
|
wfSeedRandom();
|
2003-07-08 11:15:26 +00:00
|
|
|
$rand = number_format( mt_rand() / mt_getrandmax(), 12, ".", "" );
|
2004-01-24 16:12:23 +00:00
|
|
|
$isminor = ( $isminor && $wgUser->getID() ) ? 1 : 0;
|
2003-04-14 23:10:40 +00:00
|
|
|
$sql = "INSERT INTO cur (cur_namespace,cur_title,cur_text," .
|
|
|
|
|
"cur_comment,cur_user,cur_timestamp,cur_minor_edit,cur_counter," .
|
|
|
|
|
"cur_restrictions,cur_user_text,cur_is_redirect," .
|
|
|
|
|
"cur_is_new,cur_random,cur_touched,inverse_timestamp) VALUES ({$ns},'" . wfStrencode( $ttl ) . "', '" .
|
|
|
|
|
wfStrencode( $text ) . "', '" .
|
|
|
|
|
wfStrencode( $summary ) . "', '" .
|
|
|
|
|
$wgUser->getID() . "', '{$now}', " .
|
2004-01-24 16:12:23 +00:00
|
|
|
$isminor . ", 0, '', '" .
|
2003-06-03 21:27:06 +00:00
|
|
|
wfStrencode( $wgUser->getName() ) . "', $redir, 1, $rand, '{$now}', '{$won}')";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$newid = wfInsertId();
|
2003-09-01 08:30:14 +00:00
|
|
|
$this->mTitle->resetArticleID( $newid );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-01-31 16:59:08 +00:00
|
|
|
Article::onArticleCreate( $this->mTitle );
|
2004-01-17 05:49:39 +00:00
|
|
|
RecentChange::notifyNew( $now, $this->mTitle, $isminor, $wgUser, $summary );
|
2003-11-08 15:12:34 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ($watchthis) {
|
2003-09-01 08:30:14 +00:00
|
|
|
if(!$this->mTitle->userIsWatching()) $this->watch();
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-09-01 08:30:14 +00:00
|
|
|
if ( $this->mTitle->userIsWatching() ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->unwatch();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-12 13:07:08 +00:00
|
|
|
# The talk page isn't in the regular link tables, so we need to update manually:
|
|
|
|
|
$talkns = $ns ^ 1; # talk -> normal; normal -> talk
|
|
|
|
|
$sql = "UPDATE cur set cur_touched='$now' WHERE cur_namespace=$talkns AND cur_title='" . wfStrencode( $ttl ) . "'";
|
2003-11-15 07:14:05 +00:00
|
|
|
wfQuery( $sql, DB_WRITE );
|
2003-11-12 13:07:08 +00:00
|
|
|
|
2004-02-02 01:40:03 +00:00
|
|
|
# standard deferred updates
|
|
|
|
|
$this->editUpdates( $text );
|
2004-03-20 15:03:26 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->showArticle( $text, wfMsg( "newarticle" ) );
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-24 12:09:20 +00:00
|
|
|
|
2004-03-14 22:28:52 +00:00
|
|
|
/* Side effects: loads last edit */
|
|
|
|
|
function getTextOfLastEditWithSectionReplacedOrAdded($section, $text, $summary = ""){
|
2003-08-24 12:09:20 +00:00
|
|
|
$this->loadLastEdit();
|
2004-03-14 22:28:52 +00:00
|
|
|
$oldtext = $this->getContent();
|
|
|
|
|
if ($section != "") {
|
2003-07-21 07:36:52 +00:00
|
|
|
if($section=="new") {
|
2003-07-29 15:26:53 +00:00
|
|
|
if($summary) $subject="== {$summary} ==\n\n";
|
|
|
|
|
$text=$oldtext."\n\n".$subject.$text;
|
2003-07-21 07:36:52 +00:00
|
|
|
} else {
|
|
|
|
|
$secs=preg_split("/(^=+.*?=+|^<h[1-6].*?>.*?<\/h[1-6].*?>)/mi",
|
|
|
|
|
$oldtext,-1,PREG_SPLIT_DELIM_CAPTURE);
|
|
|
|
|
$secs[$section*2]=$text."\n\n"; // replace with edited
|
|
|
|
|
if($section) { $secs[$section*2-1]=""; } // erase old headline
|
|
|
|
|
$text=join("",$secs);
|
|
|
|
|
}
|
2003-06-30 00:19:35 +00:00
|
|
|
}
|
2004-03-14 22:28:52 +00:00
|
|
|
return $text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false )
|
|
|
|
|
{
|
|
|
|
|
global $wgOut, $wgUser, $wgLinkCache;
|
|
|
|
|
global $wgDBtransactions, $wgMwRedir;
|
|
|
|
|
global $wgUseSquid, $wgInternalServer;
|
|
|
|
|
$fname = "Article::updateArticle";
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( $this->mMinorEdit ) { $me1 = 1; } else { $me1 = 0; }
|
2004-01-24 16:12:23 +00:00
|
|
|
if ( $minor && $wgUser->getID() ) { $me2 = 1; } else { $me2 = 0; }
|
2003-08-31 09:46:37 +00:00
|
|
|
if ( preg_match( "/^((" . $wgMwRedir->getBaseRegex() . ")[^\\n]+)/i", $text, $m ) ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$redir = 1;
|
|
|
|
|
$text = $m[1] . "\n"; # Remove all content but redirect
|
|
|
|
|
}
|
|
|
|
|
else { $redir = 0; }
|
|
|
|
|
|
|
|
|
|
$text = $this->preSaveTransform( $text );
|
|
|
|
|
|
|
|
|
|
# Update article, but only if changed.
|
|
|
|
|
|
|
|
|
|
if( $wgDBtransactions ) {
|
|
|
|
|
$sql = "BEGIN";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
$oldtext = $this->getContent( true );
|
|
|
|
|
|
|
|
|
|
if ( 0 != strcmp( $text, $oldtext ) ) {
|
|
|
|
|
$this->mCountAdjustment = $this->isCountable( $text )
|
|
|
|
|
- $this->isCountable( $oldtext );
|
|
|
|
|
|
2003-08-17 11:58:33 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$won = wfInvertTimestamp( $now );
|
|
|
|
|
$sql = "UPDATE cur SET cur_text='" . wfStrencode( $text ) .
|
|
|
|
|
"',cur_comment='" . wfStrencode( $summary ) .
|
|
|
|
|
"',cur_minor_edit={$me2}, cur_user=" . $wgUser->getID() .
|
|
|
|
|
",cur_timestamp='{$now}',cur_user_text='" .
|
|
|
|
|
wfStrencode( $wgUser->getName() ) .
|
|
|
|
|
"',cur_is_redirect={$redir}, cur_is_new=0, cur_touched='{$now}', inverse_timestamp='{$won}' " .
|
|
|
|
|
"WHERE cur_id=" . $this->getID() .
|
|
|
|
|
" AND cur_timestamp='" . $this->getTimestamp() . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_WRITE, $fname );
|
2003-08-17 11:58:33 +00:00
|
|
|
|
|
|
|
|
if( wfAffectedRows() == 0 ) {
|
|
|
|
|
/* Belated edit conflict! Run away!! */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-04 03:35:00 +00:00
|
|
|
# This overwrites $oldtext if revision compression is on
|
|
|
|
|
$flags = Article::compressRevisionText( $oldtext );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$sql = "INSERT INTO old (old_namespace,old_title,old_text," .
|
|
|
|
|
"old_comment,old_user,old_user_text,old_timestamp," .
|
2004-01-04 03:35:00 +00:00
|
|
|
"old_minor_edit,inverse_timestamp,old_flags) VALUES (" .
|
2003-09-01 08:30:14 +00:00
|
|
|
$this->mTitle->getNamespace() . ", '" .
|
|
|
|
|
wfStrencode( $this->mTitle->getDBkey() ) . "', '" .
|
2003-04-14 23:10:40 +00:00
|
|
|
wfStrencode( $oldtext ) . "', '" .
|
|
|
|
|
wfStrencode( $this->getComment() ) . "', " .
|
|
|
|
|
$this->getUser() . ", '" .
|
|
|
|
|
wfStrencode( $this->getUserText() ) . "', '" .
|
|
|
|
|
$this->getTimestamp() . "', " . $me1 . ", '" .
|
2004-01-04 03:35:00 +00:00
|
|
|
wfInvertTimestamp( $this->getTimestamp() ) . "','$flags')";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
$oldid = wfInsertID( $res );
|
|
|
|
|
|
2003-12-14 14:29:35 +00:00
|
|
|
$bot = (int)($wgUser->isBot() || $forceBot);
|
2004-01-17 09:49:43 +00:00
|
|
|
RecentChange::notifyEdit( $now, $this->mTitle, $me2, $wgUser, $summary,
|
2004-01-31 02:22:15 +00:00
|
|
|
$oldid, $this->getTimestamp(), $bot );
|
2004-01-05 23:32:39 +00:00
|
|
|
Article::onArticleEdit( $this->mTitle );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-11-28 09:42:13 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if( $wgDBtransactions ) {
|
|
|
|
|
$sql = "COMMIT";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($watchthis) {
|
2003-09-01 08:30:14 +00:00
|
|
|
if (!$this->mTitle->userIsWatching()) $this->watch();
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-09-01 08:30:14 +00:00
|
|
|
if ( $this->mTitle->userIsWatching() ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->unwatch();
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-02-02 01:40:03 +00:00
|
|
|
# standard deferred updates
|
|
|
|
|
$this->editUpdates( $text );
|
|
|
|
|
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$urls = array();
|
|
|
|
|
# Template namespace
|
|
|
|
|
# Purge all articles linking here
|
|
|
|
|
if ( $this->mTitle->getNamespace() == NS_TEMPLATE) {
|
|
|
|
|
$titles = $this->mTitle->getLinksTo();
|
|
|
|
|
Title::touchArray( $titles );
|
|
|
|
|
if ( $wgUseSquid ) {
|
|
|
|
|
foreach ( $titles as $title ) {
|
|
|
|
|
$urls[] = $title->getInternalURL();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Squid updates
|
2004-02-02 01:40:03 +00:00
|
|
|
if ( $wgUseSquid ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
$urls = array_merge( $urls, $this->mTitle->getSquidURLs() );
|
|
|
|
|
$u = new SquidUpdate( $urls );
|
|
|
|
|
$u->doUpdate();
|
2004-02-02 01:40:03 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-08-17 11:58:33 +00:00
|
|
|
$this->showArticle( $text, wfMsg( "updated" ) );
|
|
|
|
|
return true;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# After we've either updated or inserted the article, update
|
|
|
|
|
# the link tables and redirect to the new page.
|
|
|
|
|
|
|
|
|
|
function showArticle( $text, $subtitle )
|
|
|
|
|
{
|
2004-01-03 02:46:35 +00:00
|
|
|
global $wgOut, $wgUser, $wgLinkCache;
|
2003-08-31 09:46:37 +00:00
|
|
|
global $wgMwRedir;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$wgLinkCache = new LinkCache();
|
2003-07-06 11:42:42 +00:00
|
|
|
|
|
|
|
|
# Get old version of link table to allow incremental link updates
|
2004-01-03 02:46:35 +00:00
|
|
|
$wgLinkCache->preFill( $this->mTitle );
|
|
|
|
|
$wgLinkCache->clear();
|
2003-07-06 11:42:42 +00:00
|
|
|
|
2003-08-31 14:30:24 +00:00
|
|
|
# Now update the link cache by parsing the text
|
|
|
|
|
$wgOut = new OutputPage();
|
2004-02-27 00:08:19 +00:00
|
|
|
$wgOut->addWikiText( $text );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-08-31 09:46:37 +00:00
|
|
|
if( $wgMwRedir->matchStart( $text ) )
|
2003-04-14 23:10:40 +00:00
|
|
|
$r = "redirect=no";
|
|
|
|
|
else
|
|
|
|
|
$r = "";
|
2004-03-07 07:26:56 +00:00
|
|
|
$wgOut->redirect( $this->mTitle->getFullURL( $r ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Add this page to my watchlist
|
|
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
function watch( $add = true )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2003-09-01 08:30:14 +00:00
|
|
|
global $wgUser, $wgOut, $wgLang;
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgDeferredUpdateList;
|
|
|
|
|
|
|
|
|
|
if ( 0 == $wgUser->getID() ) {
|
|
|
|
|
$wgOut->errorpage( "watchnologin", "watchnologintext" );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( wfReadOnly() ) {
|
|
|
|
|
$wgOut->readOnlyPage();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-09-01 09:59:53 +00:00
|
|
|
if( $add )
|
|
|
|
|
$wgUser->addWatch( $this->mTitle );
|
|
|
|
|
else
|
|
|
|
|
$wgUser->removeWatch( $this->mTitle );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
$wgOut->setPagetitle( wfMsg( $add ? "addedwatch" : "removedwatch" ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setRobotpolicy( "noindex,follow" );
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin() ;
|
2004-04-09 08:27:00 +00:00
|
|
|
$link = $this->mTitle->getPrefixedText();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
if($add)
|
|
|
|
|
$text = wfMsg( "addedwatchtext", $link );
|
|
|
|
|
else
|
|
|
|
|
$text = wfMsg( "removedwatchtext", $link );
|
2004-04-09 08:27:00 +00:00
|
|
|
$wgOut->addWikiText( $text );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$up = new UserUpdate();
|
|
|
|
|
array_push( $wgDeferredUpdateList, $up );
|
|
|
|
|
|
|
|
|
|
$wgOut->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unwatch()
|
|
|
|
|
{
|
2003-09-01 09:59:53 +00:00
|
|
|
$this->watch( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
function protect( $limit = "sysop" )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-04-21 16:17:49 +00:00
|
|
|
global $wgUser, $wgOut, $wgRequest;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( ! $wgUser->isSysop() ) {
|
|
|
|
|
$wgOut->sysopRequired();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( wfReadOnly() ) {
|
|
|
|
|
$wgOut->readOnlyPage();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-09-01 08:30:14 +00:00
|
|
|
$id = $this->mTitle->getArticleID();
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == $id ) {
|
|
|
|
|
$wgOut->fatalEror( wfMsg( "badarticleerror" ) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-04-21 16:17:49 +00:00
|
|
|
|
|
|
|
|
$confirm = $wgRequest->getBool( 'wpConfirmProtect' ) && $wgRequest->wasPosted();
|
|
|
|
|
$reason = $wgRequest->getText( 'wpReasonProtect' );
|
|
|
|
|
|
|
|
|
|
if ( $confirm ) {
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$sql = "UPDATE cur SET cur_touched='" . wfTimestampNow() . "'," .
|
2003-09-01 09:59:53 +00:00
|
|
|
"cur_restrictions='{$limit}' WHERE cur_id={$id}";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, "Article::protect" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-12 13:07:08 +00:00
|
|
|
$log = new LogPage( wfMsg( "protectlogpage" ), wfMsg( "protectlogtext" ) );
|
|
|
|
|
if ( $limit === "" ) {
|
2004-04-21 16:17:49 +00:00
|
|
|
$log->addEntry( wfMsg( "unprotectedarticle", $this->mTitle->getPrefixedText() ), $reason );
|
2003-11-12 13:07:08 +00:00
|
|
|
} else {
|
2004-04-21 16:17:49 +00:00
|
|
|
$log->addEntry( wfMsg( "protectedarticle", $this->mTitle->getPrefixedText() ), $reason );
|
2003-11-12 13:07:08 +00:00
|
|
|
}
|
2004-03-07 07:26:56 +00:00
|
|
|
$wgOut->redirect( $this->mTitle->getFullURL() );
|
2004-04-21 16:17:49 +00:00
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
$reason = htmlspecialchars( wfMsg( "protectreason" ) );
|
|
|
|
|
return $this->confirmProtect( "", $reason, $limit );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Output protection confirmation dialog
|
|
|
|
|
function confirmProtect( $par, $reason, $limit = "sysop" )
|
|
|
|
|
{
|
|
|
|
|
global $wgOut;
|
|
|
|
|
|
|
|
|
|
wfDebug( "Article::confirmProtect\n" );
|
|
|
|
|
|
|
|
|
|
$sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
|
|
|
|
|
$wgOut->setRobotpolicy( "noindex,nofollow" );
|
|
|
|
|
|
|
|
|
|
$check = "";
|
|
|
|
|
$protcom = "";
|
|
|
|
|
|
|
|
|
|
if ( $limit === "" ) {
|
|
|
|
|
$wgOut->setSubtitle( wfMsg( "unprotectsub", $sub ) );
|
|
|
|
|
$wgOut->addWikiText( wfMsg( "confirmunprotecttext" ) );
|
|
|
|
|
$check = htmlspecialchars( wfMsg( "confirmunprotect" ) );
|
|
|
|
|
$protcom = htmlspecialchars( wfMsg( "unprotectcomment" ) );
|
|
|
|
|
$formaction = $this->mTitle->escapeLocalURL( "action=unprotect" . $par );
|
|
|
|
|
} else {
|
|
|
|
|
$wgOut->setSubtitle( wfMsg( "protectsub", $sub ) );
|
|
|
|
|
$wgOut->addWikiText( wfMsg( "confirmprotecttext" ) );
|
|
|
|
|
$check = htmlspecialchars( wfMsg( "confirmprotect" ) );
|
|
|
|
|
$protcom = htmlspecialchars( wfMsg( "protectcomment" ) );
|
|
|
|
|
$formaction = $this->mTitle->escapeLocalURL( "action=protect" . $par );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$confirm = htmlspecialchars( wfMsg( "confirm" ) );
|
|
|
|
|
|
|
|
|
|
$wgOut->addHTML( "
|
|
|
|
|
<form id='protectconfirm' method='post' action=\"{$formaction}\">
|
|
|
|
|
<table border='0'>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align='right'>
|
|
|
|
|
<label for='wpReasonProtect'>{$protcom}:</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td align='left'>
|
|
|
|
|
<input type='text' size='60' name='wpReasonProtect' id='wpReasonProtect' value=\"" . htmlspecialchars( $reason ) . "\" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> </td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align='right'>
|
|
|
|
|
<input type='checkbox' name='wpConfirmProtect' value='1' id='wpConfirmProtect' />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<label for='wpConfirmProtect'>{$check}</label>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> </td>
|
|
|
|
|
<td>
|
|
|
|
|
<input type='submit' name='wpConfirmProtectB' value=\"{$confirm}\" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</form>\n" );
|
|
|
|
|
|
|
|
|
|
$wgOut->returnToMain( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unprotect()
|
|
|
|
|
{
|
2003-09-01 09:59:53 +00:00
|
|
|
return $this->protect( "" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# UI entry point for page deletion
|
2003-04-14 23:10:40 +00:00
|
|
|
function delete()
|
|
|
|
|
{
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgUser, $wgOut, $wgMessageCache, $wgRequest;
|
2004-03-20 15:03:26 +00:00
|
|
|
$fname = "Article::delete";
|
2004-04-01 12:35:45 +00:00
|
|
|
$confirm = $wgRequest->getBool( 'wpConfirm' ) && $wgRequest->wasPosted();
|
2004-03-29 14:48:07 +00:00
|
|
|
$reason = $wgRequest->getText( 'wpReason' );
|
|
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
# This code desperately needs to be totally rewritten
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# Check permissions
|
2003-11-09 11:45:12 +00:00
|
|
|
if ( ( ! $wgUser->isSysop() ) ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->sysopRequired();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( wfReadOnly() ) {
|
|
|
|
|
$wgOut->readOnlyPage();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Better double-check that it hasn't been deleted yet!
|
|
|
|
|
$wgOut->setPagetitle( wfMsg( "confirmdelete" ) );
|
2003-09-01 09:59:53 +00:00
|
|
|
if ( ( "" == trim( $this->mTitle->getText() ) )
|
|
|
|
|
or ( $this->mTitle->getArticleId() == 0 ) ) {
|
|
|
|
|
$wgOut->fatalError( wfMsg( "cannotdelete" ) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-05-23 04:26:51 +00:00
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
if ( $confirm ) {
|
|
|
|
|
$this->doDelete( $reason );
|
2003-11-15 12:38:02 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
# determine whether this page has earlier revisions
|
|
|
|
|
# and insert a warning if it does
|
|
|
|
|
# we select the text because it might be useful below
|
2003-11-24 08:41:40 +00:00
|
|
|
$ns = $this->mTitle->getNamespace();
|
|
|
|
|
$title = $this->mTitle->getDBkey();
|
|
|
|
|
$etitle = wfStrencode( $title );
|
2004-01-03 12:32:32 +00:00
|
|
|
$sql = "SELECT old_text,old_flags FROM old WHERE old_namespace=$ns and old_title='$etitle' ORDER BY inverse_timestamp LIMIT 1";
|
2003-11-24 08:41:40 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2004-03-29 14:48:07 +00:00
|
|
|
if( ($old=wfFetchObject($res)) && !$confirm ) {
|
2003-09-01 09:59:53 +00:00
|
|
|
$skin=$wgUser->getSkin();
|
2004-04-03 10:01:08 +00:00
|
|
|
$wgOut->addHTML("<b>".wfMsg("historywarning"));
|
2004-04-09 01:37:41 +00:00
|
|
|
$wgOut->addHTML( $skin->historyLink() ."</b>");
|
2003-09-01 09:59:53 +00:00
|
|
|
}
|
2003-05-23 04:26:51 +00:00
|
|
|
|
2003-11-24 08:41:40 +00:00
|
|
|
$sql="SELECT cur_text FROM cur WHERE cur_namespace=$ns and cur_title='$etitle'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res=wfQuery($sql, DB_READ, $fname);
|
2003-09-01 09:59:53 +00:00
|
|
|
if( ($s=wfFetchObject($res))) {
|
2003-05-23 04:26:51 +00:00
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
# if this is a mini-text, we can paste part of it into the deletion reason
|
2003-05-23 04:26:51 +00:00
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
#if this is empty, an earlier revision may contain "useful" text
|
2004-03-20 15:03:26 +00:00
|
|
|
$blanked = false;
|
2003-09-01 09:59:53 +00:00
|
|
|
if($s->cur_text!="") {
|
|
|
|
|
$text=$s->cur_text;
|
|
|
|
|
} else {
|
|
|
|
|
if($old) {
|
2004-01-03 12:32:32 +00:00
|
|
|
$text = Article::getRevisionText( $old );
|
2004-03-20 15:03:26 +00:00
|
|
|
$blanked = true;
|
2003-05-23 04:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
2003-09-01 09:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$length=strlen($text);
|
|
|
|
|
|
|
|
|
|
# this should not happen, since it is not possible to store an empty, new
|
|
|
|
|
# page. Let's insert a standard text in case it does, though
|
2004-03-29 14:48:07 +00:00
|
|
|
if($length == 0 && $reason === "") {
|
|
|
|
|
$reason = wfMsg("exblank");
|
|
|
|
|
}
|
2003-09-01 09:59:53 +00:00
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
if($length < 500 && $reason === "") {
|
2003-09-01 09:59:53 +00:00
|
|
|
|
|
|
|
|
# comment field=255, let's grep the first 150 to have some user
|
|
|
|
|
# space left
|
|
|
|
|
$text=substr($text,0,150);
|
|
|
|
|
# let's strip out newlines and HTML tags
|
|
|
|
|
$text=preg_replace("/\"/","'",$text);
|
|
|
|
|
$text=preg_replace("/\</","<",$text);
|
|
|
|
|
$text=preg_replace("/\>/",">",$text);
|
|
|
|
|
$text=preg_replace("/[\n\r]/","",$text);
|
|
|
|
|
if(!$blanked) {
|
2004-03-29 14:48:07 +00:00
|
|
|
$reason=wfMsg("excontent"). " '".$text;
|
2003-09-01 09:59:53 +00:00
|
|
|
} else {
|
2004-03-29 14:48:07 +00:00
|
|
|
$reason=wfMsg("exbeforeblank") . " '".$text;
|
2003-05-23 04:26:51 +00:00
|
|
|
}
|
2004-03-29 14:48:07 +00:00
|
|
|
if($length>150) { $reason .= "..."; } # we've only pasted part of the text
|
|
|
|
|
$reason.="'";
|
2003-05-23 04:26:51 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
return $this->confirmDelete( "", $reason );
|
2003-09-01 09:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# Output deletion confirmation dialog
|
|
|
|
|
function confirmDelete( $par, $reason )
|
2003-09-01 09:59:53 +00:00
|
|
|
{
|
|
|
|
|
global $wgOut;
|
2003-11-15 12:38:02 +00:00
|
|
|
|
|
|
|
|
wfDebug( "Article::confirmDelete\n" );
|
2003-09-01 09:59:53 +00:00
|
|
|
|
|
|
|
|
$sub = htmlspecialchars( $this->mTitle->getPrefixedText() );
|
|
|
|
|
$wgOut->setSubtitle( wfMsg( "deletesub", $sub ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setRobotpolicy( "noindex,nofollow" );
|
|
|
|
|
$wgOut->addWikiText( wfMsg( "confirmdeletetext" ) );
|
|
|
|
|
|
2004-03-07 07:26:56 +00:00
|
|
|
$formaction = $this->mTitle->escapeLocalURL( "action=delete" . $par );
|
2004-03-06 01:49:16 +00:00
|
|
|
|
2004-04-03 10:01:08 +00:00
|
|
|
$confirm = htmlspecialchars( wfMsg( "confirm" ) );
|
|
|
|
|
$check = htmlspecialchars( wfMsg( "confirmcheck" ) );
|
|
|
|
|
$delcom = htmlspecialchars( wfMsg( "deletecomment" ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$wgOut->addHTML( "
|
2004-04-03 10:01:08 +00:00
|
|
|
<form id='deleteconfirm' method='post' action=\"{$formaction}\">
|
|
|
|
|
<table border='0'>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align='right'>
|
|
|
|
|
<label for='wpReason'>{$delcom}:</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td align='left'>
|
|
|
|
|
<input type='text' size='60' name='wpReason' id='wpReason' value=\"" . htmlspecialchars( $reason ) . "\" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> </td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align='right'>
|
|
|
|
|
<input type='checkbox' name='wpConfirm' value='1' id='wpConfirm' />
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<label for='wpConfirm'>{$check}</label>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> </td>
|
|
|
|
|
<td>
|
|
|
|
|
<input type='submit' name='wpConfirmB' value=\"{$confirm}\" />
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</form>\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$wgOut->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# Perform a deletion and output success or failure messages
|
|
|
|
|
function doDelete( $reason )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2003-09-01 08:30:14 +00:00
|
|
|
global $wgOut, $wgUser, $wgLang;
|
2003-04-14 23:10:40 +00:00
|
|
|
$fname = "Article::doDelete";
|
2003-11-15 12:38:02 +00:00
|
|
|
wfDebug( "$fname\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-04-01 12:35:45 +00:00
|
|
|
if ( $this->doDeleteArticle( $reason ) ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
$deleted = $this->mTitle->getPrefixedText();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$wgOut->setPagetitle( wfMsg( "actioncomplete" ) );
|
|
|
|
|
$wgOut->setRobotpolicy( "noindex,nofollow" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$loglink = $sk->makeKnownLink( $wgLang->getNsText(
|
|
|
|
|
Namespace::getWikipedia() ) .
|
|
|
|
|
":" . wfMsg( "dellogpage" ), wfMsg( "deletionlog" ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$text = wfMsg( "deletedtext", $deleted, $loglink );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-04-09 01:37:41 +00:00
|
|
|
$wgOut->addHTML( "<p>" . $text . "</p>\n" );
|
2004-03-20 15:03:26 +00:00
|
|
|
$wgOut->returnToMain( false );
|
|
|
|
|
} else {
|
|
|
|
|
$wgOut->fatalError( wfMsg( "cannotdelete" ) );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-03-29 14:48:07 +00:00
|
|
|
# Back-end article deletion
|
|
|
|
|
# Deletes the article with database consistency, writes logs, purges caches
|
|
|
|
|
# Returns success
|
|
|
|
|
function doDeleteArticle( $reason )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgUser, $wgLang;
|
2004-02-02 01:40:03 +00:00
|
|
|
global $wgUseSquid, $wgDeferredUpdateList, $wgInternalServer;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$fname = "Article::doDeleteArticle";
|
2003-11-15 12:38:02 +00:00
|
|
|
wfDebug( "$fname\n" );
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$ns = $this->mTitle->getNamespace();
|
|
|
|
|
$t = wfStrencode( $this->mTitle->getDBkey() );
|
|
|
|
|
$id = $this->mTitle->getArticleID();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
if ( "" == $t || $id == 0 ) {
|
|
|
|
|
return false;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$u = new SiteStatsUpdate( 0, 1, -$this->isCountable( $this->getContent( true ) ) );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
2004-02-02 01:40:03 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$linksTo = $this->mTitle->getLinksTo();
|
|
|
|
|
|
2004-02-02 01:40:03 +00:00
|
|
|
# Squid purging
|
|
|
|
|
if ( $wgUseSquid ) {
|
2004-03-20 15:03:26 +00:00
|
|
|
$urls = array(
|
2004-03-09 12:55:54 +00:00
|
|
|
$this->mTitle->getInternalURL(),
|
2004-03-20 15:03:26 +00:00
|
|
|
$this->mTitle->getInternalURL( "history" )
|
2004-02-02 01:40:03 +00:00
|
|
|
);
|
2004-03-20 15:03:26 +00:00
|
|
|
foreach ( $linksTo as $linkTo ) {
|
|
|
|
|
$urls[] = $linkTo->getInternalURL();
|
2004-02-02 01:40:03 +00:00
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
|
|
|
|
|
$u = new SquidUpdate( $urls );
|
2004-02-02 01:40:03 +00:00
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# Client and file cache invalidation
|
|
|
|
|
Title::touchArray( $linksTo );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Move article and history to the "archive" table
|
|
|
|
|
$sql = "INSERT INTO archive (ar_namespace,ar_title,ar_text," .
|
|
|
|
|
"ar_comment,ar_user,ar_user_text,ar_timestamp,ar_minor_edit," .
|
|
|
|
|
"ar_flags) SELECT cur_namespace,cur_title,cur_text,cur_comment," .
|
|
|
|
|
"cur_user,cur_user_text,cur_timestamp,cur_minor_edit,0 FROM cur " .
|
|
|
|
|
"WHERE cur_namespace={$ns} AND cur_title='{$t}'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "INSERT INTO archive (ar_namespace,ar_title,ar_text," .
|
|
|
|
|
"ar_comment,ar_user,ar_user_text,ar_timestamp,ar_minor_edit," .
|
|
|
|
|
"ar_flags) SELECT old_namespace,old_title,old_text,old_comment," .
|
|
|
|
|
"old_user,old_user_text,old_timestamp,old_minor_edit,old_flags " .
|
|
|
|
|
"FROM old WHERE old_namespace={$ns} AND old_title='{$t}'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Now that it's safely backed up, delete it
|
|
|
|
|
|
|
|
|
|
$sql = "DELETE FROM cur WHERE cur_namespace={$ns} AND " .
|
|
|
|
|
"cur_title='{$t}'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "DELETE FROM old WHERE old_namespace={$ns} AND " .
|
|
|
|
|
"old_title='{$t}'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "DELETE FROM recentchanges WHERE rc_namespace={$ns} AND " .
|
|
|
|
|
"rc_title='{$t}'";
|
2003-11-09 23:28:06 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Finally, clean up the link tables
|
2004-03-20 15:03:26 +00:00
|
|
|
$t = wfStrencode( $this->mTitle->getPrefixedDBkey() );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
Article::onArticleDelete( $this->mTitle );
|
|
|
|
|
|
|
|
|
|
$sql = "INSERT INTO brokenlinks (bl_from,bl_to) VALUES ";
|
|
|
|
|
$first = true;
|
|
|
|
|
|
|
|
|
|
foreach ( $linksTo as $titleObj ) {
|
|
|
|
|
if ( ! $first ) { $sql .= ","; }
|
|
|
|
|
$first = false;
|
|
|
|
|
# Get article ID. Efficient because it was loaded into the cache by getLinksTo().
|
|
|
|
|
$linkID = $titleObj->getArticleID();
|
|
|
|
|
$sql .= "({$linkID},'{$t}')";
|
|
|
|
|
}
|
|
|
|
|
if ( ! $first ) {
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2004-03-20 15:03:26 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$sql = "DELETE FROM links WHERE l_to={$id}";
|
|
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$sql = "DELETE FROM links WHERE l_from={$id}";
|
|
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
$sql = "DELETE FROM imagelinks WHERE il_from={$id}";
|
|
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
|
|
|
|
|
|
|
|
|
$sql = "DELETE FROM brokenlinks WHERE bl_from={$id}";
|
|
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$log = new LogPage( wfMsg( "dellogpage" ), wfMsg( "dellogpagetext" ) );
|
2004-03-20 15:03:26 +00:00
|
|
|
$art = $this->mTitle->getPrefixedText();
|
2004-03-29 14:48:07 +00:00
|
|
|
$log->addEntry( wfMsg( "deletedarticle", $art ), $reason );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Clear the cached article id so the interface doesn't act like we exist
|
2003-09-01 08:30:14 +00:00
|
|
|
$this->mTitle->resetArticleID( 0 );
|
|
|
|
|
$this->mTitle->mArticleID = 0;
|
2004-03-20 15:03:26 +00:00
|
|
|
return true;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function rollback()
|
|
|
|
|
{
|
2004-03-08 09:09:35 +00:00
|
|
|
global $wgUser, $wgLang, $wgOut, $wgRequest;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( ! $wgUser->isSysop() ) {
|
|
|
|
|
$wgOut->sysopRequired();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-12-05 10:55:50 +00:00
|
|
|
if ( wfReadOnly() ) {
|
|
|
|
|
$wgOut->readOnlyPage( $this->getContent() );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-12-14 14:29:35 +00:00
|
|
|
|
2004-01-17 11:16:14 +00:00
|
|
|
# Enhanced rollback, marks edits rc_bot=1
|
2004-03-08 09:09:35 +00:00
|
|
|
$bot = $wgRequest->getBool( 'bot' );
|
2003-12-14 14:29:35 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Replace all this user's current edits with the next one down
|
2003-09-01 08:30:14 +00:00
|
|
|
$tt = wfStrencode( $this->mTitle->getDBKey() );
|
|
|
|
|
$n = $this->mTitle->getNamespace();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
# Get the last editor
|
2003-05-25 07:09:23 +00:00
|
|
|
$sql = "SELECT cur_id,cur_user,cur_user_text,cur_comment FROM cur WHERE cur_title='{$tt}' AND cur_namespace={$n}";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ );
|
2003-04-14 23:10:40 +00:00
|
|
|
if( ($x = wfNumRows( $res )) != 1 ) {
|
|
|
|
|
# Something wrong
|
|
|
|
|
$wgOut->addHTML( wfMsg( "notanarticle" ) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$ut = wfStrencode( $s->cur_user_text );
|
|
|
|
|
$uid = $s->cur_user;
|
|
|
|
|
$pid = $s->cur_id;
|
|
|
|
|
|
2004-03-08 09:09:35 +00:00
|
|
|
$from = str_replace( '_', ' ', $wgRequest->getVal( "from" ) );
|
2003-05-25 07:09:23 +00:00
|
|
|
if( $from != $s->cur_user_text ) {
|
2003-05-25 07:56:08 +00:00
|
|
|
$wgOut->setPageTitle(wfmsg("rollbackfailed"));
|
|
|
|
|
$wgOut->addWikiText( wfMsg( "alreadyrolled",
|
2003-09-01 08:30:14 +00:00
|
|
|
htmlspecialchars( $this->mTitle->getPrefixedText()),
|
2003-05-25 07:09:23 +00:00
|
|
|
htmlspecialchars( $from ),
|
2003-05-25 07:56:08 +00:00
|
|
|
htmlspecialchars( $s->cur_user_text ) ) );
|
|
|
|
|
if($s->cur_comment != "") {
|
|
|
|
|
$wgOut->addHTML(
|
|
|
|
|
wfMsg("editcomment",
|
|
|
|
|
htmlspecialchars( $s->cur_comment ) ) );
|
2004-01-17 11:16:14 +00:00
|
|
|
}
|
2003-05-25 07:09:23 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Get the last edit not by this guy
|
2004-01-03 12:32:32 +00:00
|
|
|
$sql = "SELECT old_text,old_user,old_user_text,old_timestamp,old_flags
|
2003-04-14 23:10:40 +00:00
|
|
|
FROM old USE INDEX (name_title_timestamp)
|
|
|
|
|
WHERE old_namespace={$n} AND old_title='{$tt}'
|
|
|
|
|
AND (old_user <> {$uid} OR old_user_text <> '{$ut}')
|
|
|
|
|
ORDER BY inverse_timestamp LIMIT 1";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ );
|
2003-04-14 23:10:40 +00:00
|
|
|
if( wfNumRows( $res ) != 1 ) {
|
|
|
|
|
# Something wrong
|
2003-05-25 07:56:08 +00:00
|
|
|
$wgOut->setPageTitle(wfMsg("rollbackfailed"));
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->addHTML( wfMsg( "cantrollback" ) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$s = wfFetchObject( $res );
|
2003-12-14 14:29:35 +00:00
|
|
|
|
|
|
|
|
if ( $bot ) {
|
|
|
|
|
# Mark all reverted edits as bot
|
|
|
|
|
$sql = "UPDATE recentchanges SET rc_bot=1 WHERE
|
|
|
|
|
rc_cur_id=$pid AND rc_user=$uid AND rc_timestamp > '{$s->old_timestamp}'";
|
|
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Save it!
|
2004-01-17 11:16:14 +00:00
|
|
|
$newcomment = wfMsg( "revertpage", $s->old_user_text, $from );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setPagetitle( wfMsg( "actioncomplete" ) );
|
|
|
|
|
$wgOut->setRobotpolicy( "noindex,nofollow" );
|
2004-04-03 10:01:08 +00:00
|
|
|
$wgOut->addHTML( "<h2>" . $newcomment . "</h2>\n<hr />\n" );
|
2004-03-14 22:28:52 +00:00
|
|
|
$this->updateArticle( Article::getRevisionText( $s ), $newcomment, 1, $this->mTitle->userIsWatching(), $bot );
|
2004-01-05 23:32:39 +00:00
|
|
|
Article::onArticleEdit( $this->mTitle );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Do standard deferred updates after page view
|
|
|
|
|
|
|
|
|
|
/* private */ function viewUpdates()
|
|
|
|
|
{
|
2003-09-01 08:30:14 +00:00
|
|
|
global $wgDeferredUpdateList;
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 != $this->getID() ) {
|
2003-11-09 11:45:12 +00:00
|
|
|
global $wgDisableCounters;
|
|
|
|
|
if( !$wgDisableCounters ) {
|
2003-12-13 21:32:32 +00:00
|
|
|
Article::incViewCount( $this->getID() );
|
2003-11-09 11:45:12 +00:00
|
|
|
$u = new SiteStatsUpdate( 1, 0, 0 );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
}
|
2003-09-01 08:30:14 +00:00
|
|
|
$u = new UserTalkUpdate( 0, $this->mTitle->getNamespace(),
|
|
|
|
|
$this->mTitle->getDBkey() );
|
2003-04-14 23:10:40 +00:00
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-31 16:59:08 +00:00
|
|
|
# Do standard deferred updates after page edit.
|
|
|
|
|
# Every 1000th edit, prune the recent changes table.
|
|
|
|
|
|
|
|
|
|
/* private */ function editUpdates( $text )
|
|
|
|
|
{
|
|
|
|
|
global $wgDeferredUpdateList, $wgDBname, $wgMemc;
|
|
|
|
|
global $wgMessageCache;
|
|
|
|
|
|
|
|
|
|
wfSeedRandom();
|
|
|
|
|
if ( 0 == mt_rand( 0, 999 ) ) {
|
|
|
|
|
$cutoff = wfUnix2Timestamp( time() - ( 7 * 86400 ) );
|
|
|
|
|
$sql = "DELETE FROM recentchanges WHERE rc_timestamp < '{$cutoff}'";
|
|
|
|
|
wfQuery( $sql, DB_WRITE );
|
|
|
|
|
}
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
$title = $this->mTitle->getPrefixedDBkey();
|
|
|
|
|
$shortTitle = $this->mTitle->getDBkey();
|
|
|
|
|
|
|
|
|
|
$adj = $this->mCountAdjustment;
|
|
|
|
|
|
|
|
|
|
if ( 0 != $id ) {
|
|
|
|
|
$u = new LinksUpdate( $id, $title );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
$u = new SiteStatsUpdate( 0, 1, $adj );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
$u = new SearchUpdate( $id, $title, $text );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
|
|
|
|
|
$u = new UserTalkUpdate( 1, $this->mTitle->getNamespace(), $shortTitle );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-01-31 16:59:08 +00:00
|
|
|
if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
|
|
|
|
|
$wgMessageCache->replace( $shortTitle, $text );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
/* private */ function setOldSubtitle()
|
|
|
|
|
{
|
|
|
|
|
global $wgLang, $wgOut;
|
|
|
|
|
|
|
|
|
|
$td = $wgLang->timeanddate( $this->mTimestamp, true );
|
2003-11-15 13:08:12 +00:00
|
|
|
$r = wfMsg( "revisionasof", $td );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setSubtitle( "({$r})" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# This function is called right before saving the wikitext,
|
|
|
|
|
# so we can do things like signatures and links-in-context.
|
|
|
|
|
|
|
|
|
|
function preSaveTransform( $text )
|
|
|
|
|
{
|
2004-03-06 01:49:16 +00:00
|
|
|
global $wgParser, $wgUser;
|
|
|
|
|
return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-03-06 01:49:16 +00:00
|
|
|
|
2003-05-16 13:39:22 +00:00
|
|
|
/* Caching functions */
|
2003-12-11 20:16:34 +00:00
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# checkLastModified returns true if it has taken care of all
|
2003-12-11 20:16:34 +00:00
|
|
|
# output to the client that is necessary for this request.
|
|
|
|
|
# (that is, it has sent a cached version of the page)
|
2003-08-02 10:13:27 +00:00
|
|
|
function tryFileCache() {
|
2003-11-24 08:41:40 +00:00
|
|
|
static $called = false;
|
|
|
|
|
if( $called ) {
|
|
|
|
|
wfDebug( " tryFileCache() -- called twice!?\n" );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$called = true;
|
2003-05-16 13:39:22 +00:00
|
|
|
if($this->isFileCacheable()) {
|
2003-09-05 21:12:24 +00:00
|
|
|
$touched = $this->mTouched;
|
2003-12-17 09:41:17 +00:00
|
|
|
if( $this->mTitle->getPrefixedDBkey() == wfMsg( "mainpage" ) ) {
|
|
|
|
|
# Expire the main page quicker
|
2003-09-05 21:12:24 +00:00
|
|
|
$expire = wfUnix2Timestamp( time() - 3600 );
|
|
|
|
|
$touched = max( $expire, $touched );
|
|
|
|
|
}
|
2003-09-01 08:30:14 +00:00
|
|
|
$cache = new CacheManager( $this->mTitle );
|
2003-09-05 21:12:24 +00:00
|
|
|
if($cache->isFileCacheGood( $touched )) {
|
2003-11-09 11:45:12 +00:00
|
|
|
global $wgOut;
|
2003-08-02 10:13:27 +00:00
|
|
|
wfDebug( " tryFileCache() - about to load\n" );
|
|
|
|
|
$cache->loadFromFileCache();
|
2003-12-11 20:16:34 +00:00
|
|
|
return true;
|
2003-05-16 13:39:22 +00:00
|
|
|
} else {
|
2003-08-02 10:13:27 +00:00
|
|
|
wfDebug( " tryFileCache() - starting buffer\n" );
|
|
|
|
|
ob_start( array(&$cache, 'saveToFileCache' ) );
|
2003-05-16 13:39:22 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
wfDebug( " tryFileCache() - not cacheable\n" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isFileCacheable() {
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgUser, $wgUseFileCache, $wgShowIPinHeader, $wgRequest;
|
|
|
|
|
extract( $wgRequest->getValues( 'action', 'oldid', 'diff', 'redirect', 'printable' ) );
|
|
|
|
|
|
2003-05-16 13:39:22 +00:00
|
|
|
return $wgUseFileCache
|
|
|
|
|
and (!$wgShowIPinHeader)
|
2003-09-01 19:40:52 +00:00
|
|
|
and ($this->getID() != 0)
|
2003-05-16 13:39:22 +00:00
|
|
|
and ($wgUser->getId() == 0)
|
|
|
|
|
and (!$wgUser->getNewtalk())
|
2004-01-10 14:18:05 +00:00
|
|
|
and ($this->mTitle->getNamespace() != Namespace::getSpecial())
|
2003-05-16 13:39:22 +00:00
|
|
|
and ($action == "view")
|
|
|
|
|
and (!isset($oldid))
|
|
|
|
|
and (!isset($diff))
|
|
|
|
|
and (!isset($redirect))
|
|
|
|
|
and (!isset($printable))
|
|
|
|
|
and (!$this->mRedirectedFrom);
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
function checkTouched() {
|
|
|
|
|
$id = $this->getID();
|
|
|
|
|
$sql = "SELECT cur_touched,cur_is_redirect FROM cur WHERE cur_id=$id";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, "Article::checkTouched" );
|
|
|
|
|
if( $s = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->mTouched = $s->cur_touched;
|
|
|
|
|
return !$s->cur_is_redirect;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-12-13 21:32:32 +00:00
|
|
|
|
|
|
|
|
/* static */ function incViewCount( $id )
|
|
|
|
|
{
|
|
|
|
|
$id = intval( $id );
|
2004-01-17 19:59:42 +00:00
|
|
|
global $wgHitcounterUpdateFreq;
|
|
|
|
|
|
|
|
|
|
if( $wgHitcounterUpdateFreq <= 1 ){ //
|
|
|
|
|
wfQuery("UPDATE cur SET cur_counter = cur_counter + 1 " .
|
|
|
|
|
"WHERE cur_id = $id", DB_WRITE);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-12-13 21:32:32 +00:00
|
|
|
|
|
|
|
|
# Not important enough to warrant an error page in case of failure
|
|
|
|
|
$oldignore = wfIgnoreSQLErrors( true );
|
|
|
|
|
|
|
|
|
|
wfQuery("INSERT INTO hitcounter (hc_id) VALUES ({$id})", DB_WRITE);
|
|
|
|
|
|
2004-01-17 19:59:42 +00:00
|
|
|
$checkfreq = intval( $wgHitcounterUpdateFreq/25 + 1 );
|
|
|
|
|
if( (rand() % $checkfreq != 0) or (wfLastErrno() != 0) ){
|
2003-12-13 21:32:32 +00:00
|
|
|
# Most of the time (or on SQL errors), skip row count check
|
|
|
|
|
wfIgnoreSQLErrors( $oldignore );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$res = wfQuery("SELECT COUNT(*) as n FROM hitcounter", DB_WRITE);
|
|
|
|
|
$row = wfFetchObject( $res );
|
|
|
|
|
$rown = intval( $row->n );
|
2004-01-17 19:59:42 +00:00
|
|
|
if( $rown >= $wgHitcounterUpdateFreq ){
|
2003-12-13 21:32:32 +00:00
|
|
|
wfProfileIn( "Article::incViewCount-collect" );
|
|
|
|
|
$old_user_abort = ignore_user_abort( true );
|
|
|
|
|
|
|
|
|
|
wfQuery("LOCK TABLES hitcounter WRITE", DB_WRITE);
|
|
|
|
|
wfQuery("CREATE TEMPORARY TABLE acchits TYPE=HEAP ".
|
|
|
|
|
"SELECT hc_id,COUNT(*) AS hc_n FROM hitcounter ".
|
|
|
|
|
"GROUP BY hc_id", DB_WRITE);
|
|
|
|
|
wfQuery("DELETE FROM hitcounter", DB_WRITE);
|
|
|
|
|
wfQuery("UNLOCK TABLES", DB_WRITE);
|
|
|
|
|
wfQuery("UPDATE cur,acchits SET cur_counter=cur_counter + hc_n ".
|
|
|
|
|
"WHERE cur_id = hc_id", DB_WRITE);
|
|
|
|
|
wfQuery("DROP TABLE acchits", DB_WRITE);
|
|
|
|
|
|
|
|
|
|
ignore_user_abort( $old_user_abort );
|
|
|
|
|
wfProfileOut( "Article::incViewCount-collect" );
|
|
|
|
|
}
|
|
|
|
|
wfIgnoreSQLErrors( $oldignore );
|
|
|
|
|
}
|
2004-01-05 23:32:39 +00:00
|
|
|
|
|
|
|
|
# The onArticle*() functions are supposed to be a kind of hooks
|
|
|
|
|
# which should be called whenever any of the specified actions
|
|
|
|
|
# are done.
|
|
|
|
|
#
|
|
|
|
|
# This is a good place to put code to clear caches, for instance.
|
|
|
|
|
|
2004-03-20 15:03:26 +00:00
|
|
|
# This is called on page move and undelete, as well as edit
|
2004-01-31 16:59:08 +00:00
|
|
|
/* static */ function onArticleCreate($title_obj){
|
2004-03-20 15:03:26 +00:00
|
|
|
global $wgEnablePersistentLC, $wgEnableParserCache, $wgUseSquid, $wgDeferredUpdateList;
|
|
|
|
|
|
|
|
|
|
$titles = $title_obj->getBrokenLinksTo();
|
|
|
|
|
|
|
|
|
|
# Purge squid
|
|
|
|
|
if ( $wgUseSquid ) {
|
|
|
|
|
$urls = $title_obj->getSquidURLs();
|
|
|
|
|
foreach ( $titles as $linkTitle ) {
|
|
|
|
|
$urls[] = $linkTitle->getInternalURL();
|
|
|
|
|
}
|
|
|
|
|
$u = new SquidUpdate( $urls );
|
|
|
|
|
array_push( $wgDeferredUpdateList, $u );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Clear persistent link cache
|
2004-01-05 23:32:39 +00:00
|
|
|
if ( $wgEnablePersistentLC ) {
|
2004-01-31 16:59:08 +00:00
|
|
|
LinkCache::linksccClearBrokenLinksTo( $title_obj->getPrefixedDBkey() );
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
|
|
|
|
|
# Clear parser cache (not really used)
|
2004-01-07 02:51:47 +00:00
|
|
|
if ( $wgEnableParserCache ) {
|
2004-01-31 16:59:08 +00:00
|
|
|
OutputPage::parsercacheClearBrokenLinksTo( $title_obj->getPrefixedDBkey() );
|
2004-01-07 02:51:47 +00:00
|
|
|
}
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-01-31 16:59:08 +00:00
|
|
|
/* static */ function onArticleDelete($title_obj){
|
|
|
|
|
global $wgEnablePersistentLC, $wgEnableParserCache;
|
2004-01-05 23:32:39 +00:00
|
|
|
if ( $wgEnablePersistentLC ) {
|
2004-01-31 16:59:08 +00:00
|
|
|
LinkCache::linksccClearLinksTo( $title_obj->getArticleID() );
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
2004-01-07 02:51:47 +00:00
|
|
|
if ( $wgEnableParserCache ) {
|
2004-01-31 16:59:08 +00:00
|
|
|
OutputPage::parsercacheClearLinksTo( $title_obj->getArticleID() );
|
2004-01-07 02:51:47 +00:00
|
|
|
}
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-01-31 16:59:08 +00:00
|
|
|
/* static */ function onArticleEdit($title_obj){
|
|
|
|
|
global $wgEnablePersistentLC, $wgEnableParserCache;
|
2004-01-05 23:32:39 +00:00
|
|
|
if ( $wgEnablePersistentLC ) {
|
2004-01-31 16:59:08 +00:00
|
|
|
LinkCache::linksccClearPage( $title_obj->getArticleID() );
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
2004-01-07 02:51:47 +00:00
|
|
|
if ( $wgEnableParserCache ) {
|
2004-02-15 17:02:58 +00:00
|
|
|
OutputPage::parsercacheClearPage( $title_obj->getArticleID(), $title_obj->getNamespace() );
|
2004-01-07 02:51:47 +00:00
|
|
|
}
|
2004-01-05 23:32:39 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|