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