2012-03-28 22:02:10 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Created on Jul 29, 2011
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2011 John Du Hart john@johnduhart.me
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup API
|
|
|
|
|
*/
|
|
|
|
|
class ApiTokens extends ApiBase {
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
$res = array();
|
|
|
|
|
|
2012-04-25 08:48:53 +00:00
|
|
|
$types = $this->getTokenTypes();
|
2012-03-28 22:02:10 +00:00
|
|
|
foreach ( $params['type'] as $type ) {
|
2012-04-25 08:48:53 +00:00
|
|
|
$val = call_user_func( $types[$type], null, null );
|
|
|
|
|
|
2012-03-28 22:02:10 +00:00
|
|
|
if ( $val === false ) {
|
|
|
|
|
$this->setWarning( "Action '$type' is not allowed for the current user" );
|
|
|
|
|
} else {
|
|
|
|
|
$res[$type . 'token'] = $val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->getResult()->addValue( null, $this->getModuleName(), $res );
|
2012-04-25 08:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function getTokenTypes() {
|
2013-08-29 16:45:30 +00:00
|
|
|
// If we're in JSON callback mode, no tokens can be obtained
|
|
|
|
|
if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
|
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-25 08:48:53 +00:00
|
|
|
static $types = null;
|
|
|
|
|
if ( $types ) {
|
|
|
|
|
return $types;
|
|
|
|
|
}
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
2013-02-14 19:33:21 +00:00
|
|
|
$types = array( 'patrol' => array( 'ApiQueryRecentChanges', 'getPatrolToken' ) );
|
2012-04-25 08:48:53 +00:00
|
|
|
$names = array( 'edit', 'delete', 'protect', 'move', 'block', 'unblock',
|
2012-05-04 10:31:08 +00:00
|
|
|
'email', 'import', 'watch', 'options' );
|
2012-04-25 08:48:53 +00:00
|
|
|
foreach ( $names as $name ) {
|
2013-02-14 19:33:21 +00:00
|
|
|
$types[$name] = array( 'ApiQueryInfo', 'get' . ucfirst( $name ) . 'Token' );
|
2012-04-25 08:48:53 +00:00
|
|
|
}
|
|
|
|
|
wfRunHooks( 'ApiTokensGetTokenTypes', array( &$types ) );
|
|
|
|
|
ksort( $types );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
2013-11-14 13:01:41 +00:00
|
|
|
|
2012-04-25 08:48:53 +00:00
|
|
|
return $types;
|
2012-03-28 22:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getAllowedParams() {
|
|
|
|
|
return array(
|
|
|
|
|
'type' => array(
|
|
|
|
|
ApiBase::PARAM_DFLT => 'edit',
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
2012-04-25 08:48:53 +00:00
|
|
|
ApiBase::PARAM_TYPE => array_keys( $this->getTokenTypes() ),
|
|
|
|
|
),
|
2012-03-28 22:02:10 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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() {
|
2013-02-14 19:33:21 +00:00
|
|
|
$props = array(
|
|
|
|
|
'' => array(),
|
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
|
|
|
);
|
2013-02-14 19:33:21 +00:00
|
|
|
|
|
|
|
|
self::addTokenProperties( $props, $this->getTokenTypes() );
|
|
|
|
|
|
|
|
|
|
return $props;
|
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
|
|
|
}
|
|
|
|
|
|
2012-03-28 22:02:10 +00:00
|
|
|
public function getParamDescription() {
|
|
|
|
|
return array(
|
|
|
|
|
'type' => 'Type of token(s) to request'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-03-09 20:22:47 +00:00
|
|
|
return 'Gets tokens for data-modifying actions.';
|
2012-03-28 22:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array(
|
|
|
|
|
'api.php?action=tokens' => 'Retrieve an edit token (the default)',
|
|
|
|
|
'api.php?action=tokens&type=email|move' => 'Retrieve an email token and a move token'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|