Merge "Remove unused $wgDebugDBTransactions"
[lhc/web/wiklou.git] / includes / specials / SpecialLinkSearch.php
1 <?php
2 /**
3 * Implements Special:LinkSearch
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 * @author Brion Vibber
23 */
24
25
26 /**
27 * Special:LinkSearch to search the external-links table.
28 * @ingroup SpecialPage
29 */
30 class LinkSearchPage extends QueryPage {
31 function setParams( $params ) {
32 $this->mQuery = $params['query'];
33 $this->mNs = $params['namespace'];
34 $this->mProt = $params['protocol'];
35 }
36
37 function __construct( $name = 'LinkSearch' ) {
38 parent::__construct( $name );
39 }
40
41 function isCacheable() {
42 return false;
43 }
44
45 function execute( $par ) {
46 global $wgUrlProtocols, $wgMiserMode;
47
48 $this->setHeaders();
49 $this->outputHeader();
50
51 $out = $this->getOutput();
52 $out->allowClickjacking();
53
54 $request = $this->getRequest();
55 $target = $request->getVal( 'target', $par );
56 $namespace = $request->getIntorNull( 'namespace', null );
57
58 $protocols_list = array();
59 foreach( $wgUrlProtocols as $prot ) {
60 if ( $prot !== '//' ) {
61 $protocols_list[] = $prot;
62 }
63 }
64
65 $target2 = $target;
66 $protocol = '';
67 $pr_sl = strpos($target2, '//' );
68 $pr_cl = strpos($target2, ':' );
69 if ( $pr_sl ) {
70 // For protocols with '//'
71 $protocol = substr( $target2, 0 , $pr_sl+2 );
72 $target2 = substr( $target2, $pr_sl+2 );
73 } elseif ( !$pr_sl && $pr_cl ) {
74 // For protocols without '//' like 'mailto:'
75 $protocol = substr( $target2, 0 , $pr_cl+1 );
76 $target2 = substr( $target2, $pr_cl+1 );
77 } elseif ( $protocol == '' && $target2 != '' ) {
78 // default
79 $protocol = 'http://';
80 }
81 if ( $protocol != '' && !in_array( $protocol, $protocols_list ) ) {
82 // unsupported protocol, show original search request
83 $target2 = $target;
84 $protocol = '';
85 }
86
87 $out->addWikiMsg( 'linksearch-text', '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>' );
88 $s = Xml::openElement( 'form', array( 'id' => 'mw-linksearch-form', 'method' => 'get', 'action' => $GLOBALS['wgScript'] ) ) .
89 Html::hidden( 'title', $this->getTitle()->getPrefixedDbKey() ) .
90 '<fieldset>' .
91 Xml::element( 'legend', array(), $this->msg( 'linksearch' )->text() ) .
92 Xml::inputLabel( $this->msg( 'linksearch-pat' )->text(), 'target', 'target', 50, $target ) . ' ';
93 if ( !$wgMiserMode ) {
94 $s .= Html::namespaceSelector(
95 array(
96 'selected' => $namespace,
97 'all' => '',
98 'label' => $this->msg( 'linksearch-ns' )->text()
99 ), array(
100 'name' => 'namespace',
101 'id' => 'namespace',
102 'class' => 'namespaceselector',
103 )
104 );
105 }
106 $s .= Xml::submitButton( $this->msg( 'linksearch-ok' )->text() ) .
107 '</fieldset>' .
108 Xml::closeElement( 'form' );
109 $out->addHTML( $s );
110
111 if( $target != '' ) {
112 $this->setParams( array(
113 'query' => $target2,
114 'namespace' => $namespace,
115 'protocol' => $protocol ) );
116 parent::execute( $par );
117 if( $this->mMungedQuery === false )
118 $out->addWikiMsg( 'linksearch-error' );
119 }
120 }
121
122 /**
123 * Disable RSS/Atom feeds
124 * @return bool
125 */
126 function isSyndicated() {
127 return false;
128 }
129
130 /**
131 * Return an appropriately formatted LIKE query and the clause
132 *
133 * @return array
134 */
135 static function mungeQuery( $query, $prot ) {
136 $field = 'el_index';
137 $rv = LinkFilter::makeLikeArray( $query , $prot );
138 if ( $rv === false ) {
139 // LinkFilter doesn't handle wildcard in IP, so we'll have to munge here.
140 if (preg_match('/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/', $query)) {
141 $dbr = wfGetDB( DB_SLAVE );
142 $rv = array( $prot . rtrim( $query, " \t*" ), $dbr->anyString() );
143 $field = 'el_to';
144 }
145 }
146 return array( $rv, $field );
147 }
148
149 function linkParameters() {
150 global $wgMiserMode;
151 $params = array();
152 $params['target'] = $this->mProt . $this->mQuery;
153 if( isset( $this->mNs ) && !$wgMiserMode ) {
154 $params['namespace'] = $this->mNs;
155 }
156 return $params;
157 }
158
159 function getQueryInfo() {
160 global $wgMiserMode;
161 $dbr = wfGetDB( DB_SLAVE );
162 // strip everything past first wildcard, so that
163 // index-based-only lookup would be done
164 list( $this->mMungedQuery, $clause ) = self::mungeQuery(
165 $this->mQuery, $this->mProt );
166 if( $this->mMungedQuery === false )
167 // Invalid query; return no results
168 return array( 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' );
169
170 $stripped = LinkFilter::keepOneWildcard( $this->mMungedQuery );
171 $like = $dbr->buildLike( $stripped );
172 $retval = array (
173 'tables' => array ( 'page', 'externallinks' ),
174 'fields' => array ( 'page_namespace AS namespace',
175 'page_title AS title',
176 'el_index AS value', 'el_to AS url' ),
177 'conds' => array ( 'page_id = el_from',
178 "$clause $like" ),
179 'options' => array( 'USE INDEX' => $clause )
180 );
181 if ( isset( $this->mNs ) && !$wgMiserMode ) {
182 $retval['conds']['page_namespace'] = $this->mNs;
183 }
184 return $retval;
185 }
186
187 function formatResult( $skin, $result ) {
188 $title = Title::makeTitle( $result->namespace, $result->title );
189 $url = $result->url;
190 $pageLink = Linker::linkKnown( $title );
191 $urlLink = Linker::makeExternalLink( $url, $url );
192
193 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
194 }
195
196 /**
197 * Override to check query validity.
198 */
199 function doQuery( $offset = false, $limit = false ) {
200 list( $this->mMungedQuery, ) = LinkSearchPage::mungeQuery( $this->mQuery, $this->mProt );
201 if( $this->mMungedQuery === false ) {
202 $this->getOutput()->addWikiMsg( 'linksearch-error' );
203 } else {
204 // For debugging
205 // Generates invalid xhtml with patterns that contain --
206 //$this->getOutput()->addHTML( "\n<!-- " . htmlspecialchars( $this->mMungedQuery ) . " -->\n" );
207 parent::doQuery( $offset, $limit );
208 }
209 }
210
211 /**
212 * Override to squash the ORDER BY.
213 * We do a truncated index search, so the optimizer won't trust
214 * it as good enough for optimizing sort. The implicit ordering
215 * from the scan will usually do well enough for our needs.
216 * @return array
217 */
218 function getOrderFields() {
219 return array();
220 }
221 }