MediaWiki  1.27.2
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->error( "No such user exists.", 1 );
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 ) );
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->mBatchSize ) == 0 ) {
60  }
61  }
62 
63  $this->output( "Done\n" );
64  }
65 }
66 
67 $maintClass = "MakeTestEdits";
68 require_once RUN_MAINTENANCE_IF_MAIN;
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
Definition: User.php:568
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:99
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the slaves to catch up to the master position.
Make test edits for a user to populate a test wiki.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
wfRandomString($length=32)
Get a random string containing a number of pseudo-random hex characters.
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
$summary
$maintClass
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:548
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
static makeContent($text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
addDescription($text)
Set the description text.
getOption($name, $default=null)
Get an option, or return the default.
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
Definition: hooks.txt:242
output($out, $channel=null)
Throw some output to the 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
Definition: injection.txt:35
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1004
error($err, $die=0)
Throw an error to the user.
$count
setBatchSize($s=0)
Set the batch size.
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 $page
Definition: hooks.txt:2338