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 /** @var array|bool */
31 private $mungedQuery = false;
34 * @var PageLinkRenderer
36 protected $linkRenderer = null;
38 function setParams( $params ) {
39 $this->mQuery
= $params['query'];
40 $this->mNs
= $params['namespace'];
41 $this->mProt
= $params['protocol'];
44 function __construct( $name = 'LinkSearch' ) {
45 parent
::__construct( $name );
47 // Since we don't control the constructor parameters, we can't inject services that way.
48 // Instead, we initialize services in the execute() method, and allow them to be overridden
49 // using the setServices() method.
53 * Initialize or override the PageLinkRenderer LinkSearchPage collaborates with.
54 * Useful mainly for testing.
56 * @todo query logic and rendering logic should be split and also injected
58 * @param PageLinkRenderer $linkRenderer
60 public function setPageLinkRenderer(
61 PageLinkRenderer
$linkRenderer
63 $this->linkRenderer
= $linkRenderer;
67 * Initialize any services we'll need (unless it has already been provided via a setter).
68 * This allows for dependency injection even though we don't control object creation.
70 private function initServices() {
71 if ( !$this->linkRenderer
) {
72 $lang = $this->getContext()->getLanguage();
73 $titleFormatter = new MediaWikiTitleCodec( $lang, GenderCache
::singleton() );
74 $this->linkRenderer
= new MediaWikiPageLinkRenderer( $titleFormatter );
78 function isCacheable() {
82 function execute( $par ) {
83 $this->initServices();
86 $this->outputHeader();
88 $out = $this->getOutput();
89 $out->allowClickjacking();
91 $request = $this->getRequest();
92 $target = $request->getVal( 'target', $par );
93 $namespace = $request->getIntOrNull( 'namespace', null );
95 $protocols_list = array();
96 foreach ( $this->getConfig()->get( 'UrlProtocols' ) as $prot ) {
97 if ( $prot !== '//' ) {
98 $protocols_list[] = $prot;
103 // Get protocol, default is http://
104 $protocol = 'http://';
105 $bits = wfParseUrl( $target );
106 if ( isset( $bits['scheme'] ) && isset( $bits['delimiter'] ) ) {
107 $protocol = $bits['scheme'] . $bits['delimiter'];
108 // Make sure wfParseUrl() didn't make some well-intended correction in the
110 if ( strcasecmp( $protocol, substr( $target, 0, strlen( $protocol ) ) ) === 0 ) {
111 $target2 = substr( $target, strlen( $protocol ) );
113 // If it did, let LinkFilter::makeLikeArray() handle this
120 '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>',
121 count( $protocols_list )
123 $s = Html
::openElement(
125 array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => wfScript() )
127 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) . "\n" .
128 Html
::openElement( 'fieldset' ) . "\n" .
129 Html
::element( 'legend', array(), $this->msg( 'linksearch' )->text() ) . "\n" .
131 $this->msg( 'linksearch-pat' )->text(),
137 // URLs are always ltr
142 if ( !$this->getConfig()->get( 'MiserMode' ) ) {
143 $s .= Html
::namespaceSelector(
145 'selected' => $namespace,
147 'label' => $this->msg( 'linksearch-ns' )->text()
149 'name' => 'namespace',
151 'class' => 'namespaceselector',
156 $s .= Xml
::submitButton( $this->msg( 'linksearch-ok' )->text() ) . "\n" .
157 Html
::closeElement( 'fieldset' ) . "\n" .
158 Html
::closeElement( 'form' ) . "\n";
161 if ( $target != '' ) {
162 $this->setParams( array(
164 'namespace' => $namespace,
165 'protocol' => $protocol ) );
166 parent
::execute( $par );
167 if ( $this->mungedQuery
=== false ) {
168 $out->addWikiMsg( 'linksearch-error' );
174 * Disable RSS/Atom feeds
177 function isSyndicated() {
182 * Return an appropriately formatted LIKE query and the clause
184 * @param string $query Search pattern to search for
185 * @param string $prot Protocol, e.g. 'http://'
189 static function mungeQuery( $query, $prot ) {
191 $dbr = wfGetDB( DB_SLAVE
);
193 if ( $query === '*' && $prot !== '' ) {
194 // Allow queries like 'ftp://*' to find all ftp links
195 $rv = array( $prot, $dbr->anyString() );
197 $rv = LinkFilter
::makeLikeArray( $query, $prot );
200 if ( $rv === false ) {
201 // LinkFilter doesn't handle wildcard in IP, so we'll have to munge here.
202 $pattern = '/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/';
203 if ( preg_match( $pattern, $query ) ) {
204 $rv = array( $prot . rtrim( $query, " \t*" ), $dbr->anyString() );
209 return array( $rv, $field );
212 function linkParameters() {
214 $params['target'] = $this->mProt
. $this->mQuery
;
215 if ( $this->mNs
!== null && !$this->getConfig()->get( 'MiserMode' ) ) {
216 $params['namespace'] = $this->mNs
;
222 function getQueryInfo() {
223 $dbr = wfGetDB( DB_SLAVE
);
224 // strip everything past first wildcard, so that
225 // index-based-only lookup would be done
226 list( $this->mungedQuery
, $clause ) = self
::mungeQuery( $this->mQuery
, $this->mProt
);
227 if ( $this->mungedQuery
=== false ) {
228 // Invalid query; return no results
229 return array( 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' );
232 $stripped = LinkFilter
::keepOneWildcard( $this->mungedQuery
);
233 $like = $dbr->buildLike( $stripped );
235 'tables' => array( 'page', 'externallinks' ),
237 'namespace' => 'page_namespace',
238 'title' => 'page_title',
239 'value' => 'el_index',
246 'options' => array( 'USE INDEX' => $clause )
249 if ( $this->mNs
!== null && !$this->getConfig()->get( 'MiserMode' ) ) {
250 $retval['conds']['page_namespace'] = $this->mNs
;
257 * Pre-fill the link cache
259 * @param IDatabase $db
260 * @param ResultWrapper $res
262 function preprocessResults( $db, $res ) {
263 if ( $res->numRows() > 0 ) {
264 $linkBatch = new LinkBatch();
266 foreach ( $res as $row ) {
267 $linkBatch->add( $row->namespace, $row->title
);
271 $linkBatch->execute();
277 * @param object $result Result row
280 function formatResult( $skin, $result ) {
281 $title = new TitleValue( (int)$result->namespace, $result->title
);
282 $pageLink = $this->linkRenderer
->renderHtmlLink( $title );
285 $urlLink = Linker
::makeExternalLink( $url, $url );
287 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
291 * Override to squash the ORDER BY.
292 * We do a truncated index search, so the optimizer won't trust
293 * it as good enough for optimizing sort. The implicit ordering
294 * from the scan will usually do well enough for our needs.
297 function getOrderFields() {
301 protected function getGroupName() {