50 private $pageMap = [];
61 'linktbl' =>
'pagelinks',
62 'helpurl' =>
'https://www.mediawiki.org/wiki/API:Backlinks',
67 'linktbl' =>
'templatelinks',
68 'helpurl' =>
'https://www.mediawiki.org/wiki/API:Embeddedin',
73 'linktbl' =>
'imagelinks',
74 'helpurl' =>
'https://www.mediawiki.org/wiki/API:Imageusage',
79 $settings = $this->backlinksSettings[$moduleName];
80 $prefix = $settings[
'prefix'];
81 $code = $settings[
'code'];
82 $this->resultArr = [];
84 parent::__construct( $query, $moduleName,
$code );
85 $this->bl_ns = $prefix .
'_namespace';
86 $this->bl_from = $prefix .
'_from';
87 $this->bl_from_ns = $prefix .
'_from_namespace';
88 $this->bl_table = $settings[
'linktbl'];
89 $this->bl_code =
$code;
90 $this->helpUrl = $settings[
'helpurl'];
92 $this->hasNS = $moduleName !==
'imageusage';
94 $this->bl_title = $prefix .
'_title';
100 $this->bl_title = $prefix .
'_to';
116 $this->
run( $resultPageSet );
124 $this->
addTables( [ $this->bl_table,
'page' ] );
125 $this->
addWhere(
"{$this->bl_from}=page_id" );
126 if ( is_null( $resultPageSet ) ) {
127 $this->
addFields( [
'page_id',
'page_title',
'page_namespace' ] );
129 $this->
addFields( $resultPageSet->getPageTableFields() );
131 $this->
addFields( [
'page_is_redirect',
'from_ns' =>
'page_namespace' ] );
133 $this->
addWhereFld( $this->bl_title, $this->rootTitle->getDBkey() );
134 if ( $this->hasNS ) {
135 $this->
addWhereFld( $this->bl_ns, $this->rootTitle->getNamespace() );
137 $this->
addWhereFld( $this->bl_from_ns, $this->params[
'namespace'] );
139 if ( count( $this->cont ) >= 2 ) {
140 $op = $this->params[
'dir'] ==
'descending' ?
'<' :
'>';
141 if ( count( $this->params[
'namespace'] ) > 1 ) {
143 "{$this->bl_from_ns} $op {$this->cont[0]} OR " .
144 "({$this->bl_from_ns} = {$this->cont[0]} AND " .
145 "{$this->bl_from} $op= {$this->cont[1]})"
148 $this->
addWhere(
"{$this->bl_from} $op= {$this->cont[1]}" );
152 if ( $this->params[
'filterredir'] ==
'redirects' ) {
154 } elseif ( $this->params[
'filterredir'] ==
'nonredirects' && !$this->
redirect ) {
160 $this->
addOption(
'LIMIT', $this->params[
'limit'] + 1 );
161 $sort = ( $this->params[
'dir'] ==
'descending' ?
' DESC' :
'' );
163 if ( count( $this->params[
'namespace'] ) > 1 ) {
164 $orderBy[] = $this->bl_from_ns .
$sort;
166 $orderBy[] = $this->bl_from .
$sort;
167 $this->
addOption(
'ORDER BY', $orderBy );
172 foreach (
$res as $row ) {
173 if ( ++
$count > $this->params[
'limit'] ) {
177 $this->continueStr =
"{$row->from_ns}|{$row->page_id}";
182 if ( count( $this->cont ) < 2 ) {
183 $this->cont[] = $row->from_ns;
184 $this->cont[] = $row->page_id;
187 $this->pageMap[$row->page_namespace][$row->page_title] = $row->page_id;
189 if ( $row->page_is_redirect ) {
190 $this->redirTitles[] =
$t;
193 if ( is_null( $resultPageSet ) ) {
194 $a = [
'pageid' => intval( $row->page_id ) ];
196 if ( $row->page_is_redirect ) {
197 $a[
'redirect'] =
true;
200 $this->resultArr[$a[
'pageid']] = $a;
202 $resultPageSet->processDbRow( $row );
212 $db = $this->
getDB();
213 $this->
addTables( [
'page', $this->bl_table ] );
214 $this->
addWhere(
"{$this->bl_from}=page_id" );
216 if ( is_null( $resultPageSet ) ) {
217 $this->
addFields( [
'page_id',
'page_title',
'page_namespace',
'page_is_redirect' ] );
219 $this->
addFields( $resultPageSet->getPageTableFields() );
222 $this->
addFields( [ $this->bl_title,
'from_ns' =>
'page_namespace' ] );
223 if ( $this->hasNS ) {
232 foreach ( $this->redirTitles
as $t ) {
233 $redirNs = $t->getNamespace();
234 $redirDBkey = $t->getDBkey();
235 $titleWhere[] =
"{$this->bl_title} = " . $db->addQuotes( $redirDBkey ) .
236 ( $this->hasNS ?
" AND {$this->bl_ns} = {$redirNs}" :
'' );
237 $allRedirNs[$redirNs] =
true;
238 $allRedirDBkey[$redirDBkey] =
true;
241 $this->
addWhereFld(
'page_namespace', $this->params[
'namespace'] );
243 if ( count( $this->cont ) >= 6 ) {
244 $op = $this->params[
'dir'] ==
'descending' ?
'<' :
'>';
246 $where =
"{$this->bl_from} $op= {$this->cont[5]}";
249 if ( count( $this->params[
'namespace'] ) > 1 ) {
250 $where =
"{$this->bl_from_ns} $op {$this->cont[4]} OR " .
251 "({$this->bl_from_ns} = {$this->cont[4]} AND ($where))";
253 if ( count( $allRedirDBkey ) > 1 ) {
254 $title = $db->addQuotes( $this->cont[3] );
255 $where =
"{$this->bl_title} $op $title OR " .
256 "({$this->bl_title} = $title AND ($where))";
258 if ( $this->hasNS && count( $allRedirNs ) > 1 ) {
259 $where =
"{$this->bl_ns} $op {$this->cont[2]} OR " .
260 "({$this->bl_ns} = {$this->cont[2]} AND ($where))";
265 if ( $this->params[
'filterredir'] ==
'redirects' ) {
267 } elseif ( $this->params[
'filterredir'] ==
'nonredirects' ) {
271 $this->
addOption(
'LIMIT', $this->params[
'limit'] + 1 );
273 $sort = ( $this->params[
'dir'] ==
'descending' ?
' DESC' :
'' );
275 if ( $this->hasNS && count( $allRedirNs ) > 1 ) {
276 $orderBy[] = $this->bl_ns .
$sort;
278 if ( count( $allRedirDBkey ) > 1 ) {
279 $orderBy[] = $this->bl_title .
$sort;
281 if ( count( $this->params[
'namespace'] ) > 1 ) {
282 $orderBy[] = $this->bl_from_ns .
$sort;
284 $orderBy[] = $this->bl_from .
$sort;
285 $this->
addOption(
'ORDER BY', $orderBy );
286 $this->
addOption(
'USE INDEX', [
'page' =>
'PRIMARY' ] );
290 foreach (
$res as $row ) {
291 $ns = $this->hasNS ? $row->{$this->bl_ns} :
NS_FILE;
293 if ( ++
$count > $this->params[
'limit'] ) {
298 $title = $row->{$this->bl_title};
299 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 2 ) ) .
300 "|$ns|$title|{$row->from_ns}|{$row->page_id}";
305 if ( count( $this->cont ) < 6 ) {
307 $this->cont[] = $row->{$this->bl_title};
308 $this->cont[] = $row->from_ns;
309 $this->cont[] = $row->page_id;
312 if ( is_null( $resultPageSet ) ) {
313 $a[
'pageid'] = intval( $row->page_id );
315 if ( $row->page_is_redirect ) {
316 $a[
'redirect'] =
true;
318 $parentID = $this->pageMap[$ns][$row->{$this->bl_title}];
320 $this->resultArr[$parentID][
'redirlinks'][$row->page_id] = $a;
322 $resultPageSet->processDbRow( $row );
331 private function run( $resultPageSet = null ) {
332 $this->params = $this->extractRequestParams(
false );
333 $this->
redirect = isset( $this->params[
'redirect'] ) && $this->params[
'redirect'];
339 if ( $this->params[
'limit'] ==
'max' ) {
340 $this->params[
'limit'] = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
341 $result->addParsedLimit( $this->getModuleName(), $this->params[
'limit'] );
343 $this->params[
'limit'] = intval( $this->params[
'limit'] );
344 $this->validateLimit(
'limit', $this->params[
'limit'], 1, $userMax, $botMax );
347 $this->rootTitle = $this->getTitleOrPageId( $this->params )->getTitle();
350 if ( !$this->hasNS && $this->rootTitle->getNamespace() !==
NS_FILE ) {
352 "The title for {$this->getModuleName()} query must be a file",
359 if ( $this->params[
'continue'] !== null ) {
360 $cont = explode(
'|', $this->params[
'continue'] );
362 switch ( count( $cont ) ) {
365 $this->cont[7] = (int)$cont[7];
366 $this->dieContinueUsageIf( $cont[7] !== (
string)$this->cont[7] );
372 $this->cont[6] = (int)$cont[6];
373 $this->dieContinueUsageIf( $cont[6] !== (
string)$this->cont[6] );
379 $this->cont[2] = (int)$cont[2];
380 $this->dieContinueUsageIf( $cont[2] !== (
string)$this->cont[2] );
383 $this->cont[3] = $cont[3];
386 $this->cont[4] = (int)$cont[4];
387 $this->dieContinueUsageIf( $cont[4] !== (
string)$this->cont[4] );
390 $this->cont[5] = (int)$cont[5];
391 $this->dieContinueUsageIf( $cont[5] !== (
string)$this->cont[5] );
397 $this->cont[0] = (int)$cont[0];
398 $this->dieContinueUsageIf( $cont[0] !== (
string)$this->cont[0] );
401 $this->cont[1] = (int)$cont[1];
402 $this->dieContinueUsageIf( $cont[1] !== (
string)$this->cont[1] );
407 $this->dieContinueUsageIf(
true );
410 ksort( $this->cont );
413 $this->runFirstQuery( $resultPageSet );
414 if ( $this->
redirect && count( $this->redirTitles ) ) {
415 $this->resetQueryParams();
416 $this->runSecondQuery( $resultPageSet );
420 $this->cont += [ 0, 0, 0,
'', 0, 0, 0 ];
422 if ( is_null( $resultPageSet ) ) {
424 $code = $this->bl_code;
426 if ( isset( $arr[
'redirlinks'] ) ) {
427 $arr[
'redirlinks'] = array_values( $arr[
'redirlinks'] );
431 }, array_values( $this->resultArr ) );
432 $fit =
$result->addValue(
'query', $this->getModuleName(), $data );
436 ksort( $this->resultArr );
437 if ( count( $this->cont ) >= 7 ) {
438 $startAt = $this->cont[6];
440 reset( $this->resultArr );
441 $startAt =
key( $this->resultArr );
444 foreach ( $this->resultArr
as $pageID => $arr ) {
445 if ( $pageID < $startAt ) {
451 [
'query', $this->getModuleName() ],
452 $idx, array_diff_key( $arr, [
'redirlinks' =>
'' ] ) );
454 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 6 ) ) .
460 $redirLinks = isset( $arr[
'redirlinks'] ) ? (
array)$arr[
'redirlinks'] : [];
461 ksort( $redirLinks );
462 if ( count( $this->cont ) >= 8 && $pageID == $startAt ) {
463 $redirStartAt = $this->cont[7];
465 reset( $redirLinks );
466 $redirStartAt =
key( $redirLinks );
468 foreach ( $redirLinks
as $key => $redir ) {
469 if ( $key < $redirStartAt ) {
474 [
'query', $this->getModuleName(), $idx,
'redirlinks' ],
477 $this->continueStr = implode(
'|', array_slice( $this->cont, 0, 6 ) ) .
485 [
'query', $this->getModuleName(), $idx,
'redirlinks' ],
497 [
'query', $this->getModuleName() ],
501 if ( !is_null( $this->continueStr ) ) {
502 $this->setContinueEnumParameter(
'continue', $this->continueStr );
544 if ( $this->getModuleName() ==
'embeddedin' ) {
555 'action=query&list=backlinks&bltitle=Main%20Page'
556 =>
'apihelp-query+backlinks-example-simple',
557 'action=query&generator=backlinks&gbltitle=Main%20Page&prop=info'
558 =>
'apihelp-query+backlinks-example-generator',
561 'action=query&list=embeddedin&eititle=Template:Stub'
562 =>
'apihelp-query+embeddedin-example-simple',
563 'action=query&generator=embeddedin&geititle=Template:Stub&prop=info'
564 =>
'apihelp-query+embeddedin-example-generator',
567 'action=query&list=imageusage&iutitle=File:Albert%20Einstein%20Head.jpg'
568 =>
'apihelp-query+imageusage-example-simple',
569 'action=query&generator=imageusage&giutitle=File:Albert%20Einstein%20Head.jpg&prop=info'
570 =>
'apihelp-query+imageusage-example-generator',
574 return $examples[$this->getModuleName()];
578 return $this->helpUrl;
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
getDB()
Get the Query database connection (read-only)
const LIMIT_BIG2
Fast query, apihighlimits limit.
the array() calling protocol came about after MediaWiki 1.4rc1.
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
addWhereFld($field, $value)
Equivalent to addWhere(array($field => $value))
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
const LIMIT_BIG1
Fast query, standard limit.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
runSecondQuery($resultPageSet=null)
select($method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
This is a three-in-one module to query:
addWhere($value)
Add a set of WHERE clauses to the internal array.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
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':DEPRECATED!Use HtmlPageLinkRendererBegin instead.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
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
__construct(ApiQuery $query, $moduleName)
addOption($name, $value=null)
Add an option such as LIMIT or USE INDEX.
namespace and then decline to actually register it file or subcat img or subcat $title
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right, for PARAM_TYPE 'limit'.
This is the main query class.
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
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 modifiable & $code
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
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
addFields($value)
Add a set of fields to select to the internal array.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second redirect
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
static addTitleInfo(&$arr, $title, $prefix= '')
Add information (title and namespace) about a Title object to a result array.
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
addTables($tables, $alias=null)
Add a set of tables to the internal array.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
executeGenerator($resultPageSet)
runFirstQuery($resultPageSet=null)