2 /************************************************************************
3 * Mailer v0.2.1-FINAL 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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009, 2010 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 // "Getter" for module description
44 // @TODO Can we cache this?
45 function getTitleFromMenu ($mode, $what, $column = 'what', $ADD='') {
48 $what = getIndexHome();
51 // Default is not found
52 $data['title'] = '??? (' . $what . ')';
55 $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `%s`='%s'" . $ADD . " LIMIT 1",
60 ), __FUNCTION__, __LINE__);
63 if (SQL_NUMROWS($result) == 1) {
65 $data = SQL_FETCHARRAY($result);
69 SQL_FREERESULT($result);
72 return $data['title'];
75 // Add menu description pending on given file name (without path!)
76 function addMenuDescription ($accessLevel, $FQFN, $return = false) {
77 // Use only filename of the FQFN...
78 $file = basename($FQFN);
86 // First we have to do some analysis...
87 if (substr($file, 0, 7) == 'action-') {
88 // This is an action file!
90 $search = substr($file, 7);
92 // Get access level from it
93 $modCheck = getModuleFromFileName($file, $accessLevel);
96 $ADD = " AND (`what`='' OR `what` IS NULL)";
97 } elseif (substr($file, 0, 5) == 'what-') {
98 // This is a 'what file'!
100 $search = substr($file, 5);
101 $ADD = " AND `visible`='Y' AND `locked`='N'";
103 // Get access level from it
104 $modCheck = getModuleFromFileName($file, $accessLevel);
106 // Do we have admin? Then display all
107 if (isAdmin()) $ADD = '';
109 $dummy = substr($search, 0, -4);
110 $ADD .= sprintf(" AND `action`='%s'", getActionFromModuleWhat($accessLevel, $dummy));
111 } elseif (($accessLevel == 'sponsor') || ($accessLevel == 'engine')) {
112 // Sponsor / engine menu
115 $modCheck = getModule();
121 $modCheck = getModule();
125 // Begin the navigation line
126 if (!isset($GLOBALS['nav_depth'])) {
128 $GLOBALS['nav_depth'] = '0';
130 // Run the pre-filter chain
131 $ret = runFilterChain('pre_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
134 $prefix = $ret['content'];
136 $prefix .= '<div class="you_are_here">{--YOU_ARE_HERE--} <strong><a class="you_are_here" href="{%url=modules.php?module=' . getModule() . $LINK_ADD . '%}">Home</a></strong>';
137 } elseif ($return === false) {
139 $GLOBALS['nav_depth']++;
142 $prefix .= ' -> ';
144 // We need to remove .php and the end
145 if (substr($search, -4, 4) == '.php') {
147 $search = substr($search, 0, -4);
150 if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
152 $OUT = $prefix . '<strong><a class="you_are_here" href="{%url=modules.php?module=' . $modCheck . '&' . $type . '=' . $search . $LINK_ADD . '%}">' . getTitleFromMenu($accessLevel, $search, $type, $ADD) . '</a></strong>';
154 // Can we close the you-are-here navigation?
155 //* DEBUG: */ debugOutput(__LINE__.'*'.$type.'/'.getWhat().'*');
156 if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (getWhat() == 'overview')))) {
157 //* DEBUG: */ debugOutput(__LINE__.'+'.$type.'+');
158 // Add closing div and br-tag
160 $GLOBALS['nav_depth'] = '0';
162 // Run the post-filter chain
163 $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
165 // Add additional content
166 $OUT .= $ret['content'];
170 // Return or output HTML code?
171 if ($return === true) {
175 // Output HTML code here
180 // Adds a menu (mode = guest/member/admin/sponsor) to output
181 function addMenu ($mode, $action, $what) {
182 // Init some variables
186 // is the menu action valid?
187 if (!isMenuActionValid($mode, $action, $what, true)) {
188 return getCode('MENU_NOT_VALID');
191 // Non-admin shall not see all menus
193 $ADD = " AND `visible`='Y' AND `locked`='N'";
196 // Load SQL data and add the menu to the output stream...
197 $result_main = SQL_QUERY_ESC("SELECT
198 `title`, `what`, `action`, `visible`, `locked`
200 `{?_MYSQL_PREFIX?}_%s_menu`
202 (`what`='' OR `what` IS NULL)
206 array($mode), __FUNCTION__, __LINE__);
208 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.':'.getWhat().'*');
209 if (!SQL_HASZERONUMS($result_main)) {
210 // There are menus available, so we simply display them... :)
211 $GLOBALS['rows'] = '';
212 while ($content = SQL_FETCHARRAY($result_main)) {
213 //* DEBUG: */ debugOutput(__LINE__ . '/' . $main_cnt . '/' . $content['action'] . ':' . getWhat() . '*');
214 // Disable the block-mode
215 enableBlockMode(false);
217 // Load menu header template
218 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
221 $result_sub = SQL_QUERY_ESC("SELECT
222 `title` AS `sub_title`,
223 `what` AS `sub_what`,
224 `visible` AS `sub_visible`,
225 `locked` AS `sub_locked`
227 `{?_MYSQL_PREFIX?}_%s_menu`
235 array($mode, $content['action']), __FUNCTION__, __LINE__);
237 // Do we have some entries?
238 if (!SQL_HASZERONUMS($result_sub)) {
242 // Load all sub menus
243 while ($content2 = SQL_FETCHARRAY($result_sub)) {
244 // Merge both arrays in one
245 $content = merge_array($content, $content2);
250 // Full file name for checking menu
251 //* DEBUG: */ debugOutput(__LINE__ . ':!!!!' . $content['sub_what'] . '!!!');
252 $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
253 if (isIncludeReadable($inc)) {
254 // Mark currently selected menu - open
255 if ((!empty($what)) && (($what == $content['sub_what']))) {
260 $OUT .= '<a name="menu" class="menu_blur" href="{%url=modules.php?module=' . getModule() . '&what=' . $content['sub_what'] . '%}" target="_self">';
263 $OUT .= '<em style="cursor:help" class="notice" title="{%message,MENU_WHAT_404=' . $content['sub_what'] . '%}">';
267 $OUT .= '{?menu_blur_spacer?}' . $content['sub_title'];
269 if (isIncludeReadable($inc)) {
272 // Mark currently selected menu - close
273 if ((!empty($what)) && (($what == $content['sub_what']))) {
277 // Not found! - close
287 'what' => $content['sub_what'],
288 'visible' => $content['sub_visible'],
289 'locked' => $content['locked'],
292 // Add regular menu row or bottom row?
293 if ($cnt < SQL_NUMROWS($result_sub)) {
294 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
296 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
300 // This is a menu block... ;-)
304 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
305 if (isFileReadable($INC)) {
307 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
308 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat().'*');
310 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat().'*');
311 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
313 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat().'*');
317 SQL_FREERESULT($result_sub);
322 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.':'.getWhat().'*');
323 if (SQL_NUMROWS($result_main) > $main_cnt) {
325 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
327 // Should we display adverts in this menu?
328 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
329 // Display advert template
330 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
332 // Add seperator again
333 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
339 SQL_FREERESULT($result_main);
341 // Should we display adverts in this menu?
342 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
343 // Add seperator again
344 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
346 // Display advert template
347 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
352 'rows' => $GLOBALS['rows'],
356 // Load main template
357 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat().'*');
358 loadTemplate('menu_table', false, $content);
362 // Checks wether the current user is a member
363 function isMember () {
364 // By default no member
367 // Fix missing 'last_online' array, damn stupid code :(((
368 // @TODO Try to rewrite this to one or more functions
369 if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) $GLOBALS['last_online'] = array();
371 // is the cache entry there?
372 if (isset($GLOBALS[__FUNCTION__])) {
374 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'CACHED! (' . intval($GLOBALS[__FUNCTION__]) . ')');
375 return $GLOBALS[__FUNCTION__];
376 } elseif ((!isSessionVariableSet('userid')) || (!isSessionVariableSet('u_hash'))) {
378 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'No member set in cookie/session.');
381 // Get it secured from session
382 setMemberId(getSession('userid'));
383 setCurrentUserId(getMemberId());
384 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . getSession('userid') . ' used from cookie/session.');
387 // Init user data array
390 // Fix "deleted" cookies first
391 fixDeletedCookies(array('userid', 'u_hash'));
394 if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
395 // Cookies are set with values, but are they valid?
396 if (fetchUserData(getMemberId()) === true) {
397 // Validate password by created the difference of it and the secret key
398 $valPass = encodeHashForCookie(getUserData('password'));
400 // Transfer last module and online time
401 $GLOBALS['last_online']['module'] = getUserData('last_module');
402 $GLOBALS['last_online']['online'] = getUserData('last_online');
404 // So did we now have valid data and an unlocked user?
405 if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
406 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
409 // Maybe got locked etc.
410 //* DEBUG */ logDebugMessage(__FUNCTION__, __LINE__, 'status=' . getUserData('status') . ',' . $valPass . '(' . strlen($valPass) . ')/' . getSession('u_hash') . '(' . strlen(getSession('u_hash')) . ')/' . getUserData('password') . '(' . strlen(getUserData('password')) . ')');
411 destroyMemberSession();
414 // Cookie data is invalid!
415 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Cookie data invalid or user not found.');
416 destroyMemberSession();
419 // Cookie data is invalid!
420 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Cookie data not complete.');
421 destroyMemberSession();
425 $GLOBALS[__FUNCTION__] = $ret;
428 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . intval($ret));
432 // Fetch user data for given user id
433 function fetchUserData ($userid, $column = 'userid') {
434 // If we should look for userid secure&set it here
435 if (substr($column, -2, 2) == 'id') {
437 $userid = bigintval($userid);
440 setCurrentUserId($userid);
442 // Don't look for invalid userids...
443 if (!isValidUserId($userid)) {
444 // Invalid, so abort here
445 debug_report_bug(__FUNCTION__, __LINE__, 'User id ' . $userid . ' is invalid.');
446 } elseif (isUserDataValid()) {
447 // Use cache, so it is fine
450 } elseif (isUserDataValid()) {
451 // Use cache, so it is fine
455 // By default none was found
460 if (isExtensionInstalledAndNewer('user', '0.3.5')) $ADD = ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`';
462 // Query for the user
463 $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
464 array($column, $userid), __FUNCTION__, __LINE__);
466 // Do we have a record?
467 if (SQL_NUMROWS($result) == 1) {
468 // Load data from cookies
469 $data = SQL_FETCHARRAY($result);
471 // Set the userid for later use
472 setCurrentUserId($data['userid']);
473 $GLOBALS['user_data'][getCurrentUserId()] = $data;
475 // Rewrite 'last_failure' if found
476 if (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure'])) {
477 // Backup the raw one and zero it
478 $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
479 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = '0';
482 if ($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] != '0000-00-00 00:00:00') {
483 // Seperate data/time
484 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
486 // Seperate data and time again
487 $array['date'] = explode('-', $array[0]);
488 $array['time'] = explode(':', $array[1]);
490 // Now pass it to mktime()
491 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
503 $found = isUserDataValid();
507 SQL_FREERESULT($result);
513 // This patched function will reduce many SELECT queries for the specified or current admin login
514 function isAdmin () {
515 // No admin in installation phase!
516 if ((isInstallationPhase()) || (!isAdminRegistered())) {
525 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId);
527 // If admin login is not given take current from cookies...
528 if ((isSessionVariableSet('admin_id')) && (isSessionVariableSet('admin_md5'))) {
529 // Get admin login and password from session/cookies
530 $adminId = getSession('admin_id');
531 $passCookie = getSession('admin_md5');
533 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId.'/'.$passCookie);
535 // Abort if admin id is zero
536 if ($adminId == '0') {
541 if (!isset($GLOBALS[__FUNCTION__][$adminId])) {
542 // Init it with failed
543 $GLOBALS[__FUNCTION__][$adminId] = false;
545 // Search in array for entry
546 if (isset($GLOBALS['admin_hash'])) {
548 $valPass = $GLOBALS['admin_hash'];
549 } elseif ((!empty($passCookie)) && (isAdminHashSet($adminId) === true) && (!empty($adminId))) {
550 // Login data is valid or not?
551 $valPass = encodeHashForCookie(getAdminHash($adminId));
554 $GLOBALS['admin_hash'] = $valPass;
557 incrementStatsEntry('cache_hits');
558 } elseif ((!empty($adminId)) && ((!isExtensionActive('cache')) || (isAdminHashSet($adminId) === false))) {
559 // Get admin hash and hash it
560 $valPass = encodeHashForCookie(getAdminHash($adminId));
563 $GLOBALS['admin_hash'] = $valPass;
566 if (!empty($valPass)) {
567 // Check if password is valid
568 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '(' . $valPass . '==' . $passCookie . ')='.intval($valPass == $passCookie));
569 $GLOBALS[__FUNCTION__][$adminId] = (($GLOBALS['admin_hash'] == $passCookie) || ((strlen($GLOBALS['admin_hash']) == 32) && ($GLOBALS['admin_hash'] == md5($passCookie))) || (($GLOBALS['admin_hash'] == '*FAILED*') && (!isExtensionActive('cache'))));
573 // Return result of comparision
574 return $GLOBALS[__FUNCTION__][$adminId];
577 // Generates a list of "max receiveable emails per day"
578 function addMaxReceiveList ($mode, $default = '', $return = false) {
584 // Guests (in the registration form) are not allowed to select 0 mails per day.
585 $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value` > 0 ORDER BY `value` ASC',
586 __FUNCTION__, __LINE__);
590 // Members are allowed to set to zero mails per day (we will change this soon!)
591 $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC',
592 __FUNCTION__, __LINE__);
596 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
600 // Some entries are found?
601 if (!SQL_HASZERONUMS($result)) {
603 while ($content = SQL_FETCHARRAY($result)) {
604 $OUT .= ' <option value="' . $content['value'] . '"';
605 if (postRequestParameter('max_mails') == $content['value']) $OUT .= ' selected="selected"';
606 $OUT .= '>' . $content['value'] . ' {--PER_DAY--}';
607 if (!empty($content['comment'])) $OUT .= '(' . $content['comment'] . ')';
612 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
614 // Maybe the admin has to setup some maximum values?
615 debug_report_bug(__FUNCTION__, __LINE__, 'Nothing is being done here?');
619 SQL_FREERESULT($result);
621 if ($return === true) {
622 // Return generated HTML code
625 // Output directly (default)
630 // Checks wether the given email address is used.
631 function isEmailTaken ($email) {
632 // Query the database
633 $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `email` LIKE '%%%s%%' OR `email` LIKE '%%%s%%' LIMIT 1",
634 array($email, str_replace('.', '{DOT}', $email)), __FUNCTION__, __LINE__);
636 // Is the email there?
637 $ret = (SQL_NUMROWS($result) == 1);
640 SQL_FREERESULT($result);
646 // Validate the given menu action
647 function isMenuActionValid ($mode, $action, $what, $updateEntry=false) {
648 // Is the cache entry there and we shall not update?
649 if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
651 incrementStatsEntry('cache_hits');
653 // Then use this cache
654 return $GLOBALS['action_valid'][$mode][$action][$what];
657 // By default nothing is valid
660 // Look in all menus or only unlocked
662 if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
664 //* DEBUG: */ debugOutput(__LINE__.':'.$mode.'/'.$action.'/'.$what.'*');
665 if (($mode != 'admin') && ($updateEntry === true)) {
666 // Update guest or member menu
667 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET counter=counter+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
672 ), __FUNCTION__, __LINE__, false);
673 } elseif (($what != 'overview') && (!empty($what))) {
675 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `what`='%s'".$add." ORDER BY `action` DESC LIMIT 1",
680 ), __FUNCTION__, __LINE__, false);
682 // Admin login overview
683 $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 ), __FUNCTION__, __LINE__, false);
691 $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
693 // Should we look for affected rows (only update) or found rows?
694 if ($updateEntry === true) {
695 // Check updated/affected rows
696 $ret = (!SQL_HASZEROAFFECTED());
699 $ret = (!SQL_HASZERONUMS($result));
703 SQL_FREERESULT($result);
706 $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
712 // Get action value from mode (admin/guest/member) and what-value
713 function getActionFromModuleWhat ($module, $what) {
715 $data['action'] = '';
717 //* DEBUG: */ debugOutput(__LINE__ . '=' . $module . '/'.$what . '/' . getAction() . '=');
718 if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
719 // sql_patches is missing so choose depending on mode
723 } elseif ($module == 'admin') {
730 } elseif ((empty($what)) && ($module != 'admin')) {
731 // Use configured 'home'
732 $what = getIndexHome();
735 if ($module == 'admin') {
736 // Action value for admin area
737 if (isGetRequestParameterSet('action')) {
739 return getRequestParameter('action');
740 } elseif (isActionSet()) {
741 // Get it directly from URL
743 } elseif (($what == 'overview') || (!isWhatSet())) {
744 // Default value for admin area
745 $data['action'] = 'login';
747 } elseif (isActionSet()) {
748 // Get it directly from URL
751 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): ret=' . $data['action']);
753 // Does the module have a menu?
754 if (ifModuleHasMenu($module)) {
755 // Rewriting modules to menu
756 $module = mapModuleToTable($module);
758 // Guest and member menu is 'main' as the default
759 if (empty($data['action'])) $data['action'] = 'main';
761 // Load from database
762 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
763 array($module, $what), __FUNCTION__, __LINE__);
764 if (SQL_NUMROWS($result) == 1) {
765 // Load action value and pray that this one is the right you want... ;-)
766 $data = SQL_FETCHARRAY($result);
770 SQL_FREERESULT($result);
771 } elseif ((!isExtensionInstalled('sql_patches')) && ($module != 'admin') && ($module != 'unknown')) {
772 // No sql_patches installed, but maybe we need to register an admin?
773 if (isAdminRegistered()) {
774 // Redirect to admin area
775 redirectToUrl('admin.php');
779 // Return action value
780 return $data['action'];
783 // Get category name back
784 function getCategory ($cid) {
785 // Default is not found
786 $data['cat'] = '{--_CATEGORY_404--}';
788 // Is the category id set?
791 $data['cat'] = '{--_CATEGORY_NONE--}';
792 } elseif ($cid > 0) {
793 // Lookup the category in database
794 $result = SQL_QUERY_ESC("SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
795 array(bigintval($cid)), __FUNCTION__, __LINE__);
796 if (SQL_NUMROWS($result) == 1) {
797 // Category found... :-)
798 $data = SQL_FETCHARRAY($result);
802 SQL_FREERESULT($result);
809 // Get a string of "mail title" and price back
810 function getPaymentTitlePrice ($pid, $full=false) {
811 // Default is not found
812 $ret = '{--_PAYMENT_404--}';
815 $result = SQL_QUERY_ESC("SELECT `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
816 array(bigintval($pid)), __FUNCTION__, __LINE__);
817 if (SQL_NUMROWS($result) == 1) {
818 // Payment type found... :-)
819 $data = SQL_FETCHARRAY($result);
821 // Only title or also including price?
822 if ($full === false) {
823 $ret = $data['mail_title'];
825 $ret = $data['mail_title'] . ' / {%pipe,translateComma=' . $data['price'] . '%} {?POINTS?}';
830 SQL_FREERESULT($result);
836 // Get (basicly) the price of given payment id
837 function getPaymentPoints ($pid, $lookFor = 'price') {
839 $data[$lookFor] = '-1';
841 // Search for it in database
842 $result = SQL_QUERY_ESC("SELECT `%s` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
843 array($lookFor, $pid), __FUNCTION__, __LINE__);
845 // Is the entry there?
846 if (SQL_NUMROWS($result) == 1) {
847 // Payment type found... :-)
848 $data = SQL_FETCHARRAY($result);
852 SQL_FREERESULT($result);
855 return $data[$lookFor];
858 // Remove a receiver's id from $receivers and add a link for him to confirm
859 function removeReceiver (&$receivers, $key, $userid, $pool_id, $stats_id = '', $bonus = false) {
860 // Default is not removed
863 // Is the userid valid?
864 if (isValidUserId($userid)) {
865 // Remove entry from array
866 unset($receivers[$key]);
868 // Is there already a line for this user available?
870 // Only when we got a real stats id continue searching for the entry
871 $type = 'NORMAL'; $rowName = 'stats_id';
874 $rowName = 'bonus_id';
877 // Try to look the entry up
878 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE %s='%s' AND `userid`=%s AND link_type='%s' LIMIT 1",
879 array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
881 // Was it *not* found?
882 if (SQL_HASZERONUMS($result)) {
884 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`, `userid`, `link_type`) VALUES ('%s','%s','%s')",
885 array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
893 SQL_FREERESULT($result);
897 // Return status for sending routine
901 // Calculate sum (default) or count records of given criteria
902 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '') {
906 //* DEBUG: */ debugOutput($search.'/'.$tableName.'/'.$lookFor.'/'.$whereStatement.'/'.$add);
907 if ((empty($search)) && ($search != '0')) {
908 // Count or sum whole table?
909 if ($countRows === true) {
911 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
912 array($lookFor, $tableName), __FUNCTION__, __LINE__);
915 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
916 array($lookFor, $tableName), __FUNCTION__, __LINE__);
918 } elseif (($countRows === true) || ($lookFor == 'userid')) {
920 //* DEBUG: */ debugOutput('COUNT!');
921 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
922 array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
925 //* DEBUG: */ debugOutput('SUM!');
926 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
927 array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
931 $data = SQL_FETCHARRAY($result);
934 SQL_FREERESULT($result);
937 if ((empty($data['res'])) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid')) {
939 $data['res'] = '0.00000';
940 } elseif (''.$data['res'].'' == '') {
946 //* DEBUG: */ debugOutput('ret=' . $data['res']);
949 // Getter fro ref level percents
950 function getReferalLevelPercents ($level) {
952 $data['percents'] = '0';
955 if ((isset($GLOBALS['cache_array']['refdepths']['level'])) && (isExtensionActive('cache'))) {
956 // First look for level
957 $key = array_search($level, $GLOBALS['cache_array']['refdepths']['level']);
958 if ($key !== false) {
960 $data['percents'] = $GLOBALS['cache_array']['refdepths']['percents'][$key];
963 incrementStatsEntry('cache_hits');
965 } elseif (!isExtensionActive('cache')) {
967 $result_level = SQL_QUERY_ESC("SELECT `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1",
968 array(bigintval($level)), __FUNCTION__, __LINE__);
971 if (SQL_NUMROWS($result_level) == 1) {
973 $data = SQL_FETCHARRAY($result_level);
977 SQL_FREERESULT($result_level);
981 return $data['percents'];
986 * Dynamic referal system, can also send mails!
988 * subject = Subject line, write in lower-case letters and underscore is allowed
989 * userid = Referal id wich should receive...
990 * points = ... xxx points
991 * sendNotify = shall I send the referal an email or not?
992 * refid = inc/modules/guest/what-confirm.php need this
993 * locked = Shall I pay it to normal (false) or locked (true) points ammount?
994 * add_mode = Add points only to $userid or also refs? (WARNING! Changing 'ref' to 'direct'
995 * for default value will cause no referal will get points ever!!!)
997 function addPointsThroughReferalSystem ($subject, $userid, $points, $sendNotify = false, $refid = '0', $add_mode = 'ref') {
998 // By default nothing has been added
1001 //* DEBUG: */ debugOutput('----------------------- <font color="#00aa00">' . __FUNCTION__ . ' - ENTRY</font> ------------------------<ul><li>');
1002 // Convert mode to lower-case
1003 $add_mode = strtolower($add_mode);
1005 // When $userid = '0' add points to jackpot
1006 if (($userid == '0') && (isExtensionActive('jackpot'))) {
1007 // Add points to jackpot
1008 addPointsToJackpot($points);
1012 // Count up referal depth
1013 if (!isset($GLOBALS['ref_level'])) {
1014 // Initialialize referal system
1015 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): Referal system initialized!');
1016 $GLOBALS['ref_level'] = '0';
1018 // Increase referal level
1019 $GLOBALS['ref_level']++;
1020 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): Referal level increased. DEPTH='.$GLOBALS['ref_level']);
1023 // Check user account
1024 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points);
1025 if (fetchUserData($userid)) {
1026 // Determine wether the user has some mails to click before he/she gets the points
1027 $locked = ifUserPointsLocked($userid);
1029 // Default is 'normal' points
1032 // Which points, locked or normal?
1033 if ($locked === true) {
1034 $data = 'locked_points';
1037 // This is the user and his ref
1038 $GLOBALS['cache_array']['add_userid'][getUserData('refid')] = $userid;
1041 $per = getReferalLevelPercents($GLOBALS['ref_level']);
1042 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points.',depth='.$GLOBALS['ref_level'].',per='.$per.',mode='.$add_mode);
1044 // Some percents found?
1046 // Calculate new points
1047 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points.',per='.$per.',depth='.$GLOBALS['ref_level']);
1048 $ref_points = $points * $per / 100;
1050 // Pay refback here if level > 0 and in ref-mode
1051 if ((isExtensionActive('refback')) && ($GLOBALS['ref_level'] > 0) && ($per < 100) && ($add_mode == 'ref') && (isset($GLOBALS['cache_array']['add_userid'][$userid]))) {
1052 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',data='.$GLOBALS['cache_array']['add_userid'][$userid].',ref_points='.$ref_points.',depth='.$GLOBALS['ref_level'].' - BEFORE!');
1053 $ref_points = addRefbackPoints($GLOBALS['cache_array']['add_userid'][$userid], $userid, $points, $ref_points);
1054 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',data='.$GLOBALS['cache_array']['add_userid'][$userid].',ref_points='.$ref_points.',depth='.$GLOBALS['ref_level'].' - AFTER!');
1058 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `%s`=`%s`+%s WHERE `userid`=%s AND `ref_depth`=%s LIMIT 1",
1059 array($data, $data, $ref_points, bigintval($userid), bigintval($GLOBALS['ref_level'])), __FUNCTION__, __LINE__);
1060 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):data='.$data.',ref_points='.$ref_points.',userid='.$userid.',depth='.$GLOBALS['ref_level'].',mode='.$add_mode.' - UPDATE! ('.SQL_AFFECTEDROWS().')');
1062 // No entry updated?
1063 if (SQL_HASZEROAFFECTED()) {
1064 // First ref in this level! :-)
1065 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_points` (`userid`,`ref_depth`,`%s`) VALUES (%s,%s,%s)",
1066 array($data, bigintval($userid), bigintval($GLOBALS['ref_level']), $ref_points), __FUNCTION__, __LINE__);
1067 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):data='.$data.',ref_points='.$ref_points.',userid='.$userid.',depth='.$GLOBALS['ref_level'].',mode='.$add_mode.' - INSERTED! ('.SQL_AFFECTEDROWS().')');
1070 // Check affected rows
1071 $added = SQL_AFFECTEDROWS();
1072 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):added='.intval($added));
1074 // Prepare data for the filter
1075 $filterData = array(
1076 'subject' => $subject,
1077 'userid' => $userid,
1078 'points' => $points,
1079 'notify' => $sendNotify,
1081 'locked' => $locked,
1083 'sub_mode' => $add_mode,
1088 $filterData = runFilterChain('add_points', $filterData);
1091 $added = $filterData['added'];
1092 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):added='.intval($added));
1094 // Points updated, maybe I shall send him an email?
1095 if (($sendNotify === true) && (isValidUserId(getUserData('refid'))) && ($locked === false)) {
1099 'level' => bigintval($GLOBALS['ref_level']),
1100 'points' => $ref_points,
1103 // Load email template
1104 $message = loadEmailTemplate('confirm-referal', $content, bigintval($userid));
1107 sendEmail($userid, '{--THANX_REFERAL_ONE_SUBJECT--}', $message);
1108 } elseif (($sendNotify === true) && (!isValidUserId(getUserData('refid'))) && ($locked === false) && ($add_mode == 'direct')) {
1111 'reason' => '{--REASON_DIRECT_PAYMENT--}',
1112 'points' => $ref_points
1116 $message = loadEmailTemplate('add-points', $content, $userid);
1119 sendEmail($userid, '{--DIRECT_PAYMENT_SUBJECT--}', $message);
1120 if (!isGetRequestParameterSet('mid')) {
1121 // Output message to admin
1122 loadTemplate('admin_settings_saved', false, '{--ADMIN_POINTS_ADDED--}');
1126 // Maybe there's another ref?
1127 if ((isValidUserId(getUserData('refid'))) && ($points > 0) && (getUserData('refid') != $userid) && ($add_mode == 'ref')) {
1128 // Then let's credit him here...
1129 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',ref='.getUserData('refid').',points='.$points.' - ADVANCE!');
1130 $added = ($added && addPointsThroughReferalSystem(sprintf("%s_ref:%s", $subject, $GLOBALS['ref_level']), getUserData('refid'), $points, $sendNotify, getUserData('refid')));
1135 //* DEBUG: */ debugOutput('</li></ul>----------------------- <font color="#aa0000">'.__FUNCTION__.': added=' . intval($added) . ' - EXIT</font> ------------------------<br />');
1139 // Updates the referal counter
1140 function updateReferalCounter ($userid) {
1141 // Make it sure referal level zero (member him-/herself) is at least selected
1142 if (empty($GLOBALS['cache_array']['ref_level'][$userid])) $GLOBALS['cache_array']['ref_level'][$userid] = 1;
1143 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',level='.$GLOBALS['cache_array']['ref_level'][$userid]);
1146 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `counter`=`counter`+1 WHERE `userid`=%s AND `level`='%s' LIMIT 1",
1147 array(bigintval($userid), $GLOBALS['cache_array']['ref_level'][$userid]), __FUNCTION__, __LINE__);
1149 // When no entry was updated then we have to create it here
1150 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):updated=' . SQL_AFFECTEDROWS());
1151 if (SQL_HASZEROAFFECTED()) {
1153 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refsystem` (`userid`, `level`, `counter`) VALUES (%s,%s,1)",
1156 $GLOBALS['cache_array']['ref_level'][$userid]
1157 ), __FUNCTION__, __LINE__);
1158 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid);
1164 // Check for his referal
1165 if (fetchUserData($userid)) {
1167 $ref = getUserData('refid');
1170 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',ref='.$ref);
1172 // When he has a referal...
1173 if (($ref > 0) && ($ref != $userid)) {
1174 // Move to next referal level and count his counter one up!
1175 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):ref='.$ref.' - ADVANCE!');
1176 $GLOBALS['cache_array']['ref_level'][$userid]++;
1177 updateReferalCounter($ref);
1178 } elseif ((($ref == $userid) || ($ref == '0')) && (isExtensionInstalledAndNewer('cache', '0.1.2'))) {
1179 // Remove cache here
1180 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):ref='.$ref.' - CACHE!');
1181 rebuildCache('refsystem', 'refsystem');
1185 $GLOBALS['cache_array']['ref_level'][$userid]--;
1187 // Handle refback here if extension is installed
1188 // @TODO Rewrite this to a filter
1189 if (isExtensionActive('refback')) {
1190 updateRefbackTable($userid);
1194 // Sends out mail to all administrators. This function is no longer obsolete
1195 // because we need it when there is no ext-admins installed
1196 function sendAdminEmails ($subj, $message) {
1197 // Load all admin email addresses
1198 $result = SQL_QUERY('SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC', __FUNCTION__, __LINE__);
1199 while ($content = SQL_FETCHARRAY($result)) {
1200 // Send the email out
1201 sendEmail($content['email'], $subj, $message);
1205 SQL_FREERESULT($result);
1207 // Really simple... ;-)
1210 // Get id number from administrator's login name
1211 function getAdminId ($adminLogin) {
1212 // By default no admin is found
1216 if (isset($GLOBALS['cache_array']['admin']['admin_id'][$adminLogin])) {
1217 // Use it if found to save SQL queries
1218 $data['id'] = $GLOBALS['cache_array']['admin']['admin_id'][$adminLogin];
1220 // Update cache hits
1221 incrementStatsEntry('cache_hits');
1222 } elseif (!isExtensionActive('cache')) {
1223 // Load from database
1224 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1225 array($adminLogin), __FUNCTION__, __LINE__);
1227 // Do we have an entry?
1228 if (SQL_NUMROWS($result) == 1) {
1230 $data = SQL_FETCHARRAY($result);
1234 SQL_FREERESULT($result);
1241 // "Getter" for current admin id
1242 function getCurrentAdminId () {
1243 // Do we have cache?
1244 if (!isset($GLOBALS['current_admin_id'])) {
1245 // Get the admin login from session
1246 $adminId = getSession('admin_id');
1248 // Remember in cache securely
1249 setCurrentAdminId(bigintval($adminId));
1253 return $GLOBALS['current_admin_id'];
1256 // Setter for current admin id
1257 function setCurrentAdminId ($currentAdminId) {
1259 $GLOBALS['current_admin_id'] = bigintval($currentAdminId);
1262 // Get password hash from administrator's login name
1263 function getAdminHash ($adminId) {
1264 // By default an invalid hash is returned
1265 $data['password'] = '-1';
1267 if (isAdminHashSet($adminId)) {
1269 $data['password'] = $GLOBALS['cache_array']['admin']['password'][$adminId];
1271 // Update cache hits
1272 incrementStatsEntry('cache_hits');
1273 } elseif (!isExtensionActive('cache')) {
1274 // Load from database
1275 $result = SQL_QUERY_ESC("SELECT `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1276 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1278 // Do we have an entry?
1279 if (SQL_NUMROWS($result) == 1) {
1281 $data = SQL_FETCHARRAY($result);
1284 setAdminHash($adminId, $data['password']);
1288 SQL_FREERESULT($result);
1291 // Return password hash
1292 return $data['password'];
1295 // "Getter" for admin login
1296 function getAdminLogin ($adminId) {
1297 // By default a non-existent login is returned (other functions react on this!)
1298 $data['login'] = '***';
1300 if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1302 $data['login'] = $GLOBALS['cache_array']['admin']['login'][$adminId];
1304 // Update cache hits
1305 incrementStatsEntry('cache_hits');
1306 } elseif (!isExtensionActive('cache')) {
1307 // Load from database
1308 $result = SQL_QUERY_ESC("SELECT `login` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1309 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1312 if (SQL_NUMROWS($result) == 1) {
1314 $data = SQL_FETCHARRAY($result);
1317 $GLOBALS['cache_array']['admin']['login'][$adminId] = $data['login'];
1321 SQL_FREERESULT($result);
1324 // Return the result
1325 return $data['login'];
1328 // Get email address of admin id
1329 function getAdminEmail ($adminId) {
1330 // By default an invalid emails is returned
1331 $data['email'] = '***';
1333 if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1335 $data['email'] = $GLOBALS['cache_array']['admin']['email'][$adminId];
1337 // Update cache hits
1338 incrementStatsEntry('cache_hits');
1339 } elseif (!isExtensionActive('cache')) {
1340 // Load from database
1341 $result_admin_id = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1342 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1345 if (SQL_NUMROWS($result_admin_id) == 1) {
1347 $data = SQL_FETCHARRAY($result_admin_id);
1350 $GLOBALS['cache_array']['admin']['email'][$adminId] = $data['email'];
1354 SQL_FREERESULT($result_admin_id);
1358 return $data['email'];
1361 // Get default ACL of admin id
1362 function getAdminDefaultAcl ($adminId) {
1363 // By default an invalid ACL value is returned
1364 $data['default_acl'] = '***';
1366 // Is sql_patches there and was it found in cache?
1367 if (!isExtensionActive('sql_patches')) {
1368 // Not found, which is bad, so we need to allow all
1369 $data['default_acl'] = 'allow';
1370 } elseif (isset($GLOBALS['cache_array']['admin']['def_acl'][$adminId])) {
1372 $data['default_acl'] = $GLOBALS['cache_array']['admin']['def_acl'][$adminId];
1374 // Update cache hits
1375 incrementStatsEntry('cache_hits');
1376 } elseif (!isExtensionActive('cache')) {
1377 // Load from database
1378 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1379 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1380 if (SQL_NUMROWS($result_admin_id) == 1) {
1382 $data = SQL_FETCHARRAY($result_admin_id);
1385 $GLOBALS['cache_array']['admin']['def_acl'][$adminId] = $data['default_acl'];
1389 SQL_FREERESULT($result_admin_id);
1392 // Return default ACL
1393 return $data['default_acl'];
1396 // Generates an option list from various parameters
1397 function generateOptionList ($table, $id, $name, $default = '', $special = '', $where = '', $disabled = array(), $callback = '') {
1399 if ($table == '/ARRAY/') {
1400 // Selection from array
1401 if ((is_array($id)) && (is_array($name)) && ((count($id)) == (count($name)) || (!empty($callback)))) {
1403 foreach ($id as $idx => $value) {
1404 $ret .= '<option value="' . $value . '"';
1405 if ($default == $value) {
1406 // Selected by default
1407 $ret .= ' selected="selected"';
1408 } elseif (isset($disabled[$value])) {
1410 $ret .= ' disabled="disabled"';
1413 // Is the call-back function set?
1414 if (!empty($callback)) {
1416 $name[$idx] = call_user_func_array($callback, array($id[$idx]));
1419 // Finish option tag
1420 $ret .= '>' . $name[$idx] . '</option>';
1423 // Problem in request
1424 debug_report_bug(__FUNCTION__, __LINE__, 'Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name) . ',callback=' . $callback);
1427 // Data from database
1428 $SPEC = ', `' . $id . '`';
1429 if (!empty($special)) $SPEC = ', `' . $special . '`';
1431 // Query the database
1432 $result = SQL_QUERY_ESC("SELECT `%s`, `%s`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$where." ORDER BY `%s` ASC",
1438 ), __FUNCTION__, __LINE__);
1441 if (!SQL_HASZERONUMS($result)) {
1442 // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1443 // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
1444 while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1445 if (empty($special)) $add = '';
1446 $ret .= '<option value="' . $value . '"';
1447 if ($default == $value) {
1448 // Selected by default
1449 $ret .= ' selected="selected"';
1450 } elseif (isset($disabled[$value])) {
1452 $ret .= ' disabled="disabled"';
1456 if (!empty($add)) $add = ' ('.$add.')';
1458 // Is the call-back function set?
1459 if (!empty($callback)) {
1461 $title = call_user_func_array($callback, array($title));
1464 // Finish option list
1465 $ret .= '>' . $title . $add . '</option>';
1469 $ret = '<option value="x">{--SELECT_NONE--}</option>';
1473 SQL_FREERESULT($result);
1476 // Return - hopefully - the requested data
1479 // Activate exchange
1480 function FILTER_ACTIVATE_EXCHANGE () {
1481 // Is the extension 'user' there?
1482 if ((!isExtensionActive('user')) || (getConfig('activate_xchange') == '0')) {
1483 // Silently abort here
1487 // Check total amount of users
1488 if (getTotalConfirmedUser() >= getConfig('activate_xchange')) {
1491 "UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N', `hidden`='N', `mem_only`='Y' WHERE `module`='order' LIMIT 1",
1492 "UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='order' OR `what`='unconfirmed' LIMIT 2",
1496 runFilterChain('run_sqls');
1498 // Update configuration
1499 updateConfiguration('activate_xchange' ,0);
1502 rebuildCache('modules', 'modules');
1506 // Deletes a user account with given reason
1507 function deleteUserAccount ($userid, $reason) {
1509 $data['points'] = '0';
1511 $result = SQL_QUERY_ESC("SELECT
1512 (SUM(p.`points`) - d.`used_points`) AS `points`
1514 `{?_MYSQL_PREFIX?}_user_points` AS p
1516 `{?_MYSQL_PREFIX?}_user_data` AS d
1518 p.`userid`=d.`userid`
1522 array(bigintval($userid)), __FUNCTION__, __LINE__);
1524 // Do we have an entry?
1525 if (SQL_NUMROWS($result) == 1) {
1526 // Save his points to add them to the jackpot
1527 $data = SQL_FETCHARRAY($result);
1529 // Delete points entries as well
1530 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s",
1531 array(bigintval($userid)), __FUNCTION__, __LINE__);
1533 // Update mediadata as well
1534 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1536 updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1539 // Now, when we have all his points adds them do the jackpot!
1540 if (isExtensionActive('jackpot')) addPointsToJackpot($data['points']);
1544 SQL_FREERESULT($result);
1546 // Delete category selections as well...
1547 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1548 array(bigintval($userid)), __FUNCTION__, __LINE__);
1550 // Remove from rallye if found
1551 // @TODO Rewrite this to a filter
1552 if (isExtensionActive('rallye')) {
1553 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1554 array(bigintval($userid)), __FUNCTION__, __LINE__);
1557 // Add reason and translate points
1558 $data['text'] = $reason;
1560 // Now a mail to the user and that's all...
1561 $message = loadEmailTemplate('del-user', $data, $userid);
1562 sendEmail($userid, '{--ADMIN_DELETE_ACCOUNT--}', $message);
1564 // Ok, delete the account!
1565 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1568 // Gets the matching what name from module
1569 function getWhatFromModule ($modCheck) {
1570 // Is the request element set?
1571 if (isGetRequestParameterSet('what')) {
1572 // Then return this!
1573 return getRequestParameter('what');
1579 //* DEBUG: */ debugOutput(__LINE__.'!'.$modCheck.'!');
1580 switch ($modCheck) {
1587 // Is ext-sql_patches installed and newer than 0.0.5?
1588 if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1589 // Use it from config
1590 $what = getIndexHome();
1592 // Use default 'welcome'
1602 // Return what value
1606 // Subtract points from database and mediadata cache
1607 function subtractPoints ($subject, $userid, $points) {
1608 // Add points to used points
1609 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `used_points`=`used_points`+%s WHERE `userid`=%s LIMIT 1",
1610 array($points, bigintval($userid)), __FUNCTION__, __LINE__);
1612 // Prepare filter data
1613 $filterData = array(
1614 'subject' => $subject,
1615 'userid' => $userid,
1616 'points' => $points,
1618 'added' => (!SQL_HASZEROAFFECTED())
1621 // Insert booking record
1622 $filterData = runFilterChain('sub_points', $filterData);
1625 return $filterData['added'];
1628 // "Getter" for total available receivers
1629 function getTotalReceivers ($mode = 'normal') {
1631 $numRows = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true, ' AND `receive_mails` > 0' . runFilterChain('exclude_users', $mode));
1637 // Returns HTML code with an option list of all categories
1638 function generateCategoryOptionsList ($mode) {
1639 // Prepare WHERE statement
1640 $whereStatement = " WHERE `visible`='Y'";
1641 if (isAdmin()) $whereStatement = '';
1643 // Initialize array...
1647 'userids' => array()
1651 $result = SQL_QUERY('SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`' . $whereStatement . ' ORDER BY `sort` ASC',
1652 __FUNCTION__, __LINE__);
1654 // Do we have entries?
1655 if (!SQL_HASZERONUMS($result)) {
1656 // ... and begin loading stuff
1657 while ($content = SQL_FETCHARRAY($result)) {
1658 // Transfer some data
1659 $CATS['id'][] = $content['id'];
1660 $CATS['name'][] = $content['cat'];
1662 // Check which users are in this category
1663 $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s ORDER BY `userid` ASC",
1664 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1670 while ($data = SQL_FETCHARRAY($result_userids)) {
1672 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED' AND `receive_mails` > 0");
1676 SQL_FREERESULT($result_userids);
1679 $CATS['userids'][] = $userid_cnt;
1683 SQL_FREERESULT($result);
1687 foreach ($CATS['id'] as $key => $value) {
1688 if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1689 $OUT .= ' <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1692 // No cateogries are defined yet
1693 $OUT = '<option class="notice">{--MEMBER_NO_CATEGORIES--}</option>';
1700 // Add bonus mail to queue
1701 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $cat, $mode='normal', $receiver=0) {
1702 // Is admin or bonus extension there?
1706 } elseif (!isExtensionActive('bonus')) {
1711 // Calculcate target sent
1712 $target = countSelection(explode(';', $receiverList));
1714 // Receiver is zero?
1715 if ($receiver == '0') {
1717 $receiver = $target;
1720 // HTML extension active?
1721 if (isExtensionActive('html_mail')) {
1722 // No HTML by default
1726 if ($mode == 'html') $HTML = 'Y';
1729 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1730 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`, `html_msg`)
1731 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s','%s')",
1741 bigintval($receiver),
1743 ), __FUNCTION__, __LINE__);
1746 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1747 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`)
1748 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s')",
1758 bigintval($receiver),
1759 ), __FUNCTION__, __LINE__);
1763 // Generate a receiver list for given category and maximum receivers
1764 function generateReceiverList ($cat, $receiver, $mode = '') {
1772 $cat = bigintval($cat);
1773 $receiver = bigintval($receiver);
1775 // Is the receiver zero and mode set?
1776 if (($receiver == '0') && (!empty($mode))) {
1777 // Auto-fix receiver maximum
1778 $receiver = getTotalReceivers($mode);
1784 $CAT_TABS = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.`userid`=c.`userid`";
1785 $CAT_WHERE = sprintf(" AND c.`cat_id`=%s", $cat);
1788 // Exclude users in holiday?
1789 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
1790 // Add something for the holiday extension
1791 $CAT_WHERE .= " AND d.`holiday_active`='N'";
1794 if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1795 // Only include HTML receivers
1796 $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.{?order_select?} {?order_mode?} LIMIT %s",
1799 ), __FUNCTION__, __LINE__);
1802 $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.{?order_select?} {?order_mode?} LIMIT %s",
1805 ), __FUNCTION__, __LINE__);
1809 if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1811 while ($content = SQL_FETCHARRAY($result)) {
1812 // Add receiver when not empty
1813 if (!empty($content['userid'])) $receiverList .= $content['userid'] . ';';
1817 SQL_FREERESULT($result);
1819 // Remove trailing semicolon
1820 $receiverList = substr($receiverList, 0, -1);
1824 return $receiverList;
1827 // "Getter" for array for user refs and points in given level
1828 function getUserReferalPoints ($userid, $level) {
1829 //* DEBUG: */ debugOutput('----------------------- <font color="#00aa00">'.__FUNCTION__.' - ENTRY</font> ------------------------<ul><li>');
1830 // Default is no refs and no nickname
1834 // Do we have nickname extension installed?
1835 if (isExtensionActive('nickname')) {
1836 $add = ', ud.nickname';
1839 // Get refs from database
1840 $result = SQL_QUERY_ESC("SELECT
1841 ur.id, ur.refid, ud.status, ud.last_online, ud.mails_confirmed, ud.emails_received".$add."
1843 `{?_MYSQL_PREFIX?}_user_refs` AS ur
1845 `{?_MYSQL_PREFIX?}_user_points` AS up
1847 ur.refid=up.userid AND ur.level=0
1849 `{?_MYSQL_PREFIX?}_user_data` AS ud
1853 ur.userid=%s AND ur.level=%s
1859 ), __FUNCTION__, __LINE__);
1861 // Are there some entries?
1862 if (!SQL_HASZERONUMS($result)) {
1863 // Fetch all entries
1864 while ($row = SQL_FETCHARRAY($result)) {
1865 // Get total points of this user
1866 $row['points'] = getTotalPoints($row['refid']);
1868 // Get unconfirmed mails
1869 $row['unconfirmed'] = countSumTotalData($row['refid'], 'user_links', 'id', 'userid', true);
1871 // Init clickrate with zero
1872 $row['clickrate'] = '0';
1874 // Is at least one mail received?
1875 if ($row['emails_received'] > 0) {
1876 // Calculate clickrate
1877 $row['clickrate'] = ($row['mails_confirmed'] / $row['emails_received'] * 100);
1880 // Activity is 'active' by default because if autopurge is not installed
1881 $row['activity'] = '{--MEMBER_ACTIVITY_ACTIVE--}';
1883 // Is autopurge installed and the user inactive?
1884 if ((isExtensionActive('autopurge')) && ((time() - getApInactiveSince()) >= $row['last_online'])) {
1886 $row['activity'] = '{--MEMBER_ACTIVITY_INACTIVE--}';
1889 // Remove some entries
1890 unset($row['mails_confirmed']);
1891 unset($row['emails_received']);
1892 unset($row['last_online']);
1895 $refs[$row['id']] = $row;
1900 SQL_FREERESULT($result);
1903 //* DEBUG: */ debugOutput('</li></ul>----------------------- <font color="#aa0000">'.__FUNCTION__.' - EXIT</font> ------------------------<br />');
1907 // Recuce the amount of received emails for the receipients for given email
1908 function reduceRecipientReceivedMails ($column, $id, $count) {
1909 // Search for mail in database
1910 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
1911 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
1913 // Are there entries?
1914 if (!SQL_HASZERONUMS($result)) {
1915 // Now load all userids for one big query!
1917 while ($data = SQL_FETCHARRAY($result)) {
1918 // By default we want to reduce and have no mails found
1921 // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
1922 // @TODO Rewrite this to a filter
1923 if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
1925 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
1926 } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
1928 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
1931 // Reduce this users total received emails?
1932 if ($num === 0) $userids[$data['userid']] = $data['userid'];
1935 if (count($userids) > 0) {
1936 // Now update all user accounts
1937 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
1938 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
1941 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MAIL_NOTHING_DELETED', $id));
1946 SQL_FREERESULT($result);
1949 // Creates a new task
1950 function createNewTask ($subject, $notes, $taskType, $userid = '0', $adminId = '0', $strip = true) {
1951 // Insert the task data into the database
1952 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_task_system` (`assigned_admin`, `userid`, `status`, `task_type`, `subject`, `text`, `task_created`) VALUES (%s,%s,'NEW','%s','%s','%s', UNIX_TIMESTAMP())",
1959 ), __FUNCTION__, __LINE__, true, $strip);
1961 // Return insert id which is the task id
1962 return SQL_INSERTID();
1965 // Updates last module / online time
1966 // @TODO Fix inconsistency between last_module and getWhat()
1967 function updateLastActivity($userid) {
1968 // Run the update query
1969 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_module`='%s', `last_online`=UNIX_TIMESTAMP(), `REMOTE_ADDR`='%s' WHERE `userid`=%s LIMIT 1",
1974 ), __FUNCTION__, __LINE__);