02d70573b5b9732b5cf362ac2a7861e78713a5a8
[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") {
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         // Is the module found?
136         if ($found) {
137                 // Check returned values against current access permissions
138                 //
139                 //  Admin access            ----- Guest access -----           --- Guest   or   member? ---
140                 if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_MEMBER())))) {
141                         // If you are admin you are welcome for everything!
142                         $ret = "done";
143                 } elseif ($locked == "Y") {
144                         // Module is locked
145                         $ret = "locked";
146                 } elseif (($mem == "Y") && (!IS_MEMBER())) {
147                         // You have to login first!
148                         $ret = "mem_only";
149                 } elseif (($admin == "Y") && (!IS_ADMIN())) {
150                         // Only the Admin is allowed to enter this module!
151                         $ret = "admin_only";
152                 }
153         } // END - if
154
155         // Still no luck or not found?
156         if (($ret == "cache_miss") || (!$found)) {
157                 //              ----- Legacy module -----                                   ---- Module in base folder  ----                       --- Module with extension's name ---
158                 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)))) {
159                         // Data is missing so we add it
160                         if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
161                                 // Since 0.3.6 we have a has_menu column, this took me a half hour
162                                 // to find a loop here... *sigh*
163                                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
164 (module, locked, hidden, mem_only, admin_only, has_menu) VALUES
165 ('%s','Y','N','N','N','N')", array($mod_chk), __FILE__, __LINE__);
166                         } else {
167                                 // Wrong/missing sql_patches!
168                                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
169 (module, locked, hidden, mem_only, admin_only) VALUES
170 ('%s','Y','N','N','N')", array($mod_chk), __FILE__, __LINE__);
171                         }
172
173                         // Everthing is fine?
174                         if (SQL_AFFECTEDROWS() < 1) {
175                                 // Something bad happend!
176                                 return "major";
177                         } // END - if
178
179                         // Destroy cache here
180                         REBUILD_CACHE("mod_reg", "modreg");
181
182                         // And reload data
183                         $ret = CHECK_MODULE($mod_chk);
184                 } else {
185                         // Module not found we don't add it to the database
186                         $ret = "404";
187                 }
188         } elseif (!$found) {
189                 // Problem with module detected
190                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Problem in module %s detected. ret=%s, locked=%s, hidden=%s, mem=%s, admin=%s",
191                         $mod,
192                         $ret,
193                         $locked,
194                         $hidden,
195                         $mem,
196                         $admin
197                 ));
198         }
199
200         // Return the value
201         return $ret;
202 }
203
204 // Add menu description pending on given file name (without path!)
205 function ADD_DESCR($ACC_LVL, $file, $return = false, $output = true) {
206         global $NAV_DEPTH, $_CONFIG;
207         // Use only filename of the file ;)
208         $file = basename($file);
209
210         // Init variables
211         $LINK_ADD = ""; $OUT = ""; $AND = "";
212
213         // First we have to do some analysis...
214         if (substr($file, 0, 7) == "action-") {
215                 // This is an action file!
216                 $type = "action";
217                 $search = substr($file, 7);
218                 switch ($ACC_LVL)
219                 {
220                 case "admin":
221                         $modCheck = "admin";
222                         break;
223
224                 case "sponsor":
225                 case "guest":
226                 case "member":
227                         $modCheck = $GLOBALS['module'];
228                         break;
229                 }
230                 $AND = " AND (what='' OR what IS NULL)";
231         } elseif (substr($file, 0, 5) == "what-") {
232                 // This is an admin what file!
233                 $type = "what";
234                 $search = substr($file, 5);
235                 $AND = "";
236                 switch ($ACC_LVL)
237                 {
238                 case "admin":
239                         $modCheck = "admin";
240                         break;
241
242                 case "guest":
243                 case "member":
244                         $modCheck = $GLOBALS['module'];
245                         if (!IS_ADMIN()) {
246                                 $AND = " AND visible='Y' AND locked='N'";
247                         }
248                         break;
249                 }
250                 $dummy = substr($search, 0, -4);
251                 $AND .= " AND action='".GET_ACTION($ACC_LVL, $dummy)."'";
252         } elseif (($ACC_LVL == "sponsor") || ($ACC_LVL == "engine")) {
253                 // Sponsor / engine menu
254                 $type = "what";
255                 $search = $file;
256                 $modCheck = $GLOBALS['module'];
257                 $AND = "";
258         } else {
259                 // Other
260                 $type = "menu";
261                 $search = $file;
262                 $modCheck = $GLOBALS['module'];
263                 $AND = "";
264         }
265         if ((!isset($NAV_DEPTH)) && (!$return)) {
266                 $NAV_DEPTH = 0;
267                 $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>";
268         } else {
269                 if (!$return) $NAV_DEPTH++;
270                 $prefix = "";
271         }
272
273         $prefix .= "&nbsp;-&gt;&nbsp;";
274
275         // We need to remove .php and the end
276         if (substr($search, -4, 4) == ".php") {
277                 // Remove the .php
278                 $search = substr($search, 0, -4);
279         } // END - i
280
281         // Get the title from menu
282         $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE %s='%s' ".$AND." LIMIT 1",
283                 array($ACC_LVL, $type, $search), __FILE__, __LINE__);
284
285         // Menu found?
286         if (SQL_NUMROWS($result) == 1) {
287                 // Load title
288                 list($ret) = SQL_FETCHROW($result);
289
290                 // Shall we return it?
291                 if ($return) {
292                         // Return title
293                         return $ret;
294                 } elseif (((GET_EXT_VERSION("sql_patches") >= "0.2.3") && (getConfig('youre_here') == "Y")) || ((IS_ADMIN()) && ($modCheck == "admin"))) {
295                         // Output HTML code
296                         $OUT = $prefix."<STRONG><A class=\"you_are_here\" href=\"".URL."/modules.php?module=".$modCheck."&amp;".$type."=".$search.$LINK_ADD."\">".$ret."</A></STRONG>\n";
297
298                         // Can we close the you-are-here navigation?
299                         //* DEBUG: */ echo __LINE__."*".$type."/".$GLOBALS['what']."*<br />\n";
300                         //* DEBUG: */ die("<pre>".print_r($_CONFIG, true)."</pre>");
301                         if (($type == "what") || (($type == "action") && ((!isset($GLOBALS['what'])) || ($GLOBALS['what'] == "overview")))) {
302                                 //* DEBUG: */ echo __LINE__."+".$type."+<br />\n";
303                                 // Add closing div and br-tag
304                                 $OUT .= "</div><br />\n";
305                                 $NAV_DEPTH = "0";
306
307                                 // Run the filter chain
308                                 $ret = RUN_FILTER('post_youhere_line', array('access_level' => $ACC_LVL, 'type' => $type, 'content' => ""));
309                                 $OUT .= $ret['content'];
310                         } // END - if
311                 }
312         } // END - if
313
314         // Free result
315         SQL_FREERESULT($result);
316
317         // Return or output HTML code?
318         if ($output) {
319                 // Output HTML code here
320                 OUTPUT_HTML($OUT);
321         } else {
322                 // Return HTML code
323                 return $OUT;
324         }
325 }
326 //
327 function ADD_MENU($MODE, $act, $wht) {
328         global $_CONFIG;
329
330         // Init some variables
331         $main_cnt = 0;
332         $AND = "";
333         $main_action = "";
334         $sub_what = "";
335
336         if (!VALIDATE_MENU_ACTION($MODE, $act, $wht, true)) return CODE_MENU_NOT_VALID;
337
338         // Non-admin shall not see all menus
339         if (!IS_ADMIN()) {
340                 $AND = " AND visible='Y' AND locked='N'";
341         }
342
343         // Load SQL data and add the menu to the output stream...
344         $result_main = SQL_QUERY_ESC("SELECT title, action FROM "._MYSQL_PREFIX."_%s_menu WHERE (what='' OR what IS NULL)".$AND." ORDER BY sort",
345          array($MODE), __FILE__, __LINE__);
346         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
347         if (SQL_NUMROWS($result_main) > 0) {
348                 OUTPUT_HTML("<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"".$MODE."_menu\">");
349                 // There are menus available, so we simply display them... :)
350                 while (list($main_title, $main_action) = SQL_FETCHROW($result_main)) {
351                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
352                         // Init variables
353                         $BLOCK_MODE = false; $act = $main_action;
354
355                         // Prepare content
356                         $content = array(
357                                 'action' => $main_action,
358                                 'title'  => $main_title
359                         );
360
361                         // Load menu header template
362                         LOAD_TEMPLATE($MODE."_menu_title", false, $content);
363
364                         $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",
365                          array($MODE, $main_action), __FILE__, __LINE__);
366                         $ctl = SQL_NUMROWS($result_sub);
367                         if ($ctl > 0) {
368                                 $cnt=0;
369                                 while (list($sub_title, $sub_what) = SQL_FETCHROW($result_sub)) {
370                                         // Init content
371                                         $content = "";
372
373                                         // Full file name for checking menu
374                                         //* DEBUG: */ echo __LINE__.":!!!!".$sub_what."!!!<br />\n";
375                                         $test_inc = sprintf("%sinc/modules/%s/what-%s.php", PATH, $MODE, $sub_what);
376                                         $test = (FILE_READABLE($test_inc));
377                                         if ($test) {
378                                                 if ((!empty($wht)) && (($wht == $sub_what))) {
379                                                         $content = "<STRONG>";
380                                                 }
381
382                                                 // Navigation link
383                                                 $content .= "<A name=\"menu\" class=\"menu_blur\" href=\"".URL."/modules.php?module=".$GLOBALS['module']."&amp;what=".$sub_what.ADD_URL_DATA("")."\" target=\"_self\">";
384                                         } else {
385                                                 $content .= "<I>";
386                                         }
387
388                                         // Menu title
389                                         $content .= getConfig('menu_blur_spacer') . $sub_title;
390
391                                         if ($test) {
392                                                 $content .= "</A>";
393                                         } else {
394                                                 $content .= "</I>";
395                                         }
396
397                                         if ((!empty($wht)) && (($wht == $sub_what))) {
398                                                 $content .= "</STRONG>";
399                                         }
400                                         $wht = $sub_what; $cnt++;
401                                         // Prepare array
402                                         $content =  array(
403                                                 'menu' => $content,
404                                                 'what' => $sub_what
405                                         );
406
407                                         // Add regular menu row or bottom row?
408                                         if ($cnt < $ctl) {
409                                                 LOAD_TEMPLATE($MODE."_menu_row", false, $content);
410                                         } else {
411                                                 LOAD_TEMPLATE($MODE."_menu_bottom", false, $content);
412                                         }
413                                 }
414                         } else {
415                                 // This is a menu block... ;-)
416                                 $BLOCK_MODE = true;
417                                 $INC_BLOCK = sprintf("%sinc/modules/%s/action-%s.php", PATH, $MODE, $main_action);
418                                 if (FILE_READABLE($INC_BLOCK)) {
419                                         // Load include file
420                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("<TR>
421   <TD class=\"".$MODE."_menu_whats\">");
422                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
423                                         include ($INC_BLOCK);
424                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
425                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("  </TD>
426 </TR>");
427                                 }
428                                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
429                         }
430                         $main_cnt++;
431                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
432                         if (SQL_NUMROWS($result_main) > $main_cnt)      OUTPUT_HTML("<TR><TD class=\"".$MODE."_menu_seperator\"></TD></TR>");
433                 }
434
435                 // Free memory
436                 SQL_FREERESULT($result_main);
437
438                 // Close table
439                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
440                 OUTPUT_HTML("</TABLE>");
441         }
442 }
443 // This patched function will reduce many SELECT queries for the specified or current admin login
444 function IS_ADMIN($admin="")
445 {
446         global $cacheArray, $_CONFIG;
447         $ret = false; $passCookie = ""; $valPass = "";
448         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."<br />";
449
450         // If admin login is not given take current from cookies...
451         if ((empty($admin)) && (isSessionVariableSet('admin_login')) && (isSessionVariableSet('admin_md5'))) {
452                 // Get admin login and password from session/cookies
453                 $admin = get_session('admin_login');
454                 $passCookie = get_session('admin_md5');
455         }
456         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."/".$passCookie."<br />";
457
458         // Search in array for entry
459         if (isset($cacheArray['admin_hash'])) {
460                 // Use cached string
461                 $valPass = $cacheArray['admin_hash'];
462         } elseif ((!empty($passCookie)) && (isset($cacheArray['admins']['password'][$admin])) && (!empty($admin))) {
463                 // Count cache hits
464                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
465
466                 // Login data is valid or not?
467                 $valPass = generatePassString($cacheArray['admins']['password'][$admin]);
468
469                 // Cache it away
470                 $cacheArray['admin_hash'] = $valPass;
471         } elseif ((!empty($admin)) && ((!EXT_IS_ACTIVE("cache"))) || (!isset($cacheArray['admins']['password'][$admin]))) {
472                 // Search for admin
473                 $result = SQL_QUERY_ESC("SELECT HIGH_PRIORITY password FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
474                         array($admin), __FILE__, __LINE__);
475
476                 // Is he admin?
477                 $passDB = "";
478                 if (SQL_NUMROWS($result) == 1) {
479                         // Admin login was found so let's load password from DB
480                         list($passDB) = SQL_FETCHROW($result);
481
482                         // Temporary cache it
483                         $cacheArray['admins']['password'][$admin] = $passDB;
484
485                         // Generate password hash
486                         $valPass = generatePassString($passDB);
487                 } // END - if
488
489                 // Free memory
490                 SQL_FREERESULT($result);
491         }
492
493         if (!empty($valPass)) {
494                 // Check if password is valid
495                 //* DEBUG: */ print __FUNCTION__."*".$valPass."/".$passCookie."*<br />\n";
496                 $ret = (($valPass == $passCookie) || ((strlen($valPass) == 32) && ($valPass == md5($passCookie))) || (($valPass == "*FAILED*") && (!EXT_IS_ACTIVE("cache"))));
497         }
498
499         // Return result of comparision
500         //* DEBUG: */ if (!$ret) echo __LINE__."OK!<br />";
501         return $ret;
502 }
503 //
504 function ADD_MAX_RECEIVE_LIST($MODE, $default="", $return=false)
505 {
506         global $_POST;
507         $OUT = "";
508         switch ($MODE)
509         {
510         case "guest":
511                 // Guests (in the registration form) are not allowed to select 0 mails per day.
512                 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE value > 0 ORDER BY value", __FILE__, __LINE__);
513                 if (SQL_NUMROWS($result) > 0)
514                 {
515                         $OUT = "";
516                         while (list($value, $comment) = SQL_FETCHROW($result))
517                         {
518                                 $OUT .= "      <OPTION value=\"".$value."\"";
519                                 if ($_POST['max_mails'] == $value) $OUT .= " selected=\"selected\"";
520                                 $OUT .= ">".$value." ".PER_DAY;
521                                 if (!empty($comment)) $OUT .= " (".$comment.")";
522                                 $OUT .= "</OPTION>\n";
523                         }
524                         define('__MAX_RECEIVE_OPTIONS', $OUT);
525
526                         // Free memory
527                         SQL_FREERESULT($result);
528                         $OUT = LOAD_TEMPLATE("guest_receive_table", true);
529                 }
530                  else
531                 {
532                         // Maybe the admin has to setup some maximum values?
533                 }
534                 break;
535
536         case "member":
537                 // Members are allowed to set to zero mails per day (we will change this soon!)
538                 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__);
539                 if (SQL_NUMROWS($result) > 0)
540                 {
541                         $OUT = "";
542                         while (list($value, $comment) = SQL_FETCHROW($result))
543                         {
544                                 $OUT .= "      <OPTION value=\"".$value."\"";
545                                 if ($default == $value) $OUT .= " selected=\"selected\"";
546                                 $OUT .= ">".$value." ".PER_DAY;
547                                 if (!empty($comment)) $OUT .= " (".$comment.")";
548                                 $OUT .= "</OPTION>\n";
549                         }
550                         define('__MAX_RECEIVE_OPTIONS', $OUT);
551                         SQL_FREERESULT($result);
552                         $OUT = LOAD_TEMPLATE("member_receive_table", true);
553                 }
554                  else
555                 {
556                         // Maybe the admin has to setup some maximum values?
557                         $OUT = LOAD_TEMPLATE("admin_settings_saved", true, NO_MAX_VALUES);
558                 }
559                 break;
560         }
561         if ($return)
562         {
563                 // Return generated HTML code
564                 return $OUT;
565         }
566          else
567         {
568                 // Output directly (default)
569                 OUTPUT_HTML($OUT);
570         }
571 }
572 //
573 function SEARCH_EMAIL_USERTAB($email)
574 {
575         $ret = false;
576         $result = SQL_QUERY_ESC("SELECT userid FROM `"._MYSQL_PREFIX."_user_data` WHERE email LIKE '{PER}%s{PER}' LIMIT 1", array($email), __FILE__, __LINE__);
577         if (SQL_NUMROWS($result) == 1) $ret = true;
578         SQL_FREERESULT($result);
579         return $ret;
580 }
581 //
582 function WHAT_IS_VALID($act, $wht, $type="guest")
583 {
584         if (IS_ADMIN())
585         {
586                 // Everything is valid to the admin :-)
587                 return true;
588         }
589          else
590         {
591                 $ret = false;
592                 $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__);
593                 // Is "what" valid?
594                 if (SQL_NUMROWS($result) == 1) $ret = true;
595                 SQL_FREERESULT($result);
596                 return $ret;
597         }
598 }
599 //
600 function IS_MEMBER()
601 {
602         global $status, $LAST, $cacheArray;
603         if (!is_array($LAST)) $LAST = array();
604         $ret = false;
605
606         // is the cache entry there?
607         if (isset($cacheArray['is_member'])) {
608                 // Then return it
609                 return $cacheArray['is_member'];
610         } // END - if
611
612         // Fix "deleted" cookies first
613         FIX_DELETED_COOKIES(array('userid','u_hash','lifetime'));
614
615         // Are cookies set?
616         if ((!empty($GLOBALS['userid'])) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime')) && (defined('COOKIE_PATH')))
617         {
618                 // Cookies are set with values, but are they valid?
619                 $result = SQL_QUERY_ESC("SELECT password, status, last_module, last_online FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
620                  array($GLOBALS['userid']), __FILE__, __LINE__);
621                 if (SQL_NUMROWS($result) == 1)
622                 {
623                         // Load data from cookies
624                         list($password, $status, $mod, $onl) = SQL_FETCHROW($result);
625
626                         // Validate password by created the difference of it and the secret key
627                         $valPass = generatePassString($password);
628
629                         // Transfer last module and online time
630                         if ((!empty($mod)) && (empty($LAST['module']))) { $LAST['module'] = $mod; $LAST['online'] = $onl; }
631
632                         // So did we now have valid data and an unlocked user?
633                         //* DEBUG: */ echo $valPass."<br />".get_session('u_hash')."<br />";
634                         if (($status == "CONFIRMED") && ($valPass == get_session('u_hash'))) {
635                                 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
636                                 $ret = true;
637                         } else {
638                                 // Maybe got locked etc.
639                                 //* DEBUG: */ echo __LINE__."!!!<br />";
640                                 destroy_user_session();
641
642                                 // Reset userid
643                                 $GLOBALS['userid'] = 0;
644                         }
645                 } else {
646                         // Cookie data is invalid!
647                         //* DEBUG: */ echo __LINE__."***<br />";
648                         destroy_user_session();
649
650                         // Reset userid
651                         $GLOBALS['userid'] = 0;
652                 }
653
654                 // Free memory
655                 SQL_FREERESULT($result);
656         } else {
657                 // Cookie data is invalid!
658                 //* DEBUG: */ echo __LINE__."///<br />";
659                 destroy_user_session();
660
661                 // Reset userid
662                 $GLOBALS['userid'] = 0;
663         }
664
665         // Cache status
666         $cacheArray['is_member'] = $ret;
667
668         // Return status
669         return $ret;
670 }
671 //
672 function VALIDATE_MENU_ACTION ($MODE, $act, $wht, $UPDATE=false)
673 {
674         $ret = false;
675         $ADD = "";
676         if ((!IS_ADMIN()) && ($MODE != "admin")) $ADD = " AND locked='N'";
677         //* DEBUG: */ echo __LINE__.":".$MODE."/".$act."/".$wht."*<br />\n";
678         if (($MODE != "admin") && ($UPDATE)) {
679                 // Update guest or member menu
680                 $SQL = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_%s_menu SET counter=counter+1 WHERE action='%s' AND what='%s'".$ADD." LIMIT 1",
681                         array($MODE, $act, $wht), __FILE__, __LINE__, false);
682         } elseif ($wht != "overview") {
683                 // Other actions
684                 $SQL = SQL_QUERY_ESC("SELECT id, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s'".$ADD." ORDER BY action DESC LIMIT 1",
685                         array($MODE, $act), __FILE__, __LINE__, false);
686         } else {
687                 // Admin login overview
688                 $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",
689                         array($MODE, $act), __FILE__, __LINE__, false);
690         }
691
692         // Run SQL command
693         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
694         if ($UPDATE) {
695                 if (SQL_AFFECTEDROWS() == 1) $ret = true;
696                 //* DEBUG: */ debug_print_backtrace();
697         } else {
698                 if (SQL_NUMROWS($result) == 1) {
699                         //* DEBUG: */ echo __LINE__."+".$SQL."+<br />\n";
700                         //* DEBUG: */ echo __LINE__."*".$id."/".$wht."/".$wht2."*<br />\n";
701                         $ret = true;
702                 }
703         }
704
705         // Free memory
706         SQL_FREERESULT($result);
707
708         // Return result
709         return $ret;
710 }
711 //
712 function GET_MOD_DESCR($MODE, $wht, $column="what")
713 {
714         // Fix empty "what"
715         if (empty($wht)) {
716                 $wht = "welcome";
717                 if (getConfig('index_home') != "") $wht = getConfig('index_home');
718         } // END - if
719
720         // Default is not found
721         $ret = "??? (".$wht.")";
722
723         // Look for title
724         $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE %s='%s' LIMIT 1",
725                 array($MODE, $column, $wht), __FILE__, __LINE__);
726
727         // Is there an entry?
728         if (SQL_NUMROWS($result) == 1) {
729                 // Fetch the title
730                 list($ret) = SQL_FETCHROW($result);
731         } // END - if
732
733         // Free result
734         SQL_FREERESULT($result);
735         return $ret;
736 }
737 //
738 function SEND_MODE_MAILS($mod, $modes)
739 {
740         global $_CONFIG, $DATA;
741
742         // Load hash
743         $result_main = SQL_QUERY_ESC("SELECT password FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
744                 array($GLOBALS['userid']), __FILE__, __LINE__);
745         if (SQL_NUMROWS($result_main) == 1) {
746                 // Load hash from database
747                 list($hashDB) = SQL_FETCHROW($result_main);
748
749                 // Extract salt from cookie
750                 $salt = substr(get_session('u_hash'), 0, -40);
751
752                 // Now let's compare passwords
753                 $hash = generatePassString($hashDB);
754                 if (($hash == get_session('u_hash')) || ($_POST['pass1'] == $_POST['pass2'])) {
755                         // Load user's data
756                         $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",
757                                 array($GLOBALS['userid'], $hashDB), __FILE__, __LINE__);
758                         if (SQL_NUMROWS($result) == 1) {
759                                 // Load the data
760                                 $DATA = SQL_FETCHROW($result);
761
762                                 // Free result
763                                 SQL_FREERESULT($result);
764
765                                 // Translate gender
766                                 $DATA[0] = TRANSLATE_GENDER($DATA[0]);
767
768                                 // Clear/init the content variable
769                                 $content = "";
770                                 $DATA['info'] = "";
771
772                                 switch ($mod)
773                                 {
774                                 case "mydata":
775                                         foreach ($modes as $mode) {
776                                                 switch ($mode)
777                                                 {
778                                                 case "normal": break; // Do not add any special lines
779
780                                                 case "email": // Email was changed!
781                                                         $content = MEMBER_CHANGED_EMAIL.": ".$_POST['old_addy']."\n";
782                                                         break;
783
784                                                 case "pass": // Password was changed
785                                                         $content = MEMBER_CHANGED_PASS."\n";
786                                                         break;
787
788                                                 default:
789                                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
790                                                         $content = MEMBER_UNKNOWN_MODE.": ".$mode."\n\n";
791                                                         break;
792                                                 } // END - switch
793                                         } // END - if
794
795                                         if (EXT_IS_ACTIVE("country")) {
796                                                 // Replace code with description
797                                                 $DATA[4] = COUNTRY_GENERATE_INFO($_POST['country_code']);
798                                         } // END - if
799
800                                         // Load template
801                                         $msg = LOAD_EMAIL_TEMPLATE("member_mydata_notify", $content, $GLOBALS['userid']);
802
803                                         if (getConfig('admin_notify') == "Y") {
804                                                 // The admin needs to be notified about a profile change
805                                                 $msg_admin = "admin_mydata_notify";
806                                                 $sub_adm   = ADMIN_CHANGED_DATA;
807                                         } else {
808                                                 // No mail to admin
809                                                 $msg_admin = "";
810                                                 $sub_adm   = "";
811                                         }
812
813                                         // Set subject lines
814                                         $sub_mem = MEMBER_CHANGED_DATA;
815
816                                         // Output success message
817                                         $content = "<SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN>";
818                                         break;
819
820                                 default:
821                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
822                                         $content = "<SPAN class=\"member_failed\">".UNKNOWN_MODULE."</SPAN>";
823                                         break;
824                                 } // END - switch
825                         } else {
826                                 // Could not load profile data
827                                 $content = "<SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN>";
828                         }
829                 } else {
830                         // Passwords mismatch
831                         $content = "<SPAN class=\"member_failed\">".MEMBER_PASSWORD_ERROR."</SPAN>";
832                 }
833         } else {
834                 // Could not load profile
835                 $content = "<SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN>";
836         }
837
838         // Send email to user if required
839         if ((!empty($sub_mem)) && (!empty($msg))) {
840                 // Send member mail
841                 SEND_EMAIL($DATA[7], $sub_mem, $msg);
842         } // END - if
843
844         // Send only if no other error has occured
845         if (empty($content)) {
846                 if ((!empty($sub_adm)) && (!empty($msg_admin))) {
847                         // Send admin mail
848                         SEND_ADMIN_NOTIFICATION($sub_adm, $msg_admin, $content, $GLOBALS['userid']);
849                 } elseif (getConfig('admin_notify') == "Y") {
850                         // Cannot send mails to admin!
851                         $content = CANNOT_SEND_ADMIN_MAILS;
852                 } else {
853                         // No mail to admin
854                         $content = "<SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN>";
855                 }
856         } // END - if
857
858         // Load template
859         LOAD_TEMPLATE("admin_settings_saved", false, $content);
860 }
861 // Update module counter
862 function COUNT_MODULE($mod) {
863         if ($mod != "css") {
864                 // Do count all other modules but not accesses on CSS file css.php!
865                 SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_mod_reg SET clicks=clicks+1 WHERE module='%s' LIMIT 1",
866                         array($mod), __FILE__, __LINE__);
867         } // END - if
868 }
869 // Get action value from mode (admin/guest/member) and what-value
870 function GET_ACTION ($MODE, &$wht)
871 {
872         global $ret, $_CONFIG;
873         // @DEPRECATED Init status
874         $ret = "";
875
876         //* DEBUG: */ echo __LINE__."=".$MODE."/".$wht."/".$GLOBALS['action']."=<br />";
877         if ((empty($wht)) && ($MODE != "admin")) {
878                 $wht = "welcome";
879                 if (getConfig('index_home') != "") $wht = getConfig('index_home');
880         } // END - if
881
882         if ($MODE == "admin") {
883                 // Action value for admin area
884                 if (!empty($GLOBALS['action'])) {
885                         // Get it directly from URL
886                         return $GLOBALS['action'];
887                 } elseif (($wht == "overview") || (empty($GLOBALS['what']))) {
888                         // Default value for admin area
889                         $ret = "login";
890                 }
891         } elseif (!empty($GLOBALS['action'])) {
892                 // Get it directly from URL
893                 return $GLOBALS['action'];
894         }
895         //* DEBUG: */ echo __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ret=".$ret."<br />\n";
896
897         if (MODULE_HAS_MENU($MODE)) {
898                 // Rewriting modules to menu
899                 switch ($MODE) {
900                         case "index": $MODE = "guest";  break;
901                         case "login": $MODE = "member"; break;
902                 } // END - switch
903
904                 // Guest and member menu is "main" as the default
905                 if (empty($ret)) $ret = "main";
906
907                 // Load from database
908                 $result = SQL_QUERY_ESC("SELECT action FROM "._MYSQL_PREFIX."_%s_menu WHERE what='%s' LIMIT 1",
909                         array($MODE, $wht), __FILE__, __LINE__);
910                 if (SQL_NUMROWS($result) == 1) {
911                         // Load action value and pray that this one is the right you want... ;-)
912                         list($ret) = SQL_FETCHROW($result);
913                 } // END - if
914
915                 // Free memory
916                 SQL_FREERESULT($result);
917         } // END - if
918
919         // Return action value
920         return $ret;
921 }
922
923 // Get category name back
924 function GET_CATEGORY ($cid) {
925         // Default is not found
926         $ret = _CATEGORY_404;
927
928         // Is the category id set?
929         if ($cid == "0") {
930                 // No category
931                 $ret = _CATEGORY_NONE;
932         } elseif ($cid > 0) {
933                 // Lookup the category in database
934                 $result = SQL_QUERY_ESC("SELECT cat FROM "._MYSQL_PREFIX."_cats WHERE id=%s LIMIT 1",
935                         array(bigintval($cid)), __FILE__, __LINE__);
936                 if (SQL_NUMROWS($result) == 1) {
937                         // Category found... :-)
938                         list($ret) = SQL_FETCHROW($result);
939                 } // END - if
940
941                 // Free result
942                 SQL_FREERESULT($result);
943         } // END - if
944
945         // Return result
946         return $ret;
947 }
948
949 // Get a string of "mail title" and price back
950 function GET_PAYMENT ($pid, $full=false) {
951         // Default is not found
952         $ret = _PAYMENT_404;
953
954         // Load payment data
955         $result = SQL_QUERY_ESC("SELECT mail_title, price FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
956                 array(bigintval($pid)), __FILE__, __LINE__);
957         if (SQL_NUMROWS($result) == 1) {
958                 // Payment type found... :-)
959                 if (!$full) {
960                         // Return only title
961                         list($ret) = SQL_FETCHROW($result);
962                 } else {
963                         // Return title and price
964                         list($t, $p) = SQL_FETCHROW($result);
965                         $ret = $t." / ".TRANSLATE_COMMA($p)." ".POINTS;
966                 }
967         }
968
969         // Free result
970         SQL_FREERESULT($result);
971
972         // Return result
973         return $ret;
974 }
975
976 // Get (basicly) the price of given payment id
977 function GET_PAY_POINTS($pid, $lookFor="price")
978 {
979         $ret = "-1";
980         $result = SQL_QUERY_ESC("SELECT %s FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
981                 array($lookFor, $pid), __FILE__, __LINE__);
982         if (SQL_NUMROWS($result) == 1)
983         {
984                 // Payment type found... :-)
985                 list($ret) = SQL_FETCHROW($result);
986                 SQL_FREERESULT($result);
987         }
988         return $ret;
989 }
990
991 // Remove a receiver's ID from $ARRAY and add a link for him to confirm
992 function REMOVE_RECEIVER (&$ARRAY, $key, $uid, $pool_id, $stats_id="", $bonus=false)
993 {
994         $ret = "failed";
995         if ($uid > 0)
996         {
997                 // Remove entry from array
998                 unset($ARRAY[$key]);
999
1000                 // Is there already a line for this user available?
1001                 if ($stats_id > 0)
1002                 {
1003                         // Only when we got a real stats ID continue searching for the entry
1004                         $type = "NORMAL"; $rowName = "stats_id";
1005                         if ($bonus) { $type = "BONUS"; $rowName = "bonus_id"; }
1006                         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_links WHERE %s='%s' AND userid=%s AND link_type='%s' LIMIT 1",
1007                          array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1008                         if (SQL_NUMROWS($result) == 0)
1009                         {
1010                                 // No, so we add one!
1011                                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_links (%s, userid, link_type) VALUES ('%s','%s','%s')",
1012                                  array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1013                                 $ret = "done";
1014                         }
1015                          else
1016                         {
1017                                 // Already found
1018                                 $ret = "already";
1019                         }
1020
1021                         // Free memory
1022                         SQL_FREERESULT($result);
1023                 }
1024         }
1025         // Return status for sending routine
1026         return $ret;
1027 }
1028
1029 // Calculate sum (default) or count records of given criteria
1030 function GET_TOTAL_DATA ($search, $tableName, $lookFor, $whereStatement="userid", $onlyRows=false, $add="") {
1031         $ret = 0;
1032         //* DEBUG: */ echo $search."/".$tableName."/".$lookFor."/".$whereStatement."/".$add."<br />\n";
1033         if (($onlyRows) || ($lookFor == "userid")) {
1034                 // Count rows
1035                 //* DEBUG: */ echo "COUNT!<br />\n";
1036                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `"._MYSQL_PREFIX."_%s` WHERE `%s`='%s'".$add,
1037                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1038         } else {
1039                 // Add all rows
1040                 //* DEBUG: */ echo "SUM!<br />\n";
1041                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `"._MYSQL_PREFIX."_%s` WHERE `%s`='%s'".$add,
1042                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1043         }
1044
1045         // Load row
1046         list($ret) = SQL_FETCHROW($result);
1047
1048         // Free result
1049         SQL_FREERESULT($result);
1050
1051         // Fix empty values
1052         if ((empty($ret)) && ($lookFor != "counter") && ($lookFor != "id") && ($lookFor != "userid")) {
1053                 // Float number
1054                 $ret = "0.00000";
1055         } elseif ("".$ret."" == "") {
1056                 // Fix empty result
1057                 $ret = "0";
1058         }
1059
1060         // Return value
1061         return $ret;
1062 }
1063 // "Getter fro ref level percents
1064 function GET_REF_LEVEL_PERCENTS ($level) {
1065         global $cacheInstance, $_CONFIG, $cacheArray;
1066
1067         // Default is zero
1068         $per = 0;
1069
1070         // Do we have cache?
1071         if ((isset($cacheArray['ref_depths']['level'])) && (EXT_IS_ACTIVE("cache"))) {
1072                 // First look for level
1073                 $key = array_search($level, $cacheArray['ref_depths']['level']);
1074                 if ($key !== false) {
1075                         // Entry found!
1076                         $per = $cacheArray['ref_depths']['percents'][$key];
1077
1078                         // Count cache hit
1079                         if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1080                 }
1081         } elseif (!EXT_IS_ACTIVE("cache")) {
1082                 // Get referal data
1083                 $result_lvl = SQL_QUERY_ESC("SELECT percents FROM "._MYSQL_PREFIX."_refdepths WHERE level='%s' LIMIT 1",
1084                         array(bigintval($level)), __FILE__, __LINE__);
1085
1086                 // Entry found?
1087                 if (SQL_NUMROWS($result_lvl) == 1) {
1088                         // Get percents
1089                         list($per) = SQL_FETCHROW($result_lvl);
1090                 } // END - if
1091
1092                 // Free result
1093                 SQL_FREERESULT($result_lvl);
1094         }
1095
1096         // Return percent
1097         return $per;
1098 }
1099 /**
1100  *
1101  * Dynamic referal system, can also send mails!
1102  *
1103  * subject     = Subject line, write in lower-case letters and underscore is allowed
1104  * uid         = Referal ID wich should receive...
1105  * points      = ... xxx points
1106  * send_notify = shall I send the referal an email or not?
1107  * rid         = inc/modules/guest/what-confirm.php need this (DEPRECATED???)
1108  * locked      = Shall I pay it to normal (false) or locked (true) points ammount?
1109  * add_mode    = Add points only to $uid or also refs? (WARNING! Changing "ref" to "direct"
1110  *               for default value will cause no referal will get points ever!!!)
1111  */
1112 function ADD_POINTS_REFSYSTEM ($subject, $uid, $points, $send_notify=false, $rid="0", $locked=false, $add_mode="ref") {
1113         //* DEBUG: */ print "----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n";
1114         global $_CONFIG, $DATA, $cacheArray;
1115
1116         // Convert mode to lower-case
1117         $add_mode = strtolower($add_mode);
1118
1119         // When $uid = 0 add points to jackpot
1120         if ($uid == "0") {
1121                 // Add points to jackpot
1122                 ADD_JACKPOT($points);
1123                 return;
1124         } // END - if
1125
1126         // Add booking record if extension is installed
1127         if (EXT_IS_ACTIVE("booking")) {
1128                 // Add record
1129                 ADD_BOOKING_RECORD($subject, $uid, $points, "add");
1130         } // END - if
1131
1132         // Count up referal depth
1133         if (!isset($GLOBALS['ref_level'])) {
1134                 // Initialialize referal system
1135                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal system initialized!<br />\n";
1136                 $GLOBALS['ref_level'] = 0;
1137         } else {
1138                 // Increase referal level
1139                 $GLOBALS['ref_level']++;
1140                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal level increased. DEPTH={$GLOBALS['ref_level']}<br />\n";
1141         }
1142
1143         // Default is "normal" points
1144         $data = "points";
1145
1146         // Which points, locked or normal?
1147         if ($locked) $data = "locked_points";
1148
1149         // Check user account
1150         $result_user = SQL_QUERY_ESC("SELECT refid, email FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
1151                 array(bigintval($uid)), __FILE__, __LINE__);
1152
1153         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},numRows=".SQL_NUMROWS($result_user).",points={$points}<br />\n";
1154         if (SQL_NUMROWS($result_user) == 1) {
1155                 // This is the user and his ref
1156                 list($ref, $email) = SQL_FETCHROW($result_user);
1157                 $cacheArray['add_uid'][$ref] = $uid;
1158
1159                 // Get percents
1160                 $per = GET_REF_LEVEL_PERCENTS($GLOBALS['ref_level']);
1161                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},depth={$GLOBALS['ref_level']},per={$per},mode={$add_mode}<br />\n";
1162
1163                 // Some percents found?
1164                 if ($per > 0) {
1165                         // Calculate new points
1166                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},per={$per},depth={$GLOBALS['ref_level']}<br />\n";
1167                         $ref_points = $points * $per / 100;
1168
1169                         // Pay refback here if level > 0 and in ref-mode
1170                         if ((EXT_IS_ACTIVE("refback")) && ($GLOBALS['ref_level'] > 0) && ($per < 100) && ($add_mode == "ref") && (isset($cacheArray['add_uid'][$uid]))) {
1171                                 //* 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";
1172                                 $ref_points = ADD_REFBACK_POINTS($cacheArray['add_uid'][$uid], $uid, $points, $ref_points);
1173                                 //* 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";
1174                         } // END - if
1175
1176                         // Update points...
1177                         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%s AND ref_depth='%s' LIMIT 1",
1178                                 array($data, $data, $ref_points, bigintval($uid), bigintval($GLOBALS['ref_level'])), __FILE__, __LINE__);
1179                         //* 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";
1180
1181                         // No entry updated?
1182                         if (SQL_AFFECTEDROWS() < 1) {
1183                                 // First ref in this level! :-)
1184                                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_points (userid,ref_depth,%s) VALUES (%s,'%s',%s)",
1185                                         array($data, bigintval($uid), bigintval($GLOBALS['ref_level']), $ref_points), __FILE__, __LINE__);
1186                                 //* 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";
1187                         } // END - if
1188
1189                         // Update mediadata as well
1190                         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1191                                 // Update database
1192                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $ref_points);
1193                         } // END - if
1194
1195                         // Points updated, maybe I shall send him an email?
1196                         if (($send_notify) && ($ref > 0) && (!$locked)) {
1197                                 // Prepare content
1198                                 $content = array(
1199                                         'percent' => $per,
1200                                         'level'   => bigintval($GLOBALS['ref_level']),
1201                                         'points'  => $ref_points,
1202                                         'refid'   => bigintval($ref)
1203                                 );
1204
1205                                 // Load email template
1206                                 $msg = LOAD_EMAIL_TEMPLATE("confirm-referal", $content, bigintval($uid));
1207
1208                                 SEND_EMAIL($email, THANX_REFERRAL_ONE, $msg);
1209                         } elseif (($send_notify) && ($ref == 0) && (!$locked) && ($add_mode == "direct") && (!defined('__POINTS_VALUE'))) {
1210                                 // Direct payment shall be notified about
1211                                 define('__POINTS_VALUE', $ref_points);
1212
1213                                 // Prepare content
1214                                 $content = array(
1215                                         'text'   => REASON_DIRECT_PAYMENT,
1216                                         'points' => TRANSLATE_COMMA($ref_points)
1217                                 );
1218
1219                                 // Load message
1220                                 $msg = LOAD_EMAIL_TEMPLATE("add-points", $content, $uid);
1221
1222                                 // And sent it away
1223                                 SEND_EMAIL($email, SUBJECT_DIRECT_PAYMENT, $msg);
1224                                 if (!isset($_GET['mid'])) LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_POINTS_ADDED);
1225                         }
1226
1227                         // Maybe there's another ref?
1228                         if (($ref > 0) && ($points > 0) && ($ref != $uid) && ($add_mode == "ref")) {
1229                                 // Then let's credit him here...
1230                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref},points={$points} - ADVANCE!<br />\n";
1231                                 ADD_POINTS_REFSYSTEM(sprintf("%s_ref:%s", $subject, $GLOBALS['ref_level']), $ref, $points, $send_notify, $ref, $locked);
1232                         } // END - if
1233                 } // END - if
1234         } // END - if
1235
1236         // Free result
1237         SQL_FREERESULT($result_user);
1238         //* DEBUG: */ print "</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />\n";
1239 }
1240 //
1241 function UPDATE_REF_COUNTER ($uid) {
1242         global $cacheArray, $cacheInstance;
1243
1244         // Make it sure referal level zero (member him-/herself) is at least selected
1245         if (empty($cacheArray['ref_level'][$uid])) $cacheArray['ref_level'][$uid] = 1;
1246         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},level={$cacheArray['ref_level'][$uid]}<br />\n";
1247
1248         // Update counter
1249         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refsystem SET counter=counter+1 WHERE userid=%s AND level='%s' LIMIT 1",
1250                 array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1251
1252         // When no entry was updated then we have to create it here
1253         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):updated=".SQL_AFFECTEDROWS()."<br />\n";
1254         if (SQL_AFFECTEDROWS() < 1) {
1255                 // First count!
1256                 SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_refsystem (userid, level, counter) VALUES (%s,%s,1)",
1257                         array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1258                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid}<br />\n";
1259         } // END - if
1260
1261         // Check for his referal
1262         $result = SQL_QUERY_ESC("SELECT refid FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
1263                 array(bigintval($uid)), __FILE__, __LINE__);
1264
1265         // Load refid
1266         list($ref) = SQL_FETCHROW($result);
1267
1268         // Free memory
1269         SQL_FREERESULT($result);
1270         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref}<br />\n";
1271
1272         // When he has a referal...
1273         if (($ref > 0) && ($ref != $uid)) {
1274                 // Move to next referal level and count his counter one up!
1275                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - ADVANCE!<br />\n";
1276                 $cacheArray['ref_level'][$uid]++; UPDATE_REF_COUNTER($ref);
1277         } elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2")) {
1278                 // Remove cache here
1279                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - CACHE!<br />\n";
1280                 REBUILD_CACHE("refsystem", "refsystem");
1281         }
1282
1283         // "Walk" back here
1284         $cacheArray['ref_level'][$uid]--;
1285
1286         // Handle refback here if extension is installed
1287         if (EXT_IS_ACTIVE("refback")) {
1288                 UPDATE_REFBACK_TABLE($uid);
1289         } // END - if
1290 }
1291
1292 // OBSOLETE: Sends out mail to all administrators
1293 function SEND_ADMIN_EMAILS ($subj, $msg) {
1294         // Load all admin email addresses
1295         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id ASC", __FILE__, __LINE__);
1296         while (list($email) = SQL_FETCHROW($result)) {
1297                 // Send the email out
1298                 SEND_EMAIL($email, $subj, $msg);
1299         } // END - if
1300
1301         // Free result
1302         SQL_FREERESULT($result);
1303
1304         // Really simple... ;-)
1305 }
1306
1307 // Get ID number from administrator's login name
1308 function GET_ADMIN_ID ($login) {
1309         global $cacheArray, $_CONFIG;
1310         $ret = "-1";
1311         if (isset($cacheArray['admins']['aid'][$login])) {
1312                 // Check cache
1313                 $ret = $cacheArray['admins']['aid'][$login];
1314
1315                 // Update cache hits
1316                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1317         } elseif (!EXT_IS_ACTIVE("cache")) {
1318                 // Load from database
1319                 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
1320                  array($login), __FILE__, __LINE__);
1321                 if (SQL_NUMROWS($result) == 1) {
1322                         list($ret) = SQL_FETCHROW($result);
1323                 } // END - if
1324
1325                 // Free result
1326                 SQL_FREERESULT($result);
1327         }
1328         return $ret;
1329 }
1330
1331 // "Getter" for current admin id
1332 function GET_CURRENT_ADMIN_ID () {
1333         // Get the admin login from session
1334         $adminLogin = get_session('admin_login');
1335
1336         // "Solve" it into an id
1337         $adminId = GET_ADMIN_ID($adminLogin);
1338
1339         // Secure and return it
1340         return bigintval($adminId);
1341 }
1342
1343 // Get password hash from administrator's login name
1344 function GET_ADMIN_HASH ($aid)
1345 {
1346         global $cacheArray, $_CONFIG;
1347         $ret = "-1";
1348         if (isset($cacheArray['admins']['password'][$aid])) {
1349                 // Check cache
1350                 $ret = $cacheArray['admins']['password'][$aid];
1351
1352                 // Update cache hits
1353                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1354         } elseif (!EXT_IS_ACTIVE("cache")) {
1355                 // Load from database
1356                 $result = SQL_QUERY_ESC("SELECT password FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1357                  array($aid), __FILE__, __LINE__);
1358                 if (SQL_NUMROWS($result) == 1) {
1359                         // Fetch data
1360                         list($ret) = SQL_FETCHROW($result);
1361
1362                         // Set cache
1363                         $cacheArray['admins']['password'][$aid] = $ret;
1364                 }
1365
1366                 // Free result
1367                 SQL_FREERESULT($result);
1368         }
1369         return $ret;
1370 }
1371 //
1372 function GET_ADMIN_LOGIN ($aid) {
1373         global $cacheArray, $_CONFIG;
1374         $ret = "***";
1375         if (isset($cacheArray['admins']['login'][$aid])) {
1376                 // Get cache
1377                 $ret = $cacheArray['admins']['login'][$aid];
1378
1379                 // Update cache hits
1380                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1381         } elseif (!EXT_IS_ACTIVE("cache")) {
1382                 // Load from database
1383                 $result = SQL_QUERY_ESC("SELECT login FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1384                         array(bigintval($aid)), __FILE__, __LINE__);
1385                 if (SQL_NUMROWS($result) == 1) {
1386                         // Fetch data
1387                         list($ret) = SQL_FETCHROW($result);
1388
1389                         // Set cache
1390                         $cacheArray['admins']['login'][$aid] = $ret;
1391                 } // END - if
1392
1393                 // Free memory
1394                 SQL_FREERESULT($result);
1395         }
1396         return $ret;
1397 }
1398 // Get email address of admin id
1399 function GET_ADMIN_EMAIL ($aid) {
1400         global $cacheArray, $_CONFIG;
1401
1402         $ret = "***";
1403         if (isset($cacheArray['admins']['email'][$aid])) {
1404                 // Get cache
1405                 $ret = $cacheArray['admins']['email'][$aid];
1406
1407                 // Update cache hits
1408                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1409         } elseif (!EXT_IS_ACTIVE("cache")) {
1410                 // Load from database
1411                 $result_aid = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1412                         array(bigintval($aid)), __FILE__, __LINE__);
1413                 if (SQL_NUMROWS($result_aid) == 1) {
1414                         // Get data
1415                         list($ret) = SQL_FETCHROW($result_aid);
1416
1417                         // Set cache
1418                         $cacheArray['admins']['email'][$aid] = $ret;
1419                         } // END - if
1420
1421                 // Free result
1422                 SQL_FREERESULT($result_aid);
1423         }
1424
1425         // Return email
1426         return $ret;
1427 }
1428 // Get default ACL  of admin id
1429 function GET_ADMIN_DEFAULT_ACL ($aid) {
1430         global $cacheArray, $_CONFIG;
1431
1432         $ret = "***";
1433         if (isset($cacheArray['admins']['def_acl'][$aid])) {
1434                 // Use cache
1435                 $ret = $cacheArray['admins']['def_acl'][$aid];
1436
1437                 // Update cache hits
1438                 if (getConfig('cache_hits') > 0) { $_CONFIG['cache_hits']++; } else { $_CONFIG['cache_hits'] = 1; }
1439         } elseif (!EXT_IS_ACTIVE("cache")) {
1440                 // Load from database
1441                 $result_aid = SQL_QUERY_ESC("SELECT default_acl FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1442                         array(bigintval($aid)), __FILE__, __LINE__);
1443                 if (SQL_NUMROWS($result_aid) == 1) {
1444                         // Fetch data
1445                         list($ret) = SQL_FETCHROW($result_aid);
1446
1447                         // Set cache
1448                         $cacheArray['admins']['def_acl'][$aid] = $ret;
1449                 }
1450
1451                 // Free result
1452                 SQL_FREERESULT($result_aid);
1453         }
1454
1455         // Return email
1456         return $ret;
1457 }
1458 //
1459 function ADD_OPTION_LINES($table, $id, $name, $default="",$special="",$where="") {
1460         $ret = "";
1461         if ($table == "/ARRAY/") {
1462                 // Selection from array
1463                 if (is_array($id) && is_array($name) && sizeof($id) == sizeof($name)) {
1464                         // Both are arrays
1465                         foreach ($id as $idx => $value) {
1466                                 $ret .= "<OPTION value=\"".$value."\"";
1467                                 if ($default == $value) $ret .= " selected checked";
1468                                 $ret .= ">".$name[$idx]."</OPTION>\n";
1469                         } // END - foreach
1470                 } // END - if
1471         } else {
1472                 // Data from database
1473                 $SPEC = ", ".$id;
1474                 if (!empty($special)) $SPEC = ", ".$special;
1475                 $ORDER = $name.$SPEC;
1476                 if ($table == "country") $ORDER = $special;
1477                 $result = SQL_QUERY_ESC("SELECT %s, %s".$SPEC." FROM "._MYSQL_PREFIX."_%s ".$where." ORDER BY %s",
1478                  array($id, $ORDER, $table, $name), __FILE__, __LINE__);
1479                 if (SQL_NUMROWS($result) > 0) {
1480                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1481                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1482                                 if (empty($special)) $add = "";
1483                                 $ret .= "<OPTION value=\"".$value."\"";
1484                                 if ($default == $value) $ret .= " selected checked";
1485                                 if (!empty($add)) $add = " (".$add.")";
1486                                 $ret .= ">".$title.$add."</OPTION>\n";
1487                         } // END - while
1488
1489                         // Free memory
1490                         SQL_FREERESULT($result);
1491                 } else {
1492                         // No data found
1493                         $ret = "<OPTION value=\"x\">".SELECT_NONE."</OPTION>\n";
1494                 }
1495         }
1496
1497         // Return - hopefully - the requested data
1498         return $ret;
1499 }
1500 // Activate exchange (DEPERECATED???)
1501 function activateExchange() {
1502         // Check total amount of users
1503         $totalUsers = GET_TOTAL_DATA("CONFIRMED", "use_data", "userid", "status", true, " AND max_mails > 0");
1504
1505         if ($totalUsers >= getConfig('activate_xchange')) {
1506                 // Activate System
1507                 $SQLs = array(
1508                         "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', mem_only='Y' WHERE module='order' LIMIT 1",
1509                         "UPDATE `"._MYSQL_PREFIX."_member_menu` SET visible='Y', locked='N' WHERE what='order' OR what='unconfirmed' LIMIT 2",
1510                         "UPDATE `"._MYSQL_PREFIX."_config` SET activate_xchange='0' WHERE config=0 LIMIT 1"
1511                 );
1512
1513                 // Run SQLs
1514                 RUN_FILTER('run_sqls', array('dry_run' => false, 'sqls' => $SQLs));
1515
1516                 // Rebuild cache
1517                 REBUILD_CACHE("config", "config");
1518         } // END - if
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                 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         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                 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         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                 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                 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         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                 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                 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 ?>