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
{
32 * @var PageLinkRenderer
34 protected $linkRenderer = null;
36 function setParams( $params ) {
37 $this->mQuery
= $params['query'];
38 $this->mNs
= $params['namespace'];
39 $this->mProt
= $params['protocol'];
42 function __construct( $name = 'LinkSearch' ) {
43 parent
::__construct( $name );
45 // Since we don't control the constructor parameters, we can't inject services that way.
46 // Instead, we initialize services in the execute() method, and allow them to be overridden
47 // using the setServices() method.
51 * Initialize or override the PageLinkRenderer LinkSearchPage collaborates with.
52 * Useful mainly for testing.
54 * @todo query logic and rendering logic should be split and also injected
56 * @param PageLinkRenderer $linkRenderer
58 public function setPageLinkRenderer(
59 PageLinkRenderer
$linkRenderer
61 $this->linkRenderer
= $linkRenderer;
65 * Initialize any services we'll need (unless it has already been provided via a setter).
66 * This allows for dependency injection even though we don't control object creation.
68 private function initServices() {
69 if ( !$this->linkRenderer
) {
70 $lang = $this->getContext()->getLanguage();
71 $titleFormatter = new MediaWikiTitleCodec( $lang, GenderCache
::singleton() );
72 $this->linkRenderer
= new MediaWikiPageLinkRenderer( $titleFormatter );
76 function isCacheable() {
80 function execute( $par ) {
81 $this->initServices();
84 $this->outputHeader();
86 $out = $this->getOutput();
87 $out->allowClickjacking();
89 $request = $this->getRequest();
90 $target = $request->getVal( 'target', $par );
91 $namespace = $request->getIntOrNull( 'namespace', null );
93 $protocols_list = array();
94 foreach ( $this->getConfig()->get( 'UrlProtocols' ) as $prot ) {
95 if ( $prot !== '//' ) {
96 $protocols_list[] = $prot;
101 // Get protocol, default is http://
102 $protocol = 'http://';
103 $bits = wfParseUrl( $target );
104 if ( isset( $bits['scheme'] ) && isset( $bits['delimiter'] ) ) {
105 $protocol = $bits['scheme'] . $bits['delimiter'];
106 // Make sure wfParseUrl() didn't make some well-intended correction in the
108 if ( strcasecmp( $protocol, substr( $target, 0, strlen( $protocol ) ) ) === 0 ) {
109 $target2 = substr( $target, strlen( $protocol ) );
111 // If it did, let LinkFilter::makeLikeArray() handle this
118 '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>',
119 count( $protocols_list )
121 $s = Html
::openElement(
123 array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => wfScript() )
125 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) . "\n" .
126 Html
::openElement( 'fieldset' ) . "\n" .
127 Html
::element( 'legend', array(), $this->msg( 'linksearch' )->text() ) . "\n" .
129 $this->msg( 'linksearch-pat' )->text(),
135 // URLs are always ltr
140 if ( !$this->getConfig()->get( 'MiserMode' ) ) {
141 $s .= Html
::namespaceSelector(
143 'selected' => $namespace,
145 'label' => $this->msg( 'linksearch-ns' )->text()
147 'name' => 'namespace',
149 'class' => 'namespaceselector',
154 $s .= Xml
::submitButton( $this->msg( 'linksearch-ok' )->text() ) . "\n" .
155 Html
::closeElement( 'fieldset' ) . "\n" .
156 Html
::closeElement( 'form' ) . "\n";
159 if ( $target != '' ) {
160 $this->setParams( array(
162 'namespace' => $namespace,
163 'protocol' => $protocol ) );
164 parent
::execute( $par );
165 if ( $this->mMungedQuery
=== false ) {
166 $out->addWikiMsg( 'linksearch-error' );
172 * Disable RSS/Atom feeds
175 function isSyndicated() {
180 * Return an appropriately formatted LIKE query and the clause
182 * @param string $query Search pattern to search for
183 * @param string $prot Protocol, e.g. 'http://'
187 static function mungeQuery( $query, $prot ) {
189 $dbr = wfGetDB( DB_SLAVE
);
191 if ( $query === '*' && $prot !== '' ) {
192 // Allow queries like 'ftp://*' to find all ftp links
193 $rv = array( $prot, $dbr->anyString() );
195 $rv = LinkFilter
::makeLikeArray( $query, $prot );
198 if ( $rv === false ) {
199 // LinkFilter doesn't handle wildcard in IP, so we'll have to munge here.
200 $pattern = '/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/';
201 if ( preg_match( $pattern, $query ) ) {
202 $rv = array( $prot . rtrim( $query, " \t*" ), $dbr->anyString() );
207 return array( $rv, $field );
210 function linkParameters() {
212 $params['target'] = $this->mProt
. $this->mQuery
;
213 if ( $this->mNs
!== null && !$this->getConfig()->get( 'MiserMode' ) ) {
214 $params['namespace'] = $this->mNs
;
220 function getQueryInfo() {
221 $dbr = wfGetDB( DB_SLAVE
);
222 // strip everything past first wildcard, so that
223 // index-based-only lookup would be done
224 list( $this->mMungedQuery
, $clause ) = self
::mungeQuery( $this->mQuery
, $this->mProt
);
225 if ( $this->mMungedQuery
=== false ) {
226 // Invalid query; return no results
227 return array( 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' );
230 $stripped = LinkFilter
::keepOneWildcard( $this->mMungedQuery
);
231 $like = $dbr->buildLike( $stripped );
233 'tables' => array( 'page', 'externallinks' ),
235 'namespace' => 'page_namespace',
236 'title' => 'page_title',
237 'value' => 'el_index',
244 'options' => array( 'USE INDEX' => $clause )
247 if ( $this->mNs
!== null && !$this->getConfig()->get( 'MiserMode' ) ) {
248 $retval['conds']['page_namespace'] = $this->mNs
;
255 * Pre-fill the link cache
257 * @param IDatabase $db
258 * @param ResultWrapper $res
260 function preprocessResults( $db, $res ) {
261 if ( $res->numRows() > 0 ) {
262 $linkBatch = new LinkBatch();
264 foreach ( $res as $row ) {
265 $linkBatch->add( $row->namespace, $row->title
);
269 $linkBatch->execute();
275 * @param object $result Result row
278 function formatResult( $skin, $result ) {
279 $title = new TitleValue( (int)$result->namespace, $result->title
);
280 $pageLink = $this->linkRenderer
->renderHtmlLink( $title );
283 $urlLink = Linker
::makeExternalLink( $url, $url );
285 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
289 * Override to squash the ORDER BY.
290 * We do a truncated index search, so the optimizer won't trust
291 * it as good enough for optimizing sort. The implicit ordering
292 * from the scan will usually do well enough for our needs.
295 function getOrderFields() {
299 protected function getGroupName() {