2010-07-18 10:24:51 +02:00
|
|
|
<?php
|
2019-10-11 01:21:41 +02:00
|
|
|
|
2017-12-01 20:57:13 +01:00
|
|
|
/**
|
|
|
|
* @file mod/lostpass.php
|
|
|
|
*/
|
2018-01-20 04:27:31 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-07-20 04:15:21 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-20 04:49:06 +01:00
|
|
|
use Friendica\Model\User;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-20 04:27:31 +01:00
|
|
|
function lostpass_post(App $a)
|
|
|
|
{
|
2018-11-09 19:29:42 +01:00
|
|
|
$loginame = Strings::escapeTags(trim($_POST['login-name']));
|
2018-01-20 04:27:31 +01:00
|
|
|
if (!$loginame) {
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
2018-01-20 04:27:31 +01:00
|
|
|
}
|
2010-07-18 10:24:51 +02:00
|
|
|
|
2018-01-20 04:27:31 +01:00
|
|
|
$condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame];
|
2019-01-04 02:42:29 +01:00
|
|
|
$user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'language'], $condition);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($user)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No valid account found.') . EOL);
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
2011-06-29 09:59:21 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 01:21:41 +02:00
|
|
|
$pwdreset_token = Strings::getRandomName(12) . random_int(1000, 9999);
|
2010-07-18 10:24:51 +02:00
|
|
|
|
2018-01-21 00:15:55 +01:00
|
|
|
$fields = [
|
|
|
|
'pwdreset' => $pwdreset_token,
|
2018-01-27 03:38:34 +01:00
|
|
|
'pwdreset_time' => DateTimeFormat::utcNow()
|
2018-01-21 00:15:55 +01:00
|
|
|
];
|
2018-07-20 14:19:26 +02:00
|
|
|
$result = DBA::update('user', $fields, ['uid' => $user['uid']]);
|
2018-01-20 04:27:31 +01:00
|
|
|
if ($result) {
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('Password reset request issued. Check your email.') . EOL);
|
2018-01-20 04:27:31 +01:00
|
|
|
}
|
2010-07-18 10:24:51 +02:00
|
|
|
|
2018-07-07 23:46:30 +02:00
|
|
|
$sitename = Config::get('config', 'sitename');
|
2018-01-21 00:15:55 +01:00
|
|
|
$resetlink = System::baseUrl() . '/lostpass/' . $pwdreset_token;
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2018-11-08 16:26:49 +01:00
|
|
|
$preamble = Strings::deindent(L10n::t('
|
2014-09-07 11:20:06 +02:00
|
|
|
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
|
|
|
|
below or paste it into your web browser address bar.
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
If you did NOT request this change, please DO NOT follow the link
|
2018-01-21 01:12:14 +01:00
|
|
|
provided and ignore and/or delete this email, the request will expire shortly.
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
Your password will not be changed unless we can verify that you
|
2018-01-20 04:27:31 +01:00
|
|
|
issued this request.', $user['username'], $sitename));
|
2018-11-08 16:26:49 +01:00
|
|
|
$body = Strings::deindent(L10n::t('
|
2018-01-21 01:12:14 +01:00
|
|
|
Follow this link soon to verify your identity:
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
%1$s
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
You will then receive a follow-up message containing the new password.
|
|
|
|
You may change that password from your account settings page after logging in.
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
The login details are as follows:
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2014-09-07 11:20:06 +02:00
|
|
|
Site Location: %2$s
|
2019-01-04 02:42:29 +01:00
|
|
|
Login Name: %3$s', $resetlink, System::baseUrl(), $user['nickname']));
|
2014-09-07 10:27:39 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
notification([
|
2018-01-20 04:27:31 +01:00
|
|
|
'type' => SYSTEM_EMAIL,
|
2018-08-18 08:20:50 +02:00
|
|
|
'language' => $user['language'],
|
|
|
|
'to_name' => $user['username'],
|
2018-01-20 04:27:31 +01:00
|
|
|
'to_email' => $user['email'],
|
2018-04-03 12:45:27 +02:00
|
|
|
'uid' => $user['uid'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'subject' => L10n::t('Password reset requested at %s', $sitename),
|
2018-01-20 04:27:31 +01:00
|
|
|
'preamble' => $preamble,
|
|
|
|
'body' => $body
|
|
|
|
]);
|
2011-04-15 02:13:13 +02:00
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2010-07-18 10:24:51 +02:00
|
|
|
|
2018-01-20 04:27:31 +01:00
|
|
|
function lostpass_content(App $a)
|
|
|
|
{
|
2018-01-21 00:15:55 +01:00
|
|
|
if ($a->argc > 1) {
|
|
|
|
$pwdreset_token = $a->argv[1];
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2019-01-04 02:42:29 +01:00
|
|
|
$user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'pwdreset_time', 'language'], ['pwdreset' => $pwdreset_token]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($user)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."));
|
2018-01-21 00:15:55 +01:00
|
|
|
|
|
|
|
return lostpass_form();
|
2010-07-18 10:24:51 +02:00
|
|
|
}
|
|
|
|
|
2018-01-21 01:15:05 +01:00
|
|
|
// Password reset requests expire in 60 minutes
|
2018-01-27 03:38:34 +01:00
|
|
|
if ($user['pwdreset_time'] < DateTimeFormat::utc('now - 1 hour')) {
|
2018-01-21 00:15:55 +01:00
|
|
|
$fields = [
|
|
|
|
'pwdreset' => null,
|
|
|
|
'pwdreset_time' => null
|
|
|
|
];
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::update('user', $fields, ['uid' => $user['uid']]);
|
2018-01-21 00:15:55 +01:00
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Request has expired, please make a new one.'));
|
2018-01-21 00:15:55 +01:00
|
|
|
|
|
|
|
return lostpass_form();
|
2010-07-18 10:24:51 +02:00
|
|
|
}
|
2018-01-21 00:15:55 +01:00
|
|
|
|
|
|
|
return lostpass_generate_password($user);
|
2018-01-20 04:27:31 +01:00
|
|
|
} else {
|
2018-01-21 00:15:55 +01:00
|
|
|
return lostpass_form();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function lostpass_form()
|
|
|
|
{
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('lostpass.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$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')
|
2018-01-21 00:15:55 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
function lostpass_generate_password($user)
|
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
$new_password = User::generateNewPassword();
|
|
|
|
$result = User::updatePassword($user['uid'], $new_password);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($result)) {
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('pwdreset.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$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' => '<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.'),
|
2018-01-21 00:15:55 +01:00
|
|
|
'$newpass' => $new_password,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2010-07-18 10:24:51 +02:00
|
|
|
|
2018-01-21 00:15:55 +01:00
|
|
|
info("Your password has been reset." . EOL);
|
|
|
|
|
2018-07-07 23:46:30 +02:00
|
|
|
$sitename = Config::get('config', 'sitename');
|
2018-11-08 16:26:49 +01:00
|
|
|
$preamble = Strings::deindent(L10n::t('
|
2018-01-21 00:15:55 +01:00
|
|
|
Dear %1$s,
|
|
|
|
Your password has been changed as requested. Please retain this
|
2018-01-24 22:51:32 +01:00
|
|
|
information for your records ' . "\x28" . 'or change your password immediately to
|
|
|
|
something that you will remember' . "\x29" . '.
|
2018-01-21 00:15:55 +01:00
|
|
|
', $user['username']));
|
2018-11-08 16:26:49 +01:00
|
|
|
$body = Strings::deindent(L10n::t('
|
2018-01-21 00:15:55 +01:00
|
|
|
Your login details are as follows:
|
|
|
|
|
|
|
|
Site Location: %1$s
|
|
|
|
Login Name: %2$s
|
|
|
|
Password: %3$s
|
|
|
|
|
|
|
|
You may change that password from your account settings page after logging in.
|
2019-01-04 02:42:29 +01:00
|
|
|
', System::baseUrl(), $user['nickname'], $new_password));
|
2018-01-21 00:15:55 +01:00
|
|
|
|
|
|
|
notification([
|
|
|
|
'type' => SYSTEM_EMAIL,
|
2018-08-18 08:20:50 +02:00
|
|
|
'language' => $user['language'],
|
|
|
|
'to_name' => $user['username'],
|
2018-01-21 00:15:55 +01:00
|
|
|
'to_email' => $user['email'],
|
2018-04-03 12:47:38 +02:00
|
|
|
'uid' => $user['uid'],
|
2018-01-22 15:16:25 +01:00
|
|
|
'subject' => L10n::t('Your password has been changed at %s', $sitename),
|
2018-01-21 00:15:55 +01:00
|
|
|
'preamble' => $preamble,
|
|
|
|
'body' => $body
|
|
|
|
]);
|
2010-07-18 10:24:51 +02:00
|
|
|
}
|
2018-01-21 00:15:55 +01:00
|
|
|
|
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|