3 * Created on December 31, 2012
5 * Copyright © 2012 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 enumerate pages that use a particular prop
33 class ApiQueryPagesWithProp
extends ApiQueryGeneratorBase
{
35 public function __construct( $query, $moduleName ) {
36 parent
::__construct( $query, $moduleName, 'pwp' );
39 public function execute() {
43 public function getCacheMode( $params ) {
47 public function executeGenerator( $resultPageSet ) {
48 $this->run( $resultPageSet );
52 * @param $resultPageSet ApiPageSet
55 private function run( $resultPageSet = null ) {
56 $params = $this->extractRequestParams();
58 $prop = array_flip( $params['prop'] );
59 $fld_ids = isset( $prop['ids'] );
60 $fld_title = isset( $prop['title'] );
61 $fld_value = isset( $prop['value'] );
63 if ( $resultPageSet === null ) {
64 $this->addFields( array( 'page_id' ) );
65 $this->addFieldsIf( array( 'page_title', 'page_namespace' ), $fld_title );
66 $this->addFieldsIf( 'pp_value', $fld_value );
68 $this->addFields( $resultPageSet->getPageTableFields() );
70 $this->addTables( array( 'page_props', 'page' ) );
71 $this->addWhere( 'pp_page=page_id' );
72 $this->addWhereFld( 'pp_propname', $params['propname'] );
74 $dir = ( $params['dir'] == 'ascending' ) ?
'newer' : 'older';
76 if ( $params['continue'] ) {
77 $cont = explode( '|', $params['continue'] );
78 $this->dieContinueUsageIf( count( $cont ) != 1 );
81 $from = (int)$cont[0];
82 $this->addWhereRange( 'pp_page', $dir, $from, null );
85 $sort = ( $params['dir'] === 'descending' ?
' DESC' : '' );
86 $this->addOption( 'ORDER BY', 'pp_page' . $sort );
88 $limit = $params['limit'];
89 $this->addOption( 'LIMIT', $limit +
1 );
91 $result = $this->getResult();
93 foreach ( $this->select( __METHOD__
) as $row ) {
94 if ( ++
$count > $limit ) {
95 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
96 $this->setContinueEnumParameter( 'continue', $row->page_id
);
100 if ( $resultPageSet === null ) {
103 $vals['pageid'] = (int)$row->page_id
;
106 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
107 ApiQueryBase
::addTitleInfo( $vals, $title );
110 $vals['value'] = $row->pp_value
;
112 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
114 $this->setContinueEnumParameter( 'continue', $row->page_id
);
118 $resultPageSet->processDbRow( $row );
122 if ( $resultPageSet === null ) {
123 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'page' );
127 public function getAllowedParams() {
130 ApiBase
::PARAM_TYPE
=> 'string',
131 ApiBase
::PARAM_REQUIRED
=> true,
134 ApiBase
::PARAM_DFLT
=> 'ids|title',
135 ApiBase
::PARAM_ISMULTI
=> true,
136 ApiBase
::PARAM_TYPE
=> array(
144 ApiBase
::PARAM_TYPE
=> 'limit',
145 ApiBase
::PARAM_DFLT
=> 10,
146 ApiBase
::PARAM_MIN
=> 1,
147 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
148 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
151 ApiBase
::PARAM_DFLT
=> 'ascending',
152 ApiBase
::PARAM_TYPE
=> array(
160 public function getParamDescription() {
162 'propname' => 'Page prop for which to enumerate pages',
164 'What pieces of information to include',
165 ' ids - Adds the page ID',
166 ' title - Adds the title and namespace ID of the page',
167 ' value - Adds the value of the page prop',
169 'dir' => 'In which direction to sort',
170 'continue' => 'When more results are available, use this to continue',
171 'limit' => 'The maximum number of pages to return',
175 public function getDescription() {
176 return 'List all pages using a given page prop';
179 public function getExamples() {
181 'api.php?action=query&list=pageswithprop&pwppropname=displaytitle&pwpprop=ids|title|value' => 'Get first 10 pages using {{DISPLAYTITLE:}}',
182 'api.php?action=query&generator=pageswithprop&gpwppropname=notoc&prop=info' => 'Get page info about first 10 pages using __NOTOC__',
186 public function getHelpUrls() {
187 return 'https://www.mediawiki.org/wiki/API:Pageswithprop';