X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flostpass.php;h=ae94fbbbea72a4c7ed6437cf81a50bdbc3f0776e;hb=23b10cf2ae5fe10ba21a4b43e1aae17818647661;hp=3ac1164ef270c6336450c729b16641d975df6fb7;hpb=ed6f4cdbde338169e629e95799a4e0c180fc6303;p=friendica.git diff --git a/mod/lostpass.php b/mod/lostpass.php index 3ac1164ef2..1ffe000be2 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -1,49 +1,61 @@ . + * */ use Friendica\App; -use Friendica\Core\System; -use Friendica\Database\DBM; +use Friendica\Core\Renderer; +use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\User; - -require_once 'boot.php'; -require_once 'include/datetime.php'; -require_once 'include/enotify.php'; -require_once 'include/text.php'; -require_once 'include/pgettext.php'; +use Friendica\Util\DateTimeFormat; +use Friendica\Util\Strings; function lostpass_post(App $a) { - $loginame = notags(trim($_POST['login-name'])); + $loginame = trim($_POST['login-name']); if (!$loginame) { - goaway(System::baseUrl()); + DI::baseUrl()->redirect(); } $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame]; - $user = dba::selectFirst('user', ['uid', 'username', 'email'], $condition); - if (!DBM::is_result($user)) { - notice(t('No valid account found.') . EOL); - goaway(System::baseUrl()); + $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'language'], $condition); + if (!DBA::isResult($user)) { + notice(DI::l10n()->t('No valid account found.')); + DI::baseUrl()->redirect(); } - $pwdreset_token = autoname(12) . mt_rand(1000, 9999); + $pwdreset_token = Strings::getRandomHex(32); $fields = [ - 'pwdreset' => $pwdreset_token, - 'pwdreset_time' => datetime_convert() + 'pwdreset' => hash('sha256', $pwdreset_token), + 'pwdreset_time' => DateTimeFormat::utcNow() ]; - $result = dba::update('user', $fields, ['uid' => $user['uid']]); + $result = DBA::update('user', $fields, ['uid' => $user['uid']]); if ($result) { - info(t('Password reset request issued. Check your email.') . EOL); + info(DI::l10n()->t('Password reset request issued. Check your email.')); } - $sitename = $a->config['sitename']; - $resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token; + $sitename = DI::config()->get('config', 'sitename'); + $resetlink = DI::baseUrl() . '/lostpass/' . $pwdreset_token; - $preamble = deindent(t(' + $preamble = Strings::deindent(DI::l10n()->t(' Dear %1$s, A request was recently received at "%2$s" to reset your account password. In order to confirm this request, please select the verification link @@ -54,7 +66,7 @@ function lostpass_post(App $a) Your password will not be changed unless we can verify that you issued this request.', $user['username'], $sitename)); - $body = deindent(t(' + $body = Strings::deindent(DI::l10n()->t(' Follow this link soon to verify your identity: %1$s @@ -65,41 +77,40 @@ function lostpass_post(App $a) The login details are as follows: Site Location: %2$s - Login Name: %3$s', $resetlink, System::baseUrl(), $user['email'])); - - notification([ - 'type' => SYSTEM_EMAIL, - 'to_email' => $user['email'], - 'subject' => t('Password reset requested at %s', $sitename), - 'preamble' => $preamble, - 'body' => $body - ]); + Login Name: %3$s', $resetlink, DI::baseUrl(), $user['nickname'])); - goaway(System::baseUrl()); + $email = DI::emailer() + ->newSystemMail() + ->withMessage(DI::l10n()->t('Password reset requested at %s', $sitename), $preamble, $body) + ->forUser($user) + ->withRecipient($user['email']) + ->build(); + + DI::emailer()->send($email); + DI::baseUrl()->redirect(); } function lostpass_content(App $a) { - $o = ''; - if ($a->argc > 1) { - $pwdreset_token = $a->argv[1]; + if (DI::args()->getArgc() > 1) { + $pwdreset_token = DI::args()->getArgv()[1]; - $user = dba::selectFirst('user', ['uid', 'username', 'email', 'pwdreset_time'], ['pwdreset' => $pwdreset_token]); - if (!DBM::is_result($user)) { - notice(t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.")); + $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'pwdreset_time', 'language'], ['pwdreset' => hash('sha256', $pwdreset_token)]); + if (!DBA::isResult($user)) { + notice(DI::l10n()->t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.")); return lostpass_form(); } - // Password reset requests expire in 20 minutes - if ($user['pwdreset_time'] < datetime_convert('UTC', 'UTC', 'now - 20 minutes')) { + // Password reset requests expire in 60 minutes + if ($user['pwdreset_time'] < DateTimeFormat::utc('now - 1 hour')) { $fields = [ 'pwdreset' => null, 'pwdreset_time' => null ]; - dba::update('user', $fields, ['uid' => $user['uid']]); + DBA::update('user', $fields, ['uid' => $user['uid']]); - notice(t('Request has expired, please make a new one.')); + notice(DI::l10n()->t('Request has expired, please make a new one.')); return lostpass_form(); } @@ -112,12 +123,12 @@ function lostpass_content(App $a) function lostpass_form() { - $tpl = get_markup_template('lostpass.tpl'); - $o = replace_macros($tpl, [ - '$title' => t('Forgot your Password?'), - '$desc' => t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'), - '$name' => t('Nickname or Email: '), - '$submit' => t('Reset') + $tpl = Renderer::getMarkupTemplate('lostpass.tpl'); + $o = Renderer::replaceMacros($tpl, [ + '$title' => DI::l10n()->t('Forgot your Password?'), + '$desc' => DI::l10n()->t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'), + '$name' => DI::l10n()->t('Nickname or Email: '), + '$submit' => DI::l10n()->t('Reset') ]); return $o; @@ -129,29 +140,28 @@ function lostpass_generate_password($user) $new_password = User::generateNewPassword(); $result = User::updatePassword($user['uid'], $new_password); - if (DBM::is_result($result)) { - $tpl = get_markup_template('pwdreset.tpl'); - $o .= replace_macros($tpl, [ - '$lbl1' => t('Password Reset'), - '$lbl2' => t('Your password has been reset as requested.'), - '$lbl3' => t('Your new password is'), - '$lbl4' => t('Save or copy your new password - and then'), - '$lbl5' => '' . t('click here to login') . '.', - '$lbl6' => t('Your password may be changed from the Settings page after successful login.'), + if (DBA::isResult($result)) { + $tpl = Renderer::getMarkupTemplate('pwdreset.tpl'); + $o .= Renderer::replaceMacros($tpl, [ + '$lbl1' => DI::l10n()->t('Password Reset'), + '$lbl2' => DI::l10n()->t('Your password has been reset as requested.'), + '$lbl3' => DI::l10n()->t('Your new password is'), + '$lbl4' => DI::l10n()->t('Save or copy your new password - and then'), + '$lbl5' => '' . DI::l10n()->t('click here to login') . '.', + '$lbl6' => DI::l10n()->t('Your password may be changed from the Settings page after successful login.'), '$newpass' => $new_password, - '$baseurl' => System::baseUrl() ]); - info("Your password has been reset." . EOL); + info(DI::l10n()->t("Your password has been reset.")); - $sitename = $a->config['sitename']; - $preamble = deindent(t(' + $sitename = DI::config()->get('config', 'sitename'); + $preamble = Strings::deindent(DI::l10n()->t(' Dear %1$s, Your password has been changed as requested. Please retain this - information for your records (or change your password immediately to - something that you will remember). + information for your records ' . "\x28" . 'or change your password immediately to + something that you will remember' . "\x29" . '. ', $user['username'])); - $body = deindent(t(' + $body = Strings::deindent(DI::l10n()->t(' Your login details are as follows: Site Location: %1$s @@ -159,15 +169,15 @@ function lostpass_generate_password($user) Password: %3$s You may change that password from your account settings page after logging in. - ', System::baseUrl(), $user['email'], $new_password)); - - notification([ - 'type' => SYSTEM_EMAIL, - 'to_email' => $user['email'], - 'subject' => t('Your password has been changed at %s', $sitename), - 'preamble' => $preamble, - 'body' => $body - ]); + ', DI::baseUrl(), $user['nickname'], $new_password)); + + $email = DI::emailer() + ->newSystemMail() + ->withMessage(DI::l10n()->t('Your password has been changed at %s', $sitename), $preamble, $body) + ->forUser($user) + ->withRecipient($user['email']) + ->build(); + DI::emailer()->send($email); } return $o;