X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialDoubleRedirects.php;h=51cb08af6e1aafce46031fc069f858edda024d89;hb=b7ce0372b06fec4f9b3f2c2c8b2a794e5ab742f3;hp=30f84f0c2025e30438d9eb2e42fdd9509f0e75e9;hpb=4c74490bb81c891fc450f21899ed462af652e978;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialDoubleRedirects.php b/includes/specials/SpecialDoubleRedirects.php index 30f84f0c20..51cb08af6e 100644 --- a/includes/specials/SpecialDoubleRedirects.php +++ b/includes/specials/SpecialDoubleRedirects.php @@ -1,5 +1,6 @@ msg( 'doubleredirectstext' )->parseAsBlock(); } - function getSQLText( &$dbr, $namespace = null, $title = null ) { - - list( $page, $redirect ) = $dbr->tableNamesN( 'page', 'redirect' ); - + function reallyGetQueryInfo( $namespace = null, $title = null ) { $limitToTitle = !( $namespace === null && $title === null ); - $sql = $limitToTitle ? "SELECT" : "SELECT 'DoubleRedirects' as type," ; - $sql .= - " pa.page_namespace as namespace, pa.page_title as title," . - " pb.page_namespace as nsb, pb.page_title as tb," . - " pc.page_namespace as nsc, pc.page_title as tc" . - " FROM $redirect AS ra, $redirect AS rb, $page AS pa, $page AS pb, $page AS pc" . - " WHERE ra.rd_from=pa.page_id" . - " AND ra.rd_namespace=pb.page_namespace" . - " AND ra.rd_title=pb.page_title" . - " AND rb.rd_from=pb.page_id" . - " AND rb.rd_namespace=pc.page_namespace" . - " AND rb.rd_title=pc.page_title"; - - if( $limitToTitle ) { - $encTitle = $dbr->addQuotes( $title ); - $sql .= " AND pa.page_namespace=$namespace" . - " AND pa.page_title=$encTitle"; + $retval = array ( + 'tables' => array ( 'ra' => 'redirect', + 'rb' => 'redirect', 'pa' => 'page', + 'pb' => 'page', 'pc' => 'page' ), + 'fields' => array ( 'pa.page_namespace AS namespace', + 'pa.page_title AS title', + 'pa.page_title AS value', + 'pb.page_namespace AS nsb', + 'pb.page_title AS tb', + 'pc.page_namespace AS nsc', + 'pc.page_title AS tc' ), + 'conds' => array ( 'ra.rd_from = pa.page_id', + 'pb.page_namespace = ra.rd_namespace', + 'pb.page_title = ra.rd_title', + 'rb.rd_from = pb.page_id', + 'pc.page_namespace = rb.rd_namespace', + 'pc.page_title = rb.rd_title' ) + ); + if ( $limitToTitle ) { + $retval['conds']['pa.page_namespace'] = $namespace; + $retval['conds']['pa.page_title'] = $title; } - - return $sql; + return $retval; } - function getSQL() { - $dbr = wfGetDB( DB_SLAVE ); - return $this->getSQLText( $dbr ); + function getQueryInfo() { + return $this->reallyGetQueryInfo(); } - function getOrder() { - return ''; + function getOrderFields() { + return array ( 'ra.rd_namespace', 'ra.rd_title' ); } function formatResult( $skin, $result ) { - global $wgContLang; - - $fname = 'DoubleRedirectsPage::formatResult'; $titleA = Title::makeTitle( $result->namespace, $result->title ); if ( $result && !isset( $result->nsb ) ) { $dbr = wfGetDB( DB_SLAVE ); - $sql = $this->getSQLText( $dbr, $result->namespace, $result->title ); - $res = $dbr->query( $sql, $fname ); + $qi = $this->reallyGetQueryInfo( $result->namespace, + $result->title ); + $res = $dbr->select($qi['tables'], $qi['fields'], + $qi['conds'], __METHOD__ ); if ( $res ) { $result = $dbr->fetchObject( $res ); } } if ( !$result ) { - return '' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . ''; + return '' . Linker::link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . ''; } $titleB = Title::makeTitle( $result->nsb, $result->tb ); $titleC = Title::makeTitle( $result->nsc, $result->tc ); - $linkA = $skin->linkKnown( + $linkA = Linker::linkKnown( $titleA, null, array(), array( 'redirect' => 'no' ) ); - $edit = $skin->linkKnown( + + $edit = Linker::linkKnown( $titleA, - wfMsgExt( 'parentheses', array( 'escape' ), wfMsg( 'editlink' ) ), + $this->msg( 'parentheses', $this->msg( 'editlink' )->text() )->escaped(), array(), array( 'redirect' => 'no', 'action' => 'edit' ) ); - $linkB = $skin->linkKnown( + + $linkB = Linker::linkKnown( $titleB, null, array(), array( 'redirect' => 'no' ) ); - $linkC = $skin->linkKnown( $titleC ); - $arr = $wgContLang->getArrow() . $wgContLang->getDirMark(); - - return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" ); - } -} -/** - * constructor - */ -function wfSpecialDoubleRedirects() { - list( $limit, $offset ) = wfCheckLimits(); - - $sdr = new DoubleRedirectsPage(); + $linkC = Linker::linkKnown( $titleC ); - return $sdr->doQuery( $offset, $limit ); + $lang = $this->getLanguage(); + $arr = $lang->getArrow() . $lang->getDirMark(); + return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" ); + } }