Go to the documentation of this file.
31 parent::__construct( $query, $moduleName,
'cl' );
43 $this->
run( $resultPageSet );
49 private function run( $resultPageSet =
null ) {
50 if ( $this->
getPageSet()->getGoodTitleCount() == 0 ) {
55 $prop = array_flip( (array)$params[
'prop'] );
56 $show = array_flip( (array)$params[
'show'] );
63 $this->
addFieldsIf( [
'cl_sortkey',
'cl_sortkey_prefix' ], isset( $prop[
'sortkey'] ) );
64 $this->
addFieldsIf(
'cl_timestamp', isset( $prop[
'timestamp'] ) );
68 if ( $params[
'categories'] ) {
70 foreach ( $params[
'categories'] as $cat ) {
75 $cats[] =
$title->getDBkey();
85 if ( !is_null( $params[
'continue'] ) ) {
86 $cont = explode(
'|', $params[
'continue'] );
88 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
89 $clfrom = (int)$cont[0];
90 $clto = $this->
getDB()->addQuotes( $cont[1] );
92 "cl_from $op $clfrom OR " .
93 "(cl_from = $clfrom AND " .
98 if ( isset( $show[
'hidden'] ) && isset( $show[
'!hidden'] ) ) {
101 if ( isset( $show[
'hidden'] ) || isset( $show[
'!hidden'] ) || isset( $prop[
'hidden'] ) ) {
103 $this->
addTables( [
'page',
'page_props' ] );
104 $this->
addFieldsIf(
'pp_propname', isset( $prop[
'hidden'] ) );
106 'page' => [
'LEFT JOIN', [
108 'page_title = cl_to' ] ],
109 'page_props' => [
'LEFT JOIN', [
111 'pp_propname' =>
'hiddencat' ] ]
113 if ( isset( $show[
'hidden'] ) ) {
114 $this->
addWhere( [
'pp_propname IS NOT NULL' ] );
115 } elseif ( isset( $show[
'!hidden'] ) ) {
116 $this->
addWhere( [
'pp_propname IS NULL' ] );
120 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
122 if ( count( $this->
getPageSet()->getGoodTitles() ) == 1 ) {
130 $this->
addOption(
'LIMIT', $params[
'limit'] + 1 );
135 if ( is_null( $resultPageSet ) ) {
136 foreach (
$res as $row ) {
137 if ( ++$count > $params[
'limit'] ) {
147 if ( isset( $prop[
'sortkey'] ) ) {
148 $vals[
'sortkey'] = bin2hex( $row->cl_sortkey );
149 $vals[
'sortkeyprefix'] = $row->cl_sortkey_prefix;
151 if ( isset( $prop[
'timestamp'] ) ) {
152 $vals[
'timestamp'] =
wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
154 if ( isset( $prop[
'hidden'] ) ) {
155 $vals[
'hidden'] = !is_null( $row->pp_propname );
166 foreach (
$res as $row ) {
167 if ( ++$count > $params[
'limit'] ) {
176 $resultPageSet->populateFromTitles( $titles );
223 'action=query&prop=categories&titles=Albert%20Einstein'
224 =>
'apihelp-query+categories-example-simple',
225 'action=query&generator=categories&titles=Albert%20Einstein&prop=info'
226 =>
'apihelp-query+categories-example-generator',
231 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categories';
A query module to enumerate categories the set of pages belong to.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
addFields( $value)
Add a set of fields to select to the internal array.
This is the main query class.
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
run( $resultPageSet=null)
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
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.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getExamplesMessages()
Returns usage examples for this module.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
getPageSet()
Get the PageSet object to work on.
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.
executeGenerator( $resultPageSet)
Execute this module as a generator.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
__construct(ApiQuery $query, $moduleName)
const LIMIT_BIG2
Fast query, apihighlimits limit.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getHelpUrls()
Return links to more detailed help pages about the module.
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,...
addWhere( $value)
Add a set of WHERE clauses to the internal array.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.