41 parent::__construct( $query, $moduleName,
'pwp' );
53 $this->run( $resultPageSet );
60 private function run( $resultPageSet =
null ) {
63 $prop = array_fill_keys( $params[
'prop'],
true );
64 $fld_ids = isset( $prop[
'ids'] );
65 $fld_title = isset( $prop[
'title'] );
66 $fld_value = isset( $prop[
'value'] );
68 if ( $resultPageSet ===
null ) {
70 $this->
addFieldsIf( [
'page_title',
'page_namespace' ], $fld_title );
73 $this->
addFields( $resultPageSet->getPageTableFields() );
75 $this->
addTables( [
'page_props',
'page' ] );
76 $this->
addWhere(
'pp_page=page_id' );
77 $this->
addWhereFld(
'pp_propname', $params[
'propname'] );
79 $dir = ( $params[
'dir'] ==
'ascending' ) ?
'newer' :
'older';
81 if ( $params[
'continue'] ) {
87 $sort = ( $params[
'dir'] ===
'descending' ?
' DESC' :
'' );
88 $this->
addOption(
'ORDER BY',
'pp_page' . $sort );
90 $limit = $params[
'limit'];
97 if ( $fld_title && $resultPageSet ===
null ) {
101 foreach (
$res as $row ) {
102 if ( ++$count > $limit ) {
109 if ( $resultPageSet ===
null ) {
114 $vals[
'pageid'] = (int)$row->page_id;
117 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
121 $vals[
'value'] = $row->pp_value;
123 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $vals );
129 $resultPageSet->processDbRow( $row );
133 if ( $resultPageSet ===
null ) {
134 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
141 ParamValidator::PARAM_TYPE =>
'string',
142 ParamValidator::PARAM_REQUIRED =>
true,
145 ParamValidator::PARAM_DEFAULT =>
'ids|title',
146 ParamValidator::PARAM_ISMULTI =>
true,
147 ParamValidator::PARAM_TYPE => [
158 ParamValidator::PARAM_TYPE =>
'limit',
159 ParamValidator::PARAM_DEFAULT => 10,
160 IntegerDef::PARAM_MIN => 1,
165 ParamValidator::PARAM_DEFAULT =>
'ascending',
166 ParamValidator::PARAM_TYPE => [
176 'action=query&list=pageswithprop&pwppropname=displaytitle&pwpprop=ids|title|value'
177 =>
'apihelp-query+pageswithprop-example-simple',
178 'action=query&generator=pageswithprop&gpwppropname=notoc&prop=info'
179 =>
'apihelp-query+pageswithprop-example-generator',
184 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Pageswithprop';
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
const LIMIT_BIG1
Fast query, standard limit.
getResult()
Get the result object.
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.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
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.
addFields( $value)
Add a set of fields to select to the internal array.
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.
executeGenderCacheFromResultWrapper(IResultWrapper $res, $fname=__METHOD__, $fieldPrefix='page')
Preprocess the result set to fill the GenderCache with the necessary information before using self::a...
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.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $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.
A query module to enumerate pages that use a particular prop.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getHelpUrls()
Return links to more detailed help pages about the module.
__construct(ApiQuery $query, $moduleName)
executeGenerator( $resultPageSet)
Execute this module as a generator.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
This is the main query class.
const META_TYPE
Key for the 'type' metadata item.