-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathUsersResetPasswordCommand.php
More file actions
66 lines (59 loc) · 1.98 KB
/
Copy pathUsersResetPasswordCommand.php
File metadata and controls
66 lines (59 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
declare(strict_types=1);
namespace CakeDC\Users\Command;
use Cake\Command\Command;
use Cake\Console\Arguments;
use Cake\Console\ConsoleIo;
use Cake\Console\ConsoleOptionParser;
use CakeDC\Users\Command\Logic\UpdateUserTrait;
/**
* UsersResetPassword command.
*/
class UsersResetPasswordCommand extends Command
{
use UpdateUserTrait;
/**
* Hook method for defining this command's option parser.
*
* @see https://book.cakephp.org/4/en/console-commands/commands.html#defining-arguments-and-options
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
* @return \Cake\Console\ConsoleOptionParser The built parser.
*/
public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
{
$parser = parent::buildOptionParser($parser);
return $parser
->setDescription(__d('cake_d_c/users', 'Reset the password for a specific user'));
}
/**
* Implement this method with your command's logic.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
$username = $args->getArgumentAt(0);
$password = $args->getArgumentAt(1);
if (empty($username)) {
$io->abort(__d('cake_d_c/users', 'Please enter a username.'));
}
if (empty($password)) {
$io->abort(__d('cake_d_c/users', 'Please enter a password.'));
}
$data = [
'password' => $password,
];
$this->_updateUser($io, $username, $data);
$io->out(__d('cake_d_c/users', 'Password changed for user: {0}', $username));
$io->out(__d('cake_d_c/users', 'New password: {0}', $password));
}
/**
* @inheritDoc
*/
public static function defaultName(): string
{
return 'users reset_password';
}
}