MediaWiki REL1_34
resetUserEmail.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
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;
73require_once RUN_MAINTENANCE_IF_MAIN;
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
const RUN_MAINTENANCE_IF_MAIN
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option exists.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script that resets user email.
__construct()
Default constructor.
execute()
Do the actual work.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:518
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition User.php:542
$maintClass