mForUpdate, $update ); } /** * @param string $title * @return int */ public function getGoodLinkID( $title ) { if ( array_key_exists( $title, $this->mGoodLinks ) ) { return $this->mGoodLinks[$title]; } else { return 0; } } /** * Get a field of a title object from cache. * If this link is not good, it will return NULL. * @param Title $title * @param string $field ('length','redirect','revision','model') * @return string|null */ public function getGoodLinkFieldObj( $title, $field ) { $dbkey = $title->getPrefixedDBkey(); if ( array_key_exists( $dbkey, $this->mGoodLinkFields ) ) { return $this->mGoodLinkFields[$dbkey][$field]; } else { return null; } } /** * @param string $title * @return bool */ public function isBadLink( $title ) { return array_key_exists( $title, $this->mBadLinks ); } /** * Add a link for the title to the link cache * * @param int $id Page's ID * @param Title $title * @param int $len Text's length * @param int $redir Whether the page is a redirect * @param int $revision Latest revision's ID * @param string|null $model Latest revision's content model ID */ public function addGoodLinkObj( $id, $title, $len = -1, $redir = null, $revision = 0, $model = null ) { $dbkey = $title->getPrefixedDBkey(); $this->mGoodLinks[$dbkey] = (int)$id; $this->mGoodLinkFields[$dbkey] = array( 'length' => (int)$len, 'redirect' => (int)$redir, 'revision' => (int)$revision, 'model' => $model ? (string)$model : null, ); } /** * Same as above with better interface. * @since 1.19 * @param Title $title * @param stdClass $row Object which has the fields page_id, page_is_redirect, * page_latest and page_content_model */ public function addGoodLinkObjFromRow( $title, $row ) { $dbkey = $title->getPrefixedDBkey(); $this->mGoodLinks[$dbkey] = intval( $row->page_id ); $this->mGoodLinkFields[$dbkey] = array( 'length' => intval( $row->page_len ), 'redirect' => intval( $row->page_is_redirect ), 'revision' => intval( $row->page_latest ), 'model' => !empty( $row->page_content_model ) ? strval( $row->page_content_model ) : null, ); } /** * @param Title $title */ public function addBadLinkObj( $title ) { $dbkey = $title->getPrefixedDBkey(); if ( !$this->isBadLink( $dbkey ) ) { $this->mBadLinks[$dbkey] = 1; } } public function clearBadLink( $title ) { unset( $this->mBadLinks[$title] ); } /** * @param Title $title */ public function clearLink( $title ) { $dbkey = $title->getPrefixedDBkey(); unset( $this->mBadLinks[$dbkey] ); unset( $this->mGoodLinks[$dbkey] ); unset( $this->mGoodLinkFields[$dbkey] ); } public function getGoodLinks() { return $this->mGoodLinks; } public function getBadLinks() { return array_keys( $this->mBadLinks ); } /** * Add a title to the link cache, return the page_id or zero if non-existent * * @param string $title Title to add * @return int */ public function addLink( $title ) { $nt = Title::newFromDBkey( $title ); if ( $nt ) { return $this->addLinkObj( $nt ); } else { return 0; } } /** * Add a title to the link cache, return the page_id or zero if non-existent * * @param Title $nt Title object to add * @return int */ public function addLinkObj( $nt ) { global $wgAntiLockFlags, $wgContentHandlerUseDB; wfProfileIn( __METHOD__ ); $key = $nt->getPrefixedDBkey(); if ( $this->isBadLink( $key ) || $nt->isExternal() ) { wfProfileOut( __METHOD__ ); return 0; } $id = $this->getGoodLinkID( $key ); if ( $id != 0 ) { wfProfileOut( __METHOD__ ); return $id; } if ( $key === '' ) { wfProfileOut( __METHOD__ ); return 0; } # Some fields heavily used for linking... if ( $this->mForUpdate ) { $db = wfGetDB( DB_MASTER ); if ( !( $wgAntiLockFlags & ALF_NO_LINK_LOCK ) ) { $options = array( 'FOR UPDATE' ); } else { $options = array(); } } else { $db = wfGetDB( DB_SLAVE ); $options = array(); } $f = array( 'page_id', 'page_len', 'page_is_redirect', 'page_latest' ); if ( $wgContentHandlerUseDB ) { $f[] = 'page_content_model'; } $s = $db->selectRow( 'page', $f, array( 'page_namespace' => $nt->getNamespace(), 'page_title' => $nt->getDBkey() ), __METHOD__, $options ); # Set fields... if ( $s !== false ) { $this->addGoodLinkObjFromRow( $nt, $s ); $id = intval( $s->page_id ); } else { $this->addBadLinkObj( $nt ); $id = 0; } wfProfileOut( __METHOD__ ); return $id; } /** * Clears cache */ public function clear() { $this->mGoodLinks = array(); $this->mGoodLinkFields = array(); $this->mBadLinks = array(); } }