MediaWiki  1.34.0
checkUsernames.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
34 class CheckUsernames extends Maintenance {
35 
36  public function __construct() {
37  parent::__construct();
38  $this->addDescription( 'Verify that database usernames are actually valid' );
39  $this->setBatchSize( 1000 );
40  }
41 
42  function execute() {
43  $dbr = $this->getDB( DB_REPLICA );
44 
45  $maxUserId = 0;
46  do {
47  $res = $dbr->select( 'user',
48  [ 'user_id', 'user_name' ],
49  [ 'user_id > ' . $maxUserId ],
50  __METHOD__,
51  [
52  'ORDER BY' => 'user_id',
53  'LIMIT' => $this->getBatchSize(),
54  ]
55  );
56 
57  foreach ( $res as $row ) {
58  if ( !User::isValidUserName( $row->user_name ) ) {
59  $this->output( sprintf( "Found: %6d: '%s'\n", $row->user_id, $row->user_name ) );
60  wfDebugLog( 'checkUsernames', $row->user_name );
61  }
62  }
63  $maxUserId = $row->user_id;
64  } while ( $res->numRows() );
65  }
66 }
67 
68 $maintClass = CheckUsernames::class;
69 require_once RUN_MAINTENANCE_IF_MAIN;
RUN_MAINTENANCE_IF_MAIN
const RUN_MAINTENANCE_IF_MAIN
Definition: Maintenance.php:39
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:348
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: Maintenance.php:82
User\isValidUserName
static isValidUserName( $name)
Is the input a valid username?
Definition: User.php:917
$res
$res
Definition: testCompression.php:52
wfDebugLog
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Definition: GlobalFunctions.php:1007
$dbr
$dbr
Definition: testCompression.php:50
CheckUsernames
Maintenance script to check that database usernames are actually valid.
Definition: checkUsernames.php:34
CheckUsernames\execute
execute()
Do the actual work.
Definition: checkUsernames.php:42
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
Maintenance\getDB
getDB( $db, $groups=[], $dbDomain=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1396
Maintenance\getBatchSize
getBatchSize()
Returns batch size.
Definition: Maintenance.php:386
$maintClass
$maintClass
Definition: checkUsernames.php:68
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:453
CheckUsernames\__construct
__construct()
Default constructor.
Definition: checkUsernames.php:36
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:394