2018-03-30 15:17:12 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Console;
|
|
|
|
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Database\DBM;
|
|
|
|
use dba;
|
|
|
|
|
|
|
|
/**
|
2018-03-30 15:57:14 -04:00
|
|
|
* @brief tool to set a new password for a user
|
2018-03-30 15:17:12 -04:00
|
|
|
*
|
2018-03-30 15:57:14 -04:00
|
|
|
* With this tool, you can set a new password for a user
|
2018-03-30 15:17:12 -04:00
|
|
|
*
|
|
|
|
* License: AGPLv3 or later, same as Friendica
|
|
|
|
*
|
2018-03-30 15:57:14 -04:00
|
|
|
* @author Michael Vogel <heluecht@pirati.ca>
|
2018-03-30 15:17:12 -04:00
|
|
|
*/
|
|
|
|
class NewPassword extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console newpassword - Creates a new password for a given user
|
|
|
|
Usage
|
2018-04-18 22:56:52 -04:00
|
|
|
bin/console newpassword <nickname> [<password>] [-h|--help|-?] [-v]
|
2018-03-30 15:17:12 -04:00
|
|
|
|
|
|
|
Description
|
|
|
|
Creates a new password for a user without using the "forgot password" functionality.
|
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function doExecute()
|
|
|
|
{
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
if ($this->getOption('v')) {
|
|
|
|
$this->out('Class: ' . __CLASS__);
|
|
|
|
$this->out('Arguments: ' . var_export($this->args, true));
|
|
|
|
$this->out('Options: ' . var_export($this->options, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 0) {
|
|
|
|
$this->out($this->getHelp());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) > 2) {
|
|
|
|
throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
|
|
|
|
}
|
|
|
|
|
2018-06-30 14:40:09 -04:00
|
|
|
if ($a->isInstallMode()) {
|
2018-06-25 20:56:07 -04:00
|
|
|
throw new \RuntimeException('Database isn\'t ready or populated yet');
|
2018-03-30 15:17:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$nick = $this->getArgument(0);
|
|
|
|
|
|
|
|
$user = dba::selectFirst('user', ['uid'], ['nickname' => $nick]);
|
|
|
|
if (!DBM::is_result($user)) {
|
|
|
|
throw new \RuntimeException(L10n::t('User not found'));
|
|
|
|
}
|
|
|
|
|
2018-04-18 22:56:52 -04:00
|
|
|
$password = $this->getArgument(1);
|
|
|
|
if (is_null($password)) {
|
|
|
|
$this->out(L10n::t('Enter new password: '), false);
|
|
|
|
$password = \Seld\CliPrompt\CliPrompt::hiddenPrompt(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$password) {
|
|
|
|
throw new \RuntimeException(L10n::t('Password can\'t be empty'));
|
|
|
|
}
|
|
|
|
|
2018-03-30 15:17:12 -04:00
|
|
|
if (!Config::get('system', 'disable_password_exposed', false) && User::isPasswordExposed($password)) {
|
|
|
|
throw new \RuntimeException(L10n::t('The new password has been exposed in a public data dump, please choose another.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!User::updatePassword($user['uid'], $password)) {
|
|
|
|
throw new \RuntimeException(L10n::t('Password update failed. Please try again.'));
|
|
|
|
}
|
|
|
|
|
2018-03-30 15:57:14 -04:00
|
|
|
$this->out(L10n::t('Password changed.'));
|
2018-03-30 15:17:12 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|