MediaWiki master
ApiQueryQueryPage.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Api;
24
31
38
42 private $queryPages;
43
44 private SpecialPageFactory $specialPageFactory;
45
46 public function __construct(
47 ApiQuery $query,
48 string $moduleName,
49 SpecialPageFactory $specialPageFactory
50 ) {
51 parent::__construct( $query, $moduleName, 'qp' );
52 $this->queryPages = array_values( array_diff(
53 array_column( QueryPage::getPages(), 1 ), // [ class, name ]
55 ) );
56 $this->specialPageFactory = $specialPageFactory;
57 }
58
59 public function execute() {
60 $this->run();
61 }
62
63 public function executeGenerator( $resultPageSet ) {
64 $this->run( $resultPageSet );
65 }
66
71 private function getSpecialPage( $name ): QueryPage {
72 $qp = $this->specialPageFactory->getPage( $name );
73 if ( !$qp ) {
75 __METHOD__,
76 'SpecialPageFactory failed to create special page ' . $name
77 );
78 }
79 if ( !( $qp instanceof QueryPage ) ) {
81 __METHOD__,
82 'Special page ' . $name . ' is not a QueryPage'
83 );
84 }
85 // @phan-suppress-next-line PhanTypeMismatchReturnNullable T240141
86 return $qp;
87 }
88
92 public function run( $resultPageSet = null ) {
93 $params = $this->extractRequestParams();
94 $result = $this->getResult();
95
96 $qp = $this->getSpecialPage( $params['page'] );
97 if ( !$qp->userCanExecute( $this->getUser() ) ) {
98 $this->dieWithError( 'apierror-specialpage-cantexecute' );
99 }
100
101 if ( $resultPageSet === null ) {
102 $r = [ 'name' => $params['page'] ];
103 if ( $qp->isCached() ) {
104 if ( !$qp->isCacheable() ) {
105 $r['disabled'] = true;
106 } else {
107 $r['cached'] = true;
108 $ts = $qp->getCachedTimestamp();
109 if ( $ts ) {
110 $r['cachedtimestamp'] = wfTimestamp( TS_ISO_8601, $ts );
111 }
112 $r['maxresults'] = $this->getConfig()->get( MainConfigNames::QueryCacheLimit );
113 }
114 }
115 $result->addValue( [ 'query' ], $this->getModuleName(), $r );
116 }
117
118 if ( $qp->isCached() && !$qp->isCacheable() ) {
119 // Disabled query page, don't run the query
120 return;
121 }
122
123 $res = $qp->doQuery( $params['offset'], $params['limit'] + 1 );
124 $count = 0;
125 $titles = [];
126 foreach ( $res as $row ) {
127 if ( ++$count > $params['limit'] ) {
128 // We've had enough
129 $this->setContinueEnumParameter( 'offset', $params['offset'] + $params['limit'] );
130 break;
131 }
132
133 $title = Title::makeTitle( $row->namespace, $row->title );
134 if ( $resultPageSet === null ) {
135 $data = [];
136 if ( isset( $row->value ) ) {
137 $data['value'] = $row->value;
138 if ( $qp->usesTimestamps() ) {
139 $data['timestamp'] = wfTimestamp( TS_ISO_8601, $row->value );
140 }
141 }
142 self::addTitleInfo( $data, $title );
143
144 foreach ( $row as $field => $value ) {
145 if ( !in_array( $field, [ 'namespace', 'title', 'value', 'qc_type' ] ) ) {
146 $data['databaseResult'][$field] = $value;
147 }
148 }
149
150 $fit = $result->addValue( [ 'query', $this->getModuleName(), 'results' ], null, $data );
151 if ( !$fit ) {
152 $this->setContinueEnumParameter( 'offset', $params['offset'] + $count - 1 );
153 break;
154 }
155 } else {
156 $titles[] = $title;
157 }
158 }
159 if ( $resultPageSet === null ) {
160 $result->addIndexedTagName(
161 [ 'query', $this->getModuleName(), 'results' ],
162 'page'
163 );
164 } else {
165 $resultPageSet->populateFromTitles( $titles );
166 }
167 }
168
169 public function getCacheMode( $params ) {
170 $qp = $this->getSpecialPage( $params['page'] );
171 if ( $qp->getRestriction() != '' ) {
172 return 'private';
173 }
174
175 return 'public';
176 }
177
178 public function getAllowedParams() {
179 return [
180 'page' => [
181 ParamValidator::PARAM_TYPE => $this->queryPages,
182 ParamValidator::PARAM_REQUIRED => true
183 ],
184 'offset' => [
185 ParamValidator::PARAM_DEFAULT => 0,
186 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
187 ],
188 'limit' => [
189 ParamValidator::PARAM_DEFAULT => 10,
190 ParamValidator::PARAM_TYPE => 'limit',
191 IntegerDef::PARAM_MIN => 1,
192 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
193 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
194 ],
195 ];
196 }
197
198 protected function getExamplesMessages() {
199 return [
200 'action=query&list=querypage&qppage=Ancientpages'
201 => 'apihelp-query+querypage-example-ancientpages',
202 ];
203 }
204
205 public function getHelpUrls() {
206 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Querypage';
207 }
208}
209
211class_alias( ApiQueryQueryPage::class, 'ApiQueryQueryPage' );
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
array $params
The job parameters.
run()
Run the job.
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition ApiBase.php:1820
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:184
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:251
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:249
Query module to get the results of a QueryPage-based special page.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, string $moduleName, SpecialPageFactory $specialPageFactory)
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.
executeGenerator( $resultPageSet)
Execute this module as a generator.
This is the main query class.
Definition ApiQuery.php:48
A class containing constants representing the names of configuration variables.
const QueryCacheLimit
Name constant for the QueryCacheLimit setting, for use with Config::get()
const APIUselessQueryPages
Name constant for the APIUselessQueryPages setting, for use with Config::get()
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition QueryPage.php:87
static getPages()
Get a list of query page classes and their associated special pages, for periodic updates.
Factory for handling the special page list and generating SpecialPage objects.
Represents a title within MediaWiki.
Definition Title.php:78
Service for formatting and validating API parameters.
Type definition for integer types.