37 parent::__construct( $query, $moduleName,
'pwp' );
49 $this->
run( $resultPageSet );
56 private function run( $resultPageSet =
null ) {
59 $prop = array_fill_keys( $params[
'prop'],
true );
60 $fld_ids = isset( $prop[
'ids'] );
61 $fld_title = isset( $prop[
'title'] );
62 $fld_value = isset( $prop[
'value'] );
64 if ( $resultPageSet ===
null ) {
66 $this->
addFieldsIf( [
'page_title',
'page_namespace' ], $fld_title );
69 $this->
addFields( $resultPageSet->getPageTableFields() );
71 $this->
addTables( [
'page_props',
'page' ] );
72 $this->
addWhere(
'pp_page=page_id' );
73 $this->
addWhereFld(
'pp_propname', $params[
'propname'] );
75 $dir = ( $params[
'dir'] ==
'ascending' ) ?
'newer' :
'older';
77 if ( $params[
'continue'] ) {
78 $cont = explode(
'|', $params[
'continue'] );
82 $from = (int)$cont[0];
86 $sort = ( $params[
'dir'] ===
'descending' ?
' DESC' :
'' );
87 $this->
addOption(
'ORDER BY',
'pp_page' . $sort );
89 $limit = $params[
'limit'];
96 if ( $fld_title && $resultPageSet ===
null ) {
100 foreach (
$res as $row ) {
101 if ( ++$count > $limit ) {
108 if ( $resultPageSet ===
null ) {
110 ApiResult::META_TYPE =>
'assoc',
113 $vals[
'pageid'] = (int)$row->page_id;
116 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
120 $vals[
'value'] = $row->pp_value;
122 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $vals );
128 $resultPageSet->processDbRow( $row );
132 if ( $resultPageSet ===
null ) {
133 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
175 'action=query&list=pageswithprop&pwppropname=displaytitle&pwpprop=ids|title|value'
176 =>
'apihelp-query+pageswithprop-example-simple',
177 'action=query&generator=pageswithprop&gpwppropname=notoc&prop=info'
178 =>
'apihelp-query+pageswithprop-example-generator',
183 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Pageswithprop';
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.
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.
run( $resultPageSet=null)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
This is the main query class.