From 15b91c7e661d928d8b125ec9cfbda1702319c8b4 Mon Sep 17 00:00:00 2001 From: mensonge Date: Tue, 25 Nov 2008 15:57:29 +0000 Subject: Major refactoring: transform user into object, define parameters used into each file, ... git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@173 b3834d28-1941-0410-a4f8-b48e95affb8f --- password.php | 98 +++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 54 insertions(+), 44 deletions(-) (limited to 'password.php') diff --git a/password.php b/password.php index 1763fd2..e3a8721 100644 --- a/password.php +++ b/password.php @@ -1,68 +1,78 @@ e-mail address.'); + // NO E-MAIL + } elseif (!POST_EMAIL) { + $tplVars['error'] = T_('You must enter your e-mail address.'); - // USERNAME AND E-MAIL - } else { + // USERNAME AND E-MAIL + } else { - // NO MATCH - if (!($userinfo = $userservice->getUserByUsername($_POST['username']))) { - $tplVars['error'] = T_('No matches found for that username.'); + // NO MATCH + $userinfo = $userservice->getObjectUserByUsername(POST_USERNAME); + if ($userinfo == '') { + $tplVars['error'] = T_('No matches found for that username.'); - } elseif ($_POST['email'] != $userinfo['email']) { - $tplVars['error'] = T_('No matches found for that combination of username and e-mail address.'); + } elseif (POST_EMAIL != $userinfo->getEmail()) { + $tplVars['error'] = T_('No matches found for that combination of username and e-mail address.'); - // MATCH - } else { + // MATCH + } else { - // GENERATE AND STORE PASSWORD - $password = $userservice->generatePassword($userinfo['uId']); - if (!($password = $userservice->generatePassword($userinfo['uId']))) { - $tplVars['error'] = T_('There was an error while generating your new password. Please try again.'); + // GENERATE AND STORE PASSWORD + $password = $userservice->generatePassword($userinfo->getId()); + if (!($password = $userservice->generatePassword($userinfo->getId()))) { + $tplVars['error'] = T_('There was an error while generating your new password. Please try again.'); - } else { - // SEND E-MAIL - $message = T_('Your new password is:') ."\n". $password ."\n\n". T_('To keep your bookmarks secure, you should change this password in your profile the next time you log in.'); - $message = wordwrap($message, 70); - $headers = 'From: '. $adminemail; - $mail = mail($_POST['email'], sprintf(T_('%s Account Information'), $sitename), $message); + } else { + // SEND E-MAIL + $message = T_('Your new password is:') ."\n". $password ."\n\n". T_('To keep your bookmarks secure, you should change this password in your profile the next time you log in.'); + $message = wordwrap($message, 70); + $headers = 'From: '. $adminemail; + $mail = mail(POST_EMAIL, sprintf(T_('%s Account Information'), $sitename), $message); - $tplVars['msg'] = sprintf(T_('New password generated and sent to %s'), $_POST['email']); - } - } - } + $tplVars['msg'] = sprintf(T_('New password generated and sent to %s'), POST_EMAIL); + } + } + } } $templatename = 'password.tpl'; -- cgit v1.2.3