Make most special pages class names match filename
[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 use Wikimedia\Rdbms\IResultWrapper;
26 use Wikimedia\Rdbms\IDatabase;
27
28 /**
29 * Special:LinkSearch to search the external-links table.
30 * @ingroup SpecialPage
31 */
32 class SpecialLinkSearch extends QueryPage {
33 /** @var array|bool */
34 private $mungedQuery = false;
35
36 function setParams( $params ) {
37 $this->mQuery = $params['query'];
38 $this->mNs = $params['namespace'];
39 $this->mProt = $params['protocol'];
40 }
41
42 function __construct( $name = 'LinkSearch' ) {
43 parent::__construct( $name );
44
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.
48 }
49
50 function isCacheable() {
51 return false;
52 }
53
54 public function execute( $par ) {
55 $this->setHeaders();
56 $this->outputHeader();
57
58 $out = $this->getOutput();
59 $out->allowClickjacking();
60
61 $request = $this->getRequest();
62 $target = $request->getVal( 'target', $par );
63 $namespace = $request->getIntOrNull( 'namespace' );
64
65 $protocols_list = [];
66 foreach ( $this->getConfig()->get( 'UrlProtocols' ) as $prot ) {
67 if ( $prot !== '//' ) {
68 $protocols_list[] = $prot;
69 }
70 }
71
72 $target2 = Parser::normalizeLinkUrl( $target );
73 // Get protocol, default is http://
74 $protocol = 'http://';
75 $bits = wfParseUrl( $target );
76 if ( isset( $bits['scheme'] ) && isset( $bits['delimiter'] ) ) {
77 $protocol = $bits['scheme'] . $bits['delimiter'];
78 // Make sure wfParseUrl() didn't make some well-intended correction in the
79 // protocol
80 if ( strcasecmp( $protocol, substr( $target, 0, strlen( $protocol ) ) ) === 0 ) {
81 $target2 = substr( $target, strlen( $protocol ) );
82 } else {
83 // If it did, let LinkFilter::makeLikeArray() handle this
84 $protocol = '';
85 }
86 }
87
88 $out->addWikiMsg(
89 'linksearch-text',
90 '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>',
91 count( $protocols_list )
92 );
93 $fields = [
94 'target' => [
95 'type' => 'text',
96 'name' => 'target',
97 'id' => 'target',
98 'size' => 50,
99 'label-message' => 'linksearch-pat',
100 'default' => $target,
101 'dir' => 'ltr',
102 ]
103 ];
104 if ( !$this->getConfig()->get( 'MiserMode' ) ) {
105 $fields += [
106 'namespace' => [
107 'type' => 'namespaceselect',
108 'name' => 'namespace',
109 'label-message' => 'linksearch-ns',
110 'default' => $namespace,
111 'id' => 'namespace',
112 'all' => '',
113 'cssclass' => 'namespaceselector',
114 ],
115 ];
116 }
117 $hiddenFields = [
118 'title' => $this->getPageTitle()->getPrefixedDBkey(),
119 ];
120 $htmlForm = HTMLForm::factory( 'ooui', $fields, $this->getContext() );
121 $htmlForm->addHiddenFields( $hiddenFields );
122 $htmlForm->setSubmitTextMsg( 'linksearch-ok' );
123 $htmlForm->setWrapperLegendMsg( 'linksearch' );
124 $htmlForm->setAction( wfScript() );
125 $htmlForm->setMethod( 'get' );
126 $htmlForm->prepareForm()->displayForm( false );
127 $this->addHelpLink( 'Help:Linksearch' );
128
129 if ( $target != '' ) {
130 $this->setParams( [
131 'query' => $target2,
132 'namespace' => $namespace,
133 'protocol' => $protocol ] );
134 parent::execute( $par );
135 if ( $this->mungedQuery === false ) {
136 $out->addWikiMsg( 'linksearch-error' );
137 }
138 }
139 }
140
141 /**
142 * Disable RSS/Atom feeds
143 * @return bool
144 */
145 function isSyndicated() {
146 return false;
147 }
148
149 function linkParameters() {
150 $params = [];
151 $params['target'] = $this->mProt . $this->mQuery;
152 if ( $this->mNs !== null && !$this->getConfig()->get( 'MiserMode' ) ) {
153 $params['namespace'] = $this->mNs;
154 }
155
156 return $params;
157 }
158
159 public function getQueryInfo() {
160 $dbr = wfGetDB( DB_REPLICA );
161
162 if ( $this->mQuery === '*' && $this->mProt !== '' ) {
163 $this->mungedQuery = [
164 'el_index_60' . $dbr->buildLike( $this->mProt, $dbr->anyString() ),
165 ];
166 } else {
167 $this->mungedQuery = LinkFilter::getQueryConditions( $this->mQuery, [
168 'protocol' => $this->mProt,
169 'oneWildcard' => true,
170 'db' => $dbr
171 ] );
172 }
173 if ( $this->mungedQuery === false ) {
174 // Invalid query; return no results
175 return [ 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' ];
176 }
177
178 $orderBy = [];
179 if ( !isset( $this->mungedQuery['el_index_60'] ) ) {
180 $orderBy[] = 'el_index_60';
181 }
182 $orderBy[] = 'el_id';
183
184 $retval = [
185 'tables' => [ 'page', 'externallinks' ],
186 'fields' => [
187 'namespace' => 'page_namespace',
188 'title' => 'page_title',
189 'value' => 'el_index',
190 'url' => 'el_to'
191 ],
192 'conds' => array_merge(
193 [
194 'page_id = el_from',
195 ],
196 $this->mungedQuery
197 ),
198 'options' => [ 'ORDER BY' => $orderBy ]
199 ];
200
201 if ( $this->mNs !== null && !$this->getConfig()->get( 'MiserMode' ) ) {
202 $retval['conds']['page_namespace'] = $this->mNs;
203 }
204
205 return $retval;
206 }
207
208 /**
209 * Pre-fill the link cache
210 *
211 * @param IDatabase $db
212 * @param IResultWrapper $res
213 */
214 function preprocessResults( $db, $res ) {
215 $this->executeLBFromResultWrapper( $res );
216 }
217
218 /**
219 * @param Skin $skin
220 * @param object $result Result row
221 * @return string
222 */
223 function formatResult( $skin, $result ) {
224 $title = new TitleValue( (int)$result->namespace, $result->title );
225 $pageLink = $this->getLinkRenderer()->makeLink( $title );
226
227 $url = $result->url;
228 $urlLink = Linker::makeExternalLink( $url, $url );
229
230 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
231 }
232
233 /**
234 * Override to squash the ORDER BY.
235 * Not much point in descending order here.
236 * @return array
237 */
238 function getOrderFields() {
239 return [];
240 }
241
242 protected function getGroupName() {
243 return 'redirects';
244 }
245
246 /**
247 * enwiki complained about low limits on this special page
248 *
249 * @see T130058
250 * @todo FIXME This special page should not use LIMIT for paging
251 * @return int
252 */
253 protected function getMaxResults() {
254 return max( parent::getMaxResults(), 60000 );
255 }
256 }