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