2003-04-14 23:10:40 +00:00
|
|
|
<?
|
|
|
|
|
# Cache for article titles and ids linked from one source
|
|
|
|
|
|
2003-07-06 11:42:42 +00:00
|
|
|
# These are used in incrementalSetup()
|
|
|
|
|
define ('LINKCACHE_GOOD', 0);
|
|
|
|
|
define ('LINKCACHE_BAD', 1);
|
|
|
|
|
define ('LINKCACHE_IMAGE', 2);
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
class LinkCache {
|
|
|
|
|
|
|
|
|
|
/* private */ var $mGoodLinks, $mBadLinks, $mActive;
|
2003-07-06 11:42:42 +00:00
|
|
|
/* private */ var $mImageLinks;
|
|
|
|
|
/* private */ var $mPreFilled, $mOldGoodLinks, $mOldBadLinks;
|
|
|
|
|
|
2003-11-04 08:59:28 +00:00
|
|
|
/* private */ function getKey( $title ) {
|
|
|
|
|
global $wgDBname;
|
|
|
|
|
return "$wgDBname:lc:title:$title";
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function LinkCache()
|
|
|
|
|
{
|
|
|
|
|
$this->mActive = true;
|
2003-07-06 11:42:42 +00:00
|
|
|
$this->mPreFilled = false;
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mGoodLinks = array();
|
|
|
|
|
$this->mBadLinks = array();
|
|
|
|
|
$this->mImageLinks = array();
|
2003-07-06 11:42:42 +00:00
|
|
|
$this->mOldGoodLinks = array();
|
|
|
|
|
$this->mOldBadLinks = array();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getGoodLinkID( $title )
|
|
|
|
|
{
|
|
|
|
|
if ( array_key_exists( $title, $this->mGoodLinks ) ) {
|
|
|
|
|
return $this->mGoodLinks[$title];
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isBadLink( $title )
|
|
|
|
|
{
|
|
|
|
|
return in_array( $title, $this->mBadLinks );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addGoodLink( $id, $title )
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mActive ) {
|
|
|
|
|
$this->mGoodLinks[$title] = $id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addBadLink( $title )
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mActive && ( ! $this->isBadLink( $title ) ) ) {
|
|
|
|
|
array_push( $this->mBadLinks, $title );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addImageLink( $title )
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mActive ) { $this->mImageLinks[$title] = 1; }
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-04 08:59:28 +00:00
|
|
|
function addImageLinkObj( $nt )
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mActive ) { $this->mImageLinks[$nt->getDBkey()] = 1; }
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function clearBadLink( $title )
|
|
|
|
|
{
|
|
|
|
|
$index = array_search( $title, $this->mBadLinks );
|
|
|
|
|
if ( isset( $index ) ) {
|
|
|
|
|
unset( $this->mBadLinks[$index] );
|
|
|
|
|
}
|
2003-11-04 08:59:28 +00:00
|
|
|
$this->clearLink( $title );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function clearLink( $title ) {
|
|
|
|
|
global $wgMemc;
|
|
|
|
|
$wgMemc->delete( $this->getKey( $title ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function suspend() { $this->mActive = false; }
|
|
|
|
|
function resume() { $this->mActive = true; }
|
|
|
|
|
function getGoodLinks() { return $this->mGoodLinks; }
|
|
|
|
|
function getBadLinks() { return $this->mBadLinks; }
|
|
|
|
|
function getImageLinks() { return $this->mImageLinks; }
|
|
|
|
|
|
|
|
|
|
function addLink( $title )
|
|
|
|
|
{
|
2003-11-04 08:59:28 +00:00
|
|
|
$nt = Title::newFromDBkey( $title );
|
|
|
|
|
if( $nt ) {
|
|
|
|
|
return $this->addLinkObj( $nt );
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2003-10-22 23:56:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addLinkObj( &$nt )
|
|
|
|
|
{
|
2003-11-04 08:59:28 +00:00
|
|
|
$title = $nt->getPrefixedDBkey();
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( $this->isBadLink( $title ) ) { return 0; }
|
|
|
|
|
$id = $this->getGoodLinkID( $title );
|
|
|
|
|
if ( 0 != $id ) { return $id; }
|
|
|
|
|
|
2003-11-04 08:59:28 +00:00
|
|
|
global $wgMemc;
|
|
|
|
|
$fname = "LinkCache::addLinkObj";
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileIn( $fname );
|
2003-05-16 13:37:02 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$ns = $nt->getNamespace();
|
2003-11-04 08:59:28 +00:00
|
|
|
$t = $nt->getDBkey();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-10-22 23:56:49 +00:00
|
|
|
if ( "" == $title ) {
|
|
|
|
|
wfProfileOut( $fname );
|
2003-10-16 13:30:45 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-04 08:59:28 +00:00
|
|
|
$id = $wgMemc->get( $key = $this->getKey( $title ) );
|
2003-08-11 13:53:20 +00:00
|
|
|
if( $id === FALSE ) {
|
2003-11-04 08:59:28 +00:00
|
|
|
$sql = "SELECT cur_id FROM cur WHERE cur_namespace=" .
|
|
|
|
|
"{$ns} AND cur_title='" . wfStrencode( $t ) . "'";
|
2003-09-20 01:34:06 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, "LinkCache::addLink" );
|
2003-08-11 13:53:20 +00:00
|
|
|
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
$id = 0;
|
|
|
|
|
} else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$id = $s->cur_id;
|
|
|
|
|
}
|
|
|
|
|
$wgMemc->add( $key, $id, time()+3600 );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
if ( 0 == $id ) { $this->addBadLink( $title ); }
|
|
|
|
|
else { $this->addGoodLink( $id, $title ); }
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $id;
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-22 23:56:49 +00:00
|
|
|
function preFill( &$fromtitle )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2003-10-16 13:30:45 +00:00
|
|
|
$fname = "LinkCache::preFill";
|
|
|
|
|
wfProfileIn( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
# Note -- $fromtitle is a Title *object*
|
|
|
|
|
$dbkeyfrom = wfStrencode( $fromtitle->getPrefixedDBKey() );
|
2003-11-04 08:59:28 +00:00
|
|
|
$sql = "SELECT cur_id,cur_namespace,cur_title
|
2003-04-14 23:10:40 +00:00
|
|
|
FROM cur,links
|
|
|
|
|
WHERE cur_id=l_to AND l_from='{$dbkeyfrom}'";
|
2003-11-04 08:59:28 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
while( $s = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->addGoodLink( $s->cur_id,
|
|
|
|
|
Title::makeName( $s->cur_namespace, $s->cur_title )
|
|
|
|
|
);
|
|
|
|
|
}
|
2003-07-06 11:42:42 +00:00
|
|
|
|
|
|
|
|
$this->suspend();
|
|
|
|
|
$id = $fromtitle->getArticleID();
|
|
|
|
|
$this->resume();
|
|
|
|
|
|
2003-11-04 08:59:28 +00:00
|
|
|
$sql = "SELECT bl_to
|
2003-05-16 13:37:02 +00:00
|
|
|
FROM brokenlinks
|
2003-07-06 11:42:42 +00:00
|
|
|
WHERE bl_from='{$id}'";
|
2003-09-20 01:34:06 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, "LinkCache::preFill" );
|
2003-05-16 13:37:02 +00:00
|
|
|
while( $s = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->addBadLink( $s->bl_to );
|
|
|
|
|
}
|
2003-07-06 11:42:42 +00:00
|
|
|
|
|
|
|
|
$this->mOldBadLinks = $this->mBadLinks;
|
|
|
|
|
$this->mOldGoodLinks = $this->mGoodLinks;
|
|
|
|
|
$this->mPreFilled = true;
|
|
|
|
|
|
2003-10-16 13:30:45 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-07-06 11:42:42 +00:00
|
|
|
function getGoodAdditions()
|
|
|
|
|
{
|
|
|
|
|
return array_diff( $this->mGoodLinks, $this->mOldGoodLinks );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getBadAdditions()
|
|
|
|
|
{
|
|
|
|
|
return array_values( array_diff( $this->mBadLinks, $this->mOldBadLinks ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getImageAdditions()
|
|
|
|
|
{
|
|
|
|
|
return array_diff_assoc( $this->mImageLinks, $this->mOldImageLinks );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getGoodDeletions()
|
|
|
|
|
{
|
|
|
|
|
return array_diff( $this->mOldGoodLinks, $this->mGoodLinks );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getBadDeletions()
|
|
|
|
|
{
|
|
|
|
|
return array_values( array_diff( $this->mOldBadLinks, $this->mBadLinks ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getImageDeletions()
|
|
|
|
|
{
|
|
|
|
|
return array_diff_assoc( $this->mOldImageLinks, $this->mImageLinks );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-07-06 11:42:42 +00:00
|
|
|
# Parameters: $which is one of the LINKCACHE_xxx constants, $del and $add are
|
|
|
|
|
# the incremental update arrays which will be filled. Returns whether or not it's
|
|
|
|
|
# worth doing the incremental version. For example, if [[List of mathematical topics]]
|
|
|
|
|
# was blanked, it would take a long, long time to do incrementally.
|
|
|
|
|
function incrementalSetup( $which, &$del, &$add )
|
|
|
|
|
{
|
|
|
|
|
if ( ! $this->mPreFilled ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch ( $which ) {
|
|
|
|
|
case LINKCACHE_GOOD:
|
|
|
|
|
$old =& $this->mOldGoodLinks;
|
|
|
|
|
$cur =& $this->mGoodLinks;
|
|
|
|
|
$del = $this->getGoodDeletions();
|
|
|
|
|
$add = $this->getGoodAdditions();
|
|
|
|
|
break;
|
|
|
|
|
case LINKCACHE_BAD:
|
|
|
|
|
$old =& $this->mOldBadLinks;
|
|
|
|
|
$cur =& $this->mBadLinks;
|
|
|
|
|
$del = $this->getBadDeletions();
|
|
|
|
|
$add = $this->getBadAdditions();
|
|
|
|
|
break;
|
|
|
|
|
default: # LINKCACHE_IMAGE
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-07 13:43:03 +00:00
|
|
|
return true;
|
2003-07-06 11:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Clears cache but leaves old preFill copies alone
|
|
|
|
|
function clear()
|
|
|
|
|
{
|
|
|
|
|
$this->mGoodLinks = array();
|
|
|
|
|
$this->mBadLinks = array();
|
|
|
|
|
$this->mImageLinks = array();
|
|
|
|
|
}
|
2003-08-11 13:53:20 +00:00
|
|
|
|
2003-07-06 11:42:42 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|