2003-04-14 23:10:40 +00:00
|
|
|
<?
|
|
|
|
|
# Cache for article titles and ids linked from one source
|
|
|
|
|
|
|
|
|
|
class LinkCache {
|
|
|
|
|
|
|
|
|
|
/* private */ var $mGoodLinks, $mBadLinks, $mActive;
|
|
|
|
|
/* private */ var $mImageLinks;
|
|
|
|
|
|
|
|
|
|
function LinkCache()
|
|
|
|
|
{
|
|
|
|
|
$this->mActive = true;
|
|
|
|
|
$this->mGoodLinks = array();
|
|
|
|
|
$this->mBadLinks = array();
|
|
|
|
|
$this->mImageLinks = array();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function clearBadLink( $title )
|
|
|
|
|
{
|
|
|
|
|
$index = array_search( $title, $this->mBadLinks );
|
|
|
|
|
if ( isset( $index ) ) {
|
|
|
|
|
unset( $this->mBadLinks[$index] );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 )
|
|
|
|
|
{
|
|
|
|
|
if ( $this->isBadLink( $title ) ) { return 0; }
|
|
|
|
|
$id = $this->getGoodLinkID( $title );
|
|
|
|
|
if ( 0 != $id ) { return $id; }
|
|
|
|
|
|
2003-05-16 13:37:02 +00:00
|
|
|
wfProfileIn( "LinkCache::addLink-checkdatabase" );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$nt = Title::newFromDBkey( $title );
|
|
|
|
|
$ns = $nt->getNamespace();
|
|
|
|
|
$t = $nt->getDBkey();
|
|
|
|
|
|
|
|
|
|
if ( "" == $t ) { return 0; }
|
|
|
|
|
$sql = "SELECT HIGH_PRIORITY cur_id FROM cur WHERE cur_namespace=" .
|
|
|
|
|
"{$ns} AND cur_title='" . wfStrencode( $t ) . "'";
|
|
|
|
|
$res = wfQuery( $sql, "LinkCache::addLink" );
|
|
|
|
|
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
$id = 0;
|
|
|
|
|
} else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$id = $s->cur_id;
|
|
|
|
|
}
|
|
|
|
|
if ( 0 == $id ) { $this->addBadLink( $title ); }
|
|
|
|
|
else { $this->addGoodLink( $id, $title ); }
|
2003-05-16 13:37:02 +00:00
|
|
|
wfProfileOut();
|
2003-04-14 23:10:40 +00:00
|
|
|
return $id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function preFill( $fromtitle )
|
|
|
|
|
{
|
|
|
|
|
wfProfileIn( "LinkCache::preFill" );
|
|
|
|
|
# Note -- $fromtitle is a Title *object*
|
|
|
|
|
$dbkeyfrom = wfStrencode( $fromtitle->getPrefixedDBKey() );
|
|
|
|
|
$sql = "SELECT HIGH_PRIORITY cur_id,cur_namespace,cur_title
|
|
|
|
|
FROM cur,links
|
|
|
|
|
WHERE cur_id=l_to AND l_from='{$dbkeyfrom}'";
|
|
|
|
|
$res = wfQuery( $sql, "LinkCache::preFill" );
|
|
|
|
|
while( $s = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->addGoodLink( $s->cur_id,
|
|
|
|
|
Title::makeName( $s->cur_namespace, $s->cur_title )
|
|
|
|
|
);
|
|
|
|
|
}
|
2003-05-16 13:37:02 +00:00
|
|
|
|
|
|
|
|
$sql = "SELECT HIGH_PRIORITY bl_to
|
|
|
|
|
FROM brokenlinks
|
|
|
|
|
WHERE bl_from='{$dbkeyfrom}'";
|
|
|
|
|
$res = wfQuery( $sql, "LinkCache::preFill" );
|
|
|
|
|
while( $s = wfFetchObject( $res ) ) {
|
|
|
|
|
$this->addBadLink( $s->bl_to );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
wfProfileOut();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|