MediaWiki REL1_27
SpecialLinkSearch.php
Go to the documentation of this file.
1<?php
31 private $mungedQuery = false;
32
36 protected $linkRenderer = null;
37
38 function setParams( $params ) {
39 $this->mQuery = $params['query'];
40 $this->mNs = $params['namespace'];
41 $this->mProt = $params['protocol'];
42 }
43
44 function __construct( $name = 'LinkSearch' ) {
45 parent::__construct( $name );
46
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.
50 }
51
60 public function setPageLinkRenderer(
62 ) {
63 $this->linkRenderer = $linkRenderer;
64 }
65
70 private function initServices() {
72 if ( !$this->linkRenderer ) {
73 $titleFormatter = new MediaWikiTitleCodec( $wgContLang, GenderCache::singleton() );
74 $this->linkRenderer = new MediaWikiPageLinkRenderer( $titleFormatter );
75 }
76 }
77
78 function isCacheable() {
79 return false;
80 }
81
82 public function execute( $par ) {
83 $this->initServices();
84
85 $this->setHeaders();
86 $this->outputHeader();
87
88 $out = $this->getOutput();
89 $out->allowClickjacking();
90
91 $request = $this->getRequest();
92 $target = $request->getVal( 'target', $par );
93 $namespace = $request->getIntOrNull( 'namespace' );
94
95 $protocols_list = [];
96 foreach ( $this->getConfig()->get( 'UrlProtocols' ) as $prot ) {
97 if ( $prot !== '//' ) {
98 $protocols_list[] = $prot;
99 }
100 }
101
102 $target2 = $target;
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
109 // protocol
110 if ( strcasecmp( $protocol, substr( $target, 0, strlen( $protocol ) ) ) === 0 ) {
111 $target2 = substr( $target, strlen( $protocol ) );
112 } else {
113 // If it did, let LinkFilter::makeLikeArray() handle this
114 $protocol = '';
115 }
116 }
117
118 $out->addWikiMsg(
119 'linksearch-text',
120 '<nowiki>' . $this->getLanguage()->commaList( $protocols_list ) . '</nowiki>',
121 count( $protocols_list )
122 );
123 $fields = [
124 'target' => [
125 'type' => 'text',
126 'name' => 'target',
127 'id' => 'target',
128 'size' => 50,
129 'label-message' => 'linksearch-pat',
130 'default' => $target,
131 'dir' => 'ltr',
132 ]
133 ];
134 if ( !$this->getConfig()->get( 'MiserMode' ) ) {
135 $fields += [
136 'namespace' => [
137 'type' => 'namespaceselect',
138 'name' => 'namespace',
139 'label-message' => 'linksearch-ns',
140 'default' => $namespace,
141 'id' => 'namespace',
142 'all' => '',
143 'cssclass' => 'namespaceselector',
144 ],
145 ];
146 }
147 $hiddenFields = [
148 'title' => $this->getPageTitle()->getPrefixedDBkey(),
149 ];
150 $htmlForm = HTMLForm::factory( 'ooui', $fields, $this->getContext() );
151 $htmlForm->addHiddenFields( $hiddenFields );
152 $htmlForm->setSubmitTextMsg( 'linksearch-ok' );
153 $htmlForm->setWrapperLegendMsg( 'linksearch' );
154 $htmlForm->setAction( wfScript() );
155 $htmlForm->setMethod( 'get' );
156 $htmlForm->prepareForm()->displayForm( false );
157 $this->addHelpLink( 'Help:Linksearch' );
158
159 if ( $target != '' ) {
160 $this->setParams( [
161 'query' => Parser::normalizeLinkUrl( $target2 ),
162 'namespace' => $namespace,
163 'protocol' => $protocol ] );
164 parent::execute( $par );
165 if ( $this->mungedQuery === false ) {
166 $out->addWikiMsg( 'linksearch-error' );
167 }
168 }
169 }
170
175 function isSyndicated() {
176 return false;
177 }
178
187 static function mungeQuery( $query, $prot ) {
188 $field = 'el_index';
189 $dbr = wfGetDB( DB_SLAVE );
190
191 if ( $query === '*' && $prot !== '' ) {
192 // Allow queries like 'ftp://*' to find all ftp links
193 $rv = [ $prot, $dbr->anyString() ];
194 } else {
195 $rv = LinkFilter::makeLikeArray( $query, $prot );
196 }
197
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 = [ $prot . rtrim( $query, " \t*" ), $dbr->anyString() ];
203 $field = 'el_to';
204 }
205 }
206
207 return [ $rv, $field ];
208 }
209
210 function linkParameters() {
211 $params = [];
212 $params['target'] = $this->mProt . $this->mQuery;
213 if ( $this->mNs !== null && !$this->getConfig()->get( 'MiserMode' ) ) {
214 $params['namespace'] = $this->mNs;
215 }
216
217 return $params;
218 }
219
220 public 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->mungedQuery, $clause ) = self::mungeQuery( $this->mQuery, $this->mProt );
225 if ( $this->mungedQuery === false ) {
226 // Invalid query; return no results
227 return [ 'tables' => 'page', 'fields' => 'page_id', 'conds' => '0=1' ];
228 }
229
230 $stripped = LinkFilter::keepOneWildcard( $this->mungedQuery );
231 $like = $dbr->buildLike( $stripped );
232 $retval = [
233 'tables' => [ 'page', 'externallinks' ],
234 'fields' => [
235 'namespace' => 'page_namespace',
236 'title' => 'page_title',
237 'value' => 'el_index',
238 'url' => 'el_to'
239 ],
240 'conds' => [
241 'page_id = el_from',
242 "$clause $like"
243 ],
244 'options' => [ 'USE INDEX' => $clause ]
245 ];
246
247 if ( $this->mNs !== null && !$this->getConfig()->get( 'MiserMode' ) ) {
248 $retval['conds']['page_namespace'] = $this->mNs;
249 }
250
251 return $retval;
252 }
253
260 function preprocessResults( $db, $res ) {
261 if ( $res->numRows() > 0 ) {
262 $linkBatch = new LinkBatch();
263
264 foreach ( $res as $row ) {
265 $linkBatch->add( $row->namespace, $row->title );
266 }
267
268 $res->seek( 0 );
269 $linkBatch->execute();
270 }
271 }
272
278 function formatResult( $skin, $result ) {
279 $title = new TitleValue( (int)$result->namespace, $result->title );
280 $pageLink = $this->linkRenderer->renderHtmlLink( $title );
281
282 $url = $result->url;
283 $urlLink = Linker::makeExternalLink( $url, $url );
284
285 return $this->msg( 'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
286 }
287
295 function getOrderFields() {
296 return [];
297 }
298
299 protected function getGroupName() {
300 return 'redirects';
301 }
302
309 protected function getMaxResults() {
310 return max( parent::getMaxResults(), 60000 );
311 }
312}
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static singleton()
static factory( $displayFormat)
Construct a HTMLForm object for given display type.
Definition HTMLForm.php:264
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:31
static makeLikeArray( $filterEntry, $protocol='http://')
Make an array to be used for calls to Database::buildLike(), which will match the specified string.
static keepOneWildcard( $arr)
Filters an array returned by makeLikeArray(), removing everything past first pattern placeholder.
Special:LinkSearch to search the external-links table.
initServices()
Initialize any services we'll need (unless it has already been provided via a setter).
getQueryInfo()
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s...
__construct( $name='LinkSearch')
getMaxResults()
enwiki complained about low limits on this special page
setPageLinkRenderer(PageLinkRenderer $linkRenderer)
Initialize or override the PageLinkRenderer LinkSearchPage collaborates with.
isCacheable()
Is the output of this query cacheable? Non-cacheable expensive pages will be disabled in miser mode a...
getOrderFields()
Override to squash the ORDER BY.
array bool $mungedQuery
execute( $par)
This is the actual workhorse.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
linkParameters()
If using extra form wheely-dealies, return a set of parameters here as an associative array.
preprocessResults( $db, $res)
Pre-fill the link cache.
PageLinkRenderer $linkRenderer
static mungeQuery( $query, $prot)
Return an appropriately formatted LIKE query and the clause.
formatResult( $skin, $result)
isSyndicated()
Disable RSS/Atom feeds.
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
Definition Linker.php:1052
A service for generating links from page titles.
A codec for MediaWiki page titles.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition QueryPage.php:30
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getContext()
Gets the context this SpecialPage is executed in.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
getLanguage()
Shortcut to get user's language.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
msg()
Wrapper around wfMessage that sets the current context.
Represents a page (or page fragment) title within MediaWiki.
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const DB_SLAVE
Definition Defines.php:47
the array() calling protocol came about after MediaWiki 1.4rc1.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1799
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
Definition hooks.txt:268
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:944
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2530
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:846
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:314
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1458
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Represents a link rendering service for MediaWiki.
$params