MediaWiki  1.33.0
makeTestEdits.php
Go to the documentation of this file.
1 <?php
23 require_once __DIR__ . '/Maintenance.php';
24 
30 class MakeTestEdits extends Maintenance {
31  public function __construct() {
32  parent::__construct();
33  $this->addDescription( 'Make test edits for a user' );
34  $this->addOption( 'user', 'User name', true, true );
35  $this->addOption( 'count', 'Number of edits', true, true );
36  $this->addOption( 'namespace', 'Namespace number', false, true );
37  $this->setBatchSize( 100 );
38  }
39 
40  public function execute() {
41  $user = User::newFromName( $this->getOption( 'user' ) );
42  if ( !$user->getId() ) {
43  $this->fatalError( "No such user exists." );
44  }
45 
46  $count = $this->getOption( 'count' );
47  $namespace = (int)$this->getOption( 'namespace', 0 );
48 
49  for ( $i = 0; $i < $count; ++$i ) {
50  $title = Title::makeTitleSafe( $namespace, "Page " . wfRandomString( 2 ) );
51  $page = WikiPage::factory( $title );
53  $summary = "Change " . wfRandomString( 6 );
54 
55  $page->doEditContent( $content, $summary, 0, false, $user );
56 
57  $this->output( "Edited $title\n" );
58  if ( $i && ( $i % $this->getBatchSize() ) == 0 ) {
60  }
61  }
62 
63  $this->output( "Done\n" );
64  }
65 }
66 
68 require_once RUN_MAINTENANCE_IF_MAIN;
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:485
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:329
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
wfWaitForSlaves
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Definition: GlobalFunctions.php:2790
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
MakeTestEdits\__construct
__construct()
Default constructor.
Definition: makeTestEdits.php:31
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:138
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:248
ContentHandler\makeContent
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
Definition: ContentHandler.php:133
$maintClass
$maintClass
Definition: makeTestEdits.php:67
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:604
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:283
Maintenance\getBatchSize
getBatchSize()
Returns batch size.
Definition: Maintenance.php:367
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:434
$content
$content
Definition: pageupdater.txt:72
MakeTestEdits
Make test edits for a user to populate a test wiki.
Definition: makeTestEdits.php:30
class
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
Definition: maintenance.txt:52
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:375
MakeTestEdits\execute
execute()
Do the actual work.
Definition: makeTestEdits.php:40
wfRandomString
wfRandomString( $length=32)
Get a random string containing a number of pseudo-random hex characters.
Definition: GlobalFunctions.php:298