]> git.mxchange.org Git - friendica.git/blobdiff - mod/lostpass.php
Merge pull request #7988 from friendica/MrPetovan-notice
[friendica.git] / mod / lostpass.php
index 56ad7e30ef0e71225e73d6423a569d1b30568059..ecab0982c86d4f43a5d60e6dcbda724ffc547de2 100644 (file)
@@ -1,48 +1,48 @@
 <?php
+
 /**
  * @file mod/lostpass.php
  */
 
 use Friendica\App;
+use Friendica\Core\Config;
 use Friendica\Core\L10n;
+use Friendica\Core\Renderer;
 use Friendica\Core\System;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Model\User;
 use Friendica\Util\DateTimeFormat;
-
-require_once 'boot.php';
-require_once 'include/enotify.php';
-require_once 'include/text.php';
+use Friendica\Util\Strings;
 
 function lostpass_post(App $a)
 {
-       $loginame = notags(trim($_POST['login-name']));
+       $loginame = Strings::escapeTags(trim($_POST['login-name']));
        if (!$loginame) {
-               goaway(System::baseUrl());
+               $a->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)) {
+       $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'language'], $condition);
+       if (!DBA::isResult($user)) {
                notice(L10n::t('No valid account found.') . EOL);
-               goaway(System::baseUrl());
+               $a->internalRedirect();
        }
 
-       $pwdreset_token = autoname(12) . mt_rand(1000, 9999);
+       $pwdreset_token = Strings::getRandomName(12) . random_int(1000, 9999);
 
        $fields = [
                'pwdreset' => $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(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(L10n::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
@@ -53,7 +53,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(L10n::t('
+       $body = Strings::deindent(L10n::t('
                Follow this link soon to verify your identity:
 
                %1$s
@@ -64,27 +64,29 @@ function lostpass_post(App $a)
                The login details are as follows:
 
                Site Location:  %2$s
-               Login Name:     %3$s', $resetlink, System::baseUrl(), $user['email']));
+               Login Name:     %3$s', $resetlink, System::baseUrl(), $user['nickname']));
 
        notification([
                'type'     => SYSTEM_EMAIL,
+               'language' => $user['language'],
+               'to_name'  => $user['username'],
                'to_email' => $user['email'],
+               '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)
 {
-       $o = '';
        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)) {
+               $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', '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();
@@ -96,7 +98,7 @@ function lostpass_content(App $a)
                                'pwdreset' => null,
                                'pwdreset_time' => null
                        ];
-                       dba::update('user', $fields, ['uid' => $user['uid']]);
+                       DBA::update('user', $fields, ['uid' => $user['uid']]);
 
                        notice(L10n::t('Request has expired, please make a new one.'));
 
@@ -111,8 +113,8 @@ function lostpass_content(App $a)
 
 function lostpass_form()
 {
-       $tpl = get_markup_template('lostpass.tpl');
-       $o = replace_macros($tpl, [
+       $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: '),
@@ -125,13 +127,12 @@ 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, [
+       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'),
@@ -139,19 +140,18 @@ function lostpass_generate_password($user)
                        '$lbl5'    => '<a href="' . System::baseUrl() . '">' . L10n::t('click here to login') . '</a>.',
                        '$lbl6'    => L10n::t('Your password may be changed from the <em>Settings</em> page after successful login.'),
                        '$newpass' => $new_password,
-                       '$baseurl' => System::baseUrl()
                ]);
 
                info("Your password has been reset." . EOL);
 
-               $sitename = $a->config['sitename'];
-               $preamble = deindent(L10n::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 ' . "\x28" . 'or change your password immediately to
                        something that you will remember' . "\x29" . '.
                ', $user['username']));
-               $body = deindent(L10n::t('
+               $body = Strings::deindent(L10n::t('
                        Your login details are as follows:
 
                        Site Location:  %1$s
@@ -159,11 +159,14 @@ 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));
+               ', System::baseUrl(), $user['nickname'], $new_password));
 
                notification([
                        'type'     => SYSTEM_EMAIL,
+                       'language' => $user['language'],
+                       'to_name'  => $user['username'],
                        'to_email' => $user['email'],
+                       'uid'      => $user['uid'],
                        'subject'  => L10n::t('Your password has been changed at %s', $sitename),
                        'preamble' => $preamble,
                        'body'     => $body