Implement extension registration from an extension.json file
[mediawiki.git] / includes / api / ApiTokens.php
blob073495c0706427b19f1c21955b858f9322922864
1 <?php
2 /**
5 * Created on Jul 29, 2011
7 * Copyright © 2011 John Du Hart john@johnduhart.me
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
24 * @file
27 /**
28 * @deprecated since 1.24
29 * @ingroup API
31 class ApiTokens extends ApiBase {
33 public function execute() {
34 $this->setWarning(
35 "action=tokens has been deprecated. Please use action=query&meta=tokens instead."
37 $this->logFeatureUsage( "action=tokens" );
39 $params = $this->extractRequestParams();
40 $res = array();
42 $types = $this->getTokenTypes();
43 foreach ( $params['type'] as $type ) {
44 $val = call_user_func( $types[$type], null, null );
46 if ( $val === false ) {
47 $this->setWarning( "Action '$type' is not allowed for the current user" );
48 } else {
49 $res[$type . 'token'] = $val;
53 $this->getResult()->addValue( null, $this->getModuleName(), $res );
56 private function getTokenTypes() {
57 // If we're in JSON callback mode, no tokens can be obtained
58 if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
59 return array();
62 static $types = null;
63 if ( $types ) {
64 return $types;
66 $types = array( 'patrol' => array( 'ApiQueryRecentChanges', 'getPatrolToken' ) );
67 $names = array( 'edit', 'delete', 'protect', 'move', 'block', 'unblock',
68 'email', 'import', 'watch', 'options' );
69 foreach ( $names as $name ) {
70 $types[$name] = array( 'ApiQueryInfo', 'get' . ucfirst( $name ) . 'Token' );
72 Hooks::run( 'ApiTokensGetTokenTypes', array( &$types ) );
73 ksort( $types );
75 return $types;
78 public function isDeprecated() {
79 return true;
82 public function getAllowedParams() {
83 return array(
84 'type' => array(
85 ApiBase::PARAM_DFLT => 'edit',
86 ApiBase::PARAM_ISMULTI => true,
87 ApiBase::PARAM_TYPE => array_keys( $this->getTokenTypes() ),
92 protected function getExamplesMessages() {
93 return array(
94 'action=tokens'
95 => 'apihelp-tokens-example-edit',
96 'action=tokens&type=email|move'
97 => 'apihelp-tokens-example-emailmove',