3 * Implements Special:LinkSearch
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
22 * @author Brion Vibber
26 * Special:LinkSearch to search the external-links table.
27 * @ingroup SpecialPage
29 class LinkSearchPage
extends QueryPage
{
30 function setParams( $params ) {
31 $this->mQuery
= $params['query'];
32 $this->mNs
= $params['namespace'];
33 $this->mProt
= $params['protocol'];
36 function __construct( $name = 'LinkSearch' ) {
37 parent
::__construct( $name );
40 function isCacheable() {
44 function execute( $par ) {
45 global $wgUrlProtocols, $wgMiserMode, $wgScript;
48 $this->outputHeader();
50 $out = $this->getOutput();
51 $out->allowClickjacking();
53 $request = $this->getRequest();
54 $target = $request->getVal( 'target', $par );
55 $namespace = $request->getIntorNull( 'namespace', null );
57 $protocols_list = array();
58 foreach ( $wgUrlProtocols as $prot ) {
59 if ( $prot !== '//' ) {
60 $protocols_list[] = $prot;
66 $pr_sl = strpos( $target2, '//' );
67 $pr_cl = strpos( $target2, ':' );
69 // For protocols with '//'
70 $protocol = substr( $target2, 0, $pr_sl +
2 );
71 $target2 = substr( $target2, $pr_sl +
2 );
72 } elseif ( !$pr_sl && $pr_cl ) {
73 // For protocols without '//' like 'mailto:'
74 $protocol = substr( $target2, 0, $pr_cl +
1 );
75 $target2 = substr( $target2, $pr_cl +
1 );
76 } elseif ( $protocol == '' && $target2 != '' ) {
78 $protocol = 'http://';
80 if ( $protocol != '' && !in_array( $protocol, $protocols_list ) ) {
81 // unsupported protocol, show original search request
88 '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>',
89 count( $protocols_list )
91 $s = Html
::openElement( 'form', array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => $wgScript ) ) . "\n" .
92 Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n" .
93 Html
::openElement( 'fieldset' ) . "\n" .
94 Html
::element( 'legend', array(), $this->msg( 'linksearch' )->text() ) . "\n" .
95 Xml
::inputLabel( $this->msg( 'linksearch-pat' )->text(), 'target', 'target', 50, $target ) . "\n";
96 if ( !$wgMiserMode ) {
97 $s .= Html
::namespaceSelector(
99 'selected' => $namespace,
101 'label' => $this->msg( 'linksearch-ns' )->text()
103 'name' => 'namespace',
105 'class' => 'namespaceselector',
109 $s .= Xml
::submitButton( $this->msg( 'linksearch-ok' )->text() ) . "\n" .
110 Html
::closeElement( 'fieldset' ) . "\n" .
111 Html
::closeElement( 'form' ) . "\n";
114 if ( $target != '' ) {
115 $this->setParams( array(
117 'namespace' => $namespace,
118 'protocol' => $protocol ) );
119 parent
::execute( $par );
120 if ( $this->mMungedQuery
=== false ) {
121 $out->addWikiMsg( 'linksearch-error' );
127 * Disable RSS/Atom feeds
130 function isSyndicated() {
135 * Return an appropriately formatted LIKE query and the clause
137 * @param string $query
138 * @param string $prot
141 static function mungeQuery( $query, $prot ) {
143 $rv = LinkFilter
::makeLikeArray( $query, $prot );
144 if ( $rv === false ) {
145 // LinkFilter doesn't handle wildcard in IP, so we'll have to munge here.
146 if ( preg_match( '/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/', $query ) ) {
147 $dbr = wfGetDB( DB_SLAVE
);
148 $rv = array( $prot . rtrim( $query, " \t*" ), $dbr->anyString() );
152 return array( $rv, $field );
155 function linkParameters() {
158 $params['target'] = $this->mProt
. $this->mQuery
;
159 if ( isset( $this->mNs
) && !$wgMiserMode ) {
160 $params['namespace'] = $this->mNs
;
165 function getQueryInfo() {
167 $dbr = wfGetDB( DB_SLAVE
);
168 // strip everything past first wildcard, so that
169 // index-based-only lookup would be done
170 list( $this->mMungedQuery
, $clause ) = self
::mungeQuery(
171 $this->mQuery
, $this->mProt
);
172 if ( $this->mMungedQuery
=== false ) {
173 // Invalid query; return no results
174 return array( 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' );
177 $stripped = LinkFilter
::keepOneWildcard( $this->mMungedQuery
);
178 $like = $dbr->buildLike( $stripped );
180 'tables' => array( 'page', 'externallinks' ),
181 'fields' => array( 'namespace' => 'page_namespace',
182 'title' => 'page_title',
183 'value' => 'el_index', 'url' => 'el_to' ),
184 'conds' => array( 'page_id = el_from',
186 'options' => array( 'USE INDEX' => $clause )
188 if ( isset( $this->mNs
) && !$wgMiserMode ) {
189 $retval['conds']['page_namespace'] = $this->mNs
;
196 * @param object $result Result row
199 function formatResult( $skin, $result ) {
200 $title = Title
::makeTitle( $result->namespace, $result->title
);
202 $pageLink = Linker
::linkKnown( $title );
203 $urlLink = Linker
::makeExternalLink( $url, $url );
205 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
209 * Override to check query validity.
211 function doQuery( $offset = false, $limit = false ) {
212 list( $this->mMungedQuery
, ) = LinkSearchPage
::mungeQuery( $this->mQuery
, $this->mProt
);
213 if ( $this->mMungedQuery
=== false ) {
214 $this->getOutput()->addWikiMsg( 'linksearch-error' );
217 // Generates invalid xhtml with patterns that contain --
218 //$this->getOutput()->addHTML( "\n<!-- " . htmlspecialchars( $this->mMungedQuery ) . " -->\n" );
219 parent
::doQuery( $offset, $limit );
224 * Override to squash the ORDER BY.
225 * We do a truncated index search, so the optimizer won't trust
226 * it as good enough for optimizing sort. The implicit ordering
227 * from the scan will usually do well enough for our needs.
230 function getOrderFields() {
234 protected function getGroupName() {