Merge querypage-work2 branch from trunk. The most relevant changes are:
[lhc/web/wiklou.git] / includes / specials / SpecialLinkSearch.php
index 124ede1..c97566f 100644 (file)
 
 /**
  * Special:LinkSearch to search the external-links table.
- */
-function wfSpecialLinkSearch( $par ) {
-
-       list( $limit, $offset ) = wfCheckLimits();
-       global $wgOut, $wgUrlProtocols, $wgMiserMode, $wgLang;
-       $target = $GLOBALS['wgRequest']->getVal( 'target', $par );
-       $namespace = $GLOBALS['wgRequest']->getIntorNull( 'namespace', null );
-
-       $protocols_list[] = '';
-       foreach( $wgUrlProtocols as $prot ) {
-               $protocols_list[] = $prot;
-       }
-
-       $target2 = $target;
-       $protocol = '';
-       $pr_sl = strpos($target2, '//' );
-       $pr_cl = strpos($target2, ':' );
-       if ( $pr_sl ) {
-               // For protocols with '//'
-               $protocol = substr( $target2, 0 , $pr_sl+2 );
-               $target2 = substr( $target2, $pr_sl+2 );
-       } elseif ( !$pr_sl && $pr_cl ) {
-               // For protocols without '//' like 'mailto:'
-               $protocol = substr( $target2, 0 , $pr_cl+1 );
-               $target2 = substr( $target2, $pr_cl+1 );
-       } elseif ( $protocol == '' && $target2 != '' ) {
-               // default
-               $protocol = 'http://';
-       }
-       if ( !in_array( $protocol, $protocols_list ) ) {
-               // unsupported protocol, show original search request
-               $target2 = $target;
-               $protocol = '';
-       }
-
-       $self = Title::makeTitle( NS_SPECIAL, 'Linksearch' );
-
-       $wgOut->addWikiMsg( 'linksearch-text', '<nowiki>' . $wgLang->commaList( $wgUrlProtocols ) . '</nowiki>' );
-       $s = Xml::openElement( 'form', array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => $GLOBALS['wgScript'] ) ) .
-               Html::hidden( 'title', $self->getPrefixedDbKey() ) .
-               '<fieldset>' .
-               Xml::element( 'legend', array(), wfMsg( 'linksearch' ) ) .
-               Xml::inputLabel( wfMsg( 'linksearch-pat' ), 'target', 'target', 50, $target ) . ' ';
-       if ( !$wgMiserMode ) {
-               $s .= Xml::label( wfMsg( 'linksearch-ns' ), 'namespace' ) . ' ' .
-                       Xml::namespaceSelector( $namespace, '' );
-       }
-       $s .=   Xml::submitButton( wfMsg( 'linksearch-ok' ) ) .
-               '</fieldset>' .
-               Xml::closeElement( 'form' );
-       $wgOut->addHTML( $s );
-
-       if( $target != '' ) {
-               $searcher = new LinkSearchPage;
-               $searcher->setParams( array( 
-                       'query' => $target2, 
-                       'namespace' => $namespace, 
-                       'protocol' => $protocol ) );
-               $searcher->doQuery( $offset, $limit );
-       }
-}
-
-/**
  * @ingroup SpecialPage
  */
 class LinkSearchPage extends QueryPage {
@@ -97,8 +34,68 @@ class LinkSearchPage extends QueryPage {
                $this->mProt = $params['protocol'];
        }
 
-       function getName() {
-               return 'LinkSearch';
+       function __construct( $name = 'LinkSearch' ) {
+               parent::__construct( $name );
+       }
+       
+       function execute( $par ) {
+               global $wgOut, $wgRequest, $wgUrlProtocols, $wgMiserMode, $wgLang, $wgScript;
+               $target = $wgRequest->getVal( 'target', $par );
+               $namespace = $wgRequest->getIntorNull( 'namespace', null );
+
+               $protocols_list[] = '';
+               foreach( $wgUrlProtocols as $prot ) {
+                       $protocols_list[] = $prot;
+               }
+
+               $target2 = $target;
+               $protocol = '';
+               $pr_sl = strpos($target2, '//' );
+               $pr_cl = strpos($target2, ':' );
+               if ( $pr_sl ) {
+                       // For protocols with '//'
+                       $protocol = substr( $target2, 0 , $pr_sl+2 );
+                       $target2 = substr( $target2, $pr_sl+2 );
+               } elseif ( !$pr_sl && $pr_cl ) {
+                       // For protocols without '//' like 'mailto:'
+                       $protocol = substr( $target2, 0 , $pr_cl+1 );
+                       $target2 = substr( $target2, $pr_cl+1 );
+               } elseif ( $protocol == '' && $target2 != '' ) {
+                       // default
+                       $protocol = 'http://';
+               }
+               if ( !in_array( $protocol, $protocols_list ) ) {
+                       // unsupported protocol, show original search request
+                       $target2 = $target;
+                       $protocol = '';
+               }
+
+               $self = $this->getTitle();
+
+               $wgOut->addWikiMsg( 'linksearch-text', '<nowiki>' . $wgLang->commaList( $wgUrlProtocols ) . '</nowiki>' );
+               $s = Xml::openElement( 'form', array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => $GLOBALS['wgScript'] ) ) .
+                       Html::hidden( 'title', $self->getPrefixedDbKey() ) .
+                       '<fieldset>' .
+                       Xml::element( 'legend', array(), wfMsg( 'linksearch' ) ) .
+                       Xml::inputLabel( wfMsg( 'linksearch-pat' ), 'target', 'target', 50, $target ) . ' ';
+               if ( !$wgMiserMode ) {
+                       $s .= Xml::label( wfMsg( 'linksearch-ns' ), 'namespace' ) . ' ' .
+                               Xml::namespaceSelector( $namespace, '' );
+               }
+               $s .=   Xml::submitButton( wfMsg( 'linksearch-ok' ) ) .
+                       '</fieldset>' .
+                       Xml::closeElement( 'form' );
+               $wgOut->addHTML( $s );
+
+               if( $target != '' ) {
+                       $this->setParams( array( 
+                               'query' => $target2,
+                               'namespace' => $namespace,
+                               'protocol' => $protocol ) );
+                       parent::execute( $par );
+                       if( $this->mMungedQuery === false )
+                               $wgOut->addWikiText( wfMsg( 'linksearch-error' ) );
+               }
        }
 
        /**
@@ -113,11 +110,11 @@ class LinkSearchPage extends QueryPage {
         */
        static function mungeQuery( $query , $prot ) {
                $field = 'el_index';
-               $rv = LinkFilter::makeLikeArray( $query , $prot );
-               if ($rv === false) {
+               $rv = LinkFilter::makeLike( $query , $prot );
+               if ( $rv === false ) {
                        // LinkFilter doesn't handle wildcard in IP, so we'll have to munge here.
                        if (preg_match('/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/', $query)) {
-                               $rv = array( $prot . rtrim($query, " \t*"), $dbr->anyString() );
+                               $rv = $prot . rtrim($query, " \t*") . '%';
                                $field = 'el_to';
                        }
                }
@@ -134,35 +131,32 @@ class LinkSearchPage extends QueryPage {
                return $params;
        }
 
-       function getSQL() {
+       function getQueryInfo() {
                global $wgMiserMode;
                $dbr = wfGetDB( DB_SLAVE );
-               $page = $dbr->tableName( 'page' );
-               $externallinks = $dbr->tableName( 'externallinks' );
-
-               /* strip everything past first wildcard, so that index-based-only lookup would be done */
-               list( $munged, $clause ) = self::mungeQuery( $this->mQuery, $this->mProt );
-               $stripped = LinkFilter::keepOneWildcard( $munged );
-               $like = $dbr->buildLike( $stripped );
-
-               $encSQL = '';
-               if ( isset ($this->mNs) && !$wgMiserMode )
-                       $encSQL = 'AND page_namespace=' . $dbr->addQuotes( $this->mNs );
-
-               $use_index = $dbr->useIndexClause( $clause );
-               return
-                       "SELECT
-                               page_namespace AS namespace,
-                               page_title AS title,
-                               el_index AS value,
-                               el_to AS url
-                       FROM
-                               $page,
-                               $externallinks $use_index
-                       WHERE
-                               page_id=el_from
-                               AND $clause $like
-                               $encSQL";
+               // strip everything past first wildcard, so that
+               // index-based-only lookup would be done
+               list( $this->mMungedQuery, $clause ) = self::mungeQuery(
+                               $this->mQuery, $this->mProt );
+               if( $this->mMungedQuery === false )
+                       // Invalid query; return no results
+                       return array( 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' );
+               
+               $stripped = substr( $this->mMungedQuery, 0, strpos( $this->mMungedQuery, '%' ) + 1 );
+               $encSearch = $dbr->addQuotes( $stripped );
+               $retval = array (
+                       'tables' => array ( 'page', 'externallinks' ),
+                       'fields' => array ( 'page_namespace AS namespace',
+                                       'page_title AS title',
+                                       'el_index AS value', 'el_to AS url' ),
+                       'conds' => array ( 'page_id = el_from',
+                                       "$clause LIKE $encSearch" ),
+                       'options' => array( 'USE INDEX' => $clause )
+               );
+               if ( isset( $this->mNs ) && !$wgMiserMode ) {
+                       $retval['conds']['page_namespace'] = $this->mNs;
+               }
+               return $retval;
        }
 
        function formatResult( $skin, $result ) {
@@ -196,7 +190,7 @@ class LinkSearchPage extends QueryPage {
         * it as good enough for optimizing sort. The implicit ordering
         * from the scan will usually do well enough for our needs.
         */
-       function getOrder() {
-               return '';
+       function getOrderFields() {
+               return array();
        }
 }