Go to the documentation of this file.
24 'sysop' => static::getTestSysop(),
25 'uploader' => static::getTestUser(),
29 'wgAuth' =>
new MediaWiki\Auth\AuthManagerAuthPlugin,
31 'wgUser' => self::$users[
'sysop']->getUser(),
64 $appendModule =
false,
User $user =
null, $tokenType =
null
68 if ( is_null( $session ) ) {
73 $sessionObj = SessionManager::singleton()->getEmptySession();
75 if ( $session !==
null ) {
76 foreach ( $session
as $key =>
$value ) {
77 $sessionObj->set( $key,
$value );
86 if ( $tokenType !==
null ) {
87 if ( $tokenType ===
'auto' ) {
88 $tokenType = (
new ApiMain() )->getModuleManager()
89 ->getModule(
$params[
'action'],
'action' )->needsToken();
111 $module->getResult()->getResultData(
null, [
'Strip' =>
'all' ] ),
113 $context->getRequest()->getSessionArray()
116 if ( $appendModule ) {
117 $results[] = $module;
149 protected function doLogin( $testUser =
null ) {
152 if ( $testUser ===
null ) {
153 $testUser = static::getTestSysop();
154 } elseif ( is_string( $testUser ) && array_key_exists( $testUser, self::$users ) ) {
155 $testUser = self::$users[$testUser];
156 } elseif ( !$testUser instanceof
TestUser ) {
157 throw new MWException(
"Can't log in to undefined user $testUser" );
160 $wgUser = $testUser->getUser();
166 'action' =>
'tokens',
167 'type' =>
'edit|delete|protect|move|block|unblock|watch'
168 ], $session,
false,
$user->getUser() );
170 if ( !array_key_exists(
'tokens', $data[0] ) ) {
171 throw new MWException(
'Api failed to return a token list' );
174 return $data[0][
'tokens'];
178 if ( self::$errorFormatter ===
null ) {
189 return (
bool)array_filter(
190 self::getErrorFormatter()->arrayFromStatus( $ex->
getStatusValue() ),
192 return is_array(
$e ) &&
$e[
'code'] ===
$code;
202 $constraint = PHPUnit_Framework_Assert::logicalOr(
206 $this->assertThat( $groups, $constraint,
207 'ApiTestCase::setUp can be slow, tests must be "medium" or "large"'
218 $msg,
$code =
null,
array $data =
null, $httpCode = 0
getStatusValue()
Fetch the error status.
This is the main API class, used for both external and internal processing.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
WebRequest clone which takes values from a provided array.
Exception used to abort API execution with an error.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
testApiTestGroup()
@coversNothing
static newWithMessage(ApiBase $module=null, $msg, $code=null, $data=null, $httpCode=0)
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
Wraps the user object, so we can also retain full access to properties like password if we log in via...
getTokenList(TestUser $user, $session=null)
doApiRequest(array $params, array $session=null, $appendModule=false, User $user=null, $tokenType=null)
Does the API request and returns the result.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
This class represents the result of the API operations.
static getTokenTypeSalts()
Get the salts for known token types.
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
doApiRequestWithToken(array $params, array $session=null, User $user=null, $tokenType='auto')
Convenience function to access the token parameter of doApiRequest() more succinctly.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
$wgServer
URL of the server.
static getMain()
Get the RequestContext object associated with the main request.
ApiTestContext $apiContext
setExpectedApiException( $msg, $code=null, array $data=null, $httpCode=0)
Expect an ApiUsageException to be thrown with the given parameters, which are the same as ApiUsageExc...
static getToken(User $user, MediaWiki\Session\Session $session, $salt)
Get a token from a salt.
static apiExceptionHasCode(ApiUsageException $ex, $code)
static getErrorFormatter()
doLogin( $testUser=null)
Previously this would do API requests to log in, as well as setting $wgUser and the request context's...
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static factory( $code)
Get a cached or new language object for a given language code.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
if(! $wgDBerrorLogTZ) $wgRequest
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it contains
The User object encapsulates all of the user-specific settings (user_id, name, rights,...