26require_once __DIR__ .
'/Maintenance.php';
36 private static $permitRoles = [
'sysop',
'bureaucrat',
'interface-admin',
'bot' ];
39 parent::__construct();
40 $this->
addDescription(
'Create a new user account and/or grant it additional rights' );
43 'If acccount exists already, just grant it rights or change password.'
45 foreach ( self::$permitRoles as $role ) {
46 $this->
addOption( $role,
"Add the account to the {$role} group" );
51 'Comma-separated list of groups to add the user to',
56 $this->
addArg(
"username",
"Username of new user" );
57 $this->
addArg(
"password",
"Password to set",
false );
61 $username = $this->
getArg( 0 );
62 $password = $this->
getArg( 1 );
67 if ( !is_object( $user ) ) {
71 $exists = ( $user->idForName() !== 0 );
73 if ( $exists && !$force ) {
74 $this->
fatalError(
"Account exists. Perhaps you want the --force option?" );
75 } elseif ( !$exists && !$password ) {
76 $this->
error(
"Argument <password> required!" );
78 } elseif ( $exists ) {
79 $inGroups = $user->getGroups();
82 $groups = array_filter( self::$permitRoles, [ $this,
'hasOption' ] );
83 if ( $this->
hasOption(
'custom-groups' ) ) {
85 $customGroupsText = $this->
getOption(
'custom-groups' );
86 if ( $customGroupsText !==
'' ) {
87 $customGroups = explode(
',', $customGroupsText );
88 foreach ( $customGroups as $customGroup ) {
89 if ( isset( $allGroups[$customGroup] ) ) {
90 $groups[] = trim( $customGroup );
92 $this->
output(
"$customGroup is not a valid group, ignoring!\n" );
98 $promotions = array_diff(
103 if ( $exists && !$password && count( $promotions ) === 0 ) {
104 $this->
output(
"Account exists and nothing to do.\n" );
107 } elseif ( count( $promotions ) !== 0 ) {
108 $dbDomain = WikiMap::getCurrentWikiDbDomain()->getId();
109 $promoText =
"User:{$username} into " . implode(
', ', $promotions ) .
"...\n";
111 $this->
output(
"$dbDomain: Promoting $promoText" );
113 $this->
output(
"$dbDomain: Creating and promoting $promoText" );
120 $status = MediaWikiServices::getInstance()->getAuthManager()->autoCreateUser(
122 MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_MAINT,
125 if ( !$status->isGood() ) {
126 $this->
fatalError( $status->getMessage(
false,
false,
'en' )->text() );
131 # Try to set the password
133 $status = $user->changeAuthenticationData( [
134 'username' => $user->getName(),
135 'password' => $password,
136 'retype' => $password,
138 if ( !$status->isGood() ) {
139 throw new PasswordError( $status->getMessage(
false,
false,
'en' )->text() );
142 $this->
output(
"Password set.\n" );
143 $user->saveSettings();
151 array_map( [ $user,
'addGroup' ], $promotions );
154 # Increment site_stats.ss_users
155 $ssu = SiteStatsUpdate::factory( [
'users' => 1 ] );
159 $this->
output(
"done.\n" );
const RUN_MAINTENANCE_IF_MAIN
getText()
Get the text to display when reporting the error on the command line.
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.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
maybeHelp( $force=false)
Maybe show the help.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Show an error when any operation involving passwords fails to run.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static getAllGroups()
Return the set of defined explicit groups.