Cookie code removed, rewritten, internal URLs are now relative (see LOAD_URL()),...
[mailer.git] / inc / libs / user_functions.php
index 3a385ff3aef0b867354f90a655fab97cfbf7a485..76d85f5876d76c3a0f3835fc2a5753f2c4984dd1 100644 (file)
@@ -257,5 +257,203 @@ function SELECT_RANDOM_REFID () {
        return $refid;
 }
 
+// Do the user login
+function USER_DO_LOGIN ($uid, $passwd) {
+       // Add last_login if available
+       $LAST = "";
+       if (GET_EXT_VERSION("sql_patches") >= "0.2.8") {
+               $LAST = ", last_login";
+       } // END - if
+
+       // Check login data
+       $password = ""; $uid2 = ""; $dmy = ""; $online = 0; $login = 0;
+       if ((EXT_IS_ACTIVE("nickname")) && (NICKNAME_PROBE_ON_USERID($uid))) {
+               // Nickname entered
+               $result = SQL_QUERY_ESC("SELECT userid, password, last_online".$LAST." FROM `"._MYSQL_PREFIX."_user_data` WHERE nickname='%s' AND status='CONFIRMED' LIMIT 1",
+                       array($uid), __FILE__, __LINE__);
+               list($uid2, $password, $online, $login) = SQL_FETCHROW($result);
+               if (!empty($uid2)) $uid = bigintval($uid2);
+       } else {
+               // Direct userid entered
+               $result = SQL_QUERY_ESC("SELECT userid, password, last_online".$LAST." FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
+                       array($uid, $hash), __FILE__, __LINE__);
+               list($uid2, $password, $online, $login) = SQL_FETCHROW($result);
+       }
+
+       // Is there an entry?
+       if ((SQL_NUMROWS($result) == 1) && ((($probe_nickname) && (!empty($uid2))) || ($uid2 == $uid))) {
+               // Free result
+               SQL_FREERESULT($result);
+
+               // By default the hash is empty
+               $hash = "";
+
+               // Check for old MD5 passwords
+               if ((strlen($password) == 32) && (md5($passwd) == $password)) {
+                       // Just set the hash to the password from DB... :)
+                       $hash = $password;
+               } else {
+                       // Hash password with improved way for comparsion
+                       $hash = generateHash($passwd, substr($password, 0, -40));
+               }
+
+               if ($hash == $password) {
+                       // New hashed password found so let's generate a new one
+                       $hash = generateHash($passwd);
+
+                       // ... and update database
+                       SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET password='%s' WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
+                               array($hash, $uid), __FILE__, __LINE__);
+
+                       // No login bonus by default
+                       // @TODO Make this filter working: $ADDON = RUN_FILTER('post_login_update', array('login' => $login, 'online' => $online));
+                       $BONUS = false;
+
+                       // Probe for last online timemark
+                       $probe = time() -  $online;
+                       if (!empty($login)) $probe = time() - $login;
+                       if ((GET_EXT_VERSION("bonus") >= "0.2.2") && ($probe >= getConfig('login_timeout'))) {
+                               // Add login bonus to user's account
+                               $ADD = sprintf(", login_bonus=login_bonus+%s",
+                                       (float)getConfig('login_bonus')
+                               );
+                               $BONUS = true;
+
+                               // Subtract login bonus from userid's account or jackpot
+                               if ((GET_EXT_VERSION("bonus") >= "0.3.5") && (getConfig('bonus_mode') != "ADD")) BONUS_POINTS_HANDLER('login_bonus');
+                       } // END - if
+
+                       // Init variables
+                       $login = false;
+
+                       // Calculate new hash with the secret key and master salt together
+                       $hash = generatePassString($hash);
+
+                       // Update global array
+                       // @TODO Make this filter working: $URL = RUN_FILTER('do_login', array('uid' => $uid, 'hash' => $hash, 'addon' => $ADDON));
+                       $GLOBALS['userid'] = $uid;
+
+                       // Try to set session data (which shall normally always work!)
+                       if ((set_session('userid', $uid )) && (set_session('u_hash', $hash))) {
+                               // Update database records
+                               SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET total_logins=total_logins+1".$ADD." WHERE userid=%s LIMIT 1",
+                                       array($uid), __FILE__, __LINE__);
+                               if (SQL_AFFECTEDROWS() == 1) {
+                                       // Procedure to checking for login data
+                                       if (($BONUS) && (EXT_IS_ACTIVE("bonus"))) {
+                                               // Bonus added (just displaying!)
+                                               $URL = "modules.php?module=chk_login&mode=bonus";
+                                       } else {
+                                               // Bonus not added
+                                               $URL = "modules.php?module=chk_login&mode=login";
+                                       }
+                               } else {
+                                       // Cannot update counter!
+                                       $URL = "modules.php?module=index&what=login&login=".CODE_CNTR_FAILED;
+                               }
+                       } else {
+                               // Cookies not setable!
+                               $URL = "modules.php?module=index&what=login&login=".CODE_NO_COOKIES;
+                       }
+               } elseif (GET_EXT_VERSION("sql_patches") >= "0.4.7") {
+                       // Update failture counter
+                       SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET login_failtures=login_failtures+1,last_failture=NOW() WHERE userid=%s LIMIT 1",
+                               array($uid), __FILE__, __LINE__);
+
+                       // Wrong password!
+                       $URL = "modules.php?module=index&what=login&login=".CODE_WRONG_PASS;
+               }
+       } elseif ((($probe_nickname) && (!empty($uid2))) || ($uid2 == $uid)) {
+               // Other account status?
+               // @TODO Can this query be saved???
+               $result = SQL_QUERY_ESC("SELECT status FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
+                       array($uid), __FILE__, __LINE__);
+
+               // Entry found?
+               if (SQL_NUMROWS($result) == 1) {
+                       // Load status
+                       list($status) = SQL_FETCHROW($result);
+
+                       // Create an error code from given status
+                       $ERROR = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
+               } else {
+                       // ID not found!
+                       $ERROR = CODE_WRONG_ID;
+               }
+
+               // Construct URL
+               $URL = "modules.php?module=index&what=login&login=".$ERROR;
+       } else {
+               // ID not found!
+               $URL = "modules.php?module=index&what=login&login=".CODE_WRONG_ID;
+       }
+
+       // Return URL
+       return $URL;
+}
+
+// Try to send a new password for the given user account
+function USER_DO_NEW_PASSWORD ($email, $uid) {
+       // Compile email when found in address (only secure chars!)
+       if (!empty($email)) $email = str_replace("{DOT}", '.', $email);
+
+       // Init result and error
+       $ERROR = "";
+       $result = false;
+
+       // Probe userid/nickname
+       if ((EXT_IS_ACTIVE("nickname")) && (NICKNAME_PROBE_ON_USERID($uid))) {
+               // Nickname entered
+               $result = SQL_QUERY_ESC("SELECT userid, status FROM `"._MYSQL_PREFIX."_user_data` WHERE nickname='%s' OR email='%s' LIMIT 1",
+                       array($uid, $email), __FILE__, __LINE__);
+       } elseif (($uid > 0) && (empty($email))) {
+               // Direct userid entered
+               $result = SQL_QUERY_ESC("SELECT userid, status FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
+                       array(bigintval($uid)), __FILE__, __LINE__);
+       } elseif (!empty($email)) {
+               // Email entered
+               $result = SQL_QUERY_ESC("SELECT userid, status FROM `"._MYSQL_PREFIX."_user_data` WHERE email='%s' LIMIT 1",
+                       array($email), __FILE__, __LINE__);
+       } else {
+               // Userid not set!
+               DEBUG_LOG(__FUNCTION__, __LINE__, "Userid is not set! BUG!");
+               $ERROR = CODE_WRONG_ID;
+       }
+
+       // Any entry found?
+       if (SQL_NUMROWS($result) == 1) {
+               // This data is valid, so we create a new pass... :-)
+               list($uid, $status) = SQL_FETCHROW($result);
+
+               if ($status == "CONFIRMED") {
+                       // Ooppps, this was missing! ;-) We should update the database...
+                       $NEW_PASS = GEN_PASS();
+                       SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET password='%s' WHERE userid=%s LIMIT 1",
+                               array(generateHash($NEW_PASS), $uid), __FILE__, __LINE__);
+
+                       // Prepare data and message for email
+                       $msg = LOAD_EMAIL_TEMPLATE("new-pass", array('new_pass' => $NEW_PASS), $uid);
+
+                       // ... and send it away
+                       SEND_EMAIL($uid, GUEST_NEW_PASSWORD, $msg);
+
+                       // Output note to user
+                       LOAD_TEMPLATE("admin_settings_saved", false, GUEST_NEW_PASSWORD_SEND);
+               } else {
+                       // Account is locked or unconfirmed
+                       $ERROR = GEN_ERROR_CODE_FROM_ACCOUNT_STATUS($status);
+
+                       // Load URL
+                       LOAD_URL("modules.php?module=index&what=login&login=".$ERROR);
+               }
+       } else {
+               // ID or email is wrong
+               LOAD_TEMPLATE("admin_settings_saved", false, "<SPAN class=\"guest_failed\">".GUEST_WRONG_ID_EMAIL."</SPAN>");
+       }
+
+       // Return the error code
+       return $ERROR;
+}
+
 // [EOF]
 ?>