X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=766bd54cfec50ad79be427044013bf2eab9d2e72;hb=d1637dad0b2ca0e5fb411ee0843f01bfb4cc94e0;hp=d1834fb34dd553d61f180ee3619833e9d0cfdbbf;hpb=6c763653e88b9d10627e651ca59c7201d4b7d62b;p=mailer.git diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index d1834fb34d..766bd54cfe 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Nickname-Funktionen * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -33,48 +38,82 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -// -function NICKNAME_IS_ACTIVE($uidNick) -{ +// Checks wether the nickname is active +function NICKNAME_IS_ACTIVE ($uidNick) { + // By default nothing is found... $ret = false; - $result = SQL_QUERY_ESC("SELECT userid FROM `"._MYSQL_PREFIX."_user_data` WHERE (userid=%s AND userid > 0) OR nickname='%s' LIMIT 1", - array(bigintval($uidNick), $uidNick), __FILE__, __LINE__); - // Check existence of nickname - if (SQL_NUMROWS($result) == 1) $ret = true; + // Found in cache? + if (isset($GLOBALS['cache_array']['nick_active'][$uidNick])) { + // Use it directly + $ret = $GLOBALS['cache_array']['nick_active'][$uidNick]; - // Free result - SQL_FREERESULT($result); + // Increment cache counter + incrementConfigEntry('cache_hits'); + } else { + // Nickname or userid used? + $nick = NICKNAME_GET_NICK($uidNick); + + // Check for nickname + $ret = ($nick != $uidNick); + + // Put it in cache + $GLOBALS['cache_array']['nick_active'][$uidNick] = $ret; + } // Return nickname return $ret; } -// -function NICKNAME_GET_NICK($userid) -{ + +// "Getter" for nickname for specfied userid +function NICKNAME_GET_NICK ($userid) { // If not found... - $ret = ""; + $ret = ''; - // Search for non-empty nickname - $result = SQL_QUERY_ESC("SELECT nickname FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s AND nickname != '' LIMIT 1", - array(bigintval($userid)), __FILE__, __LINE__); + // Found in cache? + if (isset($GLOBALS['cache_array']['nicknames'][$userid])) { + // Use it directly + $ret = $GLOBALS['cache_array']['nicknames'][$userid]; - // Found? - if (SQL_NUMROWS($result) == 1) - { - // Load nickname from database - list($ret) = SQL_FETCHROW($result); - } + // Increment cache counter + incrementConfigEntry('cache_hits'); + } else { + // Init result + $result = false; + + // Nickname or userid used? + if (''.round($userid).'' === ''.$userid.'') { + // Userid given + $result = SQL_QUERY_ESC("SELECT `nickname` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid` =%s LIMIT 1", + array(bigintval($userid)), __FUNCTION__, __LINE__); + + // Found? + if (SQL_NUMROWS($result) == 1) { + // Load nickname from database + list($ret) = SQL_FETCHROW($result); + + // Put it in cche + $GLOBALS['cache_array']['nicknames'][$userid] = $ret; + } // END - if - // Free result - SQL_FREERESULT($result); + // Free result + SQL_FREERESULT($result); + } else { + // Direct nickname found! + $ret = $userid; + + // Put it in cche + $GLOBALS['cache_array']['nicknames'][$userid] = $ret; + } + } // Return nickname return $ret; } + // ?>