3 require_once __DIR__ .
'/Maintenance.php';
20 parent::__construct();
21 $this->
addOption(
'commit',
'Whether to actually update the database',
false,
false );
32 [
'user_id',
'user_email' ],
34 'user_id > ' .
$dbr->addQuotes( $lastId ),
36 'user_email_authenticated IS NULL'
43 foreach ( $rows
as $row ) {
45 $this->
output(
"Found bad email: {$row->user_email} for user #{$row->user_id}\n" );
46 $badIds[] = $row->user_id;
48 if ( $row->user_id > $lastId ) {
49 $lastId = $row->user_id;
54 $badCount = count( $badIds );
56 $this->
output(
"Removing $badCount emails from the database.\n" );
59 [
'user_email' =>
'' ],
60 [
'user_id' => $badIds ],
63 foreach ( $badIds
as $badId ) {
68 $this->
output(
"Would have removed $badCount emails from the database.\n" );
73 $this->
output(
"Done.\n" );
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
static newFromId($id)
Static factory method for creation from a given user ID.
getDB($db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption($name)
Checks to see if a particular param exists.
require_once RUN_MAINTENANCE_IF_MAIN
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
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
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
int $mBatchSize
Batch size.
static validateEmail($addr)
Does a string look like an e-mail address?
setBatchSize($s=0)
Set the batch size.
A script to remove emails that are invalid from the user_email column of the user table...