X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FConsole%2FNewPassword.php;h=3cd96ad322bd5107be58c830b56b8d080000698c;hb=3aa77685fcccff9739384136b4894de43200fa8c;hp=6a00e34887bfc8fe5cb2104efd6840bceeaba69e;hpb=4f2ae8868431952bd3acda1537ee899740cbf205;p=friendica.git diff --git a/src/Core/Console/NewPassword.php b/src/Core/Console/NewPassword.php index 6a00e34887..3cd96ad322 100644 --- a/src/Core/Console/NewPassword.php +++ b/src/Core/Console/NewPassword.php @@ -2,10 +2,8 @@ namespace Friendica\Core\Console; -use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Database\DBA; -use Friendica\Database\DBM; use Friendica\Model\User; use RuntimeException; @@ -41,7 +39,7 @@ HELP; protected function doExecute() { - $a = get_app(); + $a = \get_app(); if ($this->getOption('v')) { $this->out('Class: ' . __CLASS__); @@ -58,14 +56,14 @@ HELP; throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments'); } - if ($a->isInstallMode()) { + if ($a->getMode()->isInstall()) { throw new RuntimeException('Database isn\'t ready or populated yet'); } $nick = $this->getArgument(0); $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nick]); - if (!DBM::is_result($user)) { + if (!DBA::isResult($user)) { throw new RuntimeException(L10n::t('User not found')); } @@ -75,20 +73,18 @@ HELP; $password = \Seld\CliPrompt\CliPrompt::hiddenPrompt(true); } - if (!$password) { - throw new RuntimeException(L10n::t('Password can\'t be empty')); - } + try { + $result = User::updatePassword($user['uid'], $password); - 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 (!DBA::isResult($result)) { + throw new \Exception(L10n::t('Password update failed. Please try again.')); + } - if (!User::updatePassword($user['uid'], $password)) { - throw new RuntimeException(L10n::t('Password update failed. Please try again.')); + $this->out(L10n::t('Password changed.')); + } catch (\Exception $e) { + throw new RuntimeException($e->getMessage(), $e->getCode(), $e); } - $this->out(L10n::t('Password changed.')); - return 0; } }