streams/mod/lostpass.php

132 lines
3.6 KiB
PHP
Raw Normal View History

2010-07-18 08:24:51 +00:00
<?php
function lostpass_post(&$a) {
$loginame = notags(trim($_POST['login-name']));
if(! $loginame)
goaway(z_root());
2010-07-18 08:24:51 +00:00
$r = q("SELECT * FROM account WHERE account_email = '%s' LIMIT 1",
dbesc($loginame)
2010-07-18 08:24:51 +00:00
);
if(! $r) {
notice( t('No valid account found.') . EOL);
goaway(z_root());
}
$aid = $r[0]['account_id'];
$email = $r[0]['account_email'];
2010-07-18 08:24:51 +00:00
$hash = random_string();
2010-07-18 08:24:51 +00:00
$r = q("UPDATE account SET account_reset = '%s' WHERE account_id = %d LIMIT 1",
dbesc($hash),
intval($aid)
2010-07-18 08:24:51 +00:00
);
if($r)
info( t('Password reset request issued. Check your email.') . EOL);
2010-07-18 08:24:51 +00:00
2011-05-11 11:37:13 +00:00
$email_tpl = get_intltext_template("lostpass_eml.tpl");
$message = replace_macros($email_tpl, array(
'$sitename' => get_config('system','sitename'),
2010-07-18 08:24:51 +00:00
'$siteurl' => $a->get_baseurl(),
'$username' => sprintf( t('Site Member (%s)'), $email),
2010-07-18 08:24:51 +00:00
'$email' => $email,
'$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $hash
2010-07-18 08:24:51 +00:00
));
$subject = email_header_encode(sprintf( t('Password reset requested at %s'),get_config('system','sitename')), 'UTF-8');
$res = mail($email, $subject ,
$message,
'From: Administrator@' . $_SERVER['SERVER_NAME'] . "\n"
2011-04-15 00:13:13 +00:00
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit' );
2010-07-18 08:24:51 +00:00
goaway(z_root());
2010-07-18 08:24:51 +00:00
}
function lostpass_content(&$a) {
if(x($_GET,'verify')) {
$verify = $_GET['verify'];
$r = q("SELECT * FROM account WHERE account_reset = '%s' LIMIT 1",
dbesc($verify)
2010-07-18 08:24:51 +00:00
);
if(! $r) {
notice( t("Request could not be verified. (You may have previously submitted it.) Password reset failed.") . EOL);
goaway(z_root());
2010-07-18 08:24:51 +00:00
return;
}
$aid = $r[0]['account_id'];
$email = $r[0]['account_email'];
$new_password = autoname(6) . mt_rand(100,9999);
2010-07-18 08:24:51 +00:00
$salt = random_string(32);
$password_encoded = hash('whirlpool', $salt . $new_password);
2010-07-18 08:24:51 +00:00
$r = q("UPDATE account SET account_salt = '%s', account_password = '%s', account_reset = '' where account_id = %d limit 1",
dbesc($salt),
dbesc($password_encoded),
intval($aid)
2010-07-18 08:24:51 +00:00
);
2010-07-18 08:24:51 +00:00
if($r) {
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template('pwdreset.tpl');
2010-07-18 08:24:51 +00:00
$o .= replace_macros($tpl,array(
'$lbl1' => t('Password Reset'),
'$lbl2' => t('Your password has been reset as requested.'),
'$lbl3' => t('Your new password is'),
'$lbl4' => t('Save or copy your new password - and then'),
'$lbl5' => '<a href="' . $a->get_baseurl() . '">' . t('click here to login') . '</a>.',
'$lbl6' => t('Your password may be changed from the <em>Settings</em> page after successful login.'),
2010-07-18 08:24:51 +00:00
'$newpass' => $new_password,
'$baseurl' => $a->get_baseurl()
2010-07-18 08:24:51 +00:00
));
info("Your password has been reset." . EOL);
2010-07-18 08:24:51 +00:00
2011-05-11 11:37:13 +00:00
$email_tpl = get_intltext_template("passchanged_eml.tpl");
$message = replace_macros($email_tpl, array(
2010-07-18 08:24:51 +00:00
'$sitename' => $a->config['sitename'],
'$siteurl' => $a->get_baseurl(),
'$username' => sprintf( t('Site Member (%s)'), $email),
2010-07-18 08:24:51 +00:00
'$email' => $email,
'$new_password' => $new_password,
2010-07-18 08:24:51 +00:00
'$uid' => $newuid ));
$subject = email_header_encode( sprintf( t('Your password has changed at %s'), get_config('system','sitename')), 'UTF-8');
$res = mail($email,$subject,$message,
'From: ' . 'Administrator@' . $_SERVER['SERVER_NAME'] . "\n"
2011-04-15 00:13:13 +00:00
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit' );
2010-07-18 08:24:51 +00:00
return $o;
}
}
else {
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template('lostpass.tpl');
2010-07-18 08:24:51 +00:00
2011-04-07 06:03:54 +00:00
$o .= replace_macros($tpl,array(
'$title' => t('Forgot your Password?'),
'$desc' => t('Enter your email address and submit to have your password reset. Then check your email for further instructions.'),
'$name' => t('Email Address'),
2011-04-07 06:03:54 +00:00
'$submit' => t('Reset')
));
2010-07-18 08:24:51 +00:00
return $o;
}
}