Previous fix fixed, a lot constants rewritten (unfinished)
[mailer.git] / inc / mysql-manager.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/26/2003 *
4  * ===============                              Last change: 11/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-manager.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : All MySQL-related functions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle MySQL-Relevanten Funktionen                 *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 //
41 function ADD_MODULE_TITLE($mod) {
42         global $cacheArray;
43         $name = ""; $result = false;
44
45         // Is the script installed?
46         if (isBooleanConstantAndTrue('mxchange_installed')) {
47                 // Check if cache is valid
48                 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (isset($cacheArray['modules']['module'])) && (in_array($mod, $cacheArray['modules']['module']))) {
49                         // Load from cache
50                         $name = $cacheArray['modules']['title'][$mod];
51
52                         // Update cache hits
53                         incrementConfigEntry('cache_hits');
54                 } elseif (!EXT_IS_ACTIVE("cache")) {
55                         // Load from database
56                         $result = SQL_QUERY_ESC("SELECT title FROM `{!_MYSQL_PREFIX!}_mod_reg` WHERE module='%s' LIMIT 1", array($mod), __FILE__, __LINE__);
57                         list($name) = SQL_FETCHROW($result);
58                         SQL_FREERESULT($result);
59                 }
60         } // END - if
61
62         // Trim name
63         $name = trim($name);
64
65         // Still no luck or empty title?
66         if (empty($name)) {
67                 // No name found
68                 $name = sprintf("%s (%s)", LANG_UNKNOWN_MODULE, $mod);
69                 if (SQL_NUMROWS($result) == 0) {
70                         // Add module to database
71                         $dummy = CHECK_MODULE($mod);
72                 } // END - if
73         } // END - if
74
75         // Return name
76         return $name;
77 }
78
79 // Check validity of a given module name (no file extension)
80 function CHECK_MODULE ($mod) {
81         // We need them now here...
82         global $cacheArray, $cacheInstance;
83
84         // Filter module name (names with low chars and underlines are fine!)
85         $mod = preg_replace("/[^a-z_]/", "", $mod);
86
87         // Check for prefix is a extension...
88         $modSplit = explode("_", $mod);
89         $extension = ""; $mod_chk = $mod;
90         //* DEBUG: */ echo __LINE__."*".count($modSplit)."*/".$mod."*<br />";
91         if (count($modSplit) == 2) {
92                 // Okay, there is a seperator (_) in the name so is the first part a module?
93                 //* DEBUG: */ echo __LINE__."*".$modSplit[0]."*<br />";
94                 if (EXT_IS_ACTIVE($modSplit[0])) {
95                         // The prefix is an extension's name, so let's set it
96                         $extension = $modSplit[0]; $mod = $modSplit[1];
97                 }
98         }
99
100         // Major error in module registry is the default
101         $ret = "major";
102
103         // Check if script is installed if not return a "done" to prevent some errors
104         if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing')) || (!isBooleanConstantAndTrue('admin_registered'))) return "done";
105
106         // Check if cache is latest version
107         $locked = "Y"; $hidden = "N"; $admin = "N"; $mem = "N"; $found = false;
108         if (GET_EXT_VERSION("cache") >= "0.1.2") {
109                 // Is the module cached?
110                 if (isset($cacheArray['modules']['locked'][$mod_chk])) {
111                         // Check cache
112                         $locked = $cacheArray['modules']['locked'][$mod_chk];
113                         $hidden = $cacheArray['modules']['hidden'][$mod_chk];
114                         $admin  = $cacheArray['modules']['admin_only'][$mod_chk];
115                         $mem    = $cacheArray['modules']['mem_only'][$mod_chk];
116
117                         // Update cache hits
118                         incrementConfigEntry('cache_hits');
119                         $found = true;
120                 } else {
121                         // No, then we have to update it!
122                         $ret = "cache_miss";
123                 }
124         } elseif (!EXT_IS_ACTIVE("cache")) {
125                 // Check for module in database
126                 $result = SQL_QUERY_ESC("SELECT locked, hidden, admin_only, mem_only FROM `{!_MYSQL_PREFIX!}_mod_reg` WHERE module='%s' LIMIT 1", array($mod_chk), __FILE__, __LINE__);
127                 if (SQL_NUMROWS($result) == 1) {
128                         // Read data
129                         list($locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
130                         SQL_FREERESULT($result);
131                         $found = true;
132                 }
133         }
134
135         // Is the module found?
136         if ($found) {
137                 // Check returned values against current access permissions
138                 //
139                 //  Admin access            ----- Guest access -----           --- Guest   or   member? ---
140                 if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_MEMBER())))) {
141                         // If you are admin you are welcome for everything!
142                         $ret = "done";
143                 } elseif ($locked == "Y") {
144                         // Module is locked
145                         $ret = "locked";
146                 } elseif (($mem == "Y") && (!IS_MEMBER())) {
147                         // You have to login first!
148                         $ret = "mem_only";
149                 } elseif (($admin == "Y") && (!IS_ADMIN())) {
150                         // Only the Admin is allowed to enter this module!
151                         $ret = "admin_only";
152                 }
153         } // END - if
154
155         // Still no luck or not found?
156         if (($ret == "cache_miss") || (!$found)) {
157                 //              ----- Legacy module -----                                   ---- Module in base folder  ----                       --- Module with extension's name ---
158                 if ((FILE_READABLE(sprintf("%sinc/modules/%s.php", PATH, $mod))) || (FILE_READABLE(sprintf("%s%s.php", PATH, $mod))) || (FILE_READABLE(sprintf("%s%s/%s.php", PATH, $extension, $mod)))) {
159                         // Data is missing so we add it
160                         if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
161                                 // Since 0.3.6 we have a has_menu column, this took me a half hour
162                                 // to find a loop here... *sigh*
163                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_mod_reg`
164 (module, locked, hidden, mem_only, admin_only, has_menu) VALUES
165 ('%s','Y','N','N','N','N')", array($mod_chk), __FILE__, __LINE__);
166                         } else {
167                                 // Wrong/missing sql_patches!
168                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_mod_reg`
169 (module, locked, hidden, mem_only, admin_only) VALUES
170 ('%s','Y','N','N','N')", array($mod_chk), __FILE__, __LINE__);
171                         }
172
173                         // Everthing is fine?
174                         if (SQL_AFFECTEDROWS() < 1) {
175                                 // Something bad happend!
176                                 return "major";
177                         } // END - if
178
179                         // Destroy cache here
180                         REBUILD_CACHE("mod_reg", "modreg");
181
182                         // And reload data
183                         $ret = CHECK_MODULE($mod_chk);
184                 } else {
185                         // Module not found we don't add it to the database
186                         $ret = "404";
187                 }
188         } elseif (!$found) {
189                 // Problem with module detected
190                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Problem in module %s detected. ret=%s, locked=%s, hidden=%s, mem=%s, admin=%s",
191                         $mod,
192                         $ret,
193                         $locked,
194                         $hidden,
195                         $mem,
196                         $admin
197                 ));
198         }
199
200         // Return the value
201         return $ret;
202 }
203
204 // Add menu description pending on given file name (without path!)
205 function ADD_DESCR ($ACC_LVL, $file, $return = false, $output = true) {
206         global $NAV_DEPTH;
207         // Use only filename of the file ;)
208         $file = basename($file);
209
210         // Init variables
211         $LINK_ADD = ""; $OUT = ""; $AND = "";
212
213         // First we have to do some analysis...
214         if (substr($file, 0, 7) == "action-") {
215                 // This is an action file!
216                 $type = "action";
217                 $search = substr($file, 7);
218                 switch ($ACC_LVL)
219                 {
220                 case "admin":
221                         $modCheck = "admin";
222                         break;
223
224                 case "sponsor":
225                 case "guest":
226                 case "member":
227                         $modCheck = $GLOBALS['module'];
228                         break;
229                 }
230                 $AND = " AND (what='' OR `what` IS NULL)";
231         } elseif (substr($file, 0, 5) == "what-") {
232                 // This is an admin what file!
233                 $type = "what";
234                 $search = substr($file, 5);
235                 $AND = "";
236                 switch ($ACC_LVL)
237                 {
238                 case "admin":
239                         $modCheck = "admin";
240                         break;
241
242                 case "guest":
243                 case "member":
244                         $modCheck = $GLOBALS['module'];
245                         if (!IS_ADMIN()) {
246                                 $AND = " AND `visible`='Y' AND `locked`='N'";
247                         }
248                         break;
249                 }
250                 $dummy = substr($search, 0, -4);
251                 $AND .= " AND action='".GET_ACTION($ACC_LVL, $dummy)."'";
252         } elseif (($ACC_LVL == "sponsor") || ($ACC_LVL == "engine")) {
253                 // Sponsor / engine menu
254                 $type = "what";
255                 $search = $file;
256                 $modCheck = $GLOBALS['module'];
257                 $AND = "";
258         } else {
259                 // Other
260                 $type = "menu";
261                 $search = $file;
262                 $modCheck = $GLOBALS['module'];
263                 $AND = "";
264         }
265         if ((!isset($NAV_DEPTH)) && (!$return)) {
266                 $NAV_DEPTH = 0;
267                 $prefix = "<div class=\"you_are_here\">{!YOU_ARE_HERE!}&nbsp;<strong><a class=\"you_are_here\" href=\"{!URL!}/modules.php?module=".$GLOBALS['module'].$LINK_ADD."\">Home</a></strong>";
268         } else {
269                 if (!$return) $NAV_DEPTH++;
270                 $prefix = "";
271         }
272
273         $prefix .= "&nbsp;-&gt;&nbsp;";
274
275         // We need to remove .php and the end
276         if (substr($search, -4, 4) == ".php") {
277                 // Remove the .php
278                 $search = substr($search, 0, -4);
279         } // END - i
280
281         // Get the title from menu
282         $result = SQL_QUERY_ESC("SELECT title FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE %s='%s' ".$AND." LIMIT 1",
283                 array($ACC_LVL, $type, $search), __FILE__, __LINE__);
284
285         // Menu found?
286         if (SQL_NUMROWS($result) == 1) {
287                 // Load title
288                 list($ret) = SQL_FETCHROW($result);
289
290                 // Shall we return it?
291                 if ($return) {
292                         // Return title
293                         return $ret;
294                 } elseif (((GET_EXT_VERSION("sql_patches") >= "0.2.3") && (getConfig('youre_here') == "Y")) || ((IS_ADMIN()) && ($modCheck == "admin"))) {
295                         // Output HTML code
296                         $OUT = $prefix."<strong><a class=\"you_are_here\" href=\"{!URL!}/modules.php?module=".$modCheck."&amp;".$type."=".$search.$LINK_ADD."\">".$ret."</a></strong>\n";
297
298                         // Can we close the you-are-here navigation?
299                         //* DEBUG: */ echo __LINE__."*".$type."/".$GLOBALS['what']."*<br />\n";
300                         if (($type == "what") || (($type == "action") && ((!isset($GLOBALS['what'])) || ($GLOBALS['what'] == "overview")))) {
301                                 //* DEBUG: */ echo __LINE__."+".$type."+<br />\n";
302                                 // Add closing div and br-tag
303                                 $OUT .= "</div><br />\n";
304                                 $NAV_DEPTH = "0";
305
306                                 // Run the filter chain
307                                 $ret = RUN_FILTER('post_youhere_line', array('access_level' => $ACC_LVL, 'type' => $type, 'content' => ""));
308                                 $OUT .= $ret['content'];
309                         } // END - if
310                 }
311         } // END - if
312
313         // Free result
314         SQL_FREERESULT($result);
315
316         // Return or output HTML code?
317         if ($output) {
318                 // Output HTML code here
319                 OUTPUT_HTML($OUT);
320         } else {
321                 // Return HTML code
322                 return $OUT;
323         }
324 }
325 //
326 function ADD_MENU ($MODE, $act, $wht) {
327         // Init some variables
328         $main_cnt = 0;
329         $AND = "";
330         $main_action = "";
331         $sub_what = "";
332
333         if (!VALIDATE_MENU_ACTION($MODE, $act, $wht, true)) return getMessage('CODE_MENU_NOT_VALID');
334
335         // Non-admin shall not see all menus
336         if (!IS_ADMIN()) {
337                 $AND = " AND `visible`='Y' AND `locked`='N'";
338         }
339
340         // Load SQL data and add the menu to the output stream...
341         $result_main = SQL_QUERY_ESC("SELECT title, action FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE (what='' OR `what` IS NULL)".$AND." ORDER BY `sort`",
342                 array($MODE), __FILE__, __LINE__);
343         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
344         if (SQL_NUMROWS($result_main) > 0) {
345                 OUTPUT_HTML("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"".$MODE."_menu\">");
346                 // There are menus available, so we simply display them... :)
347                 while (list($main_title, $main_action) = SQL_FETCHROW($result_main)) {
348                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
349                         // Init variables
350                         $BLOCK_MODE = false; $act = $main_action;
351
352                         // Prepare content
353                         $content = array(
354                                 'action' => $main_action,
355                                 'title'  => $main_title
356                         );
357
358                         // Load menu header template
359                         LOAD_TEMPLATE($MODE."_menu_title", false, $content);
360
361                         $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`",
362                          array($MODE, $main_action), __FILE__, __LINE__);
363                         $ctl = SQL_NUMROWS($result_sub);
364                         if ($ctl > 0) {
365                                 $cnt=0;
366                                 while (list($sub_title, $sub_what) = SQL_FETCHROW($result_sub)) {
367                                         // Init content
368                                         $content = "";
369
370                                         // Full file name for checking menu
371                                         //* DEBUG: */ echo __LINE__.":!!!!".$sub_what."!!!<br />\n";
372                                         $test_inc = sprintf("%sinc/modules/%s/what-%s.php", PATH, $MODE, $sub_what);
373                                         $test = (FILE_READABLE($test_inc));
374                                         if ($test) {
375                                                 if ((!empty($wht)) && (($wht == $sub_what))) {
376                                                         $content = "<strong>";
377                                                 }
378
379                                                 // Navigation link
380                                                 $content .= "<a name=\"menu\" class=\"menu_blur\" href=\"{!URL!}/modules.php?module=".$GLOBALS['module']."&amp;what=".$sub_what.ADD_URL_DATA("")."\" target=\"_self\">";
381                                         } else {
382                                                 $content .= "<em>";
383                                         }
384
385                                         // Menu title
386                                         $content .= getConfig('menu_blur_spacer') . $sub_title;
387
388                                         if ($test) {
389                                                 $content .= "</a>";
390                                         } else {
391                                                 $content .= "</em>";
392                                         }
393
394                                         if ((!empty($wht)) && (($wht == $sub_what))) {
395                                                 $content .= "</strong>";
396                                         }
397                                         $wht = $sub_what; $cnt++;
398                                         // Prepare array
399                                         $content =  array(
400                                                 'menu' => $content,
401                                                 'what' => $sub_what
402                                         );
403
404                                         // Add regular menu row or bottom row?
405                                         if ($cnt < $ctl) {
406                                                 LOAD_TEMPLATE($MODE."_menu_row", false, $content);
407                                         } else {
408                                                 LOAD_TEMPLATE($MODE."_menu_bottom", false, $content);
409                                         }
410                                 }
411                         } else {
412                                 // This is a menu block... ;-)
413                                 $BLOCK_MODE = true;
414                                 $INC_BLOCK = sprintf("%sinc/modules/%s/action-%s.php", PATH, $MODE, $main_action);
415                                 if (FILE_READABLE($INC_BLOCK)) {
416                                         // Load include file
417                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("<tr>
418
419   <td class=\"".$MODE."_menu_whats\">");
420                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
421                                         include ($INC_BLOCK);
422                                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
423                                         if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("  </td>
424 </tr>");
425                                 }
426                                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
427                         }
428                         $main_cnt++;
429                         //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
430                         if (SQL_NUMROWS($result_main) > $main_cnt)      OUTPUT_HTML("<tr><td class=\"".$MODE."_menu_seperator\"></td></tr>");
431                 }
432
433                 // Free memory
434                 SQL_FREERESULT($result_main);
435
436                 // Close table
437                 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
438                 OUTPUT_HTML("</table>");
439         }
440 }
441 // This patched function will reduce many SELECT queries for the specified or current admin login
442 function IS_ADMIN ($admin="") {
443         global $cacheArray;
444
445         // Init variables
446         $ret = false; $passCookie = ""; $valPass = "";
447         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."<br />";
448
449         // If admin login is not given take current from cookies...
450         if ((empty($admin)) && (isSessionVariableSet('admin_login')) && (isSessionVariableSet('admin_md5'))) {
451                 // Get admin login and password from session/cookies
452                 $admin = get_session('admin_login');
453                 $passCookie = get_session('admin_md5');
454         }
455         //* DEBUG: */ echo __LINE__."ADMIN:".$admin."/".$passCookie."<br />";
456
457         // Search in array for entry
458         if (isset($cacheArray['admin_hash'])) {
459                 // Use cached string
460                 $valPass = $cacheArray['admin_hash'];
461         } elseif ((!empty($passCookie)) && (isset($cacheArray['admins']['password'][$admin])) && (!empty($admin))) {
462                 // Count cache hits
463                 incrementConfigEntry('cache_hits');
464
465                 // Login data is valid or not?
466                 $valPass = generatePassString($cacheArray['admins']['password'][$admin]);
467
468                 // Cache it away
469                 $cacheArray['admin_hash'] = $valPass;
470         } elseif ((!empty($admin)) && ((!EXT_IS_ACTIVE("cache"))) || (!isset($cacheArray['admins']['password'][$admin]))) {
471                 // Search for admin
472                 $result = SQL_QUERY_ESC("SELECT HIGH_PRIORITY password FROM `{!_MYSQL_PREFIX!}_admins` WHERE login='%s' LIMIT 1",
473                         array($admin), __FILE__, __LINE__);
474
475                 // Is he admin?
476                 $passDB = "";
477                 if (SQL_NUMROWS($result) == 1) {
478                         // Admin login was found so let's load password from DB
479                         list($passDB) = SQL_FETCHROW($result);
480
481                         // Temporary cache it
482                         $cacheArray['admins']['password'][$admin] = $passDB;
483
484                         // Generate password hash
485                         $valPass = generatePassString($passDB);
486                 } // END - if
487
488                 // Free memory
489                 SQL_FREERESULT($result);
490         }
491
492         if (!empty($valPass)) {
493                 // Check if password is valid
494                 //* DEBUG: */ print __FUNCTION__."*".$valPass."/".$passCookie."*<br />\n";
495                 $ret = (($valPass == $passCookie) || ((strlen($valPass) == 32) && ($valPass == md5($passCookie))) || (($valPass == "*FAILED*") && (!EXT_IS_ACTIVE("cache"))));
496         }
497
498         // Return result of comparision
499         //* DEBUG: */ if (!$ret) echo __LINE__."OK!<br />";
500         return $ret;
501 }
502 //
503 function ADD_MAX_RECEIVE_LIST($MODE, $default="", $return=false)
504 {
505         global $_POST;
506         $OUT = "";
507         switch ($MODE)
508         {
509         case "guest":
510                 // Guests (in the registration form) are not allowed to select 0 mails per day.
511                 $result = SQL_QUERY("SELECT value, comment FROM `{!_MYSQL_PREFIX!}_max_receive` WHERE value > 0 ORDER BY value", __FILE__, __LINE__);
512                 if (SQL_NUMROWS($result) > 0)
513                 {
514                         $OUT = "";
515                         while (list($value, $comment) = SQL_FETCHROW($result))
516                         {
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                 }
529                  else
530                 {
531                         // Maybe the admin has to setup some maximum values?
532                 }
533                 break;
534
535         case "member":
536                 // Members are allowed to set to zero mails per day (we will change this soon!)
537                 $result = SQL_QUERY("SELECT value, comment FROM `{!_MYSQL_PREFIX!}_max_receive` ORDER BY value", __FILE__, __LINE__);
538                 if (SQL_NUMROWS($result) > 0)
539                 {
540                         $OUT = "";
541                         while (list($value, $comment) = SQL_FETCHROW($result))
542                         {
543                                 $OUT .= "      <option value=\"".$value."\"";
544                                 if ($default == $value) $OUT .= " selected=\"selected\"";
545                                 $OUT .= ">".$value." ".PER_DAY;
546                                 if (!empty($comment)) $OUT .= " (".$comment.")";
547                                 $OUT .= "</option>\n";
548                         }
549                         define('__MAX_RECEIVE_OPTIONS', $OUT);
550                         SQL_FREERESULT($result);
551                         $OUT = LOAD_TEMPLATE("member_receive_table", true);
552                 }
553                  else
554                 {
555                         // Maybe the admin has to setup some maximum values?
556                         $OUT = LOAD_TEMPLATE("admin_settings_saved", true, NO_MAX_VALUES);
557                 }
558                 break;
559         }
560         if ($return)
561         {
562                 // Return generated HTML code
563                 return $OUT;
564         }
565          else
566         {
567                 // Output directly (default)
568                 OUTPUT_HTML($OUT);
569         }
570 }
571 //
572 function SEARCH_EMAIL_USERTAB($email)
573 {
574         $ret = false;
575         $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE email LIKE '{PER}%s{PER}' LIMIT 1", array($email), __FILE__, __LINE__);
576         if (SQL_NUMROWS($result) == 1) $ret = true;
577         SQL_FREERESULT($result);
578         return $ret;
579 }
580 //
581 function WHAT_IS_VALID($act, $wht, $type="guest")
582 {
583         if (IS_ADMIN())
584         {
585                 // Everything is valid to the admin :-)
586                 return true;
587         }
588          else
589         {
590                 $ret = false;
591                 $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE action='%s' AND what='%s' AND `locked`='N' LIMIT 1", array($type, $act, $wht), __FILE__, __LINE__);
592                 // Is "what" valid?
593                 if (SQL_NUMROWS($result) == 1) $ret = true;
594                 SQL_FREERESULT($result);
595                 return $ret;
596         }
597 }
598 //
599 function IS_MEMBER () {
600         global $status, $LAST, $cacheArray;
601         if (!is_array($LAST)) $LAST = array();
602         $ret = false;
603
604         // is the cache entry there?
605         if (isset($cacheArray['is_member'])) {
606                 // Then return it
607                 return $cacheArray['is_member'];
608         } // END - if
609
610         // Fix "deleted" cookies first
611         FIX_DELETED_COOKIES(array('userid', 'u_hash'));
612
613         // Are cookies set?
614         if ((!empty($GLOBALS['userid'])) && (isSessionVariableSet('u_hash'))) {
615                 // Cookies are set with values, but are they valid?
616                 $result = SQL_QUERY_ESC("SELECT password, status, last_module, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
617                         array($GLOBALS['userid']), __FILE__, __LINE__);
618                 if (SQL_NUMROWS($result) == 1) {
619                         // Load data from cookies
620                         list($password, $status, $mod, $onl) = SQL_FETCHROW($result);
621
622                         // Validate password by created the difference of it and the secret key
623                         $valPass = generatePassString($password);
624
625                         // Transfer last module and online time
626                         if ((!empty($mod)) && (empty($LAST['module']))) {
627                                 $LAST['module'] = $mod;
628                                 $LAST['online'] = $onl;
629                         } // END - if
630
631                         // So did we now have valid data and an unlocked user?
632                         //* DEBUG: */ echo $valPass."<br />".get_session('u_hash')."<br />";
633                         if (($status == "CONFIRMED") && ($valPass == get_session('u_hash'))) {
634                                 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
635                                 $ret = true;
636                         } else {
637                                 // Maybe got locked etc.
638                                 //* DEBUG: */ echo __LINE__."!!!<br />";
639                                 destroy_user_session();
640                         }
641                 } else {
642                         // Cookie data is invalid!
643                         //* DEBUG: */ echo __LINE__."***<br />";
644                         destroy_user_session();
645                 }
646
647                 // Free memory
648                 SQL_FREERESULT($result);
649         } else {
650                 // Cookie data is invalid!
651                 //* DEBUG: */ echo __LINE__."///<br />";
652                 destroy_user_session();
653         }
654
655         // Cache status
656         $cacheArray['is_member'] = $ret;
657
658         // Return status
659         return $ret;
660 }
661 //
662 function VALIDATE_MENU_ACTION ($MODE, $act, $wht, $UPDATE=false)
663 {
664         $ret = false;
665         $ADD = "";
666         if ((!IS_ADMIN()) && ($MODE != "admin")) $ADD = " AND `locked`='N'";
667         //* DEBUG: */ echo __LINE__.":".$MODE."/".$act."/".$wht."*<br />\n";
668         if (($MODE != "admin") && ($UPDATE)) {
669                 // Update guest or member menu
670                 $SQL = SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_%s_menu` SET counter=counter+1 WHERE action='%s' AND what='%s'".$ADD." LIMIT 1",
671                         array($MODE, $act, $wht), __FILE__, __LINE__, false);
672         } elseif ($wht != "overview") {
673                 // Other actions
674                 $SQL = SQL_QUERY_ESC("SELECT id, what FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE action='%s'".$ADD." ORDER BY action DESC LIMIT 1",
675                         array($MODE, $act), __FILE__, __LINE__, false);
676         } else {
677                 // Admin login overview
678                 $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",
679                         array($MODE, $act), __FILE__, __LINE__, false);
680         }
681
682         // Run SQL command
683         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
684         if ($UPDATE) {
685                 if (SQL_AFFECTEDROWS() == 1) $ret = true;
686                 //* DEBUG: */ debug_print_backtrace();
687         } else {
688                 if (SQL_NUMROWS($result) == 1) {
689                         //* DEBUG: */ echo __LINE__."+".$SQL."+<br />\n";
690                         //* DEBUG: */ echo __LINE__."*".$id."/".$wht."/".$wht2."*<br />\n";
691                         $ret = true;
692                 }
693         }
694
695         // Free memory
696         SQL_FREERESULT($result);
697
698         // Return result
699         return $ret;
700 }
701 //
702 function GET_MOD_DESCR($MODE, $wht, $column="what")
703 {
704         // Fix empty "what"
705         if (empty($wht)) {
706                 $wht = "welcome";
707                 if (getConfig('index_home') != "") $wht = getConfig('index_home');
708         } // END - if
709
710         // Default is not found
711         $ret = "??? (".$wht.")";
712
713         // Look for title
714         $result = SQL_QUERY_ESC("SELECT title FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE %s='%s' LIMIT 1",
715                 array($MODE, $column, $wht), __FILE__, __LINE__);
716
717         // Is there an entry?
718         if (SQL_NUMROWS($result) == 1) {
719                 // Fetch the title
720                 list($ret) = SQL_FETCHROW($result);
721         } // END - if
722
723         // Free result
724         SQL_FREERESULT($result);
725         return $ret;
726 }
727 //
728 function SEND_MODE_MAILS($mod, $modes) {
729         global $DATA;
730
731         // Load hash
732         $result_main = SQL_QUERY_ESC("SELECT password FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
733                 array($GLOBALS['userid']), __FILE__, __LINE__);
734         if (SQL_NUMROWS($result_main) == 1) {
735                 // Load hash from database
736                 list($hashDB) = SQL_FETCHROW($result_main);
737
738                 // Extract salt from cookie
739                 $salt = substr(get_session('u_hash'), 0, -40);
740
741                 // Now let's compare passwords
742                 $hash = generatePassString($hashDB);
743                 if (($hash == get_session('u_hash')) || ($_POST['pass1'] == $_POST['pass2'])) {
744                         // Load user's data
745                         $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",
746                                 array($GLOBALS['userid'], $hashDB), __FILE__, __LINE__);
747                         if (SQL_NUMROWS($result) == 1) {
748                                 // Load the data
749                                 $DATA = SQL_FETCHROW($result);
750
751                                 // Free result
752                                 SQL_FREERESULT($result);
753
754                                 // Translate gender
755                                 $DATA[0] = TRANSLATE_GENDER($DATA[0]);
756
757                                 // Clear/init the content variable
758                                 $content = "";
759                                 $DATA['info'] = "";
760
761                                 switch ($mod)
762                                 {
763                                 case "mydata":
764                                         foreach ($modes as $mode) {
765                                                 switch ($mode)
766                                                 {
767                                                 case "normal": break; // Do not add any special lines
768
769                                                 case "email": // Email was changed!
770                                                         $content = MEMBER_CHANGED_EMAIL.": ".$_POST['old_addy']."\n";
771                                                         break;
772
773                                                 case "pass": // Password was changed
774                                                         $content = MEMBER_CHANGED_PASS."\n";
775                                                         break;
776
777                                                 default:
778                                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
779                                                         $content = MEMBER_UNKNOWN_MODE.": ".$mode."\n\n";
780                                                         break;
781                                                 } // END - switch
782                                         } // END - if
783
784                                         if (EXT_IS_ACTIVE("country")) {
785                                                 // Replace code with description
786                                                 $DATA[4] = COUNTRY_GENERATE_INFO($_POST['country_code']);
787                                         } // END - if
788
789                                         // Load template
790                                         $msg = LOAD_EMAIL_TEMPLATE("member_mydata_notify", $content, $GLOBALS['userid']);
791
792                                         if (getConfig('admin_notify') == "Y") {
793                                                 // The admin needs to be notified about a profile change
794                                                 $msg_admin = "admin_mydata_notify";
795                                                 $sub_adm   = ADMIN_CHANGED_DATA;
796                                         } else {
797                                                 // No mail to admin
798                                                 $msg_admin = "";
799                                                 $sub_adm   = "";
800                                         }
801
802                                         // Set subject lines
803                                         $sub_mem = MEMBER_CHANGED_DATA;
804
805                                         // Output success message
806                                         $content = "<span class=\"member_done\">".MYDATA_MAIL_SENT."</span>";
807                                         break;
808
809                                 default:
810                                         DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
811                                         $content = "<span class=\"member_failed\">".UNKNOWN_MODULE."</span>";
812                                         break;
813                                 } // END - switch
814                         } else {
815                                 // Could not load profile data
816                                 $content = "<span class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</span>";
817                         }
818                 } else {
819                         // Passwords mismatch
820                         $content = "<span class=\"member_failed\">".MEMBER_PASSWORD_ERROR."</span>";
821                 }
822         } else {
823                 // Could not load profile
824                 $content = "<span class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</span>";
825         }
826
827         // Send email to user if required
828         if ((!empty($sub_mem)) && (!empty($msg))) {
829                 // Send member mail
830                 SEND_EMAIL($DATA[7], $sub_mem, $msg);
831         } // END - if
832
833         // Send only if no other error has occured
834         if (empty($content)) {
835                 if ((!empty($sub_adm)) && (!empty($msg_admin))) {
836                         // Send admin mail
837                         SEND_ADMIN_NOTIFICATION($sub_adm, $msg_admin, $content, $GLOBALS['userid']);
838                 } elseif (getConfig('admin_notify') == "Y") {
839                         // Cannot send mails to admin!
840                         $content = CANNOT_SEND_ADMIN_MAILS;
841                 } else {
842                         // No mail to admin
843                         $content = "<span class=\"member_done\">".MYDATA_MAIL_SENT."</span>";
844                 }
845         } // END - if
846
847         // Load template
848         LOAD_TEMPLATE("admin_settings_saved", false, $content);
849 }
850 // Update module counter
851 function COUNT_MODULE($mod) {
852         if ($mod != "css") {
853                 // Do count all other modules but not accesses on CSS file css.php!
854                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_mod_reg` SET clicks=clicks+1 WHERE module='%s' LIMIT 1",
855                         array($mod), __FILE__, __LINE__);
856         } // END - if
857 }
858 // Get action value from mode (admin/guest/member) and what-value
859 function GET_ACTION ($MODE, &$wht) {
860         global $ret;
861
862         // @DEPRECATED Init status
863         $ret = "";
864
865         //* DEBUG: */ echo __LINE__."=".$MODE."/".$wht."/".$GLOBALS['action']."=<br />";
866         if ((empty($wht)) && ($MODE != "admin")) {
867                 $wht = "welcome";
868                 if (getConfig('index_home') != "") $wht = getConfig('index_home');
869         } // END - if
870
871         if ($MODE == "admin") {
872                 // Action value for admin area
873                 if (!empty($GLOBALS['action'])) {
874                         // Get it directly from URL
875                         return $GLOBALS['action'];
876                 } elseif (($wht == "overview") || (empty($GLOBALS['what']))) {
877                         // Default value for admin area
878                         $ret = "login";
879                 }
880         } elseif (!empty($GLOBALS['action'])) {
881                 // Get it directly from URL
882                 return $GLOBALS['action'];
883         }
884         //* DEBUG: */ echo __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ret=".$ret."<br />\n";
885
886         // Does the module have a menu?
887         if (MODULE_HAS_MENU($MODE)) {
888                 // Rewriting modules to menu
889                 switch ($MODE) {
890                         case "index": $MODE = "guest";  break;
891                         case "login": $MODE = "member"; break;
892                 } // END - switch
893
894                 // Guest and member menu is "main" as the default
895                 if (empty($ret)) $ret = "main";
896
897                 // Load from database
898                 $result = SQL_QUERY_ESC("SELECT action FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE what='%s' LIMIT 1",
899                         array($MODE, $wht), __FILE__, __LINE__);
900                 if (SQL_NUMROWS($result) == 1) {
901                         // Load action value and pray that this one is the right you want... ;-)
902                         list($ret) = SQL_FETCHROW($result);
903                 } // END - if
904
905                 // Free memory
906                 SQL_FREERESULT($result);
907         } elseif ((GET_EXT_VERSION("sql_patches") == "") && ($MODE != "admin")) {
908                 // No sql_patches installed!
909                 LOAD_URL("admin.php");
910         }
911
912         // Return action value
913         return $ret;
914 }
915
916 // Get category name back
917 function GET_CATEGORY ($cid) {
918         // Default is not found
919         $ret = _CATEGORY_404;
920
921         // Is the category id set?
922         if ($cid == "0") {
923                 // No category
924                 $ret = _CATEGORY_NONE;
925         } elseif ($cid > 0) {
926                 // Lookup the category in database
927                 $result = SQL_QUERY_ESC("SELECT cat FROM `{!_MYSQL_PREFIX!}_cats` WHERE id=%s LIMIT 1",
928                         array(bigintval($cid)), __FILE__, __LINE__);
929                 if (SQL_NUMROWS($result) == 1) {
930                         // Category found... :-)
931                         list($ret) = SQL_FETCHROW($result);
932                 } // END - if
933
934                 // Free result
935                 SQL_FREERESULT($result);
936         } // END - if
937
938         // Return result
939         return $ret;
940 }
941
942 // Get a string of "mail title" and price back
943 function GET_PAYMENT ($pid, $full=false) {
944         // Default is not found
945         $ret = _PAYMENT_404;
946
947         // Load payment data
948         $result = SQL_QUERY_ESC("SELECT mail_title, price FROM `{!_MYSQL_PREFIX!}_payments` WHERE id=%s LIMIT 1",
949                 array(bigintval($pid)), __FILE__, __LINE__);
950         if (SQL_NUMROWS($result) == 1) {
951                 // Payment type found... :-)
952                 if (!$full) {
953                         // Return only title
954                         list($ret) = SQL_FETCHROW($result);
955                 } else {
956                         // Return title and price
957                         list($t, $p) = SQL_FETCHROW($result);
958                         $ret = $t." / ".TRANSLATE_COMMA($p)." ".POINTS;
959                 }
960         }
961
962         // Free result
963         SQL_FREERESULT($result);
964
965         // Return result
966         return $ret;
967 }
968
969 // Get (basicly) the price of given payment id
970 function GET_PAY_POINTS($pid, $lookFor="price")
971 {
972         $ret = "-1";
973         $result = SQL_QUERY_ESC("SELECT %s FROM `{!_MYSQL_PREFIX!}_payments` WHERE id=%s LIMIT 1",
974                 array($lookFor, $pid), __FILE__, __LINE__);
975         if (SQL_NUMROWS($result) == 1)
976         {
977                 // Payment type found... :-)
978                 list($ret) = SQL_FETCHROW($result);
979                 SQL_FREERESULT($result);
980         }
981         return $ret;
982 }
983
984 // Remove a receiver's ID from $ARRAY and add a link for him to confirm
985 function REMOVE_RECEIVER (&$ARRAY, $key, $uid, $pool_id, $stats_id="", $bonus=false)
986 {
987         $ret = "failed";
988         if ($uid > 0)
989         {
990                 // Remove entry from array
991                 unset($ARRAY[$key]);
992
993                 // Is there already a line for this user available?
994                 if ($stats_id > 0)
995                 {
996                         // Only when we got a real stats ID continue searching for the entry
997                         $type = "NORMAL"; $rowName = "stats_id";
998                         if ($bonus) { $type = "BONUS"; $rowName = "bonus_id"; }
999                         $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_links` WHERE %s='%s' AND userid=%s AND link_type='%s' LIMIT 1",
1000                          array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1001                         if (SQL_NUMROWS($result) == 0)
1002                         {
1003                                 // No, so we add one!
1004                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_links` (%s, userid, link_type) VALUES ('%s','%s','%s')",
1005                                  array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
1006                                 $ret = "done";
1007                         }
1008                          else
1009                         {
1010                                 // Already found
1011                                 $ret = "already";
1012                         }
1013
1014                         // Free memory
1015                         SQL_FREERESULT($result);
1016                 }
1017         }
1018         // Return status for sending routine
1019         return $ret;
1020 }
1021
1022 // Calculate sum (default) or count records of given criteria
1023 function GET_TOTAL_DATA ($search, $tableName, $lookFor, $whereStatement="userid", $onlyRows=false, $add="") {
1024         $ret = 0;
1025         //* DEBUG: */ echo $search."/".$tableName."/".$lookFor."/".$whereStatement."/".$add."<br />\n";
1026         if (($onlyRows) || ($lookFor == "userid")) {
1027                 // Count rows
1028                 //* DEBUG: */ echo "COUNT!<br />\n";
1029                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `{!_MYSQL_PREFIX!}_%s` WHERE `%s`='%s'".$add,
1030                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1031         } else {
1032                 // Add all rows
1033                 //* DEBUG: */ echo "SUM!<br />\n";
1034                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `{!_MYSQL_PREFIX!}_%s` WHERE `%s`='%s'".$add,
1035                         array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1036         }
1037
1038         // Load row
1039         list($ret) = SQL_FETCHROW($result);
1040
1041         // Free result
1042         SQL_FREERESULT($result);
1043
1044         // Fix empty values
1045         if ((empty($ret)) && ($lookFor != "counter") && ($lookFor != "id") && ($lookFor != "userid")) {
1046                 // Float number
1047                 $ret = "0.00000";
1048         } elseif ("".$ret."" == "") {
1049                 // Fix empty result
1050                 $ret = "0";
1051         }
1052
1053         // Return value
1054         return $ret;
1055 }
1056 // "Getter fro ref level percents
1057 function GET_REF_LEVEL_PERCENTS ($level) {
1058         global $cacheInstance, $cacheArray;
1059
1060         // Default is zero
1061         $per = 0;
1062
1063         // Do we have cache?
1064         if ((isset($cacheArray['ref_depths']['level'])) && (EXT_IS_ACTIVE("cache"))) {
1065                 // First look for level
1066                 $key = array_search($level, $cacheArray['ref_depths']['level']);
1067                 if ($key !== false) {
1068                         // Entry found!
1069                         $per = $cacheArray['ref_depths']['percents'][$key];
1070
1071                         // Count cache hit
1072                         incrementConfigEntry('cache_hits');
1073                 }
1074         } elseif (!EXT_IS_ACTIVE("cache")) {
1075                 // Get referal data
1076                 $result_lvl = SQL_QUERY_ESC("SELECT percents FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE level='%s' LIMIT 1",
1077                         array(bigintval($level)), __FILE__, __LINE__);
1078
1079                 // Entry found?
1080                 if (SQL_NUMROWS($result_lvl) == 1) {
1081                         // Get percents
1082                         list($per) = SQL_FETCHROW($result_lvl);
1083                 } // END - if
1084
1085                 // Free result
1086                 SQL_FREERESULT($result_lvl);
1087         }
1088
1089         // Return percent
1090         return $per;
1091 }
1092 /**
1093  *
1094  * Dynamic referal system, can also send mails!
1095  *
1096  * subject     = Subject line, write in lower-case letters and underscore is allowed
1097  * uid         = Referal ID wich should receive...
1098  * points      = ... xxx points
1099  * send_notify = shall I send the referal an email or not?
1100  * rid         = inc/modules/guest/what-confirm.php need this (DEPRECATED???)
1101  * locked      = Shall I pay it to normal (false) or locked (true) points ammount?
1102  * add_mode    = Add points only to $uid or also refs? (WARNING! Changing "ref" to "direct"
1103  *               for default value will cause no referal will get points ever!!!)
1104  */
1105 function ADD_POINTS_REFSYSTEM ($subject, $uid, $points, $send_notify=false, $rid="0", $locked=false, $add_mode="ref") {
1106         //* DEBUG: */ print "----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n";
1107         global $DATA, $cacheArray;
1108
1109         // Convert mode to lower-case
1110         $add_mode = strtolower($add_mode);
1111
1112         // When $uid = 0 add points to jackpot
1113         if ($uid == "0") {
1114                 // Add points to jackpot
1115                 ADD_JACKPOT($points);
1116                 return;
1117         } // END - if
1118
1119         // Add booking record if extension is installed
1120         if (EXT_IS_ACTIVE("booking")) {
1121                 // Add record
1122                 ADD_BOOKING_RECORD($subject, $uid, $points, "add");
1123         } // END - if
1124
1125         // Count up referal depth
1126         if (!isset($GLOBALS['ref_level'])) {
1127                 // Initialialize referal system
1128                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal system initialized!<br />\n";
1129                 $GLOBALS['ref_level'] = 0;
1130         } else {
1131                 // Increase referal level
1132                 $GLOBALS['ref_level']++;
1133                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal level increased. DEPTH={$GLOBALS['ref_level']}<br />\n";
1134         }
1135
1136         // Default is "normal" points
1137         $data = "points";
1138
1139         // Which points, locked or normal?
1140         if ($locked) $data = "locked_points";
1141
1142         // Check user account
1143         $result_user = SQL_QUERY_ESC("SELECT refid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
1144                 array(bigintval($uid)), __FILE__, __LINE__);
1145
1146         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},numRows=".SQL_NUMROWS($result_user).",points={$points}<br />\n";
1147         if (SQL_NUMROWS($result_user) == 1) {
1148                 // This is the user and his ref
1149                 list($ref, $email) = SQL_FETCHROW($result_user);
1150                 $cacheArray['add_uid'][$ref] = $uid;
1151
1152                 // Get percents
1153                 $per = GET_REF_LEVEL_PERCENTS($GLOBALS['ref_level']);
1154                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},depth={$GLOBALS['ref_level']},per={$per},mode={$add_mode}<br />\n";
1155
1156                 // Some percents found?
1157                 if ($per > 0) {
1158                         // Calculate new points
1159                         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},points={$points},per={$per},depth={$GLOBALS['ref_level']}<br />\n";
1160                         $ref_points = $points * $per / 100;
1161
1162                         // Pay refback here if level > 0 and in ref-mode
1163                         if ((EXT_IS_ACTIVE("refback")) && ($GLOBALS['ref_level'] > 0) && ($per < 100) && ($add_mode == "ref") && (isset($cacheArray['add_uid'][$uid]))) {
1164                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$GLOBALS['ref_level']} - BEFORE!<br />\n";
1165                                 $ref_points = ADD_REFBACK_POINTS($cacheArray['add_uid'][$uid], $uid, $points, $ref_points);
1166                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$GLOBALS['ref_level']} - AFTER!<br />\n";
1167                         } // END - if
1168
1169                         // Update points...
1170                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET %s=%s+%s WHERE userid=%s AND ref_depth='%s' LIMIT 1",
1171                                 array($data, $data, $ref_points, bigintval($uid), bigintval($GLOBALS['ref_level'])), __FILE__, __LINE__);
1172                         //* 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";
1173
1174                         // No entry updated?
1175                         if (SQL_AFFECTEDROWS() < 1) {
1176                                 // First ref in this level! :-)
1177                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_points` (userid,ref_depth,%s) VALUES (%s,'%s',%s)",
1178                                         array($data, bigintval($uid), bigintval($GLOBALS['ref_level']), $ref_points), __FILE__, __LINE__);
1179                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):data={$data},ref_points={$ref_points},uid={$uid},depth={$GLOBALS['ref_level']},mode={$add_mode} - INSERTED! (".SQL_AFFECTEDROWS().")<br />\n";
1180                         } // END - if
1181
1182                         // Update mediadata as well
1183                         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1184                                 // Update database
1185                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $ref_points);
1186                         } // END - if
1187
1188                         // Points updated, maybe I shall send him an email?
1189                         if (($send_notify) && ($ref > 0) && (!$locked)) {
1190                                 // Prepare content
1191                                 $content = array(
1192                                         'percent' => $per,
1193                                         'level'   => bigintval($GLOBALS['ref_level']),
1194                                         'points'  => $ref_points,
1195                                         'refid'   => bigintval($ref)
1196                                 );
1197
1198                                 // Load email template
1199                                 $msg = LOAD_EMAIL_TEMPLATE("confirm-referal", $content, bigintval($uid));
1200
1201                                 SEND_EMAIL($email, THANX_REFERRAL_ONE, $msg);
1202                         } elseif (($send_notify) && ($ref == 0) && (!$locked) && ($add_mode == "direct") && (!defined('__POINTS_VALUE'))) {
1203                                 // Direct payment shall be notified about
1204                                 define('__POINTS_VALUE', $ref_points);
1205
1206                                 // Prepare content
1207                                 $content = array(
1208                                         'text'   => REASON_DIRECT_PAYMENT,
1209                                         'points' => TRANSLATE_COMMA($ref_points)
1210                                 );
1211
1212                                 // Load message
1213                                 $msg = LOAD_EMAIL_TEMPLATE("add-points", $content, $uid);
1214
1215                                 // And sent it away
1216                                 SEND_EMAIL($email, SUBJECT_DIRECT_PAYMENT, $msg);
1217                                 if (!isset($_GET['mid'])) LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_POINTS_ADDED'));
1218                         }
1219
1220                         // Maybe there's another ref?
1221                         if (($ref > 0) && ($points > 0) && ($ref != $uid) && ($add_mode == "ref")) {
1222                                 // Then let's credit him here...
1223                                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref},points={$points} - ADVANCE!<br />\n";
1224                                 ADD_POINTS_REFSYSTEM(sprintf("%s_ref:%s", $subject, $GLOBALS['ref_level']), $ref, $points, $send_notify, $ref, $locked);
1225                         } // END - if
1226                 } // END - if
1227         } // END - if
1228
1229         // Free result
1230         SQL_FREERESULT($result_user);
1231         //* DEBUG: */ print "</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />\n";
1232 }
1233 //
1234 function UPDATE_REF_COUNTER ($uid) {
1235         global $cacheArray, $cacheInstance;
1236
1237         // Make it sure referal level zero (member him-/herself) is at least selected
1238         if (empty($cacheArray['ref_level'][$uid])) $cacheArray['ref_level'][$uid] = 1;
1239         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},level={$cacheArray['ref_level'][$uid]}<br />\n";
1240
1241         // Update counter
1242         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_refsystem` SET counter=counter+1 WHERE userid=%s AND level='%s' LIMIT 1",
1243                 array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1244
1245         // When no entry was updated then we have to create it here
1246         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):updated=".SQL_AFFECTEDROWS()."<br />\n";
1247         if (SQL_AFFECTEDROWS() < 1) {
1248                 // First count!
1249                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_refsystem` (userid, level, counter) VALUES (%s,%s,1)",
1250                         array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__);
1251                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid}<br />\n";
1252         } // END - if
1253
1254         // Check for his referal
1255         $result = SQL_QUERY_ESC("SELECT refid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
1256                 array(bigintval($uid)), __FILE__, __LINE__);
1257
1258         // Load refid
1259         list($ref) = SQL_FETCHROW($result);
1260
1261         // Free memory
1262         SQL_FREERESULT($result);
1263         //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):uid={$uid},ref={$ref}<br />\n";
1264
1265         // When he has a referal...
1266         if (($ref > 0) && ($ref != $uid)) {
1267                 // Move to next referal level and count his counter one up!
1268                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - ADVANCE!<br />\n";
1269                 $cacheArray['ref_level'][$uid]++; UPDATE_REF_COUNTER($ref);
1270         } elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2")) {
1271                 // Remove cache here
1272                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - CACHE!<br />\n";
1273                 REBUILD_CACHE("refsystem", "refsystem");
1274         }
1275
1276         // "Walk" back here
1277         $cacheArray['ref_level'][$uid]--;
1278
1279         // Handle refback here if extension is installed
1280         if (EXT_IS_ACTIVE("refback")) {
1281                 UPDATE_REFBACK_table($uid);
1282         } // END - if
1283 }
1284
1285 // OBSOLETE: Sends out mail to all administrators
1286 function SEND_ADMIN_EMAILS ($subj, $msg) {
1287         // Load all admin email addresses
1288         $result = SQL_QUERY("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` ORDER BY `id` ASC", __FILE__, __LINE__);
1289         while (list($email) = SQL_FETCHROW($result)) {
1290                 // Send the email out
1291                 SEND_EMAIL($email, $subj, $msg);
1292         } // END - if
1293
1294         // Free result
1295         SQL_FREERESULT($result);
1296
1297         // Really simple... ;-)
1298 }
1299
1300 // Get ID number from administrator's login name
1301 function GET_ADMIN_ID ($login) {
1302         global $cacheArray;
1303         $ret = "-1";
1304         if (isset($cacheArray['admins']['aid'][$login])) {
1305                 // Check cache
1306                 $ret = $cacheArray['admins']['aid'][$login];
1307
1308                 // Update cache hits
1309                 incrementConfigEntry('cache_hits');
1310         } elseif (!EXT_IS_ACTIVE("cache")) {
1311                 // Load from database
1312                 $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_admins` WHERE login='%s' LIMIT 1",
1313                  array($login), __FILE__, __LINE__);
1314                 if (SQL_NUMROWS($result) == 1) {
1315                         list($ret) = SQL_FETCHROW($result);
1316                 } // END - if
1317
1318                 // Free result
1319                 SQL_FREERESULT($result);
1320         }
1321         return $ret;
1322 }
1323
1324 // "Getter" for current admin id
1325 function GET_CURRENT_ADMIN_ID () {
1326         // Get the admin login from session
1327         $adminLogin = get_session('admin_login');
1328
1329         // "Solve" it into an id
1330         $adminId = GET_ADMIN_ID($adminLogin);
1331
1332         // Secure and return it
1333         return bigintval($adminId);
1334 }
1335
1336 // Get password hash from administrator's login name
1337 function GET_ADMIN_HASH ($aid)
1338 {
1339         global $cacheArray;
1340         $ret = "-1";
1341         if (isset($cacheArray['admins']['password'][$aid])) {
1342                 // Check cache
1343                 $ret = $cacheArray['admins']['password'][$aid];
1344
1345                 // Update cache hits
1346                 incrementConfigEntry('cache_hits');
1347         } elseif (!EXT_IS_ACTIVE("cache")) {
1348                 // Load from database
1349                 $result = SQL_QUERY_ESC("SELECT password FROM `{!_MYSQL_PREFIX!}_admins` WHERE id=%s LIMIT 1",
1350                  array($aid), __FILE__, __LINE__);
1351                 if (SQL_NUMROWS($result) == 1) {
1352                         // Fetch data
1353                         list($ret) = SQL_FETCHROW($result);
1354
1355                         // Set cache
1356                         $cacheArray['admins']['password'][$aid] = $ret;
1357                 }
1358
1359                 // Free result
1360                 SQL_FREERESULT($result);
1361         }
1362         return $ret;
1363 }
1364 //
1365 function GET_ADMIN_LOGIN ($aid) {
1366         global $cacheArray;
1367         $ret = "***";
1368         if (isset($cacheArray['admins']['login'][$aid])) {
1369                 // Get cache
1370                 $ret = $cacheArray['admins']['login'][$aid];
1371
1372                 // Update cache hits
1373                 incrementConfigEntry('cache_hits');
1374         } elseif (!EXT_IS_ACTIVE("cache")) {
1375                 // Load from database
1376                 $result = SQL_QUERY_ESC("SELECT login FROM `{!_MYSQL_PREFIX!}_admins` WHERE id=%s LIMIT 1",
1377                         array(bigintval($aid)), __FILE__, __LINE__);
1378                 if (SQL_NUMROWS($result) == 1) {
1379                         // Fetch data
1380                         list($ret) = SQL_FETCHROW($result);
1381
1382                         // Set cache
1383                         $cacheArray['admins']['login'][$aid] = $ret;
1384                 } // END - if
1385
1386                 // Free memory
1387                 SQL_FREERESULT($result);
1388         }
1389         return $ret;
1390 }
1391 // Get email address of admin id
1392 function GET_ADMIN_EMAIL ($aid) {
1393         global $cacheArray;
1394
1395         $ret = "***";
1396         if (isset($cacheArray['admins']['email'][$aid])) {
1397                 // Get cache
1398                 $ret = $cacheArray['admins']['email'][$aid];
1399
1400                 // Update cache hits
1401                 incrementConfigEntry('cache_hits');
1402         } elseif (!EXT_IS_ACTIVE("cache")) {
1403                 // Load from database
1404                 $result_aid = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` WHERE id=%s LIMIT 1",
1405                         array(bigintval($aid)), __FILE__, __LINE__);
1406                 if (SQL_NUMROWS($result_aid) == 1) {
1407                         // Get data
1408                         list($ret) = SQL_FETCHROW($result_aid);
1409
1410                         // Set cache
1411                         $cacheArray['admins']['email'][$aid] = $ret;
1412                         } // END - if
1413
1414                 // Free result
1415                 SQL_FREERESULT($result_aid);
1416         }
1417
1418         // Return email
1419         return $ret;
1420 }
1421 // Get default ACL  of admin id
1422 function GET_ADMIN_DEFAULT_ACL ($aid) {
1423         global $cacheArray;
1424
1425         $ret = "***";
1426         if (isset($cacheArray['admins']['def_acl'][$aid])) {
1427                 // Use cache
1428                 $ret = $cacheArray['admins']['def_acl'][$aid];
1429
1430                 // Update cache hits
1431                 incrementConfigEntry('cache_hits');
1432         } elseif (!EXT_IS_ACTIVE("cache")) {
1433                 // Load from database
1434                 $result_aid = SQL_QUERY_ESC("SELECT default_acl FROM `{!_MYSQL_PREFIX!}_admins` WHERE id=%s LIMIT 1",
1435                         array(bigintval($aid)), __FILE__, __LINE__);
1436                 if (SQL_NUMROWS($result_aid) == 1) {
1437                         // Fetch data
1438                         list($ret) = SQL_FETCHROW($result_aid);
1439
1440                         // Set cache
1441                         $cacheArray['admins']['def_acl'][$aid] = $ret;
1442                 }
1443
1444                 // Free result
1445                 SQL_FREERESULT($result_aid);
1446         }
1447
1448         // Return email
1449         return $ret;
1450 }
1451 //
1452 function ADD_OPTION_LINES ($table, $id, $name, $default="", $special="", $where="") {
1453         $ret = "";
1454         if ($table == "/ARRAY/") {
1455                 // Selection from array
1456                 if (is_array($id) && is_array($name) && sizeof($id) == sizeof($name)) {
1457                         // Both are arrays
1458                         foreach ($id as $idx => $value) {
1459                                 $ret .= "<option value=\"".$value."\"";
1460                                 if ($default == $value) $ret .= " selected checked";
1461                                 $ret .= ">".$name[$idx]."</option>\n";
1462                         } // END - foreach
1463                 } // END - if
1464         } else {
1465                 // Data from database
1466                 $SPEC = ", ".$id;
1467                 if (!empty($special)) $SPEC = ", ".$special;
1468                 $ORDER = $name.$SPEC;
1469                 if ($table == "country") $ORDER = $special;
1470                 $result = SQL_QUERY_ESC("SELECT %s, %s".$SPEC." FROM `{!_MYSQL_PREFIX!}_%s` ".$where." ORDER BY %s",
1471                         array($id, $ORDER, $table, $name), __FILE__, __LINE__);
1472                 if (SQL_NUMROWS($result) > 0) {
1473                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1474                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1475                                 if (empty($special)) $add = "";
1476                                 $ret .= "<option value=\"".$value."\"";
1477                                 if ($default == $value) $ret .= " selected checked";
1478                                 if (!empty($add)) $add = " (".$add.")";
1479                                 $ret .= ">".$title.$add."</option>\n";
1480                         } // END - while
1481
1482                         // Free memory
1483                         SQL_FREERESULT($result);
1484                 } else {
1485                         // No data found
1486                         $ret = "<option value=\"x\">".SELECT_NONE."</option>\n";
1487                 }
1488         }
1489
1490         // Return - hopefully - the requested data
1491         return $ret;
1492 }
1493 // Activate exchange (DEPERECATED???)
1494 function activateExchange() {
1495         // Check total amount of users
1496         $totalUsers = GET_TOTAL_DATA("CONFIRMED", "user_data", "userid", "status", true, " AND max_mails > 0");
1497
1498         if ($totalUsers >= getConfig('activate_xchange')) {
1499                 // Activate System
1500                 $SQLs = array(
1501                         "UPDATE `{!_MYSQL_PREFIX!}_mod_reg` SET `locked`='N', hidden='N', mem_only='Y' WHERE module='order' LIMIT 1",
1502                         "UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE what='order' OR what='unconfirmed' LIMIT 2",
1503                         "UPDATE `{!_MYSQL_PREFIX!}_config` SET activate_xchange='0' WHERE config=0 LIMIT 1"
1504                 );
1505
1506                 // Run SQLs
1507                 RUN_FILTER('run_sqls', array('dry_run' => false, 'sqls' => $SQLs));
1508
1509                 // Rebuild cache
1510                 REBUILD_CACHE("config", "config");
1511         } // END - if
1512 }
1513 //
1514 function DELETE_USER_ACCOUNT($uid, $reason)
1515 {
1516         $points = 0;
1517         $result = SQL_QUERY_ESC("SELECT (SUM(p.points) - d.used_points) AS points
1518 FROM `{!_MYSQL_PREFIX!}_user_points` AS p
1519 LEFT JOIN `{!_MYSQL_PREFIX!}_user_data` AS d
1520 ON p.userid=d.userid
1521 WHERE p.userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1522         if (SQL_NUMROWS($result) == 1) {
1523                 // Save his points to add them to the jackpot
1524                 list($points) = SQL_FETCHROW($result);
1525                 SQL_FREERESULT($result);
1526
1527                 // Delete points entries as well
1528                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_points` WHERE userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1529
1530                 // Update mediadata as well
1531                 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1532                         // Update database
1533                         MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1534                 } // END - if
1535
1536                 // Now, when we have all his points adds them do the jackpot!
1537                 ADD_JACKPOT($points);
1538         }
1539
1540         // Delete category selections as well...
1541         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE userid=%s",
1542                 array(bigintval($uid)), __FILE__, __LINE__);
1543
1544         // Remove from rallye if found
1545         if (EXT_IS_ACTIVE("rallye")) {
1546                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_users` WHERE userid=%s",
1547                         array(bigintval($uid)), __FILE__, __LINE__);
1548         }
1549
1550         // Now a mail to the user and that's all...
1551         $msg = LOAD_EMAIL_TEMPLATE("del-user", array('text' => $reason), $uid);
1552         SEND_EMAIL($uid, getMessage('ADMIN_DEL_ACCOUNT'), $msg);
1553
1554         // Ok, delete the account!
1555         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__);
1556 }
1557
1558 //
1559 function META_DESCRIPTION ($mod, $wht) {
1560         // Exclude admin and member's area
1561         if (($mod != "admin") && ($mod != "login")) {
1562                 // Construct dynamic description
1563                 $DESCR = "{!MAIN_TITLE!} ".trim(getConfig('title_middle'))." ".ADD_DESCR("guest", "what-".$wht, true);
1564
1565                 // Output it directly
1566                 OUTPUT_HTML("<meta name=\"description\" content=\"".$DESCR."\" />");
1567         } // END - if
1568
1569         // Remove depth
1570         unset($GLOBALS['ref_level']);
1571 }
1572 //
1573 function ADD_JACKPOT($points) {
1574         $result = SQL_QUERY("SELECT points FROM `{!_MYSQL_PREFIX!}_jackpot` WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1575         if (SQL_NUMROWS($result) == 0) {
1576                 // Create line
1577                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_jackpot` (ok, points) VALUES ('ok','%s')", array($points), __FILE__, __LINE__);
1578         } else {
1579                 // Free memory
1580                 SQL_FREERESULT($result);
1581
1582                 // Update points
1583                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_jackpot` SET points=points+%s WHERE ok='ok' LIMIT 1",
1584                         array($points), __FILE__, __LINE__);
1585         }
1586 }
1587 //
1588 function SUB_JACKPOT($points) {
1589         // First failed
1590         $ret = "-1";
1591
1592         // Get current points
1593         $result = SQL_QUERY("SELECT points FROM `{!_MYSQL_PREFIX!}_jackpot` WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1594         if (SQL_NUMROWS($result) == 0) {
1595                 // Create line
1596                 SQL_QUERY("INSERT INTO `{!_MYSQL_PREFIX!}_jackpot` (ok, points) VALUES ('ok', 0.00000)", __FILE__, __LINE__);
1597         } else {
1598                 // Read points
1599                 list($jackpot) = SQL_FETCHROW($result);
1600                 if ($jackpot >= $points) {
1601                         // Update points when there are enougth points in jackpot
1602                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_jackpot` SET points=points-%s WHERE ok='ok' LIMIT 1",
1603                                 array($points), __FILE__, __LINE__);
1604                         $ret = $jackpot - $points;
1605                 } // END - if
1606         }
1607
1608         // Free memory
1609         SQL_FREERESULT($result);
1610 }
1611 //
1612 function IS_DEMO() {
1613         return ((EXT_IS_ACTIVE("demo")) && (get_session('admin_login') == "demo"));
1614 }
1615 //
1616 function LOAD_CONFIG ($no="0") {
1617         global $cacheArray;
1618         $CFG_DUMMY = array();
1619
1620         // Check for cache extension, cache-array and if the requested configuration is in cache
1621         if ((is_array($cacheArray)) && (isset($cacheArray['config'][$no])) && (is_array($cacheArray['config'][$no]))) {
1622                 // Load config from cache
1623                 //* DEBUG: */ echo gettype($cacheArray['config'][$no])."<br />\n";
1624                 foreach ($cacheArray['config'][$no] as $key => $value) {
1625                         $CFG_DUMMY[$key] = $value;
1626                 } // END - foreach
1627
1628                 // Count cache hits if exists
1629                 if ((isset($CFG_DUMMY['cache_hits'])) && (EXT_IS_ACTIVE("cache"))) {
1630                         $CFG_DUMMY['cache_hits']++;
1631                 } // END - if
1632         } elseif ((!EXT_IS_ACTIVE("cache")) || (!isset($cacheArray['config'][$no]))) {
1633                 // Load config from DB
1634                 $result_config = SQL_QUERY_ESC("SELECT * FROM `{!_MYSQL_PREFIX!}_config` WHERE config=%d LIMIT 1",
1635                         array(bigintval($no)), __FILE__, __LINE__);
1636
1637                 // Get config from database
1638                 $CFG_DUMMY = SQL_FETCHARRAY($result_config);
1639
1640                 // Free result
1641                 SQL_FREERESULT($result_config);
1642
1643                 // Remember this config in the array
1644                 $cacheArray['config'][$no] = $CFG_DUMMY;
1645         }
1646
1647         // Return config array
1648         return $CFG_DUMMY;
1649 }
1650 // Gets the matching what name from module
1651 function GET_WHAT($modCheck) {
1652         $wht = "";
1653         //* DEBUG: */ echo __LINE__."!".$modCheck."!<br />\n";
1654         switch ($modCheck)
1655         {
1656         case "admin":
1657                 $wht = "overview";
1658                 break;
1659
1660         case "login":
1661         case "index":
1662                 $wht = "welcome";
1663                 if (($modCheck == "index") && (getConfig('index_home') != "")) $wht = getConfig('index_home');
1664                 break;
1665
1666         default:
1667                 $wht = "";
1668                 break;
1669         }
1670
1671         // Return what value
1672         return $wht;
1673 }
1674
1675 // Subtract points from database and mediadata cache
1676 function SUB_POINTS ($subject, $uid, $points) {
1677         // Add points to used points
1678         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `used_points`=`used_points`+%s WHERE userid=%s LIMIT 1",
1679          array($points, bigintval($uid)), __FILE__, __LINE__);
1680
1681         // Insert booking record
1682         if (EXT_IS_ACTIVE("booking")) {
1683                 // Add record
1684                 ADD_BOOKING_RECORD($subject, $uid, $points, "sub");
1685         } // END - if
1686
1687         // Update mediadata as well
1688         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1689                 // Update database
1690                 MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1691         } // END - if
1692 }
1693
1694 // Update config entries
1695 function UPDATE_CONFIG ($entries, $values, $updateMode="") {
1696         global $CSS;
1697
1698         // Do not update config in CSS mode
1699         if (($CSS == "1") || ($CSS == -1)) {
1700                 return;
1701         } // END - if
1702
1703         // Do we have multiple entries?
1704         if (is_array($entries)) {
1705                 // Walk through all
1706                 $all = "";
1707                 foreach ($entries as $idx => $entry) {
1708                         // Update mode set?
1709                         if (!empty($updateMode)) {
1710                                 // Update entry
1711                                 $all .= sprintf("%s=%s%s%s,", $entry, $entry, $updateMode, (float)$values[$idx]);
1712                         } else {
1713                                 // Check if string or number
1714                                 if (($values[$idx] + 0) === $values[$idx]) {
1715                                         // Number detected
1716                                         $all .= sprintf("%s=%s,", $entry, (float)$values[$idx]);
1717                                 } elseif ($values[$idx] == "UNIX_TIMESTAMP()") {
1718                                         // Function UNIX_TIMESTAMP() detected
1719                                         $all .= sprintf("%s=%s,", $entry, $values[$idx]);
1720                                 } else {
1721                                         // String detected
1722                                         $all .= sprintf("%s='%s',", $entry, SQL_ESCAPE($values[$idx]));
1723                                 }
1724                         }
1725                 } // END - foreach
1726
1727                 // Remove last comma
1728                 $entries = substr($all, 0, -1);
1729         } elseif (!empty($updateMode)) {
1730                 // Update mode set
1731                 $entries .= sprintf("=%s%s%s", $entries, $updateMode, (float)$values);
1732         } else {
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 ?>