3 * Copyright © 2010 Roan Kattouw <roan.kattouw@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 namespace MediaWiki\Api
;
25 use MediaWiki\MainConfigNames
;
26 use MediaWiki\SpecialPage\QueryPage
;
27 use MediaWiki\SpecialPage\SpecialPageFactory
;
28 use MediaWiki\Title\Title
;
29 use Wikimedia\ParamValidator\ParamValidator
;
30 use Wikimedia\ParamValidator\TypeDef\IntegerDef
;
33 * Query module to get the results of a QueryPage-based special page
37 class ApiQueryQueryPage
extends ApiQueryGeneratorBase
{
40 * @var string[] list of special page names
44 private SpecialPageFactory
$specialPageFactory;
46 public function __construct(
49 SpecialPageFactory
$specialPageFactory
51 parent
::__construct( $query, $moduleName, 'qp' );
52 $this->queryPages
= array_values( array_diff(
53 array_column( QueryPage
::getPages(), 1 ), // [ class, name ]
54 $this->getConfig()->get( MainConfigNames
::APIUselessQueryPages
)
56 $this->specialPageFactory
= $specialPageFactory;
59 public function execute() {
63 public function executeGenerator( $resultPageSet ) {
64 $this->run( $resultPageSet );
71 private function getSpecialPage( $name ): QueryPage
{
72 $qp = $this->specialPageFactory
->getPage( $name );
76 'SpecialPageFactory failed to create special page ' . $name
79 if ( !( $qp instanceof QueryPage
) ) {
82 'Special page ' . $name . ' is not a QueryPage'
85 // @phan-suppress-next-line PhanTypeMismatchReturnNullable T240141
90 * @param ApiPageSet|null $resultPageSet Set when used as a generator, null otherwise
92 public function run( $resultPageSet = null ) {
93 $params = $this->extractRequestParams();
94 $result = $this->getResult();
96 $qp = $this->getSpecialPage( $params['page'] );
97 if ( !$qp->userCanExecute( $this->getUser() ) ) {
98 $this->dieWithError( 'apierror-specialpage-cantexecute' );
101 if ( $resultPageSet === null ) {
102 $r = [ 'name' => $params['page'] ];
103 if ( $qp->isCached() ) {
104 if ( !$qp->isCacheable() ) {
105 $r['disabled'] = true;
108 $ts = $qp->getCachedTimestamp();
110 $r['cachedtimestamp'] = wfTimestamp( TS_ISO_8601
, $ts );
112 $r['maxresults'] = $this->getConfig()->get( MainConfigNames
::QueryCacheLimit
);
115 $result->addValue( [ 'query' ], $this->getModuleName(), $r );
118 if ( $qp->isCached() && !$qp->isCacheable() ) {
119 // Disabled query page, don't run the query
123 $res = $qp->doQuery( $params['offset'], $params['limit'] +
1 );
126 foreach ( $res as $row ) {
127 if ( ++
$count > $params['limit'] ) {
129 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$params['limit'] );
133 $title = Title
::makeTitle( $row->namespace, $row->title
);
134 if ( $resultPageSet === null ) {
136 if ( isset( $row->value
) ) {
137 $data['value'] = $row->value
;
138 if ( $qp->usesTimestamps() ) {
139 $data['timestamp'] = wfTimestamp( TS_ISO_8601
, $row->value
);
142 self
::addTitleInfo( $data, $title );
144 foreach ( $row as $field => $value ) {
145 if ( !in_array( $field, [ 'namespace', 'title', 'value', 'qc_type' ] ) ) {
146 $data['databaseResult'][$field] = $value;
150 $fit = $result->addValue( [ 'query', $this->getModuleName(), 'results' ], null, $data );
152 $this->setContinueEnumParameter( 'offset', $params['offset'] +
$count - 1 );
159 if ( $resultPageSet === null ) {
160 $result->addIndexedTagName(
161 [ 'query', $this->getModuleName(), 'results' ],
165 $resultPageSet->populateFromTitles( $titles );
169 public function getCacheMode( $params ) {
170 $qp = $this->getSpecialPage( $params['page'] );
171 if ( $qp->getRestriction() != '' ) {
178 public function getAllowedParams() {
181 ParamValidator
::PARAM_TYPE
=> $this->queryPages
,
182 ParamValidator
::PARAM_REQUIRED
=> true
185 ParamValidator
::PARAM_DEFAULT
=> 0,
186 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
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
198 protected function getExamplesMessages() {
200 'action=query&list=querypage&qppage=Ancientpages'
201 => 'apihelp-query+querypage-example-ancientpages',
205 public function getHelpUrls() {
206 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Querypage';
210 /** @deprecated class alias since 1.43 */
211 class_alias( ApiQueryQueryPage
::class, 'ApiQueryQueryPage' );