Go to the documentation of this file.
32 parent::__construct( $query, $moduleName,
'ac' );
44 $this->
run( $resultPageSet );
50 private function run( $resultPageSet =
null ) {
57 if ( !is_null( $params[
'continue'] ) ) {
58 $cont = explode(
'|', $params[
'continue'] );
60 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
61 $cont_from = $db->addQuotes( $cont[0] );
62 $this->
addWhere(
"cat_title $op= $cont_from" );
65 $dir = ( $params[
'dir'] ==
'descending' ?
'older' :
'newer' );
66 $from = ( $params[
'from'] ===
null
69 $to = ( $params[
'to'] ===
null
74 $min = $params[
'min'];
75 $max = $params[
'max'];
76 if ( $dir ==
'newer' ) {
82 if ( isset( $params[
'prefix'] ) ) {
83 $this->
addWhere(
'cat_title' . $db->buildLike(
84 $this->titlePartToKey( $params[
'prefix'],
NS_CATEGORY ),
88 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
89 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
92 $prop = array_flip( $params[
'prop'] );
93 $this->
addFieldsIf( [
'cat_pages',
'cat_subcats',
'cat_files' ], isset( $prop[
'size'] ) );
94 if ( isset( $prop[
'hidden'] ) ) {
95 $this->
addTables( [
'page',
'page_props' ] );
97 'page' => [
'LEFT JOIN', [
99 'page_title=cat_title' ] ],
100 'page_props' => [
'LEFT JOIN', [
102 'pp_propname' =>
'hiddencat' ] ],
104 $this->
addFields( [
'cat_hidden' =>
'pp_propname' ] );
113 foreach (
$res as $row ) {
114 if ( ++$count > $params[
'limit'] ) {
123 if ( !is_null( $resultPageSet ) ) {
124 $pages[] = $titleObj;
128 if ( isset( $prop[
'size'] ) ) {
129 $item[
'size'] = (int)$row->cat_pages;
130 $item[
'pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
131 $item[
'files'] = (
int)$row->cat_files;
132 $item[
'subcats'] = (int)$row->cat_subcats;
134 if ( isset( $prop[
'hidden'] ) ) {
135 $item[
'hidden'] = (bool)$row->cat_hidden;
137 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $item );
145 if ( is_null( $resultPageSet ) ) {
146 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'c' );
148 $resultPageSet->populateFromTitles( $pages );
191 'action=query&list=allcategories&acprop=size'
192 =>
'apihelp-query+allcategories-example-size',
193 'action=query&generator=allcategories&gacprefix=List&prop=info'
194 =>
'apihelp-query+allcategories-example-generator',
199 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allcategories';
getExamplesMessages()
Returns usage examples for this module.
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
executeGenerator( $resultPageSet)
Execute this module as a generator.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
getHelpUrls()
Return links to more detailed help pages about the module.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
Query module to enumerate all categories, even the ones that don't have category pages.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
const LIMIT_BIG1
Fast query, standard limit.
getDB()
Get the Query database connection (read-only)
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
run( $resultPageSet=null)
addWhere( $value)
Add a set of WHERE clauses to the internal array.
__construct(ApiQuery $query, $moduleName)
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.