]> git.mxchange.org Git - friendica.git/blob - mod/lostpass.php
Merge pull request #4327 from MrPetovan/task/3878-move-datetime-to-src
[friendica.git] / mod / lostpass.php
1 <?php
2 /**
3  * @file mod/lostpass.php
4  */
5
6 use Friendica\App;
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;
12
13 require_once 'boot.php';
14 require_once 'include/datetime.php';
15 require_once 'include/enotify.php';
16 require_once 'include/text.php';
17
18 function lostpass_post(App $a)
19 {
20         $loginame = notags(trim($_POST['login-name']));
21         if (!$loginame) {
22                 goaway(System::baseUrl());
23         }
24
25         $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame];
26         $user = dba::selectFirst('user', ['uid', 'username', 'email'], $condition);
27         if (!DBM::is_result($user)) {
28                 notice(L10n::t('No valid account found.') . EOL);
29                 goaway(System::baseUrl());
30         }
31
32         $pwdreset_token = autoname(12) . mt_rand(1000, 9999);
33
34         $fields = [
35                 'pwdreset' => $pwdreset_token,
36                 'pwdreset_time' => DateTimeFormat::utcNow()
37         ];
38         $result = dba::update('user', $fields, ['uid' => $user['uid']]);
39         if ($result) {
40                 info(L10n::t('Password reset request issued. Check your email.') . EOL);
41         }
42
43         $sitename = $a->config['sitename'];
44         $resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token;
45
46         $preamble = deindent(L10n::t('
47                 Dear %1$s,
48                         A request was recently received at "%2$s" to reset your account
49                 password. In order to confirm this request, please select the verification link
50                 below or paste it into your web browser address bar.
51
52                 If you did NOT request this change, please DO NOT follow the link
53                 provided and ignore and/or delete this email, the request will expire shortly.
54
55                 Your password will not be changed unless we can verify that you
56                 issued this request.', $user['username'], $sitename));
57         $body = deindent(L10n::t('
58                 Follow this link soon to verify your identity:
59
60                 %1$s
61
62                 You will then receive a follow-up message containing the new password.
63                 You may change that password from your account settings page after logging in.
64
65                 The login details are as follows:
66
67                 Site Location:  %2$s
68                 Login Name:     %3$s', $resetlink, System::baseUrl(), $user['email']));
69
70         notification([
71                 'type'     => SYSTEM_EMAIL,
72                 'to_email' => $user['email'],
73                 'subject'  => L10n::t('Password reset requested at %s', $sitename),
74                 'preamble' => $preamble,
75                 'body'     => $body
76         ]);
77
78         goaway(System::baseUrl());
79 }
80
81 function lostpass_content(App $a)
82 {
83         $o = '';
84         if ($a->argc > 1) {
85                 $pwdreset_token = $a->argv[1];
86
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."));
90
91                         return lostpass_form();
92                 }
93
94                 // Password reset requests expire in 60 minutes
95                 if ($user['pwdreset_time'] < DateTimeFormat::utc('now - 1 hour')) {
96                         $fields = [
97                                 'pwdreset' => null,
98                                 'pwdreset_time' => null
99                         ];
100                         dba::update('user', $fields, ['uid' => $user['uid']]);
101
102                         notice(L10n::t('Request has expired, please make a new one.'));
103
104                         return lostpass_form();
105                 }
106
107                 return lostpass_generate_password($user);
108         } else {
109                 return lostpass_form();
110         }
111 }
112
113 function lostpass_form()
114 {
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')
121         ]);
122
123         return $o;
124 }
125
126 function lostpass_generate_password($user)
127 {
128         $o = '';
129
130         $new_password = User::generateNewPassword();
131         $result = User::updatePassword($user['uid'], $new_password);
132         if (DBM::is_result($result)) {
133                 $tpl = get_markup_template('pwdreset.tpl');
134                 $o .= replace_macros($tpl, [
135                         '$lbl1'    => L10n::t('Password Reset'),
136                         '$lbl2'    => L10n::t('Your password has been reset as requested.'),
137                         '$lbl3'    => L10n::t('Your new password is'),
138                         '$lbl4'    => L10n::t('Save or copy your new password - and then'),
139                         '$lbl5'    => '<a href="' . System::baseUrl() . '">' . L10n::t('click here to login') . '</a>.',
140                         '$lbl6'    => L10n::t('Your password may be changed from the <em>Settings</em> page after successful login.'),
141                         '$newpass' => $new_password,
142                         '$baseurl' => System::baseUrl()
143                 ]);
144
145                 info("Your password has been reset." . EOL);
146
147                 $sitename = $a->config['sitename'];
148                 $preamble = deindent(L10n::t('
149                         Dear %1$s,
150                                 Your password has been changed as requested. Please retain this
151                         information for your records ' . "\x28" . 'or change your password immediately to
152                         something that you will remember' . "\x29" . '.
153                 ', $user['username']));
154                 $body = deindent(L10n::t('
155                         Your login details are as follows:
156
157                         Site Location:  %1$s
158                         Login Name:     %2$s
159                         Password:       %3$s
160
161                         You may change that password from your account settings page after logging in.
162                 ', System::baseUrl(), $user['email'], $new_password));
163
164                 notification([
165                         'type'     => SYSTEM_EMAIL,
166                         'to_email' => $user['email'],
167                         'subject'  => L10n::t('Your password has been changed at %s', $sitename),
168                         'preamble' => $preamble,
169                         'body'     => $body
170                 ]);
171         }
172
173         return $o;
174 }