MediaWiki REL1_28
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 #', true );
36 $this->addArg( 'email', 'Email to assign' );
37
38 $this->addOption( 'no-reset-password', 'Don\'t reset the user\'s password', false, false );
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->error( "Error: user '$userName' does not exist\n", 1 );
52 }
53
54 $email = $this->getArg( 1 );
55 if ( !Sanitizer::validateEmail( $email ) ) {
56 $this->error( "Error: email '$email' is not valid\n", 1 );
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 }
69}
70
71$maintClass = 'ResetUserEmail';
72require_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...
error( $err, $die=0)
Throw an error to the user.
addArg( $arg, $description, $required=true)
Add some args that are needed.
hasOption( $name)
Checks to see if a particular param 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.
Maintenance script that resets user email.
__construct()
Default constructor.
execute()
Do the actual work.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
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