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