37 $this->mQuery =
$params[
'query'];
38 $this->mNs =
$params[
'namespace'];
39 $this->mProt =
$params[
'protocol'];
43 parent::__construct( $name );
59 $out->allowClickjacking();
62 $target =
$request->getVal(
'target', $par );
63 $namespace =
$request->getIntOrNull(
'namespace' );
66 foreach ( $this->
getConfig()->
get(
'UrlProtocols' ) as $prot ) {
67 if ( $prot !==
'//' ) {
68 $protocols_list[] = $prot;
74 $protocol =
'http://';
76 if ( isset( $bits[
'scheme'] ) && isset( $bits[
'delimiter'] ) ) {
77 $protocol = $bits[
'scheme'] . $bits[
'delimiter'];
80 if ( strcasecmp( $protocol, substr( $target, 0, strlen( $protocol ) ) ) === 0 ) {
81 $target2 = substr( $target, strlen( $protocol ) );
90 '<nowiki>' . $this->
getLanguage()->commaList( $protocols_list ) .
'</nowiki>',
91 count( $protocols_list )
99 'label-message' =>
'linksearch-pat',
100 'default' => $target,
104 if ( !$this->
getConfig()->
get(
'MiserMode' ) ) {
107 'type' =>
'namespaceselect',
108 'name' =>
'namespace',
109 'label-message' =>
'linksearch-ns',
110 'default' => $namespace,
113 'cssclass' =>
'namespaceselector',
120 $htmlForm = HTMLForm::factory(
'ooui', $fields, $this->
getContext() );
121 $htmlForm->addHiddenFields( $hiddenFields );
122 $htmlForm->setSubmitTextMsg(
'linksearch-ok' );
123 $htmlForm->setWrapperLegendMsg(
'linksearch' );
125 $htmlForm->setMethod(
'get' );
126 $htmlForm->prepareForm()->displayForm(
false );
129 if ( $target !=
'' ) {
131 'query' => Parser::normalizeLinkUrl( $target2 ),
132 'namespace' => $namespace,
133 'protocol' => $protocol ] );
134 parent::execute( $par );
135 if ( $this->mungedQuery ===
false ) {
136 $out->addWikiMsg(
'linksearch-error' );
161 if (
$query ===
'*' && $prot !==
'' ) {
163 $rv = [ $prot,
$dbr->anyString() ];
168 if ( $rv ===
false ) {
170 $pattern =
'/^(:?[0-9]{1,3}\.)+\*\s*$|^(:?[0-9]{1,3}\.){3}[0-9]{1,3}:[0-9]*\*\s*$/';
171 if ( preg_match( $pattern,
$query ) ) {
172 $rv = [ $prot . rtrim(
$query,
" \t*" ),
$dbr->anyString() ];
177 return [ $rv, $field ];
182 $params[
'target'] = $this->mProt . $this->mQuery;
183 if ( $this->mNs !==
null && !$this->
getConfig()->
get(
'MiserMode' ) ) {
184 $params[
'namespace'] = $this->mNs;
195 if ( $this->mungedQuery ===
false ) {
197 return [
'tables' =>
'page',
'fields' =>
'page_id',
'conds' =>
'0=1' ];
201 $like =
$dbr->buildLike( $stripped );
203 'tables' => [
'page',
'externallinks' ],
205 'namespace' =>
'page_namespace',
206 'title' =>
'page_title',
207 'value' =>
'el_index',
214 'options' => [
'USE INDEX' => $clause ]
217 if ( $this->mNs !==
null && !$this->
getConfig()->
get(
'MiserMode' ) ) {
218 $retval[
'conds'][
'page_namespace'] = $this->mNs;
240 $title =
new TitleValue( (
int)$result->namespace, $result->title );
246 return $this->
msg(
'linksearch-line' )->rawParams( $urlLink, $pageLink )->escaped();
272 return max( parent::getMaxResults(), 60000 );
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 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.
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
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.
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.
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.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed ResultWrapper (MUST include title and ...
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.
msg( $key)
Wrapper around wfMessage that sets the current context.
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.
Represents a page (or page fragment) title within MediaWiki.
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
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
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
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
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