3 * Created on January 21, 2013
5 * Copyright © 2013 Brad Jorsch <bjorsch@wikimedia.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
28 * A query module to list used page props
33 class ApiQueryPagePropNames
extends ApiQueryBase
{
35 public function __construct( ApiQuery
$query, $moduleName ) {
36 parent
::__construct( $query, $moduleName, 'ppn' );
39 public function getCacheMode( $params ) {
43 public function execute() {
44 $params = $this->extractRequestParams();
46 $this->addTables( 'page_props' );
47 $this->addFields( 'pp_propname' );
48 $this->addOption( 'DISTINCT' );
49 $this->addOption( 'ORDER BY', 'pp_propname' );
51 if ( $params['continue'] ) {
52 $cont = explode( '|', $params['continue'] );
53 $this->dieContinueUsageIf( count( $cont ) != 1 );
56 $this->addWhereRange( 'pp_propname', 'newer', $cont[0], null );
59 $limit = $params['limit'];
60 $this->addOption( 'LIMIT', $limit +
1 );
62 $result = $this->getResult();
64 foreach ( $this->select( __METHOD__
) as $row ) {
65 if ( ++
$count > $limit ) {
66 // We've reached the one extra which shows that there are
67 // additional pages to be had. Stop here...
68 $this->setContinueEnumParameter( 'continue', $row->pp_propname
);
73 $vals['propname'] = $row->pp_propname
;
74 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
76 $this->setContinueEnumParameter( 'continue', $row->pp_propname
);
81 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'p' );
84 public function getAllowedParams() {
87 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
90 ApiBase
::PARAM_TYPE
=> 'limit',
91 ApiBase
::PARAM_DFLT
=> 10,
92 ApiBase
::PARAM_MIN
=> 1,
93 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
94 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
99 protected function getExamplesMessages() {
101 'action=query&list=pagepropnames'
102 => 'apihelp-query+pagepropnames-example-simple',
106 public function getHelpUrls() {
107 return 'https://www.mediawiki.org/wiki/API:Pagepropnames';