X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=9dab3165382792913703ab4f6ac9b2b7e9532d4a;hb=6bc05b8460aa514a136a9b2d924545b6cfa84cad;hp=dbaee3b66ec871287ed80e14fc10f4c1e2e1a811;hpb=d7fb965b76faf6e4f3e6d7827abf8e173349e749;p=mailer.git diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index dbaee3b66e..9dab316538 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=%d 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'); + + // Put it in cche + $GLOBALS['nicknames'][$userid] = $ret; + } // END - if + } else { + // Direct nickname found! + $ret = $userid; - // Free result - SQL_FREERESULT($result); + // Put it in cche + $GLOBALS['nicknames'][$userid] = $ret; + } + } // Return nickname return $ret; } -// + +// [EOF] ?>