Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ChangePassword
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 execute
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2/**
3 * Change the password of a given user
4 *
5 * Copyright © 2005, Ævar Arnfjörð Bjarmason
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
24 * @ingroup Maintenance
25 */
26
27require_once __DIR__ . '/Maintenance.php';
28
29/**
30 * Maintenance script to change the password of a given user.
31 *
32 * @ingroup Maintenance
33 */
34class ChangePassword extends Maintenance {
35    public function __construct() {
36        parent::__construct();
37        $this->addOption( "user", "The username to operate on", false, true );
38        $this->addOption( "userid", "The user id to operate on", false, true );
39        $this->addOption( "password", "The password to use", true, true );
40        $this->addDescription( "Change a user's password" );
41    }
42
43    public function execute() {
44        $user = $this->validateUserOption( "A \"user\" or \"userid\" must be set to change the password for" );
45        $password = $this->getOption( 'password' );
46        $status = $user->changeAuthenticationData( [
47            'username' => $user->getName(),
48            'password' => $password,
49            'retype' => $password,
50        ] );
51        if ( $status->isGood() ) {
52            $this->output( "Password set for " . $user->getName() . "\n" );
53        } else {
54            $this->fatalError( $status->getMessage( false, false, 'en' )->text() );
55        }
56    }
57}
58
59$maintClass = ChangePassword::class;
60require_once RUN_MAINTENANCE_IF_MAIN;