35 parent::__construct( $query, $moduleName,
'cl' );
47 $this->
run( $resultPageSet );
53 private function run( $resultPageSet =
null ) {
54 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
59 $prop = array_fill_keys( (array)$params[
'prop'],
true );
60 $show = array_fill_keys( (array)$params[
'show'],
true );
67 $this->
addFieldsIf( [
'cl_sortkey',
'cl_sortkey_prefix' ], isset( $prop[
'sortkey'] ) );
68 $this->
addFieldsIf(
'cl_timestamp', isset( $prop[
'timestamp'] ) );
72 if ( $params[
'categories'] ) {
74 foreach ( $params[
'categories'] as $cat ) {
75 $title = Title::newFromText( $cat );
79 $cats[] =
$title->getDBkey();
89 if ( $params[
'continue'] !==
null ) {
90 $cont = explode(
'|', $params[
'continue'] );
92 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
93 $clfrom = (int)$cont[0];
94 $clto = $this->
getDB()->addQuotes( $cont[1] );
96 "cl_from $op $clfrom OR " .
97 "(cl_from = $clfrom AND " .
102 if ( isset( $show[
'hidden'] ) && isset( $show[
'!hidden'] ) ) {
105 if ( isset( $show[
'hidden'] ) || isset( $show[
'!hidden'] ) || isset( $prop[
'hidden'] ) ) {
107 $this->
addTables( [
'page',
'page_props' ] );
108 $this->
addFieldsIf(
'pp_propname', isset( $prop[
'hidden'] ) );
110 'page' => [
'LEFT JOIN', [
112 'page_title = cl_to' ] ],
113 'page_props' => [
'LEFT JOIN', [
115 'pp_propname' =>
'hiddencat' ] ]
117 if ( isset( $show[
'hidden'] ) ) {
118 $this->
addWhere( [
'pp_propname IS NOT NULL' ] );
119 } elseif ( isset( $show[
'!hidden'] ) ) {
120 $this->
addWhere( [
'pp_propname IS NULL' ] );
124 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
126 if ( count( $this->
getPageSet()->getGoodTitles() ) == 1 ) {
127 $this->
addOption(
'ORDER BY',
'cl_to' . $sort );
134 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
139 if ( $resultPageSet ===
null ) {
140 foreach (
$res as $row ) {
141 if ( ++$count > $params[
'limit'] ) {
151 if ( isset( $prop[
'sortkey'] ) ) {
152 $vals[
'sortkey'] = bin2hex( $row->cl_sortkey );
153 $vals[
'sortkeyprefix'] = $row->cl_sortkey_prefix;
155 if ( isset( $prop[
'timestamp'] ) ) {
156 $vals[
'timestamp'] =
wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
158 if ( isset( $prop[
'hidden'] ) ) {
159 $vals[
'hidden'] = $row->pp_propname !==
null;
170 foreach (
$res as $row ) {
171 if ( ++$count > $params[
'limit'] ) {
178 $titles[] = Title::makeTitle(
NS_CATEGORY, $row->cl_to );
180 $resultPageSet->populateFromTitles( $titles );
227 'action=query&prop=categories&titles=Albert%20Einstein'
228 =>
'apihelp-query+categories-example-simple',
229 'action=query&generator=categories&titles=Albert%20Einstein&prop=info'
230 =>
'apihelp-query+categories-example-generator',
235 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categories';
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
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 LIMIT_BIG1
Fast query, standard limit.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
const LIMIT_BIG2
Fast query, apihighlimits limit.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
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)
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses to the internal array.
A query module to enumerate categories the set of pages belong to.
executeGenerator( $resultPageSet)
Execute this module as a generator.
__construct(ApiQuery $query, $moduleName)
getHelpUrls()
Return links to more detailed help pages about the module.
getExamplesMessages()
Returns usage examples for this module.
run( $resultPageSet=null)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
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.