40 'linktable' =>
'redirect',
44 'showredirects' =>
false,
53 'linktable' =>
'pagelinks',
54 'indexes' => [
'pl_namespace',
'pl_backlinks_namespace' ],
55 'from_namespace' =>
true,
56 'showredirects' =>
true,
61 'linktable' =>
'templatelinks',
62 'indexes' => [
'tl_namespace',
'tl_backlinks_namespace' ],
63 'from_namespace' =>
true,
64 'showredirects' =>
true,
69 'linktable' =>
'imagelinks',
70 'indexes' => [
'il_to',
'il_backlinks_namespace' ],
71 'from_namespace' =>
true,
73 'exampletitle' =>
'File:Example.jpg',
74 'showredirects' =>
true,
79 parent::__construct(
$query, $moduleName, self::$settings[$moduleName][
'code'] );
87 $this->
run( $resultPageSet );
98 $prop = array_flip(
$params[
'prop'] );
99 $emptyString = $db->addQuotes(
'' );
102 $titles = $pageSet->getGoodAndMissingTitles();
103 $map = $pageSet->getGoodAndMissingTitlesByNamespace();
107 foreach ( $pageSet->getSpecialTitles() as $id => $title ) {
109 $map[$title->getNamespace()][$title->getDBkey()] = $id;
114 $hasNS = !isset(
$settings[
'to_namespace'] );
116 $bl_namespace =
"{$p}_namespace";
117 $bl_title =
"{$p}_title";
119 $bl_namespace =
$settings[
'to_namespace'];
120 $bl_title =
"{$p}_to";
123 return $t->getNamespace() === $bl_namespace;
125 $map = array_intersect_key( $map, [ $bl_namespace =>
true ] );
127 $bl_from =
"{$p}_from";
137 if ( $hasNS && count( $map ) > 1 ) {
138 $sortby[$bl_namespace] =
'ns';
141 foreach ( $map as $nsTitles ) {
143 $key =
key( $nsTitles );
144 if ( $theTitle ===
null ) {
147 if ( count( $nsTitles ) > 1 || $key !== $theTitle ) {
148 $sortby[$bl_title] =
'title';
153 if (
$params[
'namespace'] !==
null ) {
154 if ( empty(
$settings[
'from_namespace'] ) ) {
155 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
156 $miser_ns =
$params[
'namespace'];
162 if ( !empty(
$settings[
'from_namespace'] )
163 &&
$params[
'namespace'] !==
null && count(
$params[
'namespace'] ) > 1
165 $sortby[
"{$p}_from_namespace"] =
'int';
169 $sortby[$bl_from] =
'int';
172 if ( !is_null(
$params[
'continue'] ) ) {
173 $cont = explode(
'|',
$params[
'continue'] );
176 $i = count( $sortby ) - 1;
177 foreach ( array_reverse( $sortby,
true ) as $field =>
$type ) {
186 $v = $db->addQuotes( $v );
193 $where =
"$field > $v OR ($field = $v AND ($where))";
203 $this->
addWhere(
"$bl_from = page_id" );
206 $this->
addWhere(
"rd_interwiki = $emptyString OR rd_interwiki IS NULL" );
209 $this->
addFields( array_keys( $sortby ) );
210 $this->
addFields( [
'bl_namespace' => $bl_namespace,
'bl_title' => $bl_title ] );
211 if ( is_null( $resultPageSet ) ) {
212 $fld_pageid = isset( $prop[
'pageid'] );
213 $fld_title = isset( $prop[
'title'] );
214 $fld_redirect = isset( $prop[
'redirect'] );
217 $this->
addFieldsIf( [
'page_title',
'page_namespace' ], $fld_title );
218 $this->
addFieldsIf(
'page_is_redirect', $fld_redirect );
221 $fld_fragment = isset( $prop[
'fragment'] );
222 $this->
addFieldsIf(
'rd_fragment', $fld_fragment );
224 $this->
addFields( $resultPageSet->getPageTableFields() );
227 $this->
addFieldsIf(
'page_namespace', $miser_ns !==
null );
232 $this->
addWhere( $db->makeWhereFrom2d( $map, $bl_namespace, $bl_title ) );
236 if (
$t->getNamespace() == $bl_namespace ) {
237 $where[] =
"$bl_title = " . $db->addQuotes(
$t->getDBkey() );
243 if (
$params[
'show'] !==
null ) {
245 $show = array_flip(
$params[
'show'] );
246 if ( isset( $show[
'fragment'] ) && isset( $show[
'!fragment'] ) ||
247 isset( $show[
'redirect'] ) && isset( $show[
'!redirect'] )
251 $this->
addWhereIf(
"rd_fragment != $emptyString", isset( $show[
'fragment'] ) );
253 "rd_fragment = $emptyString OR rd_fragment IS NULL",
254 isset( $show[
'!fragment'] )
256 $this->
addWhereIf( [
'page_is_redirect' => 1 ], isset( $show[
'redirect'] ) );
257 $this->
addWhereIf( [
'page_is_redirect' => 0 ], isset( $show[
'!redirect'] ) );
261 $this->
addOption(
'ORDER BY', array_keys( $sortby ) );
268 if (
$params[
'namespace'] !==
null && !empty(
$settings[
'from_namespace'] ) ) {
285 if ( is_null( $resultPageSet ) ) {
287 foreach (
$res as $row ) {
288 if ( ++$count >
$params[
'limit'] ) {
295 if ( $miser_ns !==
null && !in_array( $row->page_namespace, $miser_ns ) ) {
301 $id = $map[$row->bl_namespace][$row->bl_title];
305 $vals[
'pageid'] = (int)$row->page_id;
309 Title::makeTitle( $row->page_namespace, $row->page_title )
312 if ( $fld_fragment && $row->rd_fragment !==
null && $row->rd_fragment !==
'' ) {
313 $vals[
'fragment'] = $row->rd_fragment;
315 if ( $fld_redirect ) {
316 $vals[
'redirect'] = (bool)$row->page_is_redirect;
327 foreach (
$res as $row ) {
328 if ( ++$count >
$params[
'limit'] ) {
334 $titles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
336 $resultPageSet->populateFromTitles(
$titles );
342 foreach ( $sortby as $field => $v ) {
343 $cont[] = $row->$field;
382 if ( empty(
$settings[
'from_namespace'] ) && $this->
getConfig()->
get(
'MiserMode' ) ) {
384 'api-help-param-limited-in-miser-mode',
388 if ( !empty(
$settings[
'showredirects'] ) ) {
399 if ( !empty(
$settings[
'showredirects'] ) ) {
400 $show[] =
'redirect';
401 $show[] =
'!redirect';
404 $show = array_merge( $show,
$settings[
'show'] );
412 unset(
$ret[
'show'] );
422 $title = isset(
$settings[
'exampletitle'] ) ?
$settings[
'exampletitle'] :
'Main Page';
423 $etitle = rawurlencode( $title );
426 "action=query&prop={$name}&titles={$etitle}"
427 =>
"apihelp-$path-example-simple",
428 "action=query&generator={$name}&titles={$etitle}&prop=info"
429 =>
"apihelp-$path-example-generator",
435 return "https://www.mediawiki.org/wiki/Special:MyLanguage/API:{$name}";
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these that in whole or in part contains or is derived from the Program or any part to be licensed as a whole at no charge to all third parties under the terms of this License c If the modified program normally reads commands interactively when run
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const LIMIT_BIG1
Fast query, standard limit.
getModulePath()
Get the path to this module.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
This class contains a list of pages that the client has requested.
This implements prop=redirects, prop=linkshere, prop=catmembers, prop=transcludedin,...
setContinue( $row, $sortby)
executeGenerator( $resultPageSet)
Execute this module as a generator.
getHelpUrls()
Return links to more detailed help pages about the module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
run(ApiPageSet $resultPageSet=null)
getExamplesMessages()
Returns usage examples for this module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
__construct(ApiQuery $query, $moduleName)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addWhereIf( $value, $condition)
Same as addWhere(), but add the WHERE clauses only if a condition is met.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
This is the main query class.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
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
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
namespace and then decline to actually register it file or subcat img or subcat $title
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
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
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles