2010-12-22 20:35:37 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2010-12-22 20:52:06 +00:00
|
|
|
*
|
2010-12-22 20:35:37 +00:00
|
|
|
*
|
2010-12-22 21:50:00 +00:00
|
|
|
* Created on Dec 22, 2010
|
2010-12-22 20:35:37 +00:00
|
|
|
*
|
2012-07-15 20:13:02 +00:00
|
|
|
* Copyright © 2010 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
|
2010-12-22 20:35:37 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Query module to get the results of a QueryPage-based special page
|
|
|
|
|
*
|
|
|
|
|
* @ingroup API
|
|
|
|
|
*/
|
|
|
|
|
class ApiQueryQueryPage extends ApiQueryGeneratorBase {
|
|
|
|
|
private $qpMap;
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2014-03-25 17:22:11 +00:00
|
|
|
public function __construct( ApiQuery $query, $moduleName ) {
|
2010-12-22 20:35:37 +00:00
|
|
|
parent::__construct( $query, $moduleName, 'qp' );
|
|
|
|
|
// Build mapping from special page names to QueryPage classes
|
2014-01-24 02:51:11 +00:00
|
|
|
$uselessQueryPages = $this->getConfig()->get( 'APIUselessQueryPages' );
|
2010-12-22 20:35:37 +00:00
|
|
|
$this->qpMap = array();
|
2014-02-04 19:50:11 +00:00
|
|
|
foreach ( QueryPage::getPages() as $page ) {
|
2014-01-24 02:51:11 +00:00
|
|
|
if ( !in_array( $page[1], $uselessQueryPages ) ) {
|
2011-04-18 17:04:50 +00:00
|
|
|
$this->qpMap[$page[1]] = $page[0];
|
|
|
|
|
}
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function executeGenerator( $resultPageSet ) {
|
|
|
|
|
$this->run( $resultPageSet );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 00:30:18 +00:00
|
|
|
/**
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param ApiPageSet $resultPageSet
|
2011-02-19 00:30:18 +00:00
|
|
|
*/
|
2010-12-22 20:35:37 +00:00
|
|
|
public function run( $resultPageSet = null ) {
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
$result = $this->getResult();
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2013-03-11 03:45:51 +00:00
|
|
|
/** @var $qp QueryPage */
|
2010-12-22 20:35:37 +00:00
|
|
|
$qp = new $this->qpMap[$params['page']]();
|
2011-10-26 23:27:01 +00:00
|
|
|
if ( !$qp->userCanExecute( $this->getUser() ) ) {
|
2011-05-19 17:51:16 +00:00
|
|
|
$this->dieUsageMsg( 'specialpage-cantexecute' );
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
$r = array( 'name' => $params['page'] );
|
|
|
|
|
if ( $qp->isCached() ) {
|
|
|
|
|
if ( !$qp->isCacheable() ) {
|
|
|
|
|
$r['disabled'] = '';
|
|
|
|
|
} else {
|
|
|
|
|
$r['cached'] = '';
|
|
|
|
|
$ts = $qp->getCachedTimestamp();
|
|
|
|
|
if ( $ts ) {
|
2010-12-22 21:50:00 +00:00
|
|
|
$r['cachedtimestamp'] = wfTimestamp( TS_ISO_8601, $ts );
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
2014-01-24 02:51:11 +00:00
|
|
|
$r['maxresults'] = $this->getConfig()->get( 'QueryCacheLimit' );
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$result->addValue( array( 'query' ), $this->getModuleName(), $r );
|
2011-08-17 22:24:21 +00:00
|
|
|
|
2011-07-21 18:03:25 +00:00
|
|
|
if ( $qp->isCached() && !$qp->isCacheable() ) {
|
|
|
|
|
// Disabled query page, don't run the query
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2011-09-29 15:16:35 +00:00
|
|
|
$res = $qp->doQuery( $params['offset'], $params['limit'] + 1 );
|
2010-12-22 20:35:37 +00:00
|
|
|
$count = 0;
|
|
|
|
|
$titles = array();
|
|
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
if ( ++$count > $params['limit'] ) {
|
|
|
|
|
// We've had enough
|
|
|
|
|
$this->setContinueEnumParameter( 'offset', $params['offset'] + $params['limit'] );
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
$title = Title::makeTitle( $row->namespace, $row->title );
|
|
|
|
|
if ( is_null( $resultPageSet ) ) {
|
|
|
|
|
$data = array( 'value' => $row->value );
|
|
|
|
|
if ( $qp->usesTimestamps() ) {
|
|
|
|
|
$data['timestamp'] = wfTimestamp( TS_ISO_8601, $row->value );
|
|
|
|
|
}
|
|
|
|
|
self::addTitleInfo( $data, $title );
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
foreach ( $row as $field => $value ) {
|
|
|
|
|
if ( !in_array( $field, array( 'namespace', 'title', 'value', 'qc_type' ) ) ) {
|
|
|
|
|
$data['databaseResult'][$field] = $value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
$fit = $result->addValue( array( 'query', $this->getModuleName(), 'results' ), null, $data );
|
|
|
|
|
if ( !$fit ) {
|
|
|
|
|
$this->setContinueEnumParameter( 'offset', $params['offset'] + $count - 1 );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$titles[] = $title;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( is_null( $resultPageSet ) ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
$result->setIndexedTagName_internal(
|
|
|
|
|
array( 'query', $this->getModuleName(), 'results' ),
|
|
|
|
|
'page'
|
|
|
|
|
);
|
2010-12-22 20:35:37 +00:00
|
|
|
} else {
|
|
|
|
|
$resultPageSet->populateFromTitles( $titles );
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function getCacheMode( $params ) {
|
2013-03-11 03:45:51 +00:00
|
|
|
/** @var $qp QueryPage */
|
2010-12-22 20:35:37 +00:00
|
|
|
$qp = new $this->qpMap[$params['page']]();
|
|
|
|
|
if ( $qp->getRestriction() != '' ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
2013-11-14 12:56:06 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
return 'public';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getAllowedParams() {
|
|
|
|
|
return array(
|
|
|
|
|
'page' => array(
|
|
|
|
|
ApiBase::PARAM_TYPE => array_keys( $this->qpMap ),
|
|
|
|
|
ApiBase::PARAM_REQUIRED => true
|
|
|
|
|
),
|
|
|
|
|
'offset' => 0,
|
|
|
|
|
'limit' => array(
|
|
|
|
|
ApiBase::PARAM_DFLT => 10,
|
|
|
|
|
ApiBase::PARAM_TYPE => 'limit',
|
|
|
|
|
ApiBase::PARAM_MIN => 1,
|
|
|
|
|
ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
|
|
|
|
|
ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function getParamDescription() {
|
|
|
|
|
return array(
|
2010-12-22 21:03:51 +00:00
|
|
|
'page' => 'The name of the special page. Note, this is case sensitive',
|
2010-12-22 20:35:37 +00:00
|
|
|
'offset' => 'When more results are available, use this to continue',
|
|
|
|
|
'limit' => 'Number of results to return',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-03-09 20:22:47 +00:00
|
|
|
return 'Get a list provided by a QueryPage-based special page.';
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
|
|
|
|
|
2011-08-17 22:24:21 +00:00
|
|
|
public function getExamples() {
|
2010-12-22 20:35:37 +00:00
|
|
|
return array(
|
2010-12-29 18:37:08 +00:00
|
|
|
'api.php?action=query&list=querypage&qppage=Ancientpages'
|
2010-12-22 20:35:37 +00:00
|
|
|
);
|
|
|
|
|
}
|
2013-05-16 07:08:18 +00:00
|
|
|
|
|
|
|
|
public function getHelpUrls() {
|
|
|
|
|
return 'https://www.mediawiki.org/wiki/API:Querypage';
|
|
|
|
|
}
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|