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