]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - maintenance/changePassword.php
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / maintenance / changePassword.php
index 0fe8c0bea3e1d7510ee4be9bc022c90dae20e88b..9fa66324f5a1ef3f6a507f21fef7d159894e6de8 100644 (file)
@@ -2,55 +2,72 @@
 /**
  * Change the password of a given user
  *
- * @file
- * @ingroup Maintenance
+ * Copyright © 2005, Ævar Arnfjörð Bjarmason
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
+ * @ingroup Maintenance
  */
 
-$optionsWithArgs = array( 'user', 'password' );
-require_once 'commandLine.inc';
-
-$USAGE =
-       "Usage: php changePassword.php [--user=user --password=password | --help]\n" .
-       "\toptions:\n" .
-       "\t\t--help      show this message\n" .
-       "\t\t--user      the username to operate on\n" .
-       "\t\t--password  the password to use\n";
-
-if( in_array( '--help', $argv ) )
-       wfDie( $USAGE );
-
-$cp = new ChangePassword( @$options['user'], @$options['password'] );
-$cp->main();
+require_once __DIR__ . '/Maintenance.php';
 
 /**
+ * Maintenance script to change the password of a given user.
+ *
  * @ingroup Maintenance
  */
-class ChangePassword {
-       var $dbw;
-       var $user, $password;
+class ChangePassword extends Maintenance {
+       public function __construct() {
+               parent::__construct();
+               $this->addOption( "user", "The username to operate on", false, true );
+               $this->addOption( "userid", "The user id to operate on", false, true );
+               $this->addOption( "password", "The password to use", true, true );
+               $this->addDescription( "Change a user's password" );
+       }
 
-       function ChangePassword( $user, $password ) {
-               global $USAGE;
-               if( !strlen( $user ) or !strlen( $password ) ) {
-                       wfDie( $USAGE );
+       public function execute() {
+               if ( $this->hasOption( "user" ) ) {
+                       $user = User::newFromName( $this->getOption( 'user' ) );
+               } elseif ( $this->hasOption( "userid" ) ) {
+                       $user = User::newFromId( $this->getOption( 'userid' ) );
+               } else {
+                       $this->error( "A \"user\" or \"userid\" must be set to change the password for", true );
                }
-
-               $this->user = User::newFromName( $user );
-               if ( !$this->user->getId() ) {
-                       die ( "No such user: $user\n" );
+               if ( !$user || !$user->getId() ) {
+                       $this->error( "No such user: " . $this->getOption( 'user' ), true );
+               }
+               $password = $this->getOption( 'password' );
+               try {
+                       $status = $user->changeAuthenticationData( [
+                               'username' => $user->getName(),
+                               'password' => $password,
+                               'retype' => $password,
+                       ] );
+                       if ( !$status->isGood() ) {
+                               throw new PasswordError( $status->getWikiText( null, null, 'en' ) );
+                       }
+                       $user->saveSettings();
+                       $this->output( "Password set for " . $user->getName() . "\n" );
+               } catch ( PasswordError $pwe ) {
+                       $this->error( $pwe->getText(), true );
                }
-
-               $this->password = $password;
-
-               $this->dbw = wfGetDB( DB_MASTER );
-       }
-
-       function main() {
-               $this->user->setPassword( $this->password );
-               $this->user->saveSettings();
        }
 }
+
+$maintClass = "ChangePassword";
+require_once RUN_MAINTENANCE_IF_MAIN;