Global variables rewritten
[mailer.git] / inc / libs / nickname_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 06/25/2004 *
4  * ================                             Last change: 06/25/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : nickname_functions.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Nickname functions                               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Nickname-Funktionen                              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 //
41 function NICKNAME_IS_ACTIVE ($uidNick) {
42         // By default nothing is found...
43         $ret = false;
44
45         // Found in cache?
46         if (isset($GLOBALS['cache_array']['nick_active'][$uidNick])) {
47                 // Use it directly
48                 $ret = $GLOBALS['cache_array']['nick_active'][$uidNick];
49
50                 // Increment cache counter
51                 incrementConfigEntry('cache_hits');
52         } else {
53                 // Search in database
54                 // @TODO Can we replace this with GET_TOTAL_DATA() ?
55                 $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s OR nickname='%s' LIMIT 1",
56                         array(bigintval($uidNick), $uidNick), __FILE__, __LINE__);
57
58                 // Check existence of nickname
59                 $ret = (SQL_NUMROWS($result) == 1);
60
61                 // Put it in cache
62                 $GLOBALS['cache_array']['nick_active'][$uidNick] = $ret;
63
64                 // Free result
65                 SQL_FREERESULT($result);
66         }
67
68         // Return nickname
69         return $ret;
70 }
71
72 //
73 function NICKNAME_GET_NICK ($userid) {
74         // If not found...
75         $ret = "";
76
77         // Found in cache?
78         if (isset($GLOBALS['cache_array']['nicknames'][$userid])) {
79                 // Use it directly
80                 $ret = $GLOBALS['cache_array']['nicknames'][$userid];
81
82                 // Increment cache counter
83                 incrementConfigEntry('cache_hits');
84         } elseif (NICKNAME_IS_ACTIVE($userid)) {
85                 // Search for non-empty nickname
86                 $result = SQL_QUERY_ESC("SELECT nickname FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND nickname != '' LIMIT 1",
87                         array(bigintval($userid)), __FILE__, __LINE__);
88
89                 // Found?
90                 if (SQL_NUMROWS($result) == 1) {
91                         // Load nickname from database
92                         list($ret) = SQL_FETCHROW($result);
93
94                         // Put it in cche
95                         $GLOBALS['cache_array']['nicknames'][$userid] = $ret;
96                 } // END - if
97
98                 // Free result
99                 SQL_FREERESULT($result);
100         }
101
102         // Return nickname
103         return $ret;
104 }
105
106 // Simple wrapper function
107 function NICKNAME_PROBE_ON_USERID ($uid) {
108         return (NICKNAME_GET_NICK($uid) != "");
109 }
110
111 //
112 ?>