X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flostpass.php;h=42a1764bf93a4561cbcb7e1d266b31fa858d0314;hb=5eb8929f0c579630ce35c3e3c0d47e692c084c8a;hp=e29295a71445dee954870c0b8fa3e90c6bb7ab5e;hpb=a21c24bfc465e8092aabf5f30c33102cbce8afc0;p=friendica.git diff --git a/mod/lostpass.php b/mod/lostpass.php index e29295a714..42a1764bf9 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -1,49 +1,51 @@ internalRedirect(); } $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', 'email', 'language'], $condition); + if (!DBA::isResult($user)) { + notice(L10n::t('No valid account found.') . EOL); + $a->internalRedirect(); } - $pwdreset_token = autoname(12) . mt_rand(1000, 9999); + $pwdreset_token = Strings::getRandomName(12) . mt_rand(1000, 9999); $fields = [ 'pwdreset' => $pwdreset_token, - 'pwdreset_time' => datetime_convert() + '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(L10n::t('Password reset request issued. Check your email.') . EOL); } - $sitename = $a->config['sitename']; + $sitename = Config::get('config', 'sitename'); $resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token; - $preamble = deindent(t(' + $preamble = Strings::deindent(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 +56,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(L10n::t(' Follow this link soon to verify your identity: %1$s @@ -69,13 +71,16 @@ function lostpass_post(App $a) notification([ 'type' => SYSTEM_EMAIL, + 'language' => $user['language'], + 'to_name' => $user['username'], 'to_email' => $user['email'], - 'subject' => t('Password reset requested at %s', $sitename), + 'uid' => $user['uid'], + 'subject' => L10n::t('Password reset requested at %s', $sitename), 'preamble' => $preamble, 'body' => $body ]); - goaway(System::baseUrl()); + $a->internalRedirect(); } function lostpass_content(App $a) @@ -84,22 +89,22 @@ function lostpass_content(App $a) if ($a->argc > 1) { $pwdreset_token = $a->argv[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', 'email', 'pwdreset_time', 'language'], ['pwdreset' => $pwdreset_token]); + if (!DBA::isResult($user)) { + notice(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 60 minutes - if ($user['pwdreset_time'] < datetime_convert('UTC', 'UTC', 'now - 1 hour')) { + 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(L10n::t('Request has expired, please make a new one.')); return lostpass_form(); } @@ -112,12 +117,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' => L10n::t('Forgot your Password?'), + '$desc' => L10n::t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'), + '$name' => L10n::t('Nickname or Email: '), + '$submit' => L10n::t('Reset') ]); return $o; @@ -126,32 +131,33 @@ function lostpass_form() function lostpass_generate_password($user) { $o = ''; + $a = get_app(); $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' => L10n::t('Password Reset'), + '$lbl2' => L10n::t('Your password has been reset as requested.'), + '$lbl3' => L10n::t('Your new password is'), + '$lbl4' => L10n::t('Save or copy your new password - and then'), + '$lbl5' => '' . L10n::t('click here to login') . '.', + '$lbl6' => 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); - $sitename = $a->config['sitename']; - $preamble = deindent(t(' + $sitename = Config::get('config', 'sitename'); + $preamble = Strings::deindent(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(L10n::t(' Your login details are as follows: Site Location: %1$s @@ -163,8 +169,11 @@ function lostpass_generate_password($user) notification([ 'type' => SYSTEM_EMAIL, + 'language' => $user['language'], + 'to_name' => $user['username'], 'to_email' => $user['email'], - 'subject' => t('Your password has been changed at %s', $sitename), + 'uid' => $user['uid'], + 'subject' => L10n::t('Your password has been changed at %s', $sitename), 'preamble' => $preamble, 'body' => $body ]);