MediaWiki  1.34.0
resetUserEmail.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
32 class ResetUserEmail extends Maintenance {
33  public function __construct() {
34  $this->addDescription( "Resets a user's email" );
35  $this->addArg( 'user', 'Username or user ID, if starts with #' );
36  $this->addArg( 'email', 'Email to assign' );
37 
38  $this->addOption( 'no-reset-password', 'Don\'t reset the user\'s password' );
39 
40  parent::__construct();
41  }
42 
43  public function execute() {
44  $userName = $this->getArg( 0 );
45  if ( preg_match( '/^#\d+$/', $userName ) ) {
46  $user = User::newFromId( substr( $userName, 1 ) );
47  } else {
48  $user = User::newFromName( $userName );
49  }
50  if ( !$user || !$user->getId() || !$user->loadFromId() ) {
51  $this->fatalError( "Error: user '$userName' does not exist\n" );
52  }
53 
54  $email = $this->getArg( 1 );
55  if ( !Sanitizer::validateEmail( $email ) ) {
56  $this->fatalError( "Error: email '$email' is not valid\n" );
57  }
58 
59  // Code from https://wikitech.wikimedia.org/wiki/Password_reset
60  $user->setEmail( $email );
61  $user->setEmailAuthenticationTimestamp( wfTimestampNow() );
62  $user->saveSettings();
63 
64  if ( !$this->hasOption( 'no-reset-password' ) ) {
65  // Kick whomever is currently controlling the account off
66  $user->setPassword( PasswordFactory::generateRandomPasswordString( 128 ) );
67  }
68  $this->output( "Done!\n" );
69  }
70 }
71 
72 $maintClass = ResetUserEmail::class;
73 require_once RUN_MAINTENANCE_IF_MAIN;
RUN_MAINTENANCE_IF_MAIN
const RUN_MAINTENANCE_IF_MAIN
Definition: Maintenance.php:39
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:539
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:504
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:348
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:515
PasswordFactory\generateRandomPasswordString
static generateRandomPasswordString( $minLength=10)
Generate a random string suitable for a password.
Definition: PasswordFactory.php:225
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: Maintenance.php:82
ResetUserEmail
Maintenance script that resets user email.
Definition: resetUserEmail.php:32
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:267
ResetUserEmail\__construct
__construct()
Default constructor.
Definition: resetUserEmail.php:33
wfTimestampNow
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
Definition: GlobalFunctions.php:1898
ResetUserEmail\execute
execute()
Do the actual work.
Definition: resetUserEmail.php:43
$maintClass
$maintClass
Definition: resetUserEmail.php:72
Maintenance\addArg
addArg( $arg, $description, $required=true)
Add some args that are needed.
Definition: Maintenance.php:319
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:453
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular option exists.
Definition: Maintenance.php:288
Maintenance\getArg
getArg( $argId=0, $default=null)
Get an argument.
Definition: Maintenance.php:371