MediaWiki  1.29.1
ApiCheckToken.php
Go to the documentation of this file.
1 <?php
26 
31 class ApiCheckToken extends ApiBase {
32 
33  public function execute() {
34  $params = $this->extractRequestParams();
35  $token = $params['token'];
36  $maxage = $params['maxtokenage'];
38 
39  $res = [];
40 
41  $tokenObj = ApiQueryTokens::getToken(
42  $this->getUser(), $this->getRequest()->getSession(), $salts[$params['type']]
43  );
44 
45  if ( substr( $token, -strlen( urldecode( Token::SUFFIX ) ) ) === urldecode( Token::SUFFIX ) ) {
46  $this->addWarning( 'apiwarn-checktoken-percentencoding' );
47  }
48 
49  if ( $tokenObj->match( $token, $maxage ) ) {
50  $res['result'] = 'valid';
51  } elseif ( $maxage !== null && $tokenObj->match( $token ) ) {
52  $res['result'] = 'expired';
53  } else {
54  $res['result'] = 'invalid';
55  }
56 
57  $ts = Token::getTimestamp( $token );
58  if ( $ts !== null ) {
59  $mwts = new MWTimestamp();
60  $mwts->timestamp->setTimestamp( $ts );
61  $res['generated'] = $mwts->getTimestamp( TS_ISO_8601 );
62  }
63 
64  $this->getResult()->addValue( null, $this->getModuleName(), $res );
65  }
66 
67  public function getAllowedParams() {
68  return [
69  'type' => [
72  ],
73  'token' => [
74  ApiBase::PARAM_TYPE => 'string',
77  ],
78  'maxtokenage' => [
79  ApiBase::PARAM_TYPE => 'integer',
80  ],
81  ];
82  }
83 
84  protected function getExamplesMessages() {
85  return [
86  'action=checktoken&type=csrf&token=123ABC'
87  => 'apihelp-checktoken-example-simple',
88  ];
89  }
90 }
MWTimestamp
Library for creating and parsing MW-style timestamps.
Definition: MWTimestamp.php:32
ApiBase\addWarning
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition: ApiBase.php:1720
ApiCheckToken
Definition: ApiCheckToken.php:31
ApiBase\PARAM_REQUIRED
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:115
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:91
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:610
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$params
$params
Definition: styleTest.css.php:40
$res
$res
Definition: database.txt:21
ContextSource\getRequest
getRequest()
Get the WebRequest object.
Definition: ContextSource.php:78
ContextSource\getUser
getUser()
Get the User object.
Definition: ContextSource.php:133
ApiCheckToken\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiCheckToken.php:67
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:41
ApiCheckToken\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiCheckToken.php:84
ApiBase\PARAM_SENSITIVE
const PARAM_SENSITIVE
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:196
ApiCheckToken\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiCheckToken.php:33
ApiQueryTokens\getTokenTypeSalts
static getTokenTypeSalts()
Get the salts for known token types.
Definition: ApiQueryTokens.php:65
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:718
ApiQueryTokens\getToken
static getToken(User $user, MediaWiki\Session\Session $session, $salt)
Get a token from a salt.
Definition: ApiQueryTokens.php:96
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:490
MediaWiki\Session\Token
Value object representing a CSRF token.
Definition: Token.php:32