3 * @file mod/lostpass.php
7 use Friendica\Core\Config;
8 use Friendica\Core\L10n;
9 use Friendica\Core\Renderer;
10 use Friendica\Core\System;
11 use Friendica\Database\DBA;
12 use Friendica\Model\User;
13 use Friendica\Util\DateTimeFormat;
14 use Friendica\Util\Strings;
16 function lostpass_post(App $a)
18 $loginame = Strings::escapeTags(trim($_POST['login-name']));
20 $a->internalRedirect();
23 $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame];
24 $user = DBA::selectFirst('user', ['uid', 'username', 'email', 'language'], $condition);
25 if (!DBA::isResult($user)) {
26 notice(L10n::t('No valid account found.') . EOL);
27 $a->internalRedirect();
30 $pwdreset_token = Strings::getRandomName(12) . mt_rand(1000, 9999);
33 'pwdreset' => $pwdreset_token,
34 'pwdreset_time' => DateTimeFormat::utcNow()
36 $result = DBA::update('user', $fields, ['uid' => $user['uid']]);
38 info(L10n::t('Password reset request issued. Check your email.') . EOL);
41 $sitename = Config::get('config', 'sitename');
42 $resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token;
44 $preamble = Strings::deindent(L10n::t('
46 A request was recently received at "%2$s" to reset your account
47 password. In order to confirm this request, please select the verification link
48 below or paste it into your web browser address bar.
50 If you did NOT request this change, please DO NOT follow the link
51 provided and ignore and/or delete this email, the request will expire shortly.
53 Your password will not be changed unless we can verify that you
54 issued this request.', $user['username'], $sitename));
55 $body = Strings::deindent(L10n::t('
56 Follow this link soon to verify your identity:
60 You will then receive a follow-up message containing the new password.
61 You may change that password from your account settings page after logging in.
63 The login details are as follows:
66 Login Name: %3$s', $resetlink, System::baseUrl(), $user['email']));
69 'type' => SYSTEM_EMAIL,
70 'language' => $user['language'],
71 'to_name' => $user['username'],
72 'to_email' => $user['email'],
73 'uid' => $user['uid'],
74 'subject' => L10n::t('Password reset requested at %s', $sitename),
75 'preamble' => $preamble,
79 $a->internalRedirect();
82 function lostpass_content(App $a)
86 $pwdreset_token = $a->argv[1];
88 $user = DBA::selectFirst('user', ['uid', 'username', 'email', 'pwdreset_time', 'language'], ['pwdreset' => $pwdreset_token]);
89 if (!DBA::isResult($user)) {
90 notice(L10n::t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."));
92 return lostpass_form();
95 // Password reset requests expire in 60 minutes
96 if ($user['pwdreset_time'] < DateTimeFormat::utc('now - 1 hour')) {
99 'pwdreset_time' => null
101 DBA::update('user', $fields, ['uid' => $user['uid']]);
103 notice(L10n::t('Request has expired, please make a new one.'));
105 return lostpass_form();
108 return lostpass_generate_password($user);
110 return lostpass_form();
114 function lostpass_form()
116 $tpl = Renderer::getMarkupTemplate('lostpass.tpl');
117 $o = Renderer::replaceMacros($tpl, [
118 '$title' => L10n::t('Forgot your Password?'),
119 '$desc' => L10n::t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'),
120 '$name' => L10n::t('Nickname or Email: '),
121 '$submit' => L10n::t('Reset')
127 function lostpass_generate_password($user)
132 $new_password = User::generateNewPassword();
133 $result = User::updatePassword($user['uid'], $new_password);
134 if (DBA::isResult($result)) {
135 $tpl = Renderer::getMarkupTemplate('pwdreset.tpl');
136 $o .= Renderer::replaceMacros($tpl, [
137 '$lbl1' => L10n::t('Password Reset'),
138 '$lbl2' => L10n::t('Your password has been reset as requested.'),
139 '$lbl3' => L10n::t('Your new password is'),
140 '$lbl4' => L10n::t('Save or copy your new password - and then'),
141 '$lbl5' => '<a href="' . System::baseUrl() . '">' . L10n::t('click here to login') . '</a>.',
142 '$lbl6' => L10n::t('Your password may be changed from the <em>Settings</em> page after successful login.'),
143 '$newpass' => $new_password,
144 '$baseurl' => System::baseUrl()
147 info("Your password has been reset." . EOL);
149 $sitename = Config::get('config', 'sitename');
150 $preamble = Strings::deindent(L10n::t('
152 Your password has been changed as requested. Please retain this
153 information for your records ' . "\x28" . 'or change your password immediately to
154 something that you will remember' . "\x29" . '.
155 ', $user['username']));
156 $body = Strings::deindent(L10n::t('
157 Your login details are as follows:
163 You may change that password from your account settings page after logging in.
164 ', System::baseUrl(), $user['email'], $new_password));
167 'type' => SYSTEM_EMAIL,
168 'language' => $user['language'],
169 'to_name' => $user['username'],
170 'to_email' => $user['email'],
171 'uid' => $user['uid'],
172 'subject' => L10n::t('Your password has been changed at %s', $sitename),
173 'preamble' => $preamble,