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
|
|
|
*
|
|
|
|
|
* Copyright © 2010 Roan Kattouw <Firstname>.<Lastname>@gmail.com
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
2011-04-18 17:04:50 +00:00
|
|
|
/**
|
|
|
|
|
* Some query pages are useless because they're available elsewhere in the API
|
|
|
|
|
*/
|
|
|
|
|
private $uselessQueryPages = array(
|
|
|
|
|
'MIMEsearch', // aiprop=mime
|
|
|
|
|
'LinkSearch', // list=exturlusage
|
|
|
|
|
'FileDuplicateSearch', // prop=duplicatefiles
|
|
|
|
|
);
|
|
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function __construct( $query, $moduleName ) {
|
|
|
|
|
parent::__construct( $query, $moduleName, 'qp' );
|
|
|
|
|
// We need to do this to make sure $wgQueryPages is set up
|
|
|
|
|
// This SUCKS
|
|
|
|
|
global $IP;
|
|
|
|
|
require_once( "$IP/includes/QueryPage.php" );
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
// Build mapping from special page names to QueryPage classes
|
|
|
|
|
global $wgQueryPages;
|
|
|
|
|
$this->qpMap = array();
|
|
|
|
|
foreach ( $wgQueryPages as $page ) {
|
2011-04-18 17:04:50 +00:00
|
|
|
if( !in_array( $page[1], $this->uselessQueryPages ) ) {
|
|
|
|
|
$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
|
|
|
/**
|
|
|
|
|
* @param $resultPageSet ApiPageSet
|
|
|
|
|
*/
|
2010-12-22 20:35:37 +00:00
|
|
|
public function run( $resultPageSet = null ) {
|
2012-05-12 15:11:47 +00:00
|
|
|
global $wgQueryCacheLimit;
|
|
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
$result = $this->getResult();
|
2010-12-22 21:03:51 +00:00
|
|
|
|
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
|
|
|
}
|
2012-05-12 15:11:47 +00:00
|
|
|
$r['maxresults'] = $wgQueryCacheLimit;
|
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 ) ) {
|
|
|
|
|
$result->setIndexedTagName_internal( array( 'query', $this->getModuleName(), 'results' ), 'page' );
|
|
|
|
|
} else {
|
|
|
|
|
$resultPageSet->populateFromTitles( $titles );
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-22 21:03:51 +00:00
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function getCacheMode( $params ) {
|
|
|
|
|
$qp = new $this->qpMap[$params['page']]();
|
|
|
|
|
if ( $qp->getRestriction() != '' ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
|
|
|
|
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',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
Added result properties to action=paraminfo
Added information about the properties of the results of API calls
to action=paraminfo, including information about "property groups":
what should the prop parameter be set to to get that property.
Uses the same format for types as parameters already do.
The output format of some modules doesn't fit this, so the result
properties for them weren't added, or only partially.
Partially implemented modules:
* expandtemplates:
parsetree is in its own tag
* protect, allusers, backlinks, deletedrevs, info, imageinfo,
logevents, querypage, recentchanges, revisions, searchinfo,
usercontribs, userinfo, users, watchlist, upload:
response with partially complex structure
Not implemented modules:
* feedcontributions, feedwatchlist, opensearch, rds:
non-standard reponse
* help:
error is normal response; not very useful for automated tools anyway
* paraminfo, parse, pageprops, siteinfo, userrights:
response with complex structure
Change-Id: Iff2a9bef79f994e73eef3062b4dd5461bff968ab
2012-05-02 15:00:30 +00:00
|
|
|
public function getResultProperties() {
|
|
|
|
|
return array(
|
|
|
|
|
ApiBase::PROP_ROOT => array(
|
|
|
|
|
'name' => array(
|
|
|
|
|
ApiBase::PROP_TYPE => 'string',
|
|
|
|
|
ApiBase::PROP_NULLABLE => false
|
|
|
|
|
),
|
|
|
|
|
'disabled' => array(
|
|
|
|
|
ApiBase::PROP_TYPE => 'boolean',
|
|
|
|
|
ApiBase::PROP_NULLABLE => false
|
|
|
|
|
),
|
|
|
|
|
'cached' => array(
|
|
|
|
|
ApiBase::PROP_TYPE => 'boolean',
|
2012-06-15 20:41:01 +00:00
|
|
|
ApiBase::PROP_NULLABLE => false
|
Added result properties to action=paraminfo
Added information about the properties of the results of API calls
to action=paraminfo, including information about "property groups":
what should the prop parameter be set to to get that property.
Uses the same format for types as parameters already do.
The output format of some modules doesn't fit this, so the result
properties for them weren't added, or only partially.
Partially implemented modules:
* expandtemplates:
parsetree is in its own tag
* protect, allusers, backlinks, deletedrevs, info, imageinfo,
logevents, querypage, recentchanges, revisions, searchinfo,
usercontribs, userinfo, users, watchlist, upload:
response with partially complex structure
Not implemented modules:
* feedcontributions, feedwatchlist, opensearch, rds:
non-standard reponse
* help:
error is normal response; not very useful for automated tools anyway
* paraminfo, parse, pageprops, siteinfo, userrights:
response with complex structure
Change-Id: Iff2a9bef79f994e73eef3062b4dd5461bff968ab
2012-05-02 15:00:30 +00:00
|
|
|
),
|
|
|
|
|
'cachedtimestamp' => array(
|
|
|
|
|
ApiBase::PROP_TYPE => 'timestamp',
|
|
|
|
|
ApiBase::PROP_NULLABLE => true
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'' => array(
|
|
|
|
|
'value' => 'string',
|
|
|
|
|
'timestamp' => array(
|
|
|
|
|
ApiBase::PROP_TYPE => 'timestamp',
|
|
|
|
|
ApiBase::PROP_NULLABLE => true
|
|
|
|
|
),
|
|
|
|
|
'ns' => 'namespace',
|
|
|
|
|
'title' => 'string'
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-22 20:35:37 +00:00
|
|
|
public function getDescription() {
|
2011-04-25 13:44:54 +00:00
|
|
|
return 'Get a list provided by a QueryPage-based special page';
|
2010-12-22 20:35:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getPossibleErrors() {
|
|
|
|
|
return array_merge( parent::getPossibleErrors(), array(
|
2011-07-20 11:46:27 +00:00
|
|
|
array( 'specialpage-cantexecute' )
|
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
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
|
|
|
|
return __CLASS__ . ': $Id$';
|
|
|
|
|
}
|
|
|
|
|
}
|