MediaWiki REL1_33
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.
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:585
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition User.php:609
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
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
Definition injection.txt:37
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass