38 $logEntry->setPerformer( $user );
43 if ( $parameters !== null ) {
44 $logEntry->setParameters( $parameters );
47 return $logEntry->insert();
51 $this->tablesUsed[] =
'logging';
52 $this->tablesUsed[] =
'user';
56 $this->userId1 = $user1->getId();
57 if ( $this->userId1 === 0 ) {
58 $user1->addToDatabase();
59 $this->userId1 = $user1->getId();
61 $this->assertGreaterThan( 0, $this->userId1 );
64 $this->userId2 = $user2->getId();
65 if ( $this->userId2 === 0 ) {
66 $user2->addToDatabase();
67 $this->userId2 = $user2->getId();
69 $this->assertGreaterThan( 0, $this->userId2 );
71 $this->logId1 = $this->
addLogEntry(
'type',
'subtype',
73 $this->assertGreaterThan( 0, $this->logId1 );
75 $this->logId2 = $this->
addLogEntry(
'supress',
'delete',
76 $user2,
NS_TALK,
"PageB",
"SomeComment" );
77 $this->assertGreaterThan( 0, $this->logId2 );
79 $this->logId3 = $this->
addLogEntry(
'move',
'delete',
80 $user2,
NS_MAIN,
"PageA",
"SomeOtherComment",
81 [
'key1' => 1, 3 =>
'value3' ] );
82 $this->assertGreaterThan( 0, $this->logId3 );
87 $this->exceptionFromAddDBData =
$e;
105 $subtype,
$title, $parameters = []
129 $parameters_xml =
unserialize( $this->xml->value );
130 $this->assertEquals( $parameters, $parameters_xml );
131 $this->assertTrue( $this->xml->read(),
"Skipping past processed text of params" );
147 $dumper->endId = $this->logId3 + 1;
148 $dumper->reporting =
false;
149 $dumper->setDB( $this->db );
158 $this->userId1, null,
"type",
"subtype",
"PageA" );
160 $this->assertNotNull( $wgContLang,
"Content language object validation" );
161 $namespace = $wgContLang->getNsText(
NS_TALK );
162 $this->assertInternalType(
'string', $namespace );
163 $this->assertGreaterThan( 0, strlen( $namespace ) );
165 $this->userId2,
"SomeComment",
"supress",
"delete",
166 $namespace .
":PageB" );
169 $this->userId2,
"SomeOtherComment",
"move",
"delete",
170 "PageA", [
'key1' => 1, 3 =>
'value3' ] );
184 $dumper->loadWithArgv( [
'--logs',
'--output=gzip:' .
$fname,
187 $dumper->endId = $this->logId3 + 1;
188 $dumper->setDB( $this->db );
195 $dumper->stderr = fopen(
'php://output',
'a' );
196 if ( $dumper->stderr ===
false ) {
197 $this->fail(
"Could not open stream for stderr" );
203 $this->assertTrue( fclose( $dumper->stderr ),
"Closing stderr handle" );
211 $this->userId1, null,
"type",
"subtype",
"PageA" );
213 $this->assertNotNull( $wgContLang,
"Content language object validation" );
214 $namespace = $wgContLang->getNsText(
NS_TALK );
215 $this->assertInternalType(
'string', $namespace );
216 $this->assertGreaterThan( 0, strlen( $namespace ) );
218 $this->userId2,
"SomeComment",
"supress",
"delete",
219 $namespace .
":PageB" );
222 $this->userId2,
"SomeOtherComment",
"move",
"delete",
223 "PageA", [
'key1' => 1, 3 =>
'value3' ] );
231 $this->expectOutputString(
'' );
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
testXmlDumpsBackupUseCaseLogging()
assertDumpEnd($name="mediawiki")
Asserts that the xml reader is at the final closing tag of an xml file and closes the reader...
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
when a variable name is used in a it is silently declared as a new local masking the global
assertTextNode($name, $text, $skip_ws=true)
Asserts that the xml reader is at an element of given tag that contains a given text, and skips over the element.
gunzip($fname)
gunzips the given file and stores the result in the original file name
assertNodeEnd($name, $skip=true)
Asserts that the xml reader is at an closing element of given name, and optionally skips past it...
assertDumpStart($fname, $skip_siteinfo=true)
Opens an XML file to analyze and optionally skips past siteinfo.
namespace and then decline to actually register it file or subcat img or subcat $title
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 local account $user
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
Class for creating log entries manually, to inject them into the database.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
assertNodeStart($name, $skip=true)
Asserts that the xml reader is at an element of given name, and optionally skips past it...
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
checkHasGzip()
Skip the test if 'gzip' is not in $PATH.
skipWhitespace()
Steps the xml reader over white space.
addLogEntry($type, $subtype, User $user, $ns, $title, $comment=null, $parameters=null)
adds a log entry to the database.
Tests for log dumps of BackupDumper.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
assertLogItem($id, $user_name, $user_id, $comment, $type, $subtype, $title, $parameters=[])
asserts that the xml reader is at the beginning of a log entry and skips over it while analyzing it...