X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=f3ec02b214696c2abdf77c88c4ea8a795a091ac5;hp=899d98b6fe73b0e04536387035a7ff3450c17aa9;hb=ec9f020e34a9f2029a2ea0969564dda015beca8a;hpb=43885129ac24cee5545a8a5ad51e90aa182fdf46 diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index 899d98b6fe..f3ec02b214 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -1,7 +1,7 @@ 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['nickname_active'][$useridNick])) { + // Use it directly + $ret = $GLOBALS['nickname_active'][$useridNick]; + } else { + // Nickname or userid used? + $nick = getNickname($useridNick); - // Free result - SQL_FREERESULT($result); + // Check for nickname + $ret = ($nick == $useridNick); + + // Put it in cache + $GLOBALS['nickname_active'][$useridNick] = $ret; + } // Return nickname return $ret; } -// -function NICKNAME_GET_NICK($userid) -{ + +// "Getter" for nickname for specfied userid +function getNickname ($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['nicknames'][$userid])) { + // Use it directly + $ret = $GLOBALS['nicknames'][$userid]; + } else { + // Init result + $result = false; - // Found? - if (SQL_NUMROWS($result) == 1) - { - // Load nickname from database - list($ret) = SQL_FETCHROW($result); - } + // Nickname or userid used? + if ('' . round($userid) . '' === '' . $userid . '') { + // Userid given, so try to load user data + if (fetchUserData($userid)) { + // Load nickname from database + $ret = getUserData('nickname'); - // Free result - SQL_FREERESULT($result); + // Put it in cche + $GLOBALS['nicknames'][$userid] = $ret; + } // END - if + } else { + // Direct nickname found + $ret = $userid; + + // Put it in cche + $GLOBALS['nicknames'][$userid] = $ret; + } + } // Return nickname return $ret; } -// + +// [EOF] ?>