31 [
'apiwarn-deprecation-withreplacement',
'action=tokens',
'action=query&meta=tokens' ],
37 ApiResult::META_TYPE =>
'assoc',
41 foreach ( $params[
'type'] as
$type ) {
42 $val = call_user_func( $types[
$type],
null,
null );
44 if ( $val ===
false ) {
45 $this->
addWarning( [
'apiwarn-tokennotallowed', $type ] );
65 $types = [
'patrol' => [ ApiQueryRecentChanges::class,
'getPatrolToken' ] ];
66 $names = [
'edit',
'delete',
'protect',
'move',
'block',
'unblock',
67 'email',
'import',
'watch',
'options' ];
68 foreach ( $names as $name ) {
69 $types[$name] = [ ApiQueryInfo::class,
'get' . ucfirst( $name ) .
'Token' ];
71 Hooks::run(
'ApiTokensGetTokenTypes', [ &$types ] );
78 if ( !isset( $types[$name] ) ) {
79 $types[$name] =
function () use ( $salt, $user, $request ) {
107 =>
'apihelp-tokens-example-edit',
108 'action=tokens&type=email|move'
109 =>
'apihelp-tokens-example-emailmove',
This abstract class implements many basic API functions, and is the base of all API classes.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
static getTokenTypeSalts()
Get the salts for known token types.
static getToken(User $user, MediaWiki\Session\Session $session, $salt)
Get a token from a salt.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
isDeprecated()
Indicates whether this module is deprecated.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...