addDescription( "Resets a user's email" ); $this->addArg( 'user', 'Username or user ID, if starts with #' ); $this->addArg( 'email', 'Email to assign' ); $this->addOption( 'no-reset-password', 'Don\'t reset the user\'s password' ); parent::__construct(); } public function execute() { $userName = $this->getArg( 0 ); if ( preg_match( '/^#\d+$/', $userName ) ) { $user = User::newFromId( substr( $userName, 1 ) ); } else { $user = User::newFromName( $userName ); } if ( !$user || !$user->getId() || !$user->loadFromId() ) { $this->fatalError( "Error: user '$userName' does not exist\n" ); } $email = $this->getArg( 1 ); if ( !Sanitizer::validateEmail( $email ) ) { $this->fatalError( "Error: email '$email' is not valid\n" ); } // Code from https://wikitech.wikimedia.org/wiki/Password_reset $user->setEmail( $email ); $user->setEmailAuthenticationTimestamp( wfTimestampNow() ); $user->saveSettings(); if ( !$this->hasOption( 'no-reset-password' ) ) { // Kick whomever is currently controlling the account off $user->setPassword( PasswordFactory::generateRandomPasswordString( 128 ) ); } $this->output( "Done!\n" ); } } $maintClass = ResetUserEmail::class; require_once RUN_MAINTENANCE_IF_MAIN;