3 * @file mod/lostpass.php
7 use Friendica\Core\L10n;
8 use Friendica\Core\System;
9 use Friendica\Database\DBM;
10 use Friendica\Model\User;
11 use Friendica\Util\DateTimeFormat;
13 require_once 'boot.php';
14 require_once 'include/enotify.php';
15 require_once 'include/text.php';
17 function lostpass_post(App $a)
19 $loginame = notags(trim($_POST['login-name']));
21 goaway(System::baseUrl());
24 $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame];
25 $user = dba::selectFirst('user', ['uid', 'username', 'email'], $condition);
26 if (!DBM::is_result($user)) {
27 notice(L10n::t('No valid account found.') . EOL);
28 goaway(System::baseUrl());
31 $pwdreset_token = autoname(12) . mt_rand(1000, 9999);
34 'pwdreset' => $pwdreset_token,
35 'pwdreset_time' => DateTimeFormat::utcNow()
37 $result = dba::update('user', $fields, ['uid' => $user['uid']]);
39 info(L10n::t('Password reset request issued. Check your email.') . EOL);
42 $sitename = $a->config['sitename'];
43 $resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token;
45 $preamble = deindent(L10n::t('
47 A request was recently received at "%2$s" to reset your account
48 password. In order to confirm this request, please select the verification link
49 below or paste it into your web browser address bar.
51 If you did NOT request this change, please DO NOT follow the link
52 provided and ignore and/or delete this email, the request will expire shortly.
54 Your password will not be changed unless we can verify that you
55 issued this request.', $user['username'], $sitename));
56 $body = deindent(L10n::t('
57 Follow this link soon to verify your identity:
61 You will then receive a follow-up message containing the new password.
62 You may change that password from your account settings page after logging in.
64 The login details are as follows:
67 Login Name: %3$s', $resetlink, System::baseUrl(), $user['email']));
70 'type' => SYSTEM_EMAIL,
71 'to_email' => $user['email'],
72 'uid' => $user['uid'],
73 'subject' => L10n::t('Password reset requested at %s', $sitename),
74 'preamble' => $preamble,
78 goaway(System::baseUrl());
81 function lostpass_content(App $a)
85 $pwdreset_token = $a->argv[1];
87 $user = dba::selectFirst('user', ['uid', 'username', 'email', 'pwdreset_time'], ['pwdreset' => $pwdreset_token]);
88 if (!DBM::is_result($user)) {
89 notice(L10n::t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."));
91 return lostpass_form();
94 // Password reset requests expire in 60 minutes
95 if ($user['pwdreset_time'] < DateTimeFormat::utc('now - 1 hour')) {
98 'pwdreset_time' => null
100 dba::update('user', $fields, ['uid' => $user['uid']]);
102 notice(L10n::t('Request has expired, please make a new one.'));
104 return lostpass_form();
107 return lostpass_generate_password($user);
109 return lostpass_form();
113 function lostpass_form()
115 $tpl = get_markup_template('lostpass.tpl');
116 $o = replace_macros($tpl, [
117 '$title' => L10n::t('Forgot your Password?'),
118 '$desc' => L10n::t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'),
119 '$name' => L10n::t('Nickname or Email: '),
120 '$submit' => L10n::t('Reset')
126 function lostpass_generate_password($user)
131 $new_password = User::generateNewPassword();
132 $result = User::updatePassword($user['uid'], $new_password);
133 if (DBM::is_result($result)) {
134 $tpl = get_markup_template('pwdreset.tpl');
135 $o .= replace_macros($tpl, [
136 '$lbl1' => L10n::t('Password Reset'),
137 '$lbl2' => L10n::t('Your password has been reset as requested.'),
138 '$lbl3' => L10n::t('Your new password is'),
139 '$lbl4' => L10n::t('Save or copy your new password - and then'),
140 '$lbl5' => '<a href="' . System::baseUrl() . '">' . L10n::t('click here to login') . '</a>.',
141 '$lbl6' => L10n::t('Your password may be changed from the <em>Settings</em> page after successful login.'),
142 '$newpass' => $new_password,
143 '$baseurl' => System::baseUrl()
146 info("Your password has been reset." . EOL);
148 $sitename = $a->config['sitename'];
149 $preamble = deindent(L10n::t('
151 Your password has been changed as requested. Please retain this
152 information for your records ' . "\x28" . 'or change your password immediately to
153 something that you will remember' . "\x29" . '.
154 ', $user['username']));
155 $body = deindent(L10n::t('
156 Your login details are as follows:
162 You may change that password from your account settings page after logging in.
163 ', System::baseUrl(), $user['email'], $new_password));
166 'type' => SYSTEM_EMAIL,
167 'to_email' => $user['email'],
168 'uid' => $user['uid'],
169 'subject' => L10n::t('Your password has been changed at %s', $sitename),
170 'preamble' => $preamble,