2 /************************************************************************
3 * MXChange v0.2.1 Start: 08/26/2003 *
4 * =============== Last change: 11/29/2004 *
6 * -------------------------------------------------------------------- *
7 * File : mysql-manager.php *
8 * -------------------------------------------------------------------- *
9 * Short description : All MySQL-related functions *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Alle MySQL-Relevanten Funktionen *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
41 function ADD_MODULE_TITLE($mod) {
42 global $cacheArray, $_CONFIG;
43 $name = ""; $result = false;
45 // Is the script installed?
46 if (isBooleanConstantAndTrue('mxchange_installed')) {
47 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (isset($cacheArray['modules']['module'])) && (is_array($cacheArray['modules']['module'])) && (isset($cacheArray['modules']['module'][$mod]))) {
49 $name = $cacheArray['modules']['title'][$mod];
52 $_CONFIG['cache_hits']++;
55 $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_mod_reg WHERE module='%s' LIMIT 1", array($mod), __FILE__, __LINE__);
56 list($name) = SQL_FETCHROW($result);
57 SQL_FREERESULT($result);
64 // Still no luck or empty title?
67 $name = LANG_UNKNOWN_MODULE." (".$mod.")";
68 if (SQL_NUMROWS($result) == 0) {
69 // Add module to database
70 $dummy = CHECK_MODULE($mod);
76 // Check validity of a given module name (no file extension)
77 function CHECK_MODULE($mod) {
78 // We need them now here...
79 global $cacheArray, $_CONFIG, $cacheInstance;
81 // Filter module name (names with low chars and underlines are fine!)
82 $mod = preg_replace("/[^a-z_]/", "", $mod);
84 // Check for prefix is a extension...
85 $modSplit = explode("_", $mod);
86 $extension = ""; $mod_chk = $mod;
87 //* DEBUG: */ echo __LINE__."*".count($modSplit)."*/".$mod."*<br />";
88 if (count($modSplit) == 2) {
89 // Okay, there is a seperator (_) in the name so is the first part a module?
90 //* DEBUG: */ echo __LINE__."*".$modSplit[0]."*<br />";
91 if (EXT_IS_ACTIVE($modSplit[0])) {
92 // The prefix is an extension's name, so let's set it
93 $extension = $modSplit[0]; $mod = $modSplit[1];
97 // Major error in module registry is the default
100 // Check if script is installed if not return a "done" to prevent some errors
101 if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing')) || (!isBooleanConstantAndTrue('admin_registered'))) return "done";
103 // Check if cache is latest version
104 $locked = "Y"; $hidden = "N"; $admin = "N"; $mem = "N"; $found = false;
105 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (isset($cacheArray['modules']['module'])) && (is_array($cacheArray['modules']['module']))) {
106 // Is the module cached?
107 if (isset($cacheArray['modules']['locked'][$mod_chk])) {
109 $locked = $cacheArray['modules']['locked'][$mod_chk];
110 $hidden = $cacheArray['modules']['hidden'][$mod_chk];
111 $admin = $cacheArray['modules']['admin_only'][$mod_chk];
112 $mem = $cacheArray['modules']['mem_only'][$mod_chk];
115 $_CONFIG['cache_hits']++;
118 // No, then we have to update it!
122 // Check for module in database
123 $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__);
124 if (SQL_NUMROWS($result) == 1) {
126 list($locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
127 SQL_FREERESULT($result);
132 // Check returned values against current access permissions
134 // Admin access ----- Guest access ----- --- Guest or member? ---
135 if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_LOGGED_IN())))) {
136 // If you are admin you are welcome for everything!
138 } elseif ($locked == "Y") {
141 } elseif (($mem == "Y") && (!IS_LOGGED_IN())) {
142 // You have to login first!
144 } elseif (($admin == "Y") && (!IS_ADMIN())) {
145 // Only the Admin is allowed to enter this module!
149 // Still no luck or not found?
150 if (($ret == "major") || ($ret == "cache_miss") || (!$found)) {
151 // ----- Legacy module ----- ---- Module in base folder ---- --- Module with extension's name ---
152 if ((file_exists(PATH."inc/modules/".$mod.".php")) || (file_exists(PATH.$mod.".php")) || (file_exists(PATH.$extension."/".$mod.".php"))) {
153 // Data is missing so we add it
154 if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
155 // Since 0.3.6 we have a has_menu column, this took me a half hour
156 // to find a loop here... *sigh*
157 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
158 (module, locked, hidden, mem_only, admin_only, has_menu) VALUES
159 ('%s', 'Y', 'N', 'N', 'N', 'N')", array($mod_chk), __FILE__, __LINE__);
161 // Wrong/missing sql_patches!
162 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_mod_reg
163 (module, locked, hidden, mem_only, admin_only) VALUES
164 ('%s', 'Y', 'N', 'N', 'N')", array($mod_chk), __FILE__, __LINE__);
167 // Everthing is fine?
168 if (SQL_AFFECTEDROWS() == 0) {
169 // Something bad happend!
173 // Destroy cache here
174 if (GET_EXT_VERSION("cache") >= "0.1.2") {
175 if ($cacheInstance->cache_file("mod_reg", true)) $cacheInstance->cache_destroy();
176 unset($cacheArray['modules']);
180 $ret = CHECK_MODULE($mod_chk);
182 // Module not found we don't add it to the database
191 // Add menu description pending on given file name (without path!)
192 function ADD_DESCR($ACC_LVL, $file, $return = false, $output = true) {
193 global $DEPTH, $_CONFIG;
194 $LINK_ADD = ""; $OUT = ""; $AND = "";
195 // First we have to do some analysis...
196 if (ereg("action-", $file)) {
197 // This is an action file!
199 $search = substr($file, 7);
203 $MOD_CHECK = "admin";
209 $MOD_CHECK = $GLOBALS['module'];
212 $AND = " AND (what='' OR what IS NULL)";
213 } elseif (ereg("what-", $file)) {
214 // This is an admin what file!
216 $search = substr($file, 5);
221 $MOD_CHECK = "admin";
226 $MOD_CHECK = $GLOBALS['module'];
228 $AND = " AND visible='Y' AND locked='N'";
232 $dummy = substr($search, 0, -4);
233 $AND .= " AND action='".GET_ACTION($ACC_LVL, $dummy)."'";
234 } elseif (($ACC_LVL == "sponsor") || ($ACC_LVL == "engine")) {
235 // Sponsor / engine menu
238 $MOD_CHECK = $GLOBALS['module'];
244 $MOD_CHECK = $GLOBALS['module'];
247 if ((!isset($DEPTH)) && (!$return)) {
249 $prefix = "<DIV class=\"you_are_here\">".YOU_ARE_HERE." <STRONG><A class=\"you_are_here\" href=\"".URL."/modules.php?module=".$GLOBALS['module'].$LINK_ADD."\">Home</A></STRONG>";
251 if (!$return) $DEPTH++;
255 $prefix .= " -> ";
257 if (ereg(".php", $search)) {
258 $search = substr($search, 0, strpos($search, ".php"));
261 $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE %s='%s' ".$AND." LIMIT 1",
262 array($ACC_LVL, $type, $search), __FILE__, __LINE__);
264 if (SQL_NUMROWS($result) == 1) {
265 list($ret) = SQL_FETCHROW($result);
266 SQL_FREERESULT($result);
270 } elseif (((GET_EXT_VERSION("sql_patches") >= "0.2.3") && ($_CONFIG['youre_here'] == "Y")) || ((IS_ADMIN()) && ($MOD_CHECK == "admin"))) {
272 $OUT = $prefix."<STRONG><A class=\"you_are_here\" href=\"".URL."/modules.php?module=".$MOD_CHECK."&".$type."=".$search.$LINK_ADD."\">".$ret."</A></STRONG>\n";
273 //* DEBUG: */ echo __LINE__."*".$type."/".$GLOBALS['what']."*<br />\n";
274 if (($type == "what") || (($type == "action") && (!isset($_GET['what'])) && ($GLOBALS['what'] != "welcome"))) {
275 //* DEBUG: */ echo __LINE__."+".$type."+<br />\n";
276 $OUT .= "</DIV><br />\n";
282 // Return or output HTML code?
284 // Output HTML code here
292 function ADD_MENU($MODE, $act, $wht) {
295 // Init some variables
301 if (!VALIDATE_MENU_ACTION($MODE, $act, $wht, true)) return CODE_MENU_NOT_VALID;
303 // Non-admin shall not see all menus
305 $AND = "AND visible='Y' AND locked='N'";
308 // Load SQL data and add the menu to the output stream...
309 $result_main = SQL_QUERY_ESC("SELECT title, action FROM "._MYSQL_PREFIX."_%s_menu WHERE (what='' OR what IS NULL) ".$AND." ORDER BY sort",
310 array($MODE), __FILE__, __LINE__);
311 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
312 if (SQL_NUMROWS($result_main) > 0) {
313 OUTPUT_HTML("<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"".$MODE."_menu\">");
314 // There are menus available, so we simply display them... :)
315 while (list($main_title, $main_action) = SQL_FETCHROW($result_main)) {
316 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
317 // Load menu header template
318 $BLOCK_MODE = false; $act = $main_action;
319 LOAD_TEMPLATE($MODE."_menu_title", false, $main_title);
321 $result_sub = SQL_QUERY_ESC("SELECT title, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s' AND what != '' ".$AND." ORDER BY sort",
322 array($MODE, $main_action), __FILE__, __LINE__);
323 $ctl = SQL_NUMROWS($result_sub);
326 while (list($sub_title, $sub_what) = SQL_FETCHROW($result_sub)) {
330 // Full file name for checking menu
331 //* DEBUG: */ echo __LINE__.":!!!!".$sub_what."!!!<br />\n";
332 $test_inc = sprintf("%sinc/modules/%s/what-%s.php", PATH, $MODE, $sub_what);
333 $test = (file_exists($test_inc) && is_readable($test_inc));
335 if ((!empty($wht)) && (($wht == $sub_what))) {
336 $content = "<STRONG>";
340 $content .= "<A name=\"menu\" class=\"menu_blur\" href=\"".URL."/modules.php?module=".$GLOBALS['module']."&what=".$sub_what.ADD_URL_DATA("")."\" target=\"_self\">";
346 $content .= $_CONFIG['menu_blur_spacer'].$sub_title;
354 if ((!empty($wht)) && (($wht == $sub_what))) {
355 $content .= "</STRONG>";
357 $wht = $sub_what; $cnt++;
359 LOAD_TEMPLATE($MODE."_menu_row", false, $content);
361 LOAD_TEMPLATE($MODE."_menu_bottom", false, $content);
365 // This is a menu block... ;-)
367 $INC_BLOCK = sprintf("%sinc/modules/%s/action-%s.php", PATH, $MODE, $main_action);
368 if ((file_exists($INC_BLOCK)) && (is_readable($INC_BLOCK))) {
370 if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML("<TR>
371 <TD class=\"".$MODE."_menu_whats\">");
372 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
373 include ($INC_BLOCK);
374 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
375 if ((!EXT_IS_ACTIVE($main_action)) || ($main_action == "online")) OUTPUT_HTML(" </TD>
378 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
381 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
382 if (SQL_NUMROWS($result_main) > $main_cnt) OUTPUT_HTML("<TR><TD class=\"".$MODE."_menu_seperator\"></TD></TR>");
386 SQL_FREERESULT($result_main);
389 //* DEBUG: */ echo __LINE__."/".$main_cnt."/".$main_action."/".$sub_what.":".$GLOBALS['what']."*<br />\n";
390 OUTPUT_HTML("</TABLE>");
393 // This patched function will reduce many SELECT queries for the specified or current admin login
394 function IS_ADMIN($admin="")
396 global $cacheArray, $_CONFIG;
397 $ret = false; $passCookie = ""; $valPass = "";
398 //* DEBUG: */ echo __LINE__."ADMIN:".$admin."<br />";
400 // If admin login is not given take current from cookies...
401 if ((empty($admin)) && (isSessionVariableSet('admin_login')) && (isSessionVariableSet('admin_md5'))) {
402 // Get admin login and password from session/cookies
403 $admin = get_session('admin_login');
404 $passCookie = get_session('admin_md5');
406 //* DEBUG: */ echo __LINE__."ADMIN:".$admin."/".$passCookie."<br />";
408 // Search in array for entry
409 if ((!empty($passCookie)) && (isset($cacheArray['admins']['password'][$admin])) && (!empty($admin))) {
411 $_CONFIG['cache_hits']++;
413 // Login data is valid or not?
414 $valPass = generatePassString($cacheArray['admins']['password'][$admin]);
415 } elseif (!empty($admin)) {
417 $result = SQL_QUERY_ESC("SELECT HIGH_PRIORITY password FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
418 array($admin), __FILE__, __LINE__);
422 if (SQL_NUMROWS($result) == 1) {
423 // Admin login was found so let's load password from DB
424 list($passDB) = SQL_FETCHROW($result);
426 // Generate password hash
427 $valPass = generatePassString($passDB);
431 SQL_FREERESULT($result);
434 if (!empty($valPass)) {
435 // Check if password is valid
436 //* DEBUG: */ echo __FUNCTION__."*".$valPass."/".$passCookie."*<br />\n";
437 $ret = (($valPass == $passCookie) || ((strlen($valPass) == 32) && ($valPass == md5($passCookie))) || (($valPass == "*FAILED*") && (!EXT_IS_ACTIVE("cache"))));
440 // Return result of comparision
441 //* DEBUG: */ if (!$ret) echo __LINE__."OK!<br>";
445 function ADD_MAX_RECEIVE_LIST($MODE, $default="", $return=false)
452 // Guests (in the registration form) are not allowed to select 0 mails per day.
453 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE value > 0 ORDER BY value", __FILE__, __LINE__);
454 if (SQL_NUMROWS($result) > 0)
457 while (list($value, $comment) = SQL_FETCHROW($result))
459 $OUT .= " <OPTION value=\"".$value."\"";
460 if ($_POST['max_mails'] == $value) $OUT .= " selected=\"selected\"";
461 $OUT .= ">".$value." ".PER_DAY;
462 if (!empty($comment)) $OUT .= " (".$comment.")";
463 $OUT .= "</OPTION>\n";
465 define('__MAX_RECEIVE_OPTIONS', $OUT);
468 SQL_FREERESULT($result);
469 $OUT = LOAD_TEMPLATE("guest_receive_table", true);
473 // Maybe the admin has to setup some maximum values?
478 // Members are allowed to set to zero mails per day (we will change this soon!)
479 $result = SQL_QUERY("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__);
480 if (SQL_NUMROWS($result) > 0)
483 while (list($value, $comment) = SQL_FETCHROW($result))
485 $OUT .= " <OPTION value=\"".$value."\"";
486 if ($default == $value) $OUT .= " selected=\"selected\"";
487 $OUT .= ">".$value." ".PER_DAY;
488 if (!empty($comment)) $OUT .= " (".$comment.")";
489 $OUT .= "</OPTION>\n";
491 define('__MAX_RECEIVE_OPTIONS', $OUT);
492 SQL_FREERESULT($result);
493 $OUT = LOAD_TEMPLATE("member_receive_table", true);
497 // Maybe the admin has to setup some maximum values?
498 $OUT = LOAD_TEMPLATE("admin_settings_saved", true, NO_MAX_VALUES);
504 // Return generated HTML code
509 // Output directly (default)
514 function SEARCH_EMAIL_USERTAB($email)
517 $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE email LIKE '{PER}%s{PER}' LIMIT 1", array($email), __FILE__, __LINE__);
518 if (SQL_NUMROWS($result) == 1) $ret = true;
519 SQL_FREERESULT($result);
523 function WHAT_IS_VALID($act, $wht, $type="guest")
527 // Everything is valid to the admin :-)
533 $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__);
535 if (SQL_NUMROWS($result) == 1) $ret = true;
536 SQL_FREERESULT($result);
541 function IS_LOGGED_IN()
543 global $status, $LAST;
544 if (!is_array($LAST)) $LAST = array();
547 // Fix "deleted" cookies first
548 FIX_DELETED_COOKIES(array('userid', 'u_hash', 'lifetime'));
551 if ((!empty($GLOBALS['userid'])) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime')) && (defined('COOKIE_PATH')))
553 // Cookies are set with values, but are they valid?
554 $result = SQL_QUERY_ESC("SELECT password, status, last_module, last_online FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
555 array($GLOBALS['userid']), __FILE__, __LINE__);
556 if (SQL_NUMROWS($result) == 1)
558 // Load data from cookies
559 list($password, $status, $mod, $onl) = SQL_FETCHROW($result);
561 // Validate password by created the difference of it and the secret key
562 $valPass = generatePassString($password);
564 // Transfer last module and online time
565 if ((!empty($mod)) && (empty($LAST['module']))) { $LAST['module'] = $mod; $LAST['online'] = $onl; }
567 // So did we now have valid data and an unlocked user?
568 //* DEBUG: */ echo $valPass."<br>".get_session('u_hash')."<br>";
569 if (($status == "CONFIRMED") && ($valPass == get_session('u_hash'))) {
570 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
573 // Maybe got locked etc.
574 //* DEBUG: */ echo __LINE__."!!!<br>";
575 destroy_user_session();
577 // Remove array elements to prevent errors
578 unset($GLOBALS['userid']);
581 // Cookie data is invalid!
582 //* DEBUG: */ echo __LINE__."***<br>";
584 // Remove array elements to prevent errors
585 unset($GLOBALS['userid']);
589 SQL_FREERESULT($result);
593 // Cookie data is invalid!
594 //* DEBUG: */ echo __LINE__."///<br>";
595 destroy_user_session();
597 // Remove array elements to prevent errors
598 unset($GLOBALS['userid']);
603 function UPDATE_LOGIN_DATA ($UPDATE=true) {
605 if (!is_array($LAST)) $LAST = array();
607 // Are the required cookies set?
608 if ((!isset($GLOBALS['userid'])) || (!isSessionVariableSet('u_hash')) || (!isSessionVariableSet('lifetime'))) {
609 // Nope, then return here to caller function
613 $GLOBALS['userid'] = bigintval(get_session('userid'));
616 // Extract last online time (life) and how long is auto-login valid (time)
617 $newl = time() + bigintval(get_session('lifetime'));
619 // Recheck if logged in
620 if (!IS_LOGGED_IN()) return false;
622 // Load last module and last online time
623 $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array($GLOBALS['userid']), __FILE__, __LINE__);
624 if (SQL_NUMROWS($result) == 1) {
625 // Load last module and online time
626 list($mod, $onl) = SQL_FETCHROW($result);
627 SQL_FREERESULT($result);
629 // Maybe first login time?
630 if (empty($mod)) $mod = "login";
632 if (set_session("userid", $GLOBALS['userid'], $newl, COOKIE_PATH) && set_session("u_hash", get_session('u_hash'), $newl, COOKIE_PATH) && set_session("lifetime", bigintval(get_session('lifetime')), $newl, COOKIE_PATH)) {
633 // This will be displayed on welcome page! :-)
634 if (empty($LAST['module'])) {
635 $LAST['module'] = $mod; $LAST['online'] = $onl;
637 if (empty($GLOBALS['what'])) {
638 $GLOBALS['what'] = "welcome";
641 // Update last module / online time
642 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET last_module='%s', last_online=UNIX_TIMESTAMP() WHERE userid=%s LIMIT 1",
643 array($GLOBALS['what'], $GLOBALS['userid']), __FILE__, __LINE__);
646 // Destroy session, we cannot update!
647 destroy_user_session();
651 function VALIDATE_MENU_ACTION ($MODE, $act, $wht, $UPDATE=false)
656 if ((!IS_ADMIN()) && ($MODE != "admin")) $ADD = " AND locked='N'";
657 //* DEBUG: */ echo __LINE__.":".$MODE."/".$act."/".$wht."*<br />\n";
658 if (($MODE != "admin") && ($UPDATE))
660 // Update guest or member menu
661 $SQL = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_%s_menu SET counter=counter+1 WHERE action='%s' AND what='%s'".$ADD." LIMIT 1",
662 array($MODE, $act, $wht), __FILE__, __LINE__, false);
664 elseif ($wht != "overview")
667 $SQL = SQL_QUERY_ESC("SELECT id, what FROM "._MYSQL_PREFIX."_%s_menu WHERE action='%s'".$ADD." ORDER BY action DESC LIMIT 1",
668 array($MODE, $act), __FILE__, __LINE__, false);
672 // Admin login overview
673 $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",
674 array($MODE, $act), __FILE__, __LINE__, false);
678 $result = SQL_QUERY($SQL, __FILE__, __LINE__);
681 if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 1) $ret = true;
682 //* DEBUG: */ debug_print_backtrace();
686 if (SQL_NUMROWS($result) == 1) {
687 list($id, $wht2) = SQL_FETCHROW($result);
688 //* DEBUG: */ echo __LINE__."+".$SQL."+<br />\n";
689 //* DEBUG: */ echo __LINE__."*".$id."/".$wht."/".$wht2."*<br />\n";
695 SQL_FREERESULT($result);
696 //* DEBUG: */ var_dump($ret);
700 function GET_MOD_DESCR($MODE, $wht)
702 if (empty($wht)) $wht = "welcome";
703 $ret = "??? (".$wht.")";
704 $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_%s_menu WHERE what='%s' LIMIT 1", array($MODE, $wht), __FILE__, __LINE__);
705 if (SQL_NUMROWS($result) == 1)
707 list($ret) = SQL_FETCHROW($result);
708 SQL_FREERESULT($result);
713 function SEND_MODE_MAILS($mod, $modes)
715 global $_CONFIG, $DATA;
718 $result_main = SQL_QUERY_ESC("SELECT password FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
719 array($GLOBALS['userid']), __FILE__, __LINE__);
720 if (SQL_NUMROWS($result_main) == 1) {
721 // Load hash from database
722 list($hashDB) = SQL_FETCHROW($result_main);
724 // Extract salt from cookie
725 $salt = substr(get_session('u_hash'), 0, -40);
727 // Now let's compare passwords
728 $hash = generatePassString($hashDB);
729 if (($hash == get_session('u_hash')) || ($_POST['pass1'] == $_POST['pass2'])) {
731 $result = SQL_QUERY_ESC("SELECT sex, surname, family, street_nr, country, zip, city, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND password='%s' LIMIT 1",
732 array($GLOBALS['userid'], $hashDB), __FILE__, __LINE__);
733 if (SQL_NUMROWS($result) == 1) {
735 $DATA = SQL_FETCHROW($result);
738 SQL_FREERESULT($result);
740 // Translate salutation
741 $DATA[0] = TRANSLATE_SEX($DATA[0]);
743 // Clear/init the content variable
750 foreach ($modes as $mode) {
753 case "normal": break; // Do not add any special lines
755 case "email": // Email was changed!
756 $content = MEMBER_CHANGED_EMAIL.": ".$_POST['old_addy']."\n";
759 case "pass": // Password was changed
760 $content = MEMBER_CHANGED_PASS."\n";
764 $content = MEMBER_UNKNOWN_MODE.": ".$mode."\n\n";
769 if (EXT_IS_ACTIVE("country")) {
770 // Replace code with description
771 $DATA[4] = COUNTRY_GENERATE_INFO($_POST['country_code']);
775 $msg = LOAD_EMAIL_TEMPLATE("member_mydata_notify", $content, $GLOBALS['userid']);
777 if ($_CONFIG['admin_notify'] == "Y") {
778 // The admin needs to be notified about a profile change
779 $msg_admin = "admin_mydata_notify";
780 $sub_adm = ADMIN_CHANGED_DATA;
788 $sub_mem = MEMBER_CHANGED_DATA;
790 // Output success message
791 $content = "<STRONG><SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN></STRONG>";
795 $content = "<STRONG><SPAN class=\"member_failed\">".UNKNOWN_MODULE."</SPAN></STRONG>";
799 // Could not load profile data
800 $content = "<STRONG><SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN></STRONG>";
803 // Passwords mismatch
804 $content = "<STRONG><SPAN class=\"member_failed\">".MEMBER_PASSWORD_ERROR."</SPAN></STRONG>";
807 // Could not load profile
808 $content = "<STRONG><SPAN class=\"member_failed\">".MEMBER_CANNOT_LOAD_PROFILE."</SPAN></STRONG>";
811 // Send email to user if required
812 if ((!empty($sub_mem)) && (!empty($msg))) {
814 SEND_EMAIL($DATA[7], $sub_mem, $msg);
817 // Send only if no other error has occured
818 if (empty($content)) {
819 if ((!empty($sub_adm)) && (!empty($msg_admin))) {
821 SEND_ADMIN_NOTIFICATION($sub_adm, $msg_admin, $content, $GLOBALS['userid']);
822 } elseif ($_CONFIG['admin_notify'] == "Y") {
823 // Cannot send mails to admin!
824 $content = CANNOT_SEND_ADMIN_MAILS;
827 $content = "<STRONG><SPAN class=\"member_done\">".MYDATA_MAIL_SENT."</SPAN></STRONG>";
832 LOAD_TEMPLATE("admin_settings_saved", false, $content);
834 // Update module counter
835 function COUNT_MODULE($mod)
839 // Do count all other modules but not accesses on CSS file css.php!
840 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_mod_reg SET clicks=clicks+1 WHERE module='%s' LIMIT 1",
841 array($mod), __FILE__, __LINE__);
844 // Get action value from mode (admin/guest/member) and what-value
845 function GET_ACTION ($MODE, &$wht)
847 global $ret; $ret = "";
848 //* DEBUG: */ echo __LINE__."=".$MODE."/".$wht."/".$GLOBALS['action']."=<br>";
849 if ((empty($wht)) && ($MODE != "admin"))
853 if ($MODE == "admin")
855 // Action value for admin area
856 if (!empty($GLOBALS['action']))
858 // Get it directly from URL
859 return $GLOBALS['action'];
861 elseif (($wht == "overview") || (empty($GLOBALS['what'])))
863 // Default value for admin area
867 elseif (!empty($GLOBALS['action']))
870 if (empty($wht)) $wht = "welcome";
871 return $GLOBALS['action'];
875 // Everything else will be touched after checking the module has a menu assigned
877 //* DEBUG: */ echo __LINE__."*".$ret."*<br />\n";
879 if (MODULE_HAS_MENU($MODE))
881 // Rewriting modules to menu
884 case "index": $MODE = "guest"; break;
885 case "login": $MODE = "member"; break;
889 // Guest and member menu is "main" as the default
890 if (empty($ret)) $ret = "main";
892 // Load from database
893 $result = SQL_QUERY_ESC("SELECT action FROM "._MYSQL_PREFIX."_%s_menu WHERE what='%s' LIMIT 1",
894 array($MODE, $wht), __FILE__, __LINE__);
895 if (SQL_NUMROWS($result) == 1)
897 // Load action value and pray that this one is the right you want... ;-)
898 list($ret) = SQL_FETCHROW($result);
902 SQL_FREERESULT($result);
905 // Return action value
909 function GET_CATEGORY ($cid) {
910 // Default is not found
911 $ret = _CATEGORY_404;
913 // Lookup the category
914 $result = SQL_QUERY_ESC("SELECT cat FROM "._MYSQL_PREFIX."_cats WHERE id=%s LIMIT 1",
915 array(bigintval($cid)), __FILE__, __LINE__);
916 if (SQL_NUMROWS($result) == 1) {
917 // Category found... :-)
918 list($ret) = SQL_FETCHROW($result);
922 SQL_FREERESULT($result);
928 function GET_PAYMENT ($pid, $full=false) {
929 // Default is not found
933 $result = SQL_QUERY_ESC("SELECT mail_title, price FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
934 array(bigintval($pid)), __FILE__, __LINE__);
935 if (SQL_NUMROWS($result) == 1) {
936 // Payment type found... :-)
939 list($ret) = SQL_FETCHROW($result);
941 // Return title and price
942 list($t, $p) = SQL_FETCHROW($result);
943 $ret = $t." / ".TRANSLATE_COMMA($p)." ".POINTS;
948 SQL_FREERESULT($result);
954 function GET_PAY_POINTS($pid, $lookFor="price")
957 $result = SQL_QUERY_ESC("SELECT %s FROM "._MYSQL_PREFIX."_payments WHERE id=%s LIMIT 1",
958 array($lookFor, $pid), __FILE__, __LINE__);
959 if (SQL_NUMROWS($result) == 1)
961 // Payment type found... :-)
962 list($ret) = SQL_FETCHROW($result);
963 SQL_FREERESULT($result);
967 // Remove a receiver's ID from $ARRAY and add a link for him to confirm
968 function REMOVE_RECEIVER(&$ARRAY, $key, $uid, $pool_id, $stats_id="", $bonus=false)
973 // Remove entry from array
976 // Is there already a line for this user available?
979 // Only when we got a real stats ID continue searching for the entry
980 $type = "NORMAL"; $rowName = "stats_id";
981 if ($bonus) { $type = "BONUS"; $rowName = "bonus_id"; }
982 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_links WHERE %s='%s' AND userid=%s AND link_type='%s' LIMIT 1",
983 array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
984 if (SQL_NUMROWS($result) == 0)
986 // No, so we add one!
987 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_links (%s, userid, link_type) VALUES ('%s', '%s', '%s')",
988 array($rowName, $stats_id, bigintval($uid), $type), __FILE__, __LINE__);
998 SQL_FREERESULT($result);
1001 // Return status for sending routine
1005 function GET_TOTAL_DATA($search, $tableName, $lookFor, $whereStatement="userid", $onlyRows=false)
1010 $result = SQL_QUERY_ESC("SELECT COUNT(%s) FROM "._MYSQL_PREFIX."_%s WHERE %s='%s'",
1011 array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1014 $result = SQL_QUERY_ESC("SELECT SUM(%s) FROM "._MYSQL_PREFIX."_%s WHERE %s='%s'",
1015 array($lookFor, $tableName, $whereStatement, $search), __FILE__, __LINE__);
1019 list($ret) = SQL_FETCHROW($result);
1020 //* DEBUG: */ echo __LINE__."*".$DATA."/".$search."/".$tableName."/".$ret."*<br />\n";
1021 SQL_FREERESULT($result);
1023 if (($lookFor == "counter") || ($lookFor == "id")) {
1033 * Dynamic referral system, can also send mails!
1035 * uid = Referral ID wich should receive...
1036 * points = ... xxx points
1037 * send_notify = shall I send the referral an email or not?
1038 * rid = inc/modules/guest/what-confirm.php need this
1039 * locked = Shall I pay it to normal (false) or locked (true) points ammount?
1040 * add_mode = Add points only to $uid or also refs? (WARNING! Changing "ref" to "direct"
1041 * will cause no referral will get points ever!!!)
1043 function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $locked=false, $add_mode="ref")
1045 global $DEPTH, $_CONFIG, $DATA, $link;
1047 // When $uid = 0 add points to jackpot
1049 // Add points to jackpot
1050 ADD_JACKPOT($points);
1054 // Count up referral depth
1055 if (empty($DEPTH)) {
1056 // Initialialize referral system
1059 // Increase referral level
1063 // Percents and table
1064 $percents = "percents"; if (isset($_CONFIG['db_percents'])) $percents = $_CONFIG['db_percents'];
1065 $table = "refdepths"; if (isset($_CONFIG['db_table'])) $table = $_CONFIG['db_table'];
1067 // Which points, locked or normal?
1068 $data = "points"; if ($locked) $data = "locked_points";
1070 $result_user = SQL_QUERY_ESC("SELECT refid, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
1071 array(bigintval($uid)), __FILE__, __LINE__);
1072 //* DEBUG */ echo "+".SQL_NUMROWS($result_user).":".$points."+<br />\n";
1073 if (SQL_NUMROWS($result_user) == 1) {
1074 // This is the user and his ref
1075 list ($ref, $email) = SQL_FETCHROW($result_user);
1076 SQL_FREERESULT($result_user);
1078 $result = SQL_QUERY_ESC("SELECT %s FROM "._MYSQL_PREFIX."_%s WHERE level='%s' LIMIT 1",
1079 array($percents, $table, bigintval($DEPTH)), __FILE__, __LINE__);
1080 //* DEBUG */ echo "DEPTH:".$DEPTH."<br />\n";
1081 if (SQL_NUMROWS($result) == 1) {
1082 list($per) = SQL_FETCHROW($result);
1083 SQL_FREERESULT($result);
1084 $P = $points * $per / 100;
1085 //* DEBUG */ echo "ADD:".$P."<br />\n";
1088 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%s AND ref_depth=%s LIMIT 1",
1089 array($data, $data, $P, bigintval($uid), bigintval($DEPTH)), __FILE__, __LINE__);
1090 if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 0) {
1091 // First ref in this level! :-)
1092 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_points (userid, ref_depth, %s) VALUES (%s, %s, %s)",
1093 array($data, bigintval($uid), bigintval($DEPTH), $P), __FILE__, __LINE__);
1096 // Update mediadata as well
1097 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1099 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $P);
1102 // Points updated, maybe I shall send him an email?
1103 if (($send_notify) && ($ref > 0) && (!$locked)) {
1105 $DATA = array($per, bigintval($DEPTH), $P, bigintval($ref));
1106 $msg = LOAD_EMAIL_TEMPLATE("confirm-referral", "", bigintval($uid));
1108 SEND_EMAIL($email, THANX_REFERRAL_ONE, $msg);
1109 } elseif (($send_notify) && ($ref == 0) && (!$locked) && ($add_mode == "direct") && (!defined('__POINTS_VALUE'))) {
1110 // Direct payment shall be notified about
1111 define('__POINTS_VALUE', $P);
1114 $msg = LOAD_EMAIL_TEMPLATE("add-points", REASON_DIRECT_PAYMENT, $uid);
1117 SEND_EMAIL($email, SUBJECT_DIRECT_PAYMENT, $msg);
1118 if (!isset($_GET['mid'])) LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_POINTS_ADDED);
1121 // Maybe there's another ref?
1122 if (($ref > 0) && ($points > 0) && ($ref != $uid) && ($add_mode == "ref")) {
1123 // Then let's credit him here...
1124 ADD_POINTS_REFSYSTEM($ref, $points, $send_notify, $ref, $locked);
1130 function UPDATE_REF_COUNTER($uid)
1132 global $REF_LVL, $link, $cacheInstance;
1133 // Make it sure referral level zero (member him-/herself) is at least selected
1134 if (empty($REF_LVL)) $REF_LVL = "0";
1137 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refsystem SET counter=counter+1 WHERE userid=%s AND level='%s' LIMIT 1",
1138 array(bigintval($uid), $REF_LVL), __FILE__, __LINE__);
1140 // When no entry was updated then we have to create it here
1141 if (SQL_AFFECTEDROWS($link) == 0)
1144 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_refsystem (userid, level, counter) VALUES ('%s', '%s', '1')",
1145 array(bigintval($uid), $REF_LVL), __FILE__, __LINE__);
1148 // Check for his referral
1149 $result = SQL_QUERY_ESC("SELECT refid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
1150 array(bigintval($uid)), __FILE__, __LINE__);
1151 list($ref) = SQL_FETCHROW($result);
1154 SQL_FREERESULT($result);
1156 // When he has a referral...
1157 if (($ref > 0) && ($ref != $uid))
1159 // Move to next referral level and count his counter one up!
1160 $REF_LVL++; UPDATE_REF_COUNTER($ref);
1162 elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2"))
1164 // Remove cache here
1165 if ($cacheInstance->cache_file("refsystem", true)) $cacheInstance->cache_destroy();
1169 function UPDATE_ONLINE_LIST($SID, $mod, $act, $wht)
1171 global $link, $_CONFIG;
1172 // Do not update online list when extension is deactivated
1173 if (!EXT_IS_ACTIVE("online", true)) return;
1175 // Initialize variables
1176 $uid = "0"; $rid = "0"; $MEM = "N"; $ADMIN = "N";
1177 if (!empty($GLOBALS['userid']))
1179 // Update member status only when userid is valid
1180 if (($GLOBALS['userid'] > 0) && (IS_LOGGED_IN()))
1183 $uid = $GLOBALS['userid'];
1192 if (isSessionVariableSet('refid')) {
1194 if (get_session('refid') > 0) $rid = $GLOBALS['refid'];
1198 $result = SQL_QUERY_ESC("SELECT timestamp FROM "._MYSQL_PREFIX."_online
1199 WHERE sid='%s' LIMIT 1",
1200 array($SID), __FILE__, __LINE__);
1202 if (SQL_NUMROWS($result) == 1)
1204 SQL_FREERESULT($result);
1205 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_online SET
1213 timestamp=UNIX_TIMESTAMP()
1214 WHERE sid='%s' LIMIT 1",
1224 ), __FILE__, __LINE__);
1228 // No entry does exists so we simply add it!
1229 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_online (module, action, what, userid, refid, is_member, is_admin, timestamp, sid, ip) VALUES ('%s', '%s', '%s', %s, %s, '%s', '%s', UNIX_TIMESTAMP(), '%s', '%s')",
1230 array($mod, $act, $wht, bigintval($uid), bigintval($rid), $MEM, $ADMIN, $SID, getenv('REMOTE_ADDR')), __FILE__, __LINE__);
1233 // Purge old entries
1234 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_online WHERE timestamp <= (UNIX_TIMESTAMP() - %s)",
1235 array($_CONFIG['online_timeout']), __FILE__, __LINE__);
1237 // OBSULETE: Sends out mail to all administrators
1238 function SEND_ADMIN_EMAILS($subj, $msg) {
1239 // Load all admin email addresses
1240 $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id ASC", __FILE__, __LINE__);
1241 while (list($email) = SQL_FETCHROW($result)) {
1242 // Send the email out
1243 SEND_EMAIL($email, $subj, $msg);
1247 SQL_FREERESULT($result);
1249 // Really simple... ;-)
1251 // Get ID number from administrator's login name
1252 function GET_ADMIN_ID($login) {
1255 if (!empty($cacheArray['admins']['aid'][$login])) {
1257 $ret = $cacheArray['admins']['aid'][$login];
1258 if (empty($ret)) $ret = "-1";
1260 // Load from database
1261 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
1262 array($login), __FILE__, __LINE__);
1263 if (SQL_NUMROWS($result) == 1) {
1264 list($ret) = SQL_FETCHROW($result);
1268 SQL_FREERESULT($result);
1273 // Get password hash from administrator's login name
1274 function GET_ADMIN_HASH($login)
1278 if (!empty($cacheArray['admins']['password'][$login]))
1281 $ret = $cacheArray['admins']['password'][$login];
1282 if (empty($ret)) $ret = "-1";
1286 // Load from database
1287 $result = SQL_QUERY_ESC("SELECT password FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
1288 array($login), __FILE__, __LINE__);
1289 if (SQL_NUMROWS($result) == 1)
1291 list($ret) = SQL_FETCHROW($result);
1292 SQL_FREERESULT($result);
1298 function GET_ADMIN_LOGIN($aid) {
1301 if (!empty($cacheArray['admins']['login']['aid'])) {
1303 if (!empty($cacheArray['admins']['login'][$aid])) $ret = $cacheArray['admins']['login'][$aid];
1304 if (empty($ret)) $ret = "***";
1306 // Load from database
1307 $result = SQL_QUERY_ESC("SELECT login FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
1308 array(bigintval($aid)), __FILE__, __LINE__);
1309 if (SQL_NUMROWS($result) == 1) {
1311 list($ret) = SQL_FETCHROW($result);
1315 SQL_FREERESULT($result);
1320 function ADD_OPTION_LINES($table, $id, $name, $default="",$special="",$where="") {
1322 if ($table == "/ARRAY/") {
1323 // Selection from array
1324 if (is_array($id) && is_array($name) && sizeof($id) == sizeof($name)) {
1326 foreach ($id as $idx=>$value) {
1327 $ret .= "<OPTION value=\"".$value."\"";
1328 if ($default == $value) $ret .= " selected checked";
1329 $ret .= ">".$name[$idx]."</OPTION>\n";
1333 // Data from database
1335 if (!empty($special)) $SPEC = ", ".$special;
1336 $ORDER = $name.$SPEC;
1337 if ($table == "country") $ORDER = $special;
1338 $result = SQL_QUERY_ESC("SELECT %s, %s".$SPEC." FROM "._MYSQL_PREFIX."_%s ".$where." ORDER BY %s",
1339 array($id, $ORDER, $table, $name), __FILE__, __LINE__);
1340 if (SQL_NUMROWS($result) > 0) {
1341 // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1342 while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1343 if (empty($special)) $add = "";
1344 $ret .= "<OPTION value=\"".$value."\"";
1345 if ($default == $value) $ret .= " selected checked";
1346 if (!empty($add)) $add = " (".$add.")";
1347 $ret .= ">".$title.$add."</OPTION>\n";
1351 SQL_FREERESULT($result);
1354 $ret = "<OPTION value=\"x\">".SELECT_NONE."</OPTION>\n";
1358 // Return - hopefully - the requested data
1362 function activateExchange() {
1364 $result = SQL_QUERY("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' AND max_mails > 0", __FILE__, __LINE__);
1365 if (SQL_NUMROWS($result) >= $_CONFIG['activate_xchange'])
1368 SQL_FREERESULT($result);
1372 "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', mem_only='Y' WHERE module='order' LIMIT 1",
1373 "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='order' OR what='unconfirmed' LIMIT 2",
1374 "UPDATE "._MYSQL_PREFIX."_config SET activate_xchange='0' WHERE config=0 LIMIT 1"
1378 foreach ($SQLs as $sql) {
1379 $result = SQL_QUERY($sql, __FILE__, __LINE__);
1382 // @TODO Destroy cache
1386 function DELETE_USER_ACCOUNT($uid, $reason)
1389 $result = SQL_QUERY_ESC("SELECT (SUM(p.points) - d.used_points) AS points
1390 FROM "._MYSQL_PREFIX."_user_points AS p
1391 LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
1392 ON p.userid=d.userid
1393 WHERE p.userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1394 if (SQL_NUMROWS($result) == 1) {
1395 // Save his points to add them to the jackpot
1396 list($points) = SQL_FETCHROW($result);
1397 SQL_FREERESULT($result);
1399 // Delete points entries as well
1400 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_points WHERE userid=%s", array(bigintval($uid)), __FILE__, __LINE__);
1402 // Update mediadata as well
1403 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1405 MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1408 // Now, when we have all his points adds them do the jackpot!
1409 ADD_JACKPOT($points);
1412 // Delete category selections as well...
1413 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%s",
1414 array(bigintval($uid)), __FILE__, __LINE__);
1416 // Remove from rallye if found
1417 if (EXT_IS_ACTIVE("rallye")) {
1418 $result = SQL_QUERY("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_rallye_users WHERE userid=%s",
1419 array(bigintval($uid)), __FILE__, __LINE__);
1422 // Now a mail to the user and that's all...
1423 $msg = LOAD_EMAIL_TEMPLATE("del-user", $reason, $uid);
1424 SEND_EMAIL($uid, ADMIN_DEL_ACCOUNT, $msg);
1426 // Ok, delete the account!
1427 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__);
1430 function META_DESCRIPTION($mod, $wht)
1432 global $_CONFIG, $DEPTH;
1433 if (($mod != "admin") && ($mod != "login"))
1435 // Exclude admin and member's area
1436 $DESCR = MAIN_TITLE." ".trim($_CONFIG['title_middle'])." ".ADD_DESCR("guest", "what-".$wht, true);
1438 OUTPUT_HTML("<META name=\"description\" content=\"".$DESCR."\">");
1442 function ADD_JACKPOT($points)
1444 $result = SQL_QUERY("SELECT points FROM "._MYSQL_PREFIX."_jackpot WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1445 if (SQL_NUMROWS($result) == 0)
1448 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_jackpot (ok, points) VALUES ('ok', '%s')", array($points), __FILE__, __LINE__);
1453 SQL_FREERESULT($result);
1456 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_jackpot SET points=points+%s WHERE ok='ok' LIMIT 1",
1457 array($points), __FILE__, __LINE__);
1461 function SUB_JACKPOT($points)
1466 // Get current points
1467 $result = SQL_QUERY("SELECT points FROM "._MYSQL_PREFIX."_jackpot WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);
1468 if (SQL_NUMROWS($result) == 0)
1471 $result = SQL_QUERY("INSERT INTO "._MYSQL_PREFIX."_jackpot (ok, points) VALUES ('ok', 0.00000)", __FILE__, __LINE__);
1476 SQL_FREERESULT($result);
1479 list($jackpot) = SQL_FETCHROW($result);
1480 if ($jackpot >= $points)
1482 // Update points when there are enougth points in jackpot
1483 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_jackpot SET points=points-%s WHERE ok='ok' LIMIT 1",
1484 array($points), __FILE__, __LINE__);
1485 $ret = $jackpot - $points;
1490 function IS_DEMO() {
1491 return ((EXT_IS_ACTIVE("demo")) && (get_session('admin_login') == "demo"));
1494 function LOAD_CONFIG($no="0") {
1496 $CFG_DUMMY = array();
1498 // Check for cache extension, cache-array and if the requested configuration is in cache
1499 if ((is_array($cacheArray)) && (isset($cacheArray['config'][$no])) && (is_array($cacheArray['config'][$no]))) {
1500 // Load config from cache
1501 //* DEBUG: */ echo gettype($cacheArray['config'][$no])."<br />\n";
1502 foreach ($cacheArray['config'][$no] as $key=>$value) {
1503 $CFG_DUMMY[$key] = $value;
1506 // Count cache hits if exists
1507 if ((isset($CFG_DUMMY['cache_hits'])) && (EXT_IS_ACTIVE("cache"))) {
1508 $CFG_DUMMY['cache_hits']++;
1511 // Load config from DB
1512 $result_config = SQL_QUERY_ESC("SELECT * FROM "._MYSQL_PREFIX."_config WHERE config=%d LIMIT 1",
1513 array(bigintval($no)), __FILE__, __LINE__);
1515 // Get config from database
1516 $CFG_DUMMY = SQL_FETCHARRAY($result_config);
1519 SQL_FREERESULT($result_config);
1521 // Remember this config in the array
1522 $cacheArray['config'][$no] = $CFG_DUMMY;
1525 // Return config array
1528 // Gets the matching what name from module
1529 function GET_WHAT($MOD_CHECK) {
1531 //* DEBUG: */ echo __LINE__."!".$MOD_CHECK."!<br />\n";
1548 // Return what value
1552 function MODULE_HAS_MENU($mod)
1554 global $cacheArray, $_CONFIG;
1556 // All is false by default
1558 if (GET_EXT_VERSION("cache") >= "0.1.2") {
1559 if (isset($cacheArray['modules']['has_menu'][$mod]))
1561 // Check module cache and count hit
1562 if ($cacheArray['modules']['has_menu'][$mod] == "Y") $ret = true;
1563 $_CONFIG['cache_hits']++;
1565 elseif (isset($cacheArray['extensions']['ext_menu'][$mod]))
1567 // Check cache and count hit
1568 if ($cacheArray['extensions']['ext_menu'][$mod] == "Y") $ret = true;
1569 $_CONFIG['cache_hits']++;
1573 if ((GET_EXT_VERSION("sql_patches") >= "0.3.6") && ($ret === false)) {
1574 // Check database for entry
1575 $result = SQL_QUERY_ESC("SELECT has_menu FROM "._MYSQL_PREFIX."_mod_reg WHERE module='%s' LIMIT 1",
1576 array($mod), __FILE__, __LINE__);
1577 if (SQL_NUMROWS($result) == 1) {
1578 list($has_menu) = SQL_FETCHROW($result);
1579 $ret = ($has_menu == "Y");
1583 SQL_FREERESULT($result);
1584 } elseif (GET_EXT_VERSION("sql_patches") == "") {
1585 // No sql_patches installed, so maybe in admin area?
1586 $ret = ((IS_ADMIN()) && ($mod == "admin")); // Then there is a menu!
1592 // Subtract points from database and mediadata cache
1593 function SUB_POINTS ($uid, $points) {
1594 // Add points to used points
1595 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET used_points=used_points+%s WHERE userid=%s LIMIT 1",
1596 array($points, bigintval($uid)), __FILE__, __LINE__);
1598 // Update mediadata as well
1599 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
1601 MEDIA_UPDATE_ENTRY(array("total_points"), "sub", $points);
1604 // Update config entries
1605 function UPDATE_CONFIG ($entries, $values, $updateMode="") {
1606 // Do we have multiple entries?
1607 if (is_array($entries)) {
1610 foreach ($entries as $idx => $entry) {
1612 if (!empty($updateMode)) {
1614 $all .= sprintf("%s=%s%s%s,", $entry, $entry, $updateMode, (float)$values[$idx]);
1616 // Check if string or number
1617 if (($values[$idx] + 0) === $values[$idx]) {
1619 $all .= sprintf("%s=%s,", $entry, (float)$values[$idx]);
1622 $all .= sprintf("%s='%s',", $entry, SQL_ESCAPE($values[$idx]));
1627 // Remove last comma
1628 $entries = substr($all, 0, -1);
1629 } elseif (!empty($updateMode)) {
1631 $entries .= sprintf("=%s%s%s", $entries, $updateMode, (float)$value);
1633 // Regular entry to update
1634 $entries .= sprintf("='%s'", SQL_ESCAPE($values));
1637 // Run database update
1638 //* DEBUG: */ DEBUG_LOG(__FUNCTION__.":entries={$entries}");
1639 SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET ".$entries." WHERE config=0 LIMIT 1", __FILE__, __LINE__);
1642 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (SQL_AFFECTEDROWS() == 1)) {
1643 global $cacheInstance, $_CONFIG, $CSS;
1644 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
1647 require(PATH."inc/load_cache-config.php");