Cache class rewritten to better convention
[mailer.git] / inc / mysql-manager.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/26/2003 *
4  * ===============                              Last change: 11/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-manager.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : All MySQL-related functions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle MySQL-Relevanten 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 ADD_MODULE_TITLE($mod) {
42         global $cacheArray, $_CONFIG;
43         $name = ""; $result = false;
44
45         // Is the script installed?
46         if (isBooleanConstantAndTrue('mxchange_installed')) {
47                 // Check if cache is valid
48                 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (isset($cacheArray['modules']['module'])) && (in_array($mod, $cacheArray['modules']['module']))) {
49                         // Load from cache
50                         $name = $cacheArray['modules']['title'][$mod];
51
52                         // Update cache hits
53                         if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
54                 } else {
55                         // Load from database
56                         $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_mod_reg WHERE module='%s' LIMIT 1", array($mod), __FILE__, __LINE__);
57                         list($name) = SQL_FETCHROW($result);
58                         SQL_FREERESULT($result);
59                 }
60         } // END - if
61
62         // Trim name
63         $name = trim($name);
64
65         // Still no luck or empty title?
66         if (empty($name)) {
67                 // No name found
68                 $name = sprintf("%s (%s)", LANG_UNKNOWN_MODULE, $mod);
69                 if (SQL_NUMROWS($result) == 0) {
70                         // Add module to database
71                         $dummy = CHECK_MODULE($mod);
72                 } // END - if
73         } // END - if
74
75         // Return name
76         return $name;
77 }
78
79 // Check validity of a given module name (no file extension)
80 function CHECK_MODULE ($mod) {
81         // We need them now here...
82         global $cacheArray, $_CONFIG, $cacheInstance;
83
84         // Filter module name (names with low chars and underlines are fine!)
85         $mod = preg_replace("/[^a-z_]/", "", $mod);
86
87         // Check for prefix is a extension...
88         $modSplit = explode("_", $mod);
89         $extension = ""; $mod_chk = $mod;
90         //* DEBUG: */ echo __LINE__."*".count($modSplit)."*/".$mod."*<br />";
91         if (count($modSplit) == 2) {
92                 // Okay, there is a seperator (_) in the name so is the first part a module?
93                 //* DEBUG: */ echo __LINE__."*".$modSplit[0]."*<br />";
94                 if (EXT_IS_ACTIVE($modSplit[0])) {
95                         // The prefix is an extension's name, so let's set it
96                         $extension = $modSplit[0]; $mod = $modSplit[1];
97                 }
98         }
99
100         // Major error in module registry is the default
101         $ret = "major";
102
103         // Check if script is installed if not return a "done" to prevent some errors
104         if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing')) || (!isBooleanConstantAndTrue('admin_registered'))) return "done";
105
106         // Check if cache is latest version
107         $locked = "Y"; $hidden = "N"; $admin = "N"; $mem = "N"; $found = false;
108         if ((GET_EXT_VERSION("cache") >= "0.1.2") && (isset($cacheArray['modules']['module'])) && (is_array($cacheArray['modules']['module']))) {
109                 // Is the module cached?
110                 if (isset($cacheArray['modules']['locked'][$mod_chk])) {
111                         // Check cache
112                         $locked = $cacheArray['modules']['locked'][$mod_chk];
113                         $hidden = $cacheArray['modules']['hidden'][$mod_chk];
114                         $admin  = $cacheArray['modules']['admin_only'][$mod_chk];
115                         $mem    = $cacheArray['modules']['mem_only'][$mod_chk];
116
117                         // Update cache hits
118                         if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
119                         $found = true;
120                 } else {
121                         // No, then we have to update it!
122                         $ret = "cache_miss";
123                 }
124         } else {
125                 // Check for module in database
126                 $result = SQL_QUERY_ESC("SELECT locked, hidden, admin_only, mem_only FROM "._MYSQL_PREFIX."_mod_reg WHERE module='%s' LIMIT 1", array($mod_chk), __FILE__, __LINE__);
127                 if (SQL_NUMROWS($result) == 1) {
128                         // Read data
129                         list($locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
130                         SQL_FREERESULT($result);
131                         $found = true;
132                 }
133         }
134
135         // Check returned values against current access permissions
136         //
137         //  Admin access            ----- Guest access -----           --- Guest   or   member? ---
138         if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_MEMBER())))) {
139                 // If you are admin you are welcome for everything!
140                 $ret = "done";
141         } elseif ($locked == "Y") {
142                 // Module is locked
143                 $ret = "locked";
144         } elseif (($mem == "Y") && (!IS_MEMBER())) {
145                 // You have to login first!
146                 $ret = "mem_only";
147         } elseif (($admin == "Y") && (!IS_ADMIN())) {
148                 // Only the Admin is allowed to enter this module!
149                 $ret = "admin_only";
150         }
151
152         // Still no luck or not found?
153         if (($ret == "major") || ($ret == "cache_miss") || (!$found)) {
154                 //              ----- Legacy module -----                                   ---- Module in base folder  ----                       --- Module with extension's name ---
155                 if ((FILE_READABLE(sprintf("%sinc/modules/%s.php", PATH, $mod))) || (FILE_READABLE(sprintf("%s%s.php", PATH, $mod))) || (FILE_READABLE(sprintf("%s%s/%s.php", PATH, $extension, $mod)))) {
156                         // Data is missing so we add it
157                         if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
158                                 // Since 0.3.6 we have a has_menu column, this took me a half hour
159                                 // to find a loop here... *sigh*
160                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
161 (module, locked, hidden, mem_only, admin_only, has_menu) VALUES
162 ('%s','Y','N','N','N','N')", array($mod_chk), __FILE__, __LINE__);
163                         } else {
164                                 // Wrong/missing sql_patches!
165                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
166 (module, locked, hidden, mem_only, admin_only) VALUES
167 ('%s','Y','N','N','N')", array($mod_chk), __FILE__, __LINE__);
168                         }
169
170                         // Everthing is fine?
171                         if (SQL_AFFECTEDROWS() < 1) {
172                                 // Something bad happend!
173                                 return "major";
174                         } // END - if
175
176                         // Destroy cache here
177                         REBUILD_CACHE("mod_reg", "modreg");
178
179                         // And reload data
180                         $ret = CHECK_MODULE($mod_chk);
181                 } else {
182                         // Module not found we don't add it to the database
183                         $ret = "404";
184                 }
185         } // END - if
186
187         // Return the value
188         return $ret;
189 }
190
191 // Add menu description pending on given file name (without path!)
192 function ADD_DESCR($ACC_LVL, $file, $return = false, $output = true) {
193         global $NAV_DEPTH, $_CONFIG;
194         // Use only filename of the file ;)
195         $file = basename($file);
196
197         // Init variables
198         $LINK_ADD = ""; $OUT = ""; $AND = "";
199
200         // First we have to do some analysis...
201         if (substr($file, 0, 7) == "action-") {
202                 // This is an action file!
203                 $type = "action";
204                 $search = substr($file, 7);
205                 switch ($ACC_LVL)
206                 {
207                 case "admin":
208                         $modCheck = "admin";
209                         break;
210
211                 case "sponsor":
212                 case "guest":
213                 case "member":
214                         $modCheck = $GLOBALS['module'];
215                         break;
216                 }
217                 $AND = " AND (what='' OR what IS NULL)";
218         } elseif (substr($file, 0, 5) == "what-") {
219                 // This is an admin what file!
220                 $type = "what";
221                 $search = substr($file, 5);
222                 $AND = "";
223                 switch ($ACC_LVL)
224                 {
225                 case "admin":
226                         $modCheck = "admin";
227                         break;
228
229                 case "guest":
230                 case "member":
231                         $modCheck = $GLOBALS['module'];
232                         if (!IS_ADMIN()) {
233                                 $AND = " AND visible='Y' AND locked='N'";
234                         }
235                         break;
236                 }
237                 $dummy = substr($search, 0, -4);
238                 $AND .= " AND action='".GET_ACTION($ACC_LVL, $dummy)."'";
239         } elseif (($ACC_LVL == "sponsor") || ($ACC_LVL == "engine")) {
240                 // Sponsor / engine menu
241                 $type = "what";
242                 $search = $file;
243                 $modCheck = $GLOBALS['module'];
244                 $AND = "";
245         } else {
246                 // Other
247                 $type = "menu";
248                 $search = $file;
249                 $modCheck = $GLOBALS['module'];
250                 $AND = "";
251         }
252         if ((!isset($NAV_DEPTH)) && (!$return)) {
253                 $NAV_DEPTH = 0;
254                 $prefix = "<DIV class=\"you_are_here\">".YOU_ARE_HERE."&nbsp;<STRONG><A class=\"you_are_here\" href=\"".URL."/modules.php?module=".$GLOBALS['module'].$LINK_ADD."\">Home</A></STRONG>";
255         } else {
256                 if (!$return) $NAV_DEPTH++;
257                 $prefix = "";
258         }
259
260         $prefix .= "&nbsp;-&gt;&nbsp;";
261
262         // We need to remove .php and the end
263         if (substr($search, -4, 4) == ".php") {
264                 // Remove the .php
265                 $search = substr($search, 0, -4);
266         } // END - i
267
268         // Get the title from menu
269         $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE %s='%s' ".$AND." LIMIT 1",
270          array($ACC_LVL, $type, $search), __FILE__, __LINE__);
271
272         // Menu found?
273         if (SQL_NUMROWS($result) == 1) {
274                 // Load title
275                 list($ret) = SQL_FETCHROW($result);
276
277                 // Shall we return it?
278                 if ($return) {
279                         // Return title
280                         return $ret;
281                 } elseif (((GET_EXT_VERSION("sql_patches") >= "0.2.3") && ($_CONFIG['youre_here'] == "Y")) || ((IS_ADMIN()) && ($modCheck == "admin"))) {
282                         // Output HTML code
283                         $OUT = $prefix."<STRONG><A class=\"you_are_here\" href=\"".URL."/modules.php?module=".$modCheck."&amp;".$type."=".$search.$LINK_ADD."\">".$ret."</A></STRONG>\n";
284
285                         // Can we close the you-are-here navigation?
286                         //* DEBUG: */ echo __LINE__."*".$type."/".$GLOBALS['what']."*<br />\n";
287                         //* DEBUG: */ die("<pre>".print_r($_CONFIG, true)."</pre>");
288                         if (($type == "what") || (($type == "action") && ((!isset($GLOBALS['what'])) || ($GLOBALS['what'] == "overview")))) {
289                                 //* DEBUG: */ echo __LINE__."+".$type."+<br />\n";
290                                 $OUT .= "</div>\n";
291
292                                 // Extension removeip activated?
293                                 if ((EXT_IS_ACTIVE("removeip")) && (isset($_CONFIG['removeip_'.strtolower($ACC_LVL).'_show'])) && ($_CONFIG['removeip_'.strtolower($ACC_LVL).'_show'] == "Y")) {
294                                         // Add anoymity/privacy infos
295                                         $OUT .= REMOVEIP_ADD_INFOS();
296                                 } // END - if
297
298                                 // Add line-break tag
299                                 $OUT .= "<br />\n";
300                                 $NAV_DEPTH = "0";
301
302                                 // Handle failed logins here if not in guest
303                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):type={$type},action={$GLOBALS['action']},what={$GLOBALS['what']},lvl={$ACC_LVL}<br />\n";
304                                 if ((($type == "what") || ($type == "action") && ((!isset($GLOBALS['what'])) || ($GLOBALS['what'] == "overview") || ($GLOBALS['what'] == $_CONFIG['index_home']))) && ($ACC_LVL != "guest") && ((GET_EXT_VERSION("sql_patches") >= "0.4.7") || (GET_EXT_VERSION("admins") >= "0.7.0"))) {
305                                         // Handle failture
306                                         $OUT .= HANDLE_LOGIN_FAILTURES($ACC_LVL);
307                                 } // END - if
308                         } // END - if
309                 }
310         } // END - if
311
312         // Free result
313         SQL_FREERESULT($result);
314
315         // Return or output HTML code?
316         if ($output) {
317                 // Output HTML code here
318                 OUTPUT_HTML($OUT);
319         } else {
320                 // Return HTML code
321                 return $OUT;
322         }
323 }
324 //
325 function ADD_MENU($MODE, $act, $wht) {
326         global $_CONFIG;
327
328         // Init some variables
329         $main_cnt = 0;
330         $AND = "";
331         $main_action = "";
332         $sub_what = "";
333
334         if (!VALIDATE_MENU_ACTION($MODE, $act, $wht, true)) return CODE_MENU_NOT_VALID;
335
336         // Non-admin shall not see all menus
337         if (!IS_ADMIN()) {
338                 $AND = " AND visible='Y' AND locked='N'";
339         }
340
341         // Load SQL data and add the menu to the output stream...
342         $result_main = SQL_QUERY_ESC("SELECT title, action FROM "._MYSQL_PREFIX."_%s_menu WHERE (what='' OR what IS NULL)".$AND." ORDER BY sort",
343          array($MODE), __FILE__, __LINE__);
344         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
345         if (SQL_NUMROWS($result_main) > 0) {
346                 OUTPUT_HTML("<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"".$MODE."_menu\">");
347                 // There are menus available, so we simply display them... :)
348                 while (list($main_title, $main_action) = SQL_FETCHROW($result_main)) {
349                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
350                         // Init variables
351                         $BLOCK_MODE = false; $act = $main_action;
352
353                         // Prepare content
354                         $content = array(
355                                 'action' => $main_action,
356                                 'title'  => $main_title
357                         );
358
359                         // Load menu header template
360                         LOAD_TEMPLATE($MODE."_menu_title", false, $content);
361
362                         $result_sub = SQL_QUERY_ESC("SELECT title, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s' AND what != '' AND what IS NOT NULL ".$AND." ORDER BY sort",
363                          array($MODE, $main_action), __FILE__, __LINE__);
364                         $ctl = SQL_NUMROWS($result_sub);
365                         if ($ctl > 0) {
366                                 $cnt=0;
367                                 while (list($sub_title, $sub_what) = SQL_FETCHROW($result_sub)) {
368                                         // Init content
369                                         $content = "";
370
371                                         // Full file name for checking menu
372                                         //* DEBUG: */ echo __LINE__.":!!!!".$sub_what."!!!<br />\n";
373                                         $test_inc = sprintf("%sinc/modules/%s/what-%s.php", PATH, $MODE, $sub_what);
374                                         $test = (FILE_READABLE($test_inc));
375                                         if ($test) {
376                                                 if ((!empty($wht)) && (($wht == $sub_what))) {
377                                                         $content = "<STRONG>";
378                                                 }
379
380                                                 // Navigation link
381                                                 $content .= "<A name=\"menu\" class=\"menu_blur\" href=\"".URL."/modules.php?module=".$GLOBALS['module']."&amp;what=".$sub_what.ADD_URL_DATA("")."\" target=\"_self\">";
382                                         } else {
383                                                 $content .= "<I>";
384                                         }
385
386                                         // Menu title
387                                         $content .= $_CONFIG['menu_blur_spacer'].$sub_title;
388
389                                         if ($test) {
390                                                 $content .= "</A>";
391                                         } else {
392                                                 $content .= "</I>";
393                                         }
394
395                                         if ((!empty($wht)) && (($wht == $sub_what))) {
396                                                 $content .= "</STRONG>";
397                                         }
398                                         $wht = $sub_what; $cnt++;
399                                         // Prepare array
400                                         $content =  array(
401                                                 'menu' => $content,
402                                                 'what' => $sub_what
403                                         );
404
405                                         // Add regular menu row or bottom row?
406                                         if ($cnt < $ctl) {
407                                                 LOAD_TEMPLATE($MODE."_menu_row", false, $content);
408                                         } else {
409                                                 LOAD_TEMPLATE($MODE."_menu_bottom", false, $content);
410                                         }
411                                 }
412                         } else {
413                                 // This is a menu block... ;-)
414                                 $BLOCK_MODE = true;
415                                 $INC_BLOCK = sprintf("%sinc/modules/%s/action-%s.php", PATH, $MODE, $main_action);
416                                 if (FILE_READABLE($INC_BLOCK)) {
417                                         // Load include file
418                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("<TR>
419   <TD class=\"".$MODE."_menu_whats\">");
420                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
421                                         include ($INC_BLOCK);
422                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
423                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("  </TD>
424 </TR>");
425                                 }
426                                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
427                         }
428                         $main_cnt++;
429                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
430                         if (SQL_NUMROWS($result_main) > $main_cnt)      OUTPUT_HTML("<TR><TD class=\"".$MODE."_menu_seperator\"></TD></TR>");
431                 }
432
433                 // Free memory
434                 SQL_FREERESULT($result_main);
435
436                 // Close table
437                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
438                 OUTPUT_HTML("</TABLE>");
439         }
440 }
441 // This patched function will reduce many SELECT queries for the specified or current admin login
442 function IS_ADMIN($admin="")
443 {
444         global $cacheArray, $_CONFIG;
445         $ret = false; $passCookie = ""; $valPass = "";
446         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."<br />";
447
448         // If admin login is not given take current from cookies...
449         if ((empty($admin)) && (isSessionVariableSet('admin_login')) && (isSessionVariableSet('admin_md5'))) {
450                 // Get admin login and password from session/cookies
451                 $admin = get_session('admin_login');
452                 $passCookie = get_session('admin_md5');
453         }
454         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."/".$passCookie."<br />";
455
456         // Search in array for entry
457         if (isset($cacheArray['admin_hash'])) {
458                 // Use cached string
459                 $valPass = $cacheArray['admin_hash'];
460         } elseif ((!empty($passCookie)) && (isset($cacheArray['admins']['password'][$admin])) && (!empty($admin))) {
461                 // Count cache hits
462                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
463
464                 // Login data is valid or not?
465                 $valPass = generatePassString($cacheArray['admins']['password'][$admin]);
466
467                 // Cache it away
468                 $cacheArray['admin_hash'] = $valPass;
469         } elseif (!empty($admin)) {
470                 // Search for admin
471                 $result = SQL_QUERY_ESC("SELECT HIGH_PRIORITY password FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
472                  array($admin), __FILE__, __LINE__);
473
474                 // Is he admin?
475                 $passDB = "";
476                 if (SQL_NUMROWS($result) == 1) {
477                         // Admin login was found so let's load password from DB
478                         list($passDB) = SQL_FETCHROW($result);
479
480                         // Temporary cache it
481                         $cacheArray['admins']['password'][$admin] = $passDB;
482
483                         // Generate password hash
484                         $valPass = generatePassString($passDB);
485                 } // END - if
486
487                 // Free memory
488                 SQL_FREERESULT($result);
489         }
490
491         if (!empty($valPass)) {
492                 // Check if password is valid
493                 //* DEBUG: */ print __FUNCTION__."*".$valPass."/".$passCookie."*<br />\n";
494                 $ret = (($valPass == $passCookie) || ((strlen($valPass) == 32) && ($valPass == md5($passCookie))) || (($valPass == "*FAILED*") && (!EXT_IS_ACTIVE("cache"))));
495         }
496
497         // Return result of comparision
498         //* DEBUG: */ if (!$ret) echo __LINE__."OK!<br />";
499         return $ret;
500 }
501 //
502 function ADD_MAX_RECEIVE_LIST($MODE, $default="", $return=false)
503 {
504         global $_POST;
505         $OUT = "";
506         switch ($MODE)
507         {
508         case "guest":
509                 // Guests (in the registration form) are not allowed to select 0 mails per day.
510                 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE value > 0 ORDER BY value", __FILE__, __LINE__);
511                 if (SQL_NUMROWS($result) > 0)
512                 {
513                         $OUT = "";
514                         while (list($value, $comment) = SQL_FETCHROW($result))
515                         {
516                                 $OUT .= "      <OPTION value=\"".$value."\"";
517                                 if ($_POST['max_mails'] == $value) $OUT .= " selected=\"selected\"";
518                                 $OUT .= ">".$value." ".PER_DAY;
519                                 if (!empty($comment)) $OUT .= " (".$comment.")";
520                                 $OUT .= "</OPTION>\n";
521                         }
522                         define('__MAX_RECEIVE_OPTIONS', $OUT);
523
524                         // Free memory
525                         SQL_FREERESULT($result);
526                         $OUT = LOAD_TEMPLATE("guest_receive_table", true);
527                 }
528                  else
529                 {
530                         // Maybe the admin has to setup some maximum values?
531                 }
532                 break;
533
534         case "member":
535                 // Members are allowed to set to zero mails per day (we will change this soon!)
536                 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__);
537                 if (SQL_NUMROWS($result) > 0)
538                 {
539                         $OUT = "";
540                         while (list($value, $comment) = SQL_FETCHROW($result))
541                         {
542                                 $OUT .= "      <OPTION value=\"".$value."\"";
543                                 if ($default == $value) $OUT .= " selected=\"selected\"";
544                                 $OUT .= ">".$value." ".PER_DAY;
545                                 if (!empty($comment)) $OUT .= " (".$comment.")";
546                                 $OUT .= "</OPTION>\n";
547                         }
548                         define('__MAX_RECEIVE_OPTIONS', $OUT);
549                         SQL_FREERESULT($result);
550                         $OUT = LOAD_TEMPLATE("member_receive_table", true);
551                 }
552                  else
553                 {
554                         // Maybe the admin has to setup some maximum values?
555                         $OUT = LOAD_TEMPLATE("admin_settings_saved", true, NO_MAX_VALUES);
556                 }
557                 break;
558         }
559         if ($return)
560         {
561                 // Return generated HTML code
562                 return $OUT;
563         }
564          else
565         {
566                 // Output directly (default)
567                 OUTPUT_HTML($OUT);
568         }
569 }
570 //
571 function SEARCH_EMAIL_USERTAB($email)
572 {
573         $ret = false;
574         $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE email LIKE '{PER}%s{PER}' LIMIT 1", array($email), __FILE__, __LINE__);
575         if (SQL_NUMROWS($result) == 1) $ret = true;
576         SQL_FREERESULT($result);
577         return $ret;
578 }
579 //
580 function WHAT_IS_VALID($act, $wht, $type="guest")
581 {
582         if (IS_ADMIN())
583         {
584                 // Everything is valid to the admin :-)
585                 return true;
586         }
587          else
588         {
589                 $ret = false;
590                 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s' AND what='%s' AND locked='N' LIMIT 1", array($type, $act, $wht), __FILE__, __LINE__);
591                 // Is "what" valid?
592                 if (SQL_NUMROWS($result) == 1) $ret = true;
593                 SQL_FREERESULT($result);
594                 return $ret;
595         }
596 }
597 //
598 function IS_MEMBER()
599 {
600         global $status, $LAST, $cacheArray;
601         if (!is_array($LAST)) $LAST = array();
602         $ret = false;
603
604         // is the cache entry there?
605         if (isset($cacheArray['is_member'])) {
606                 // Then return it
607                 return $cacheArray['is_member'];
608         } // END - if
609
610         // Fix "deleted" cookies first
611         FIX_DELETED_COOKIES(array('userid','u_hash','lifetime'));
612
613         // Are cookies set?
614         if ((!empty($GLOBALS['userid'])) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime')) && (defined('COOKIE_PATH')))
615         {
616                 // Cookies are set with values, but are they valid?
617                 $result = SQL_QUERY_ESC("SELECT password, status, last_module, last_online FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
618                  array($GLOBALS['userid']), __FILE__, __LINE__);
619                 if (SQL_NUMROWS($result) == 1)
620                 {
621                         // Load data from cookies
622                         list($password, $status, $mod, $onl) = SQL_FETCHROW($result);
623
624                         // Validate password by created the difference of it and the secret key
625                         $valPass = generatePassString($password);
626
627                         // Transfer last module and online time
628                         if ((!empty($mod)) && (empty($LAST['module']))) { $LAST['module'] = $mod; $LAST['online'] = $onl; }
629
630                         // So did we now have valid data and an unlocked user?
631                         //* DEBUG: */ echo $valPass."<br />".get_session('u_hash')."<br />";
632                         if (($status == "CONFIRMED") && ($valPass == get_session('u_hash'))) {
633                                 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
634                                 $ret = true;
635                         } else {
636                                 // Maybe got locked etc.
637                                 //* DEBUG: */ echo __LINE__."!!!<br />";
638                                 destroy_user_session();
639
640                                 // Reset userid
641                                 $GLOBALS['userid'] = 0;
642                         }
643                 } else {
644                         // Cookie data is invalid!
645                         //* DEBUG: */ echo __LINE__."***<br />";
646                         destroy_user_session();
647
648                         // Reset userid
649                         $GLOBALS['userid'] = 0;
650                 }
651
652                 // Free memory
653                 SQL_FREERESULT($result);
654         } else {
655                 // Cookie data is invalid!
656                 //* DEBUG: */ echo __LINE__."///<br />";
657                 destroy_user_session();
658
659                 // Reset userid
660                 $GLOBALS['userid'] = 0;
661         }
662
663         // Cache status
664         $cacheArray['is_member'] = $ret;
665
666         // Return status
667         return $ret;
668 }
669 //
670 function UPDATE_LOGIN_DATA () {
671         global $LAST, $_CONFIG;
672         if (!is_array($LAST)) $LAST = array();
673
674         // Recheck if logged in
675         if (!IS_MEMBER()) return false;
676
677         // Secure user ID
678         $GLOBALS['userid'] = bigintval(get_session('userid'));
679
680         // Extract last online time (life) and how long is auto-login valid (time)
681         $newl = time() + bigintval(get_session('lifetime'));
682
683         // Load last module and last online time
684         $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array($GLOBALS['userid']), __FILE__, __LINE__);
685         if (SQL_NUMROWS($result) == 1) {
686                 // Load last module and online time
687                 list($mod, $onl) = SQL_FETCHROW($result);
688                 SQL_FREERESULT($result);
689
690                 // Maybe first login time?
691                 if (empty($mod)) $mod = "login";
692
693                 if (set_session("userid", $GLOBALS['userid'], $newl, COOKIE_PATH) && set_session("u_hash", get_session('u_hash'), $newl, COOKIE_PATH) && set_session("lifetime", bigintval(get_session('lifetime')), $newl, COOKIE_PATH)) {
694                         // This will be displayed on welcome page! :-)
695                         if (empty($LAST['module'])) {
696                                 $LAST['module'] = $mod; $LAST['online'] = $onl;
697                         } // END - if
698
699                         // "what" not set?
700                         if (empty($GLOBALS['what'])) {
701                                 // Fix it to default
702                                 $GLOBALS['what'] = "welcome";
703                                 if (!empty($_CONFIG['index_home'])) $GLOBALS['what'] = $_CONFIG['index_home'];
704                         } // END - if
705
706                         // Update last module / online time
707                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET last_module='%s', last_online=UNIX_TIMESTAMP(), REMOTE_ADDR='%s' WHERE userid=%s LIMIT 1",
708                          array($GLOBALS['what'], GET_REMOTE_ADDR(), $GLOBALS['userid']), __FILE__, __LINE__);
709                 }
710         }  else {
711                 // Destroy session, we cannot update!
712                 destroy_user_session();
713         }
714 }
715 //
716 function VALIDATE_MENU_ACTION ($MODE, $act, $wht, $UPDATE=false)
717 {
718         $ret = false;
719         $ADD = "";
720         if ((!IS_ADMIN()) && ($MODE != "admin")) $ADD = " AND locked='N'";
721         //* DEBUG: */ echo __LINE__.":".$MODE."/".$act."/".$wht."*<br />\n";
722         if (($MODE != "admin") && ($UPDATE))
723         {
724                 // Update guest or member menu
725                 $SQL = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_%s_menu SET counter=counter+1 WHERE action='%s' AND what='%s'".$ADD." LIMIT 1",
726                  array($MODE, $act, $wht), __FILE__, __LINE__, false);
727         }
728          elseif ($wht != "overview")
729         {
730                 // Other actions
731                 $SQL = SQL_QUERY_ESC("SELECT id, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s'".$ADD." ORDER BY action DESC LIMIT 1",
732                  array($MODE, $act), __FILE__, __LINE__, false);
733         }
734          else
735         {
736                 // Admin login overview
737                 $SQL = SQL_QUERY_ESC("SELECT id, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s' AND (what='' OR what IS NULL)".$ADD." ORDER BY action DESC LIMIT 1",
738                  array($MODE, $act), __FILE__, __LINE__, false);
739         }
740
741         // Run SQL command
742         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
743         if ($UPDATE)
744         {
745                 if (SQL_AFFECTEDROWS() == 1) $ret = true;
746                 //* DEBUG: */ debug_print_backtrace();
747         }
748          else
749         {
750                 if (SQL_NUMROWS($result) == 1) {
751                         list($id, $wht2) = SQL_FETCHROW($result);
752                         //* DEBUG: */ echo __LINE__."+".$SQL."+<br />\n";
753                         //* DEBUG: */ echo __LINE__."*".$id."/".$wht."/".$wht2."*<br />\n";
754                         $ret = true;
755                 }
756         }
757
758         // Free memory
759         SQL_FREERESULT($result);
760
761         // Return result
762         return $ret;
763 }
764 //
765 function GET_MOD_DESCR($MODE, $wht, $column="what")
766 {
767         // Fix empty "what"
768         if (empty($wht)) {
769                 $wht = "welcome";
770                 if (!empty($_CONFIG['index_home'])) $wht = $_CONFIG['index_home'];
771         } // END - if
772
773         // Default is not found
774         $ret = "??? (".$wht.")";
775
776         // Look for title
777         $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE %s='%s' LIMIT 1",
778                 array($MODE, $column, $wht), __FILE__, __LINE__);
779
780         // Is there an entry?
781         if (SQL_NUMROWS($result) == 1) {
782                 // Fetch the title
783                 list($ret) = SQL_FETCHROW($result);
784         } // END - if
785
786         // Free result
787         SQL_FREERESULT($result);
788         return $ret;
789 }
790 //
791 function SEND_MODE_MAILS($mod, $modes)
792 {
793         global $_CONFIG, $DATA;
794
795         // Load hash
796         $result_main = SQL_QUERY_ESC("SELECT password FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
797                 array($GLOBALS['userid']), __FILE__, __LINE__);
798         if (SQL_NUMROWS($result_main) == 1) {
799                 // Load hash from database
800                 list($hashDB) = SQL_FETCHROW($result_main);
801
802                 // Extract salt from cookie
803                 $salt = substr(get_session('u_hash'), 0, -40);
804
805                 // Now let's compare passwords
806                 $hash = generatePassString($hashDB);
807                 if (($hash == get_session('u_hash')) || ($_POST['pass1'] == $_POST['pass2'])) {
808                         // Load user's data
809                         $result = SQL_QUERY_ESC("SELECT gender, surname, family, street_nr, country, zip, city, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND password='%s' LIMIT 1",
810                                 array($GLOBALS['userid'], $hashDB), __FILE__, __LINE__);
811                         if (SQL_NUMROWS($result) == 1) {
812                                 // Load the data
813                                 $DATA = SQL_FETCHROW($result);
814
815                                 // Free result
816                                 SQL_FREERESULT($result);
817
818                                 // Translate gender
819                                 $DATA[0] = TRANSLATE_GENDER($DATA[0]);
820
821                                 // Clear/init the content variable
822                                 $content = "";
823                                 $DATA['info'] = "";
824
825                                 switch ($mod)
826                                 {
827                                 case "mydata":
828                                         foreach ($modes as $mode) {
829                                                 switch ($mode)
830                                                 {
831                                                 case "normal": break; // Do not add any special lines
832
833                                                 case "email": // Email was changed!
834                                                         $content = MEMBER_CHANGED_EMAIL.": ".$_POST['old_addy']."\n";
835                                                         break;
836
837                                                 case "pass": // Password was changed
838                                                         $content = MEMBER_CHANGED_PASS."\n";
839                                                         break;
840
841                                                 default:
842                                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
843                                                         $content = MEMBER_UNKNOWN_MODE.": ".$mode."\n\n";
844                                                         break;
845                                                 } // END - switch
846                                         } // END - if
847
848                                         if (EXT_IS_ACTIVE("country")) {
849                                                 // Replace code with description
850                                                 $DATA[4] = COUNTRY_GENERATE_INFO($_POST['country_code']);
851                                         } // END - if
852
853                                         // Load template
854                                         $msg = LOAD_EMAIL_TEMPLATE("member_mydata_notify", $content, $GLOBALS['userid']);
855
856                                         if ($_CONFIG['admin_notify'] == "Y") {
857                                                 // The admin needs to be notified about a profile change
858                                                 $msg_admin = "admin_mydata_notify";
859                                                 $sub_adm   = ADMIN_CHANGED_DATA;
860                                         } else {
861                                                 // No mail to admin
862                                                 $msg_admin = "";
863                                                 $sub_adm   = "";
864                                         }
865
866                                         // Set subject lines
867                                         $sub_mem = MEMBER_CHANGED_DATA;
868
869                                         // Output success message
870                                         $content = "<SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN>";
871                                         break;
872
873                                 default:
874                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
875                                         $content = "<SPAN class=\"member_failed\">".UNKNOWN_MODULE."</SPAN>";
876                                         break;
877                                 } // END - switch
878                         } else {
879                                 // Could not load profile data
880                                 $content = "<SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN>";
881                         }
882                 } else {
883                         // Passwords mismatch
884                         $content = "<SPAN class=\"member_failed\">".MEMBER_PASSWORD_ERROR."</SPAN>";
885                 }
886         } else {
887                 // Could not load profile
888                 $content = "<SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN>";
889         }
890
891         // Send email to user if required
892         if ((!empty($sub_mem)) && (!empty($msg))) {
893                 // Send member mail
894                 SEND_EMAIL($DATA[7], $sub_mem, $msg);
895         } // END - if
896
897         // Send only if no other error has occured
898         if (empty($content)) {
899                 if ((!empty($sub_adm)) && (!empty($msg_admin))) {
900                         // Send admin mail
901                         SEND_ADMIN_NOTIFICATION($sub_adm, $msg_admin, $content, $GLOBALS['userid']);
902                 } elseif ($_CONFIG['admin_notify'] == "Y") {
903                         // Cannot send mails to admin!
904                         $content = CANNOT_SEND_ADMIN_MAILS;
905                 } else {
906                         // No mail to admin
907                         $content = "<SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN>";
908                 }
909         } // END - if
910
911         // Load template
912         LOAD_TEMPLATE("admin_settings_saved", false, $content);
913 }
914 // Update module counter
915 function COUNT_MODULE($mod) {
916         if ($mod != "css") {
917                 // Do count all other modules but not accesses on CSS file css.php!
918                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_mod_reg SET clicks=clicks+1 WHERE module='%s' LIMIT 1",
919                         array($mod), __FILE__, __LINE__);
920         } // END - if
921 }
922 // Get action value from mode (admin/guest/member) and what-value
923 function GET_ACTION ($MODE, &$wht)
924 {
925         global $ret, $_CONFIG;
926         // @DEPRECATED Init status
927         $ret = "";
928
929         //* DEBUG: */ echo __LINE__."=".$MODE."/".$wht."/".$GLOBALS['action']."=<br />";
930         if ((empty($wht)) && ($MODE != "admin")) {
931                 $wht = "welcome";
932                 if (!empty($_CONFIG['index_home'])) $wht = $_CONFIG['index_home'];
933         } // END - if
934
935         if ($MODE == "admin") {
936                 // Action value for admin area
937                 if (!empty($GLOBALS['action'])) {
938                         // Get it directly from URL
939                         return $GLOBALS['action'];
940                 } elseif (($wht == "overview") || (empty($GLOBALS['what']))) {
941                         // Default value for admin area
942                         $ret = "login";
943                 }
944         } elseif (!empty($GLOBALS['action'])) {
945                 // Get it directly from URL
946                 return $GLOBALS['action'];
947         }
948         //* DEBUG: */ echo __LINE__."*".$ret."*<br />\n";
949
950         if (MODULE_HAS_MENU($MODE)) {
951                 // Rewriting modules to menu
952                 switch ($MODE) {
953                         case "index": $MODE = "guest";  break;
954                         case "login": $MODE = "member"; break;
955                 } // END - switch
956
957                 // Guest and member menu is "main" as the default
958                 if (empty($ret)) $ret = "main";
959
960                 // Load from database
961                 $result = SQL_QUERY_ESC("SELECT action FROM "._MYSQL_PREFIX."_%s_menu WHERE what='%s' LIMIT 1",
962                  array($MODE, $wht), __FILE__, __LINE__);
963                 if (SQL_NUMROWS($result) == 1) {
964                         // Load action value and pray that this one is the right you want... ;-)
965                         list($ret) = SQL_FETCHROW($result);
966                 } // END - if
967
968                 // Free memory
969                 SQL_FREERESULT($result);
970         } // END - if
971
972         // Return action value
973         return $ret;
974 }
975
976 // Get category name back
977 function GET_CATEGORY ($cid) {
978         // Default is not found
979         $ret = _CATEGORY_404;
980
981         // Is the category id set?
982         if ($cid == "0") {
983                 // No category
984                 $ret = _CATEGORY_NONE;
985         } elseif ($cid > 0) {
986                 // Lookup the category in database
987                 $result = SQL_QUERY_ESC("SELECT cat FROM "._MYSQL_PREFIX."_cats WHERE id=%s LIMIT 1",
988                         array(bigintval($cid)), __FILE__, __LINE__);
989                 if (SQL_NUMROWS($result) == 1) {
990                         // Category found... :-)
991                         list($ret) = SQL_FETCHROW($result);
992                 } // END - if
993
994                 // Free result
995                 SQL_FREERESULT($result);
996         } // END - if
997
998         // Return result
999         return $ret;
1000 }
1001
1002 // Get a string of "mail title" and price back
1003 function GET_PAYMENT ($pid, $full=false) {
1004         // Default is not found
1005         $ret = _PAYMENT_404;
1006
1007         // Load payment data
1008         $result = SQL_QUERY_ESC("SELECT mail_title, price FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
1009                 array(bigintval($pid)), __FILE__, __LINE__);
1010         if (SQL_NUMROWS($result) == 1) {
1011                 // Payment type found... :-)
1012                 if (!$full) {
1013                         // Return only title
1014                         list($ret) = SQL_FETCHROW($result);
1015                 } else {
1016                         // Return title and price
1017                         list($t, $p) = SQL_FETCHROW($result);
1018                         $ret = $t." / ".TRANSLATE_COMMA($p)." ".POINTS;
1019                 }
1020         }
1021
1022         // Free result
1023         SQL_FREERESULT($result);
1024
1025         // Return result
1026         return $ret;
1027 }
1028
1029 // Get (basicly) the price of given payment id
1030 function GET_PAY_POINTS($pid, $lookFor="price")
1031 {
1032         $ret = "-1";
1033         $result = SQL_QUERY_ESC("SELECT %s FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
1034                 array($lookFor, $pid), __FILE__, __LINE__);
1035         if (SQL_NUMROWS($result) == 1)
1036         {
1037                 // Payment type found... :-)
1038                 list($ret) = SQL_FETCHROW($result);
1039                 SQL_FREERESULT($result);
1040         }
1041         return $ret;
1042 }
1043
1044 // Remove a receiver's ID from $ARRAY and add a link for him to confirm
1045 function REMOVE_RECEIVER (&$ARRAY, $key, $uid, $pool_id, $stats_id="", $bonus=false)
1046 {
1047         $ret = "failed";
1048         if ($uid > 0)
1049         {
1050                 // Remove entry from array
1051                 unset($ARRAY[$key]);
1052
1053                 // Is there already a line for this user available?
1054                 if ($stats_id > 0)
1055                 {
1056                         // Only when we got a real stats ID continue searching for the entry
1057                         $type = "NORMAL"; $rowName = "stats_id";
1058                         if ($bonus) { $type = "BONUS"; $rowName = "bonus_id"; }
1059                         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_links WHERE %s='%s' AND userid=%s AND link_type='%s' LIMIT 1",
1060                          array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1061                         if (SQL_NUMROWS($result) == 0)
1062                         {
1063                                 // No, so we add one!
1064                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_links (%s, userid, link_type) VALUES ('%s','%s','%s')",
1065                                  array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1066                                 $ret = "done";
1067                         }
1068                          else
1069                         {
1070                                 // Already found
1071                                 $ret = "already";
1072                         }
1073
1074                         // Free memory
1075                         SQL_FREERESULT($result);
1076                 }
1077         }
1078         // Return status for sending routine
1079         return $ret;
1080 }
1081
1082 // Calculate sum (default) or count records of given criteria
1083 function GET_TOTAL_DATA ($search, $tableName, $lookFor, $whereStatement="userid", $onlyRows=false, $add="") {
1084         $ret = 0;
1085         //* DEBUG: */ echo $search."/".$tableName."/".$lookFor."/".$whereStatement."/".$add."<br />\n";
1086         if (($onlyRows) || ($lookFor == "userid")) {
1087                 // Count rows
1088                 //* DEBUG: */ echo "COUNT!<br />\n";
1089                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `"._MYSQL_PREFIX."_%s` WHERE `%s`='%s'".$add,
1090                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1091         } else {
1092                 // Add all rows
1093                 //* DEBUG: */ echo "SUM!<br />\n";
1094                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `"._MYSQL_PREFIX."_%s` WHERE `%s`='%s'".$add,
1095                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1096         }
1097
1098         // Load row
1099         list($ret) = SQL_FETCHROW($result);
1100
1101         // Free result
1102         SQL_FREERESULT($result);
1103
1104         // Fix empty values
1105         if ((empty($ret)) && ($lookFor != "counter") && ($lookFor != "id") && ($lookFor != "userid")) {
1106                 // Float number
1107                 $ret = "0.00000";
1108         } elseif ("".$ret."" == "") {
1109                 // Fix empty result
1110                 $ret = "0";
1111         }
1112
1113         // Return value
1114         return $ret;
1115 }
1116 // "Getter fro ref level percents
1117 function GET_REF_LEVEL_PERCENTS ($level) {
1118         global $cacheInstance, $_CONFIG, $cacheArray;
1119
1120         // Default is zero
1121         $per = 0;
1122
1123         // Do we have cache?
1124         if ((isset($cacheArray['ref_depths']['level'])) && (EXT_IS_ACTIVE("cache"))) {
1125                 // First look for level
1126                 $key = array_search($level, $cacheArray['ref_depths']['level']);
1127                 if ($key !== false) {
1128                         // Entry found!
1129                         $per = $cacheArray['ref_depths']['percents'][$key];
1130
1131                         // Count cache hit
1132                         if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1133                 }
1134         } else {
1135                 // Get referal data
1136                 $result_lvl = SQL_QUERY_ESC("SELECT percents FROM "._MYSQL_PREFIX."_refdepths WHERE level='%s' LIMIT 1",
1137                         array(bigintval($level)), __FILE__, __LINE__);
1138
1139                 // Entry found?
1140                 if (SQL_NUMROWS($result_lvl) == 1) {
1141                         // Get percents
1142                         list($per) = SQL_FETCHROW($result_lvl);
1143                 } // END - if
1144
1145                 // Free result
1146                 SQL_FREERESULT($result_lvl);
1147         }
1148
1149         // Return percent
1150         return $per;
1151 }
1152 /**
1153  *
1154  * Dynamic referal system, can also send mails!
1155  *
1156  * subject     = Subject line, write in lower-case letters and underscore is allowed
1157  * uid         = Referal ID wich should receive...
1158  * points      = ... xxx points
1159  * send_notify = shall I send the referal an email or not?
1160  * rid         = inc/modules/guest/what-confirm.php need this (DEPRECATED???)
1161  * locked      = Shall I pay it to normal (false) or locked (true) points ammount?
1162  * add_mode    = Add points only to $uid or also refs? (WARNING! Changing "ref" to "direct"
1163  *               for default value will cause no referal will get points ever!!!)
1164  */
1165 function ADD_POINTS_REFSYSTEM ($subject, $uid, $points, $send_notify=false, $rid="0", $locked=false, $add_mode="ref") {
1166         //* DEBUG: */ print "----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n";
1167         global $DEPTH, $_CONFIG, $DATA, $cacheArray;
1168
1169         // Convert mode to lower-case
1170         $add_mode = strtolower($add_mode);
1171
1172         // When $uid = 0 add points to jackpot
1173         if ($uid == "0") {
1174                 // Add points to jackpot
1175                 ADD_JACKPOT($points);
1176                 return;
1177         } // END - if
1178
1179         // Add booking record if extension is installed
1180         if (EXT_IS_ACTIVE("booking")) {
1181                 // Add record
1182                 ADD_BOOKING_RECORD($subject, $uid, $points, "add");
1183         } // END - if
1184
1185         // Count up referal depth
1186         if (!isset($DEPTH)) {
1187                 // Initialialize referal system
1188                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal system initialized!<br />\n";
1189                 $DEPTH = 0;
1190         } else {
1191                 // Increase referal level
1192                 $DEPTH++;
1193                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal level increased. DEPTH={$DEPTH}<br />\n";
1194         }
1195
1196         // Default is "normal" points
1197         $data = "points";
1198
1199         // Which points, locked or normal?
1200         if ($locked) $data = "locked_points";
1201
1202         // Check user account
1203         $result_user = SQL_QUERY_ESC("SELECT refid, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
1204          array(bigintval($uid)), __FILE__, __LINE__);
1205
1206         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},numRows=".SQL_NUMROWS($result_user).",points={$points}<br />\n";
1207         if (SQL_NUMROWS($result_user) == 1) {
1208                 // This is the user and his ref
1209                 list($ref, $email) = SQL_FETCHROW($result_user);
1210                 $cacheArray['add_uid'][$ref] = $uid;
1211
1212                 // Get percents
1213                 $per = GET_REF_LEVEL_PERCENTS($DEPTH);
1214                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},depth={$DEPTH},per={$per},mode={$add_mode}<br />\n";
1215
1216                 // Some percents found?
1217                 if ($per > 0) {
1218                         // Calculate new points
1219                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},per={$per},depth={$DEPTH}<br />\n";
1220                         $ref_points = $points * $per / 100;
1221
1222                         // Pay refback here if level > 0 and in ref-mode
1223                         if ((EXT_IS_ACTIVE("refback")) && ($DEPTH > 0) && ($per < 100) && ($add_mode == "ref") && (isset($cacheArray['add_uid'][$uid]))) {
1224                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$DEPTH} - BEFORE!<br />\n";
1225                                 $ref_points = ADD_REFBACK_POINTS($cacheArray['add_uid'][$uid], $uid, $points, $ref_points);
1226                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$DEPTH} - AFTER!<br />\n";
1227                         } // END - if
1228
1229                         // Update points...
1230                         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%s AND ref_depth='%s' LIMIT 1",
1231                          array($data, $data, $ref_points, bigintval($uid), bigintval($DEPTH)), __FILE__, __LINE__);
1232                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):data={$data},ref_points={$ref_points},uid={$uid},depth={$DEPTH},mode={$add_mode} - UPDATE! (".SQL_AFFECTEDROWS().")<br />\n";
1233
1234                         // No entry updated?
1235                         if (SQL_AFFECTEDROWS() < 1) {
1236                                 // First ref in this level! :-)
1237                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_points (userid,ref_depth,%s) VALUES (%s,%s,%s)",
1238                                  array($data, bigintval($uid), bigintval($DEPTH), $ref_points), __FILE__, __LINE__);
1239                         } // END - if
1240
1241                         // Update mediadata as well
1242                         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1243                                 // Update database
1244                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $ref_points);
1245                         } // END - if
1246
1247                         // Points updated, maybe I shall send him an email?
1248                         if (($send_notify) && ($ref > 0) && (!$locked)) {
1249                                 // Prepare content
1250                                 $content = array(
1251                                         'percent' => $per,
1252                                         'level'   => bigintval($DEPTH),
1253                                         'points'  => $ref_points,
1254                                         'refid'   => bigintval($ref)
1255                                 );
1256
1257                                 // Load email template
1258                                 $msg = LOAD_EMAIL_TEMPLATE("confirm-referal", $content, bigintval($uid));
1259
1260                                 SEND_EMAIL($email, THANX_REFERRAL_ONE, $msg);
1261                         } elseif (($send_notify) && ($ref == 0) && (!$locked) && ($add_mode == "direct") && (!defined('__POINTS_VALUE'))) {
1262                                 // Direct payment shall be notified about
1263                                 define('__POINTS_VALUE', $ref_points);
1264
1265                                 // Prepare content
1266                                 $content = array(
1267                                         'text'   => REASON_DIRECT_PAYMENT,
1268                                         'points' => TRANSLATE_COMMA($ref_points)
1269                                 );
1270
1271                                 // Load message
1272                                 $msg = LOAD_EMAIL_TEMPLATE("add-points", $content, $uid);
1273
1274                                 // And sent it away
1275                                 SEND_EMAIL($email, SUBJECT_DIRECT_PAYMENT, $msg);
1276                                 if (!isset($_GET['mid'])) LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_POINTS_ADDED);
1277                         }
1278
1279                         // Maybe there's another ref?
1280                         if (($ref > 0) && ($points > 0) && ($ref != $uid) && ($add_mode == "ref")) {
1281                                 // Then let's credit him here...
1282                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref},points={$points} - ADVANCE!<br />\n";
1283                                 ADD_POINTS_REFSYSTEM(sprintf("%s_ref:%s", $subject, $DEPTH), $ref, $points, $send_notify, $ref, $locked);
1284                         } // END - if
1285                 } // END - if
1286         } // END - if
1287
1288         // Free result
1289         SQL_FREERESULT($result_user);
1290         //* DEBUG: */ print "</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />\n";
1291 }
1292 //
1293 function UPDATE_REF_COUNTER ($uid) {
1294         global $cacheArray, $cacheInstance;
1295
1296         // Make it sure referal level zero (member him-/herself) is at least selected
1297         if (empty($cacheArray['ref_level'][$uid])) $cacheArray['ref_level'][$uid] = 1;
1298         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},level={$cacheArray['ref_level'][$uid]}<br />\n";
1299
1300         // Update counter
1301         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refsystem SET counter=counter+1 WHERE userid=%s AND level='%s' LIMIT 1",
1302                 array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1303
1304         // When no entry was updated then we have to create it here
1305         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):updated=".SQL_AFFECTEDROWS()."<br />\n";
1306         if (SQL_AFFECTEDROWS() < 1) {
1307                 // First count!
1308                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_refsystem (userid, level, counter) VALUES (%s,%s,1)",
1309                         array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1310                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid}<br />\n";
1311         } // END - if
1312
1313         // Check for his referal
1314         $result = SQL_QUERY_ESC("SELECT refid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
1315                 array(bigintval($uid)), __FILE__, __LINE__);
1316
1317         // Load refid
1318         list($ref) = SQL_FETCHROW($result);
1319
1320         // Free memory
1321         SQL_FREERESULT($result);
1322         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref}<br />\n";
1323
1324         // When he has a referal...
1325         if (($ref > 0) && ($ref != $uid)) {
1326                 // Move to next referal level and count his counter one up!
1327                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - ADVANCE!<br />\n";
1328                 $cacheArray['ref_level'][$uid]++; UPDATE_REF_COUNTER($ref);
1329         } elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2")) {
1330                 // Remove cache here
1331                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - CACHE!<br />\n";
1332                 REBUILD_CACHE("refsystem", "refsystem");
1333         }
1334
1335         // "Walk" back here
1336         $cacheArray['ref_level'][$uid]--;
1337
1338         // Handle refback here if extension is installed
1339         if (EXT_IS_ACTIVE("refback")) {
1340                 UPDATE_REFBACK_TABLE($uid);
1341         } // END - if
1342 }
1343 // Updates/extends the online list
1344 function UPDATE_ONLINE_LIST($SID, $mod, $act, $wht) {
1345         global $_CONFIG;
1346
1347         // Do not update online list when extension is deactivated
1348         if (!EXT_IS_ACTIVE("online", true)) return;
1349
1350         // Empty session?
1351         if (empty($SID)) {
1352                 // This is invalid here!
1353                 print "Invalid session. Backtrace:<pre>";
1354                 debug_print_backtrace();
1355                 die("</pre>");
1356         } // END - if
1357
1358         // Initialize variables
1359         $uid = 0; $rid = 0; $MEM = "N"; $ADMIN = "N";
1360
1361         // Valid userid?
1362         if ((!empty($GLOBALS['userid'])) && ($GLOBALS['userid'] > 0) && (IS_MEMBER())) {
1363                 // Is valid user
1364                 $uid = bigintval($GLOBALS['userid']);
1365                 $MEM = "Y";
1366         } // END - if
1367
1368         if (IS_ADMIN()) {
1369                 // Is administrator
1370                 $ADMIN = "Y";
1371         } // END - if
1372
1373         if (isSessionVariableSet('refid')) {
1374                 // Check cookie
1375                 if (get_session('refid') > 0) $rid = bigintval($GLOBALS['refid']);
1376         } // END - if
1377
1378         // Now search for the user
1379         $result = SQL_QUERY_ESC("SELECT timestamp FROM "._MYSQL_PREFIX."_online
1380 WHERE sid='%s' LIMIT 1",
1381  array($SID), __FILE__, __LINE__);
1382
1383         // Entry found?
1384         if (SQL_NUMROWS($result) == 1) {
1385                 // Then update it
1386                 SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_online SET
1387 module='%s',
1388 action='%s',
1389 what='%s',
1390 userid=%s,
1391 refid=%s,
1392 is_member='%s',
1393 is_admin='%s',
1394 timestamp=UNIX_TIMESTAMP()
1395 WHERE sid='%s' LIMIT 1",
1396                         array($mod, $act, $wht, $uid, $rid, $MEM, $ADMIN, $SID), __FILE__, __LINE__
1397                 );
1398         } else {
1399                 // No entry does exists so we simply add it!
1400                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_online (module, action, what, userid, refid, is_member, is_admin, timestamp, sid, ip) VALUES ('%s','%s','%s', %s, %s, '%s','%s', UNIX_TIMESTAMP(), '%s','%s')",
1401                         array($mod, $act, $wht, $uid, $rid, $MEM, $ADMIN, $SID, GET_REMOTE_ADDR()), __FILE__, __LINE__
1402                 );
1403         }
1404
1405         // Free result
1406         SQL_FREERESULT($result);
1407
1408         // Purge old entries
1409         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_online WHERE timestamp <= (UNIX_TIMESTAMP() - %s)",
1410          array($_CONFIG['online_timeout']), __FILE__, __LINE__);
1411 }
1412 // OBSOLETE: Sends out mail to all administrators
1413 function SEND_ADMIN_EMAILS ($subj, $msg) {
1414         // Load all admin email addresses
1415         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id ASC", __FILE__, __LINE__);
1416         while (list($email) = SQL_FETCHROW($result)) {
1417                 // Send the email out
1418                 SEND_EMAIL($email, $subj, $msg);
1419         } // END - if
1420
1421         // Free result
1422         SQL_FREERESULT($result);
1423
1424         // Really simple... ;-)
1425 }
1426 // Get ID number from administrator's login name
1427 function GET_ADMIN_ID ($login) {
1428         global $cacheArray, $_CONFIG;
1429         $ret = "-1";
1430         if (!empty($cacheArray['admins']['aid'][$login])) {
1431                 // Check cache
1432                 $ret = $cacheArray['admins']['aid'][$login];
1433
1434                 // Update cache hits
1435                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1436         } elseif (!EXT_IS_ACTIVE("cache")) {
1437                 // Load from database
1438                 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
1439                  array($login), __FILE__, __LINE__);
1440                 if (SQL_NUMROWS($result) == 1) {
1441                         list($ret) = SQL_FETCHROW($result);
1442                 } // END - if
1443
1444                 // Free result
1445                 SQL_FREERESULT($result);
1446         }
1447         return $ret;
1448 }
1449 //
1450 // Get password hash from administrator's login name
1451 function GET_ADMIN_HASH ($aid)
1452 {
1453         global $cacheArray, $_CONFIG;
1454         $ret = "-1";
1455         if (!empty($cacheArray['admins']['password'][$aid])) {
1456                 // Check cache
1457                 $ret = $cacheArray['admins']['password'][$aid];
1458
1459                 // Update cache hits
1460                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1461         } elseif (!EXT_IS_ACTIVE("cache")) {
1462                 // Load from database
1463                 $result = SQL_QUERY_ESC("SELECT password FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1464                  array($aid), __FILE__, __LINE__);
1465                 if (SQL_NUMROWS($result) == 1) {
1466                         // Fetch data
1467                         list($ret) = SQL_FETCHROW($result);
1468
1469                         // Set cache
1470                         $cacheArray['admins']['password'][$aid] = $ret;
1471                 }
1472
1473                 // Free result
1474                 SQL_FREERESULT($result);
1475         }
1476         return $ret;
1477 }
1478 //
1479 function GET_ADMIN_LOGIN ($aid) {
1480         global $cacheArray, $_CONFIG;
1481         $ret = "***";
1482         if (!empty($cacheArray['admins']['login'][$aid])) {
1483                 // Get cache
1484                 $ret = $cacheArray['admins']['login'][$aid];
1485
1486                 // Update cache hits
1487                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1488         } elseif (!EXT_IS_ACTIVE("cache")) {
1489                 // Load from database
1490                 $result = SQL_QUERY_ESC("SELECT login FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1491                         array(bigintval($aid)), __FILE__, __LINE__);
1492                 if (SQL_NUMROWS($result) == 1) {
1493                         // Fetch data
1494                         list($ret) = SQL_FETCHROW($result);
1495
1496                         // Set cache
1497                         $cacheArray['admins']['login'][$aid] = $ret;
1498                 } // END - if
1499
1500                 // Free memory
1501                 SQL_FREERESULT($result);
1502         }
1503         return $ret;
1504 }
1505 // Get email address of admin id
1506 function GET_ADMIN_EMAIL ($aid) {
1507         global $cacheArray, $_CONFIG;
1508
1509         $ret = "***";
1510         if (!empty($cacheArray['admins']['email'][$aid])) {
1511                 // Get cache
1512                 $ret = $cacheArray['admins']['email'][$aid];
1513
1514                 // Update cache hits
1515                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1516         } elseif (!EXT_IS_ACTIVE("cache")) {
1517                 // Load from database
1518                 $result_aid = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1519                         array(bigintval($ret)), __FILE__, __LINE__);
1520                 if (SQL_NUMROWS($result) == 1) {
1521                         // Get data
1522                         list($ret) = SQL_FETCHROW($result_aid);
1523
1524                         // Set cache
1525                         $cacheArray['admins']['email'][$aid] = $ret;
1526                         } // END - if
1527
1528                 // Free result
1529                 SQL_FREERESULT($result_aid);
1530         }
1531
1532         // Return email
1533         return $ret;
1534 }
1535 // Get default ACL  of admin id
1536 function GET_ADMIN_DEFAULT_ACL ($aid) {
1537         global $cacheArray, $_CONFIG;
1538
1539         $ret = "***";
1540         if (!empty($cacheArray['admins']['def_acl'][$aid])) {
1541                 // Use cache
1542                 $ret = $cacheArray['admins']['def_acl'][$aid];
1543
1544                 // Update cache hits
1545                 if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1546         } elseif (!EXT_IS_ACTIVE("cache")) {
1547                 // Load from database
1548                 $result_aid = SQL_QUERY_ESC("SELECT default_acl FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1549                         array(bigintval($aid)), __FILE__, __LINE__);
1550                 if (SQL_NUMROWS($result_aid) == 1) {
1551                         // Fetch data
1552                         list($ret) = SQL_FETCHROW($result_aid);
1553
1554                         // Set cache
1555                         $cacheArray['admins']['def_acl'][$aid] = $ret;
1556                 }
1557
1558                 // Free result
1559                 SQL_FREERESULT($result_aid);
1560         }
1561
1562         // Return email
1563         return $ret;
1564 }
1565 //
1566 function ADD_OPTION_LINES($table, $id, $name, $default="",$special="",$where="") {
1567         $ret = "";
1568         if ($table == "/ARRAY/") {
1569                 // Selection from array
1570                 if (is_array($id) && is_array($name) && sizeof($id) == sizeof($name)) {
1571                         // Both are arrays
1572                         foreach ($id as $idx => $value) {
1573                                 $ret .= "<OPTION value=\"".$value."\"";
1574                                 if ($default == $value) $ret .= " selected checked";
1575                                 $ret .= ">".$name[$idx]."</OPTION>\n";
1576                         } // END - foreach
1577                 } // END - if
1578         } else {
1579                 // Data from database
1580                 $SPEC = ", ".$id;
1581                 if (!empty($special)) $SPEC = ", ".$special;
1582                 $ORDER = $name.$SPEC;
1583                 if ($table == "country") $ORDER = $special;
1584                 $result = SQL_QUERY_ESC("SELECT %s, %s".$SPEC." FROM "._MYSQL_PREFIX."_%s ".$where." ORDER BY %s",
1585                  array($id, $ORDER, $table, $name), __FILE__, __LINE__);
1586                 if (SQL_NUMROWS($result) > 0) {
1587                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1588                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1589                                 if (empty($special)) $add = "";
1590                                 $ret .= "<OPTION value=\"".$value."\"";
1591                                 if ($default == $value) $ret .= " selected checked";
1592                                 if (!empty($add)) $add = " (".$add.")";
1593                                 $ret .= ">".$title.$add."</OPTION>\n";
1594                         } // END - while
1595
1596                         // Free memory
1597                         SQL_FREERESULT($result);
1598                 } else {
1599                         // No data found
1600                         $ret = "<OPTION value=\"x\">".SELECT_NONE."</OPTION>\n";
1601                 }
1602         }
1603
1604         // Return - hopefully - the requested data
1605         return $ret;
1606 }
1607 // Activate exchange (DEPERECATED???)
1608 function activateExchange() {
1609         global $_CONFIG;
1610         $result = SQL_QUERY("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' AND max_mails > 0", __FILE__, __LINE__);
1611         if (SQL_NUMROWS($result) >= $_CONFIG['activate_xchange'])
1612         {
1613                 // Free memory
1614                 SQL_FREERESULT($result);
1615
1616                 // Activate System
1617                 $SQLs = array(
1618                         "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', mem_only='Y' WHERE module='order' LIMIT 1",
1619                         "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='order' OR what='unconfirmed' LIMIT 2",
1620                         "UPDATE "._MYSQL_PREFIX."_config SET activate_xchange='0' WHERE config=0 LIMIT 1"
1621                 );
1622
1623                 // Run SQLs
1624                 foreach ($SQLs as $sql) {
1625                         $result = SQL_QUERY($sql, __FILE__, __LINE__);
1626                 }
1627
1628                 // @TODO Destroy cache
1629         }
1630 }
1631 //
1632 function DELETE_USER_ACCOUNT($uid, $reason)
1633 {
1634         $points = 0;
1635         $result = SQL_QUERY_ESC("SELECT (SUM(p.points) - d.used_points) AS points
1636 FROM "._MYSQL_PREFIX."_user_points AS p
1637 LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
1638 ON p.userid=d.userid
1639 WHERE p.userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1640         if (SQL_NUMROWS($result) == 1) {
1641                 // Save his points to add them to the jackpot
1642                 list($points) = SQL_FETCHROW($result);
1643                 SQL_FREERESULT($result);
1644
1645                 // Delete points entries as well
1646                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_points WHERE userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1647
1648                 // Update mediadata as well
1649                 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1650                         // Update database
1651                         MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1652                 } // END - if
1653
1654                 // Now, when we have all his points adds them do the jackpot!
1655                 ADD_JACKPOT($points);
1656         }
1657
1658         // Delete category selections as well...
1659         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%s",
1660          array(bigintval($uid)), __FILE__, __LINE__);
1661
1662         // Remove from rallye if found
1663         if (EXT_IS_ACTIVE("rallye")) {
1664                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_rallye_users WHERE userid=%s",
1665                  array(bigintval($uid)), __FILE__, __LINE__);
1666         }
1667
1668         // Now a mail to the user and that's all...
1669         $msg = LOAD_EMAIL_TEMPLATE("del-user", array('text' => $reason), $uid);
1670         SEND_EMAIL($uid, ADMIN_DEL_ACCOUNT, $msg);
1671
1672         // Ok, delete the account!
1673         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__);
1674 }
1675 //
1676 function META_DESCRIPTION ($mod, $wht) {
1677         global $_CONFIG, $DEPTH;
1678
1679         // Exclude admin and member's area
1680         if (($mod != "admin") && ($mod != "login")) {
1681                 // Construct dynamic description
1682                 $DESCR = MAIN_TITLE." ".trim($_CONFIG['title_middle'])." ".ADD_DESCR("guest", "what-".$wht, true);
1683
1684                 // Output it directly
1685                 OUTPUT_HTML("<meta name=\"description\" content=\"".$DESCR."\" />");
1686         } // END - if
1687
1688         // Remove depth
1689         unset($DEPTH);
1690 }
1691 //
1692 function ADD_JACKPOT($points) {
1693         $result = SQL_QUERY("SELECT points FROM "._MYSQL_PREFIX."_jackpot WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1694         if (SQL_NUMROWS($result) == 0) {
1695                 // Create line
1696                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_jackpot (ok, points) VALUES ('ok','%s')", array($points), __FILE__, __LINE__);
1697         } else {
1698                 // Free memory
1699                 SQL_FREERESULT($result);
1700
1701                 // Update points
1702                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_jackpot SET points=points+%s WHERE ok='ok' LIMIT 1",
1703                  array($points), __FILE__, __LINE__);
1704         }
1705 }
1706 //
1707 function SUB_JACKPOT($points) {
1708         // First failed
1709         $ret = "-1";
1710
1711         // Get current points
1712         $result = SQL_QUERY("SELECT points FROM "._MYSQL_PREFIX."_jackpot WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1713         if (SQL_NUMROWS($result) == 0) {
1714                 // Create line
1715                 SQL_QUERY("INSERT INTO "._MYSQL_PREFIX."_jackpot (ok, points) VALUES ('ok', 0.00000)", __FILE__, __LINE__);
1716         } else {
1717                 // Read points
1718                 list($jackpot) = SQL_FETCHROW($result);
1719                 if ($jackpot >= $points) {
1720                         // Update points when there are enougth points in jackpot
1721                         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_jackpot SET points=points-%s WHERE ok='ok' LIMIT 1",
1722                                 array($points), __FILE__, __LINE__);
1723                         $ret = $jackpot - $points;
1724                 } // END - if
1725         }
1726
1727         // Free memory
1728         SQL_FREERESULT($result);
1729 }
1730 //
1731 function IS_DEMO() {
1732         return ((EXT_IS_ACTIVE("demo")) && (get_session('admin_login') == "demo"));
1733 }
1734 //
1735 function LOAD_CONFIG ($no="0") {
1736         global $cacheArray;
1737         $CFG_DUMMY = array();
1738
1739         // Check for cache extension, cache-array and if the requested configuration is in cache
1740         if ((is_array($cacheArray)) && (isset($cacheArray['config'][$no])) && (is_array($cacheArray['config'][$no]))) {
1741                 // Load config from cache
1742                 //* DEBUG: */ echo gettype($cacheArray['config'][$no])."<br />\n";
1743                 foreach ($cacheArray['config'][$no] as $key => $value) {
1744                         $CFG_DUMMY[$key] = $value;
1745                 } // END - foreach
1746
1747                 // Count cache hits if exists
1748                 if ((isset($CFG_DUMMY['cache_hits'])) && (EXT_IS_ACTIVE("cache"))) {
1749                         $CFG_DUMMY['cache_hits']++;
1750                 } // END - if
1751         } else {
1752                 // Load config from DB
1753                 $result_config = SQL_QUERY_ESC("SELECT * FROM "._MYSQL_PREFIX."_config WHERE config=%d LIMIT 1",
1754                         array(bigintval($no)), __FILE__, __LINE__);
1755
1756                 // Get config from database
1757                 $CFG_DUMMY = SQL_FETCHARRAY($result_config);
1758
1759                 // Free result
1760                 SQL_FREERESULT($result_config);
1761
1762                 // Remember this config in the array
1763                 $cacheArray['config'][$no] = $CFG_DUMMY;
1764         }
1765
1766         // Return config array
1767         return $CFG_DUMMY;
1768 }
1769 // Gets the matching what name from module
1770 function GET_WHAT($modCheck) {
1771         global $_CONFIG;
1772
1773         $wht = "";
1774         //* DEBUG: */ echo __LINE__."!".$modCheck."!<br />\n";
1775         switch ($modCheck)
1776         {
1777         case "admin":
1778                 $wht = "overview";
1779                 break;
1780
1781         case "login":
1782         case "index":
1783                 $wht = "welcome";
1784                 if (($modCheck == "index") && (!empty($_CONFIG['index_home']))) $wht = $_CONFIG['index_home'];
1785                 break;
1786
1787         default:
1788                 $wht = "";
1789                 break;
1790         }
1791
1792         // Return what value
1793         return $wht;
1794 }
1795 //
1796 function MODULE_HAS_MENU($mod, $forceDb = false) {
1797         global $cacheArray, $_CONFIG;
1798
1799         // All is false by default
1800         $ret = false;
1801         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):mod={$mod},cache=".GET_EXT_VERSION("cache")."<br />\n";
1802         if (GET_EXT_VERSION("cache") >= "0.1.2") {
1803                 // Cache version is okay, so let's check the cache!
1804                 if (isset($cacheArray['modules']['has_menu'][$mod])) {
1805                         // Check module cache and count hit
1806                         $ret = ($cacheArray['modules']['has_menu'][$mod] == "Y");
1807                         if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1808                 } elseif (isset($cacheArray['extensions']['ext_menu'][$mod])) {
1809                         // Check cache and count hit
1810                         $ret = ($cacheArray['extensions']['ext_menu'][$mod] == "Y");
1811                         if (isset($_CONFIG['cache_hits'])) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1812                 }
1813         } elseif ((GET_EXT_VERSION("sql_patches") >= "0.3.6") && ((!EXT_IS_ACTIVE("cache")) || ($forceDb === true))) {
1814                 // Check database for entry
1815                 $result = SQL_QUERY_ESC("SELECT has_menu FROM "._MYSQL_PREFIX."_mod_reg WHERE module='%s' LIMIT 1",
1816                  array($mod), __FILE__, __LINE__);
1817                 if (SQL_NUMROWS($result) == 1) {
1818                         list($has_menu) = SQL_FETCHROW($result);
1819
1820                         // Fake cache... ;-)
1821                         $cacheArray['extensions']['ext_menu'][$mod] = $has_menu;
1822
1823                         // Does it have a menu?
1824                         $ret = ($has_menu == "Y");
1825                 } // END  - if
1826
1827                 // Free memory
1828                 SQL_FREERESULT($result);
1829         } elseif (GET_EXT_VERSION("sql_patches") == "") {
1830                 // No sql_patches installed, so maybe in admin area?
1831                 $ret = ((IS_ADMIN()) && ($mod == "admin")); // Then there is a menu!
1832         }
1833
1834         // Return status
1835         return $ret;
1836 }
1837
1838 // Subtract points from database and mediadata cache
1839 function SUB_POINTS ($subject, $uid, $points) {
1840         // Add points to used points
1841         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET `used_points`=`used_points`+%s WHERE userid=%s LIMIT 1",
1842          array($points, bigintval($uid)), __FILE__, __LINE__);
1843
1844         // Insert booking record
1845         if (EXT_IS_ACTIVE("booking")) {
1846                 // Add record
1847                 ADD_BOOKING_RECORD($subject, $uid, $points, "sub");
1848         } // END - if
1849
1850         // Update mediadata as well
1851         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1852                 // Update database
1853                 MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1854         } // END - if
1855 }
1856
1857 // Update config entries
1858 function UPDATE_CONFIG ($entries, $values, $updateMode="") {
1859         global $CSS;
1860
1861         // Do not update config in CSS mode
1862         if (($CSS == "1") || ($CSS == -1)) {
1863                 return;
1864         } // END - if
1865
1866         // Do we have multiple entries?
1867         if (is_array($entries)) {
1868                 // Walk through all
1869                 $all = "";
1870                 foreach ($entries as $idx => $entry) {
1871                         // Update mode set?
1872                         if (!empty($updateMode)) {
1873                                 // Update entry
1874                                 $all .= sprintf("%s=%s%s%s,", $entry, $entry, $updateMode, (float)$values[$idx]);
1875                         } else {
1876                                 // Check if string or number
1877                                 if (($values[$idx] + 0) === $values[$idx]) {
1878                                         // Number detected
1879                                         $all .= sprintf("%s=%s,", $entry, (float)$values[$idx]);
1880                                 } elseif ($values[$idx] == "UNIX_TIMESTAMP()") {
1881                                         // Function UNIX_TIMESTAMP() detected
1882                                         $all .= sprintf("%s=%s,", $entry, $values[$idx]);
1883                                 } else {
1884                                         // String detected
1885                                         $all .= sprintf("%s='%s',", $entry, SQL_ESCAPE($values[$idx]));
1886                                 }
1887                         }
1888                 } // END - foreach
1889
1890                 // Remove last comma
1891                 $entries = substr($all, 0, -1);
1892         } elseif (!empty($updateMode)) {
1893                 // Update mode set
1894                 $entries .= sprintf("=%s%s%s", $entries, $updateMode, (float)$values);
1895         } else {
1896                 // Regular entry to update
1897                 $entries .= sprintf("='%s'", SQL_ESCAPE($values));
1898         }
1899
1900         // Run database update
1901         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "entries={$entries}");
1902         SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET ".$entries." WHERE config=0 LIMIT 1", __FILE__, __LINE__);
1903
1904         // Get affected rows
1905         $affectedRows = SQL_AFFECTEDROWS();
1906         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):entries={$entries},affectedRows={$affectedRows}<br />\n";
1907
1908         // Rebuild cache
1909         REBUILD_CACHE("config", "config");
1910 }
1911
1912 // Creates a new task for updated extension
1913 function CREATE_EXTENSION_UPDATE_TASK ($admin_id, $subject, $notes) {
1914         // Check if task is not there
1915         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_task_system WHERE subject='%s' LIMIT 1",
1916                 array($subject), __FILE__, __LINE__);
1917         if (SQL_NUMROWS($result) == 0) {
1918                 // Task not created so it's a brand-new extension which we need to register and create a task for!
1919                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_task_system (assigned_admin, userid, status, task_type, subject, text, task_created) VALUES ('%s','0','NEW','EXTENSION_UPDATE','%s','%s', UNIX_TIMESTAMP())",
1920                         array($admin_id, $subject, $notes), __FILE__, __LINE__);
1921         } // END - if
1922
1923         // Free memory
1924         SQL_FREERESULT($result);
1925 }
1926
1927 // Creates a new task for newly installed extension
1928 function CREATE_NEW_EXTENSION_TASK ($admin_id, $subject, $ext) {
1929         // Not installed and do we have created a task for the admin?
1930         $result = SQL_QUERY_ESC("SELECT `id` FROM `"._MYSQL_PREFIX."_task_system` WHERE `subject` LIKE '%s%%' LIMIT 1",
1931                 array($subject), __FILE__, __LINE__);
1932         if ((SQL_NUMROWS($result) == 0) && (GET_EXT_VERSION($ext) == "")) {
1933                 // Template file
1934                 $tpl = sprintf("%stemplates/%s/html/ext/ext_%s.tpl",
1935                         PATH,
1936                         GET_LANGUAGE(),
1937                         $ext
1938                 );
1939
1940                 // Load text for task
1941                 if (FILE_READABLE($tpl)) {
1942                         // Load extension's own text template (HTML!)
1943                         $msg = LOAD_TEMPLATE("ext_".$ext, true);
1944                 } else {
1945                         // Load default message
1946                         $msg = LOAD_TEMPLATE("admin_new_ext", "", 0);
1947                 }
1948
1949                 // Task not created so it's a brand-new extension which we need to register and create a task for!
1950                 $result_insert = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_task_system (assigned_admin, userid, status, task_type, subject, text, task_created)
1951 VALUES (%s,0,'NEW','EXTENSION','%s','%s',UNIX_TIMESTAMP())",
1952                         array(
1953                                 $admin_id,
1954                                 $subject,
1955                                 SQL_ESCAPE($msg),
1956                         ),  __FILE__, __LINE__, true, false
1957                 );
1958         } // END - if
1959
1960         // Free memory
1961         SQL_FREERESULT($result);
1962 }
1963
1964 // Prepares an SQL statement part for HTML mail and/or holiday depency
1965 function PREPARE_SQL_HTML_HOLIDAY ($mode) {
1966         // Exclude no users by default
1967         $MORE = "";
1968
1969         // HTML mail?
1970         if ($mode == "html") $MORE = " AND html='Y'";
1971         if (GET_EXT_VERSION("holiday") >= "0.1.3") {
1972                 // Add something for the holiday extension
1973                 $MORE .= " AND holiday_active='N'";
1974         } // END - if
1975
1976         // Return result
1977         return $MORE;
1978 }
1979
1980 // "Getter" for total available receivers
1981 function GET_TOTAL_RECEIVERS ($mode="normal") {
1982         // Query database
1983         $result_all = SQL_QUERY("SELECT userid
1984 FROM "._MYSQL_PREFIX."_user_data
1985 WHERE status='CONFIRMED' AND receive_mails > 0".PREPARE_SQL_HTML_HOLIDAY($mode),
1986                 __FILE__, __LINE__);
1987
1988         // Get num rows
1989         $numRows = SQL_NUMROWS($result_all);
1990
1991         // Free result
1992         SQL_FREERESULT($result_all);
1993
1994         // Return value
1995         return $numRows;
1996 }
1997
1998 // Returns HTML code with an "<option> list" of all categories
1999 function ADD_CATEGORY_OPTIONS ($mode) {
2000         // Prepare WHERE statement
2001         $whereStatement = " WHERE visible='Y'";
2002         if (IS_ADMIN()) $whereStatement = "";
2003
2004         // Initialize array...
2005         $CATS = array(
2006                 'id'   => array(),
2007                 'name' => array(),
2008                 'uids' => array()
2009         );
2010
2011         // Get categories
2012         $result = SQL_QUERY("SELECT id, cat FROM "._MYSQL_PREFIX."_cats".$whereStatement." ORDER BY sort", __FILE__, __LINE__);
2013         if (SQL_NUMROWS($result) > 0) {
2014                 // ... and begin loading stuff
2015                 while (list($id, $cat) = SQL_FETCHROW($result)) {
2016                         // Transfer some data
2017                         $CATS['id'][]   = $id;
2018                         $CATS['name'][] = $cat;
2019
2020                         // Check which users are in this category
2021                         $result_uids = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_cats WHERE cat_id=%s",
2022                          array(bigintval($id)), __FILE__, __LINE__);
2023
2024                         // Start adding all
2025                         $uid_cnt = 0;
2026                         while (list($ucat) = SQL_FETCHROW($result_uids)) {
2027                                 $result_ver = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data
2028 WHERE userid=%s AND status='CONFIRMED' AND receive_mails > 0".PREPARE_SQL_HTML_HOLIDAY($mode)." LIMIT 1",
2029  array(bigintval($ucat)), __FILE__, __LINE__);
2030                                 $uid_cnt += SQL_NUMROWS($result_ver);
2031
2032                                 // Free memory
2033                                 SQL_FREERESULT($result_ver);
2034                         } // END - while
2035
2036                         // Free memory
2037                         SQL_FREERESULT($result_uids);
2038
2039                         // Add counter
2040                         $CATS['uids'][] = $uid_cnt;
2041                 }
2042
2043                 // Free memory
2044                 SQL_FREERESULT($result);
2045
2046                 // Generate options
2047                 $OUT = "";
2048                 foreach ($CATS['id'] as $key => $value) {
2049                         if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
2050                         $OUT .= "      <OPTION value=\"".$value."\">".$CATS['name'][$key]." (".$CATS['uids'][$key]." ".USER_IN_CAT.")</OPTION>\n";
2051                 }
2052         } else {
2053                 // No cateogries are defined yet
2054                 $OUT = "<option class=\"member_failed\">".MEMBER_NO_CATS."</option>\n";
2055         }
2056
2057         // Return HTML code
2058         return $OUT;
2059 }
2060
2061 // Add bonus mail to queue
2062 function ADD_BONUS_MAIL_TO_QUEUE ($subject, $text, $receiverList, $points, $seconds, $url, $cat, $mode="normal", $receiver=0) {
2063         // Is admin or bonus extension there?
2064         if (!IS_ADMIN()) {
2065                 // Abort here
2066                 return false;
2067         } elseif (!EXT_IS_ACTIVE("bonus")) {
2068                 // Abort here
2069                 return false;
2070         }
2071
2072         // Calculcate target sent
2073         $target = SELECTION_COUNT(explode(";", $receiverList));
2074
2075         // Receiver is zero?
2076         if ($receiver == 0) {
2077                 // Then auto-fix it
2078                 $receiver = $target;
2079         } // END - if
2080
2081         // HTML extension active?
2082         if (EXT_IS_ACTIVE("html")) {
2083                 // No HTML by default
2084                 $HTML = "N";
2085
2086                 // HTML mode?
2087                 if ($mode == "html") $HTML = "Y";
2088
2089                 // Add HTML mail
2090                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_bonus
2091 (subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, html_msg)
2092 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s','%s')",
2093  array(
2094         $subject,
2095         $text,
2096         $receiverList,
2097         $points,
2098         $seconds,
2099         $url,
2100         $cat,
2101         $target,
2102         bigintval($receiver),
2103         $HTML
2104 ), __FILE__, __LINE__);
2105         } else {
2106                 // Add regular mail
2107                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_bonus
2108 (subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent)
2109 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s')",
2110  array(
2111         $subject,
2112         $text,
2113         $receiverList,
2114         $points,
2115         $seconds,
2116         $url,
2117         $cat,
2118         $target,
2119         bigintval($receiver),
2120 ), __FILE__, __LINE__);
2121         }
2122 }
2123
2124 // Generate a receiver list for given category and maximum receivers
2125 function GENERATE_RECEIVER_LIST ($cat, $receiver, $mode="") {
2126         global $_CONFIG;
2127
2128         // Init variables
2129         $CAT_TABS     = "%s";
2130         $CAT_WHERE    = "";
2131         $receiverList = "";
2132
2133         // Secure data
2134         $cat      = bigintval($cat);
2135         $receiver = bigintval($receiver);
2136
2137         // Is the receiver zero and mode set?
2138         if (($receiver == 0) && (!empty($mode))) {
2139                 // Auto-fix receiver maximum
2140                 $receiver = GET_TOTAL_RECEIVERS($mode);
2141         } // END - if
2142
2143         // Category given?
2144         if ($cat > 0) {
2145                 // Select category
2146                 $CAT_TABS  = "LEFT JOIN "._MYSQL_PREFIX."_user_cats AS c ON d.userid=c.userid";
2147                 $CAT_WHERE = " AND c.cat_id=%s";
2148         } // END - if
2149
2150         // Exclude users in holiday?
2151         if (GET_EXT_VERSION("holiday") >= "0.1.3") {
2152                 // Add something for the holiday extension
2153                 $CAT_WHERE .= " AND d.holiday_active='N'";
2154         } // END - if
2155
2156         if ((EXT_IS_ACTIVE("html_mail")) && ($mode == "html")) {
2157                 // Only include HTML receivers
2158                 $result = SQL_QUERY_ESC("SELECT d.userid FROM "._MYSQL_PREFIX."_user_data AS d ".$CAT_TABS." WHERE d.status='CONFIRMED' AND d.html='Y'".$CAT_WHERE." ORDER BY d.%s %s LIMIT %s",
2159                  array($cat, $_CONFIG['order_select'], $_CONFIG['order_mode'], $receiver), __FILE__, __LINE__);
2160         } else {
2161                 // Include all
2162                 $result = SQL_QUERY_ESC("SELECT d.userid FROM "._MYSQL_PREFIX."_user_data AS d ".$CAT_TABS." WHERE d.status='CONFIRMED'".$CAT_WHERE." ORDER BY d.%s %s LIMIT %s",
2163                  array($cat, $_CONFIG['order_select'], $_CONFIG['order_mode'], $receiver), __FILE__, __LINE__);
2164         }
2165
2166         // Entries found?
2167         if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
2168                 // Load all entries
2169                 while (list($REC) = SQL_FETCHROW($result)) {
2170                         // Add receiver when not empty
2171                         if (!empty($REC)) $receiverList .= $REC.";";
2172                 } // END - while
2173
2174                 // Free memory
2175                 SQL_FREERESULT($result);
2176
2177                 // Remove trailing semicolon
2178                 $receiverList = substr($receiverList, 0, -1);
2179         } // END - if
2180
2181         // Return list
2182         return $receiverList;
2183 }
2184
2185 // Get timestamp for given stats type and data
2186 function USER_STATS_GET_TIMESTAMP ($type, $data, $uid = 0) {
2187         // Default timestamp is zero
2188         $stamp = 0;
2189
2190         // User id set?
2191         if ((isset($GLOBALS['userid'])) && ($uid == 0)) {
2192                 $uid = $GLOBALS['userid'];
2193         } // END - if
2194
2195         // Is the extension installed and updated?
2196         if ((!EXT_IS_ACTIVE("sql_patches")) || (EXT_VERSION_IS_OLDER("sql_patches", "0.5.6"))) {
2197                 // Return zero here
2198                 return $stamp;
2199         } // END - if
2200
2201         // Try to find the entry
2202         $result = SQL_QUERY_ESC("SELECT UNIX_TIMESTAMP(`inserted`) AS `stamp`
2203 FROM "._MYSQL_PREFIX."_user_stats_data
2204 WHERE userid=%s AND stats_type='%s' AND stats_data='%s'
2205 LIMIT 1",
2206                 array(bigintval($uid), $type, $data), __FILE__, __LINE__);
2207
2208         // Is the entry there?
2209         if (SQL_NUMROWS($result) == 1) {
2210                 // Get this stamp
2211                 list($stamp) = SQL_FETCHROW($result);
2212         } // END - if
2213
2214         // Free result
2215         SQL_FREERESULT($result);
2216
2217         // Return stamp
2218         return $stamp;
2219 }
2220
2221 // Inserts user stats
2222 function USER_STATS_INSERT_RECORD ($uid, $type, $data) {
2223         // Is the extension installed and updated?
2224         if ((!EXT_IS_ACTIVE("sql_patches")) || (EXT_VERSION_IS_OLDER("sql_patches", "0.5.6"))) {
2225                 // Return zero here
2226                 return false;
2227         } // END - if
2228
2229         // Does it exist?
2230         if ((!USER_STATS_GET_TIMESTAMP($type, $data, $uid)) && (!is_array($data))) {
2231                 // Then insert it!
2232                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_stats_data (`userid`,`stats_type`,`stats_data`) VALUES (%s,'%s','%s')",
2233                         array(bigintval($uid), $type, $data), __FILE__, __LINE__);
2234         } elseif (is_array($data)) {
2235                 // Invalid data!
2236                 DEBUG_LOG(__FUNCTION__, __LINE__, " uid={$uid},type={$type},data={".gettype($data).": Invalid statistics data type!");
2237         }
2238 }
2239
2240 // "Getter" for array for user refs and points in given level
2241 function GET_USER_REF_POINTS ($uid, $level) {
2242         global $_CONFIG;
2243
2244         //* DEBUG: */ print "----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n";
2245         // Default is no refs and no nickname
2246         $ADD = "";
2247         $refs = array();
2248
2249         // Do we have nickname extension installed?
2250         if (EXT_IS_ACTIVE("nickname")) {
2251                 $ADD = ", ud.nickname";
2252         } // END - if
2253
2254         // Get refs from database
2255         $result = SQL_QUERY_ESC("SELECT ur.id, ur.refid, ud.status, ud.last_online, ud.mails_confirmed, ud.emails_received".$ADD."
2256 FROM "._MYSQL_PREFIX."_user_refs AS ur
2257 LEFT JOIN "._MYSQL_PREFIX."_user_points AS up
2258 ON ur.refid=up.userid AND ur.level=0
2259 LEFT JOIN "._MYSQL_PREFIX."_user_data AS ud
2260 ON ur.refid=ud.userid
2261 WHERE ur.userid=%s AND ur.level=%s
2262 ORDER BY ur.refid ASC",
2263                 array(bigintval($uid), bigintval($level)), __FILE__, __LINE__);
2264
2265         // Are there some entries?
2266         if (SQL_NUMROWS($result) > 0) {
2267                 // Fetch all entries
2268                 while ($row = SQL_FETCHARRAY($result)) {
2269                         // Get total points of this user
2270                         $row['points'] = GET_TOTAL_DATA($row['refid'], "user_points", "points") - GET_TOTAL_DATA($row['refid'], "user_data", "used_points");
2271
2272                         // Get unconfirmed mails
2273                         $row['unconfirmed']  = GET_TOTAL_DATA($row['refid'], "user_links", "id", "userid", true);
2274
2275                         // Init clickrate with zero
2276                         $row['clickrate'] = 0;
2277
2278                         // Is at least one mail received?
2279                         if ($row['emails_received'] > 0) {
2280                                 // Calculate clickrate
2281                                 $row['clickrate'] = ($row['mails_confirmed'] / $row['emails_received'] * 100);
2282                         } // END - if
2283
2284                         // Activity is "active" by default because if autopurge is not installed
2285                         $row['activity'] = MEMBER_ACTIVITY_ACTIVE;
2286
2287                         // Is autopurge installed and the user inactive?
2288                         if ((EXT_IS_ACTIVE("autopurge")) && ((time() - $_CONFIG['ap_inactive_since']) >= $row['last_online']))  {
2289                                 // Inactive user!
2290                                 $row['activity'] = MEMBER_ACTIVITY_INACTIVE;
2291                         } // END - if
2292
2293                         // Remove some entries
2294                         unset($row['mails_confirmed']);
2295                         unset($row['emails_received']);
2296                         unset($row['last_online']);
2297
2298                         // Add row
2299                         $refs[$row['id']] = $row;
2300                 } // END - while
2301         } // END - if
2302
2303         // Free result
2304         SQL_FREERESULT($result);
2305
2306         // Return result
2307         //* DEBUG: */ print "</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />\n";
2308         return $refs;
2309 }
2310
2311 // Recuced the amount of received emails for the receipients for given email
2312 function REDUCT_RECIPIENT_RECEIVED_MAILS ($column, $id, $count) {
2313         // Search for mail in database
2314         $result = SQL_QUERY_ESC("SELECT `userid` FROM `"._MYSQL_PREFIX."_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
2315                 array($column, bigintval($id), $count), __FILE__, __LINE__);
2316
2317         // Are there entries?
2318         if (SQL_NUMROWS($result) > 0) {
2319                 // Now load all userids for one big query!
2320                 $UIDs = array();
2321                 while (list($uid) = SQL_FETCHROW($result)) {
2322                         $UIDs[$uid] = $uid;
2323                 } // END - while
2324
2325                 // Now update all user accounts
2326                 SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
2327                         array(implode(",", $UIDs), count($UIDs)), __FILE__, __LINE__);
2328         } // END - if
2329
2330         // Free result
2331         SQL_FREERESULT($result);
2332 }
2333
2334 // [EOF]
2335 ?>