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