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 database-related functions *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Alle datenbank-relevanten Funktionen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://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();
49 } elseif ((isGetRequestElementSet('action')) && ($column == 'what')) {
51 return getTitleFromMenu($mode, getAction(), 'action', $ADD);
52 } elseif ($what == 'overview') {
54 return '{--WHAT_IS_OVERVIEW--}';
57 // Default is not found
58 $data['title'] = '??? (' . $what . ')';
61 $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `%s`='%s'" . $ADD . " LIMIT 1",
66 ), __FUNCTION__, __LINE__);
69 if (SQL_NUMROWS($result) == 1) {
71 $data = SQL_FETCHARRAY($result);
75 SQL_FREERESULT($result);
78 return $data['title'];
81 // Add link into output stream (or return it) for 'You Are Here' navigation
82 function addYouAreHereLink ($accessLevel, $FQFN, $return = false) {
83 // Use only filename of the FQFN...
84 $file = basename($FQFN);
92 // First we have to do some analysis...
93 if (substr($file, 0, 7) == 'action-') {
94 // This is an action file!
96 $search = substr($file, 7);
98 // Get access level from it
99 $modCheck = getModuleFromFileName($file, $accessLevel);
102 $ADD = " AND (`what`='' OR `what` IS NULL)";
103 } elseif (substr($file, 0, 5) == 'what-') {
104 // This is a 'what file'!
106 $search = substr($file, 5);
108 // Get access level from it
109 $modCheck = getModuleFromFileName($file, $accessLevel);
111 // Do we have admin? Then display all
112 $ADD = " AND `visible`='Y' AND `locked`='N'";
118 $dummy = substr($search, 0, -4);
119 $ADD .= sprintf(" AND `action`='%s'", getActionFromModuleWhat($accessLevel, $dummy));
120 } elseif ($accessLevel == 'sponsor') {
124 $modCheck = getModule();
130 $modCheck = getModule();
134 // Begin the navigation line
135 if (!isset($GLOBALS['nav_depth'])) {
137 $GLOBALS['nav_depth'] = '0';
139 // Run the pre-filter chain
140 $ret = runFilterChain('pre_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'search' => $search, 'prefix' => $prefix, 'link_add' => $LINK_ADD, 'content' => '', 'add' => $ADD));
143 $prefix = $ret['content'];
145 // Add default content
146 $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>';
147 } elseif ($return === false) {
149 $GLOBALS['nav_depth']++;
152 $prefix .= ' -> ';
154 // We need to remove .php and the end
155 if (substr($search, -4, 4) == '.php') {
157 $search = substr($search, 0, -4);
160 if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
162 $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>';
164 // Can we close the you-are-here navigation?
165 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type . 'getWhat()=' . getWhat());
166 if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (getWhat() == 'overview')))) {
167 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type);
168 // Add closing div and br-tag
169 $GLOBALS['nav_depth'] = '0';
171 // Run the post-filter chain
172 $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'search' => $search, 'prefix' => $prefix, 'link_add' => $LINK_ADD, 'content' => $OUT, 'add' => $ADD));
174 // Get content from filter back
175 $OUT = $ret['content'];
177 // Close div-tag, so not the filters have to do it
182 // Return or output HTML code?
183 if ($return === true) {
187 // Output HTML code here
192 // Adds a menu (mode = guest/member/admin/sponsor) to output
193 function addMenu ($mode, $action, $what) {
194 // Init some variables
197 // is the menu action valid?
198 if (!isMenuActionValid($mode, $action, $what, true)) {
199 return getCode('MENU_NOT_VALID');
202 // Non-admin shall not see all menus
203 $ADD = " AND `visible`='Y' AND `locked`='N'";
205 // Is admin, so make all visible
209 // Load SQL data and add the menu to the output stream...
210 $result_main = SQL_QUERY_ESC("SELECT
211 `title`,`what`,`action`,`visible`,`locked`
213 `{?_MYSQL_PREFIX?}_%s_menu`
215 (`what`='' OR `what` IS NULL)
219 array($mode), __FUNCTION__, __LINE__);
221 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
222 if (!SQL_HASZERONUMS($result_main)) {
223 // There are menus available, so we simply display them... :)
224 $GLOBALS['rows'] = '';
225 while ($content = SQL_FETCHARRAY($result_main)) {
226 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
227 // Disable the block-mode
228 enableBlockMode(false);
230 // Load menu header template
231 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
234 $result_sub = SQL_QUERY_ESC("SELECT
235 `title` AS `sub_title`,
236 `what` AS `sub_what`,
237 `visible` AS `sub_visible`,
238 `locked` AS `sub_locked`
240 `{?_MYSQL_PREFIX?}_%s_menu`
248 array($mode, $content['action']), __FUNCTION__, __LINE__);
250 // Do we have some entries?
251 if (!SQL_HASZERONUMS($result_sub)) {
255 // Load all sub menus
256 while ($content2 = SQL_FETCHARRAY($result_sub)) {
257 // Merge both arrays in one
258 $content = merge_array($content, $content2);
263 // Full file name for checking menu
264 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'sub_what=' . $content['sub_what']);
265 $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
266 if (isIncludeReadable($inc)) {
267 // Mark currently selected menu - open
268 if ((!empty($what)) && (($what == $content['sub_what']))) {
272 // Is ext-sql_patches up-to-date, and display_home_in_index is Y?
273 if ((isExtensionInstalledAndNewer('sql_patches', '0.8.3')) && (isDisplayHomeInIndexEnabled()) && ($content['sub_what'] == getIndexHome())) {
274 // Use index.php as link
275 $OUT .= '<a name="menu" class="menu_blur" href="{%url=index.php%}" target="_self">';
277 // Regular navigation link
278 $OUT .= '<a name="menu" class="menu_blur" href="{%url=modules.php?module=' . getModule() . '&what=' . $content['sub_what'] . '%}" target="_self">';
282 $OUT .= '<span class="bad" style="cursor:help" title="{%message,ADMIN_MENU_WHAT_404_TITLE=' . $content['sub_what'] . '%}">';
286 $OUT .= '{?menu_blur_spacer?}' . $content['sub_title'];
288 if (isIncludeReadable($inc)) {
291 // Mark currently selected menu - close
292 if ((!empty($what)) && (($what == $content['sub_what']))) {
306 'what' => $content['sub_what'],
307 'visible' => $content['sub_visible'],
308 'locked' => $content['locked'],
311 // Add regular menu row or bottom row?
312 if ($count < SQL_NUMROWS($result_sub)) {
313 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
315 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
319 // This is a menu block... ;-)
323 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
324 if (isFileReadable($INC)) {
326 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
327 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
329 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
330 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
332 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
336 SQL_FREERESULT($result_sub);
341 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
342 if (SQL_NUMROWS($result_main) > $main_cnt) {
344 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
346 // Should we display adverts in this menu?
347 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
348 // Display advert template
349 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
351 // Add separator again
352 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
358 SQL_FREERESULT($result_main);
360 // Should we display adverts in this menu?
361 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
362 // Add separator again
363 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
365 // Display advert template
366 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
371 'rows' => $GLOBALS['rows'],
375 // Load main template
376 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
377 loadTemplate('menu_table', false, $content);
381 // Checks wether the current user is a member
382 function isMember () {
383 // By default no member
386 // Fix missing 'last_online' array, damn stupid code :(((
387 // @TODO Try to rewrite this to one or more functions
388 if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) {
389 $GLOBALS['last_online'] = array();
392 // Is the cache entry there?
393 if (isset($GLOBALS[__FUNCTION__])) {
395 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'CACHED! (' . intval($GLOBALS[__FUNCTION__]) . ')');
396 return $GLOBALS[__FUNCTION__];
397 } elseif ((!isSessionVariableSet('userid')) || (!isSessionVariableSet('u_hash'))) {
398 // Destroy any existing user session data
399 destroyMemberSession();
400 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'No member set in cookie/session.');
402 // Abort further processing
406 // Get userid secured from session
407 setMemberId(getSession('userid'));
409 // ... and set it as currently handled user id
410 setCurrentUserId(getMemberId());
412 // Init user data array
415 // Fix "deleted" cookies first
416 fixDeletedCookies(array('userid', 'u_hash'));
418 // Are cookies set and can the member data be loaded?
419 if ((isMemberIdSet()) && (isSessionVariableSet('u_hash')) && (fetchUserData(getMemberId()) === true)) {
420 // Validate password by created the difference of it and the secret key
421 $valPass = encodeHashForCookie(getUserData('password'));
423 // So did we now have valid data and an unlocked user?
424 if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
425 // Transfer last module and online time
426 $GLOBALS['last_online']['module'] = getUserData('last_module');
427 $GLOBALS['last_online']['online'] = getUserData('last_online');
429 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
434 // Is $ret still false?
435 if ($ret === false) {
436 // Yes, so destroy the session
437 destroyMemberSession();
441 $GLOBALS[__FUNCTION__] = $ret;
444 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . intval($ret));
448 // Fetch user data for given user id
449 function fetchUserData ($value, $column = 'userid') {
450 // Extension ext-user must be there at any case
451 if (!isExtensionActive('user')) {
452 // Absent ext-user is really not good
454 } elseif (is_null($value)) {
455 // This shall never happen, so please report it
456 debug_report_bug(__FUNCTION__, __LINE__, 'value=NULL,column=' . $column . ' - value can never be NULL');
459 // If we should look for userid secure&set it here
460 if (substr($column, -2, 2) == 'id') {
462 $value = bigintval($value);
465 setCurrentUserId($value);
467 // Don't look for invalid userids...
468 if (!isValidUserId($value)) {
469 // Invalid, so abort here
470 debug_report_bug(__FUNCTION__, __LINE__, 'User id ' . $value . ' is invalid.');
471 } elseif (isUserDataValid()) {
472 // Use cache, so it is fine
473 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'value=' . $value . ' is valid, using cache #1');
476 } elseif (isUserDataValid()) {
477 // Using cache is fine
478 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'value=' . $value . ' is valid, using cache #2');
482 // By default none was found
487 if (isExtensionInstalledAndNewer('user', '0.3.5')) {
488 $ADD = ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`';
491 // Query for the user
492 $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
493 array($column, $value), __FUNCTION__, __LINE__);
495 // Do we have a record?
496 if (SQL_NUMROWS($result) == 1) {
497 // Load data from cookies
498 $data = SQL_FETCHARRAY($result);
500 // Set the userid for later use
501 setCurrentUserId($data['userid']);
503 // And cache the data for this userid
504 $GLOBALS['user_data'][getCurrentUserId()] = $data;
506 // Rewrite 'last_failure' if found and ext-user has version >= 0.3.7
507 if ((isExtensionInstalledAndNewer('user', '0.3.7')) && (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure']))) {
508 // Backup the raw one and zero it
509 $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
510 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = NULL;
513 if (!is_null($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'])) {
514 // Seperate data/time
515 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
517 // Seperate data and time again
518 $array['date'] = explode('-', $array[0]);
519 $array['time'] = explode(':', $array[1]);
521 // Now pass it to mktime()
522 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
534 $found = isUserDataValid();
538 SQL_FREERESULT($result);
544 // This patched function will reduce many SELECT queries for the specified or current admin login
545 function isAdmin () {
546 // No admin in installation phase!
547 if ((isInstallationPhase()) || (!isAdminRegistered())) {
556 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId);
558 // If admin login is not given take current from cookies...
559 if ((isSessionVariableSet('admin_id')) && (isSessionVariableSet('admin_md5'))) {
560 // Get admin login and password from session/cookies
561 $adminId = getCurrentAdminId();
562 $passCookie = getAdminMd5();
564 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mainId=' . $adminId . 'passCookie=' . $passCookie);
566 // Abort if admin id is zero
567 if ($adminId == '0') {
572 if (!isset($GLOBALS[__FUNCTION__][$adminId])) {
573 // Init it with failed
574 $GLOBALS[__FUNCTION__][$adminId] = false;
576 // Search in array for entry
577 if (isset($GLOBALS['admin_hash'])) {
579 $valPass = $GLOBALS['admin_hash'];
580 } elseif ((!empty($passCookie)) && (isAdminHashSet($adminId) === true) && (!empty($adminId))) {
581 // Login data is valid or not?
582 $valPass = encodeHashForCookie(getAdminHash($adminId));
585 $GLOBALS['admin_hash'] = $valPass;
588 incrementStatsEntry('cache_hits');
589 } elseif ((!empty($adminId)) && ((!isExtensionActive('cache')) || (isAdminHashSet($adminId) === false))) {
590 // Get admin hash and hash it
591 $valPass = encodeHashForCookie(getAdminHash($adminId));
594 $GLOBALS['admin_hash'] = $valPass;
597 if (!empty($valPass)) {
598 // Check if password is valid
599 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '(' . $valPass . '==' . $passCookie . ')='.intval($valPass == $passCookie));
600 $GLOBALS[__FUNCTION__][$adminId] = (($GLOBALS['admin_hash'] == $passCookie) || ((strlen($GLOBALS['admin_hash']) == 32) && ($GLOBALS['admin_hash'] == md5($passCookie))) || (($GLOBALS['admin_hash'] == '*FAILED*') && (!isExtensionActive('cache'))));
604 // Return result of comparision
605 return $GLOBALS[__FUNCTION__][$adminId];
608 // Generates a list of "max receiveable emails per day"
609 function addMaxReceiveList ($mode, $default = '', $return = false) {
615 // Guests (in the registration form) are not allowed to select 0 mails per day.
616 $result = SQL_QUERY('SELECT `value`,`comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value` > 0 ORDER BY `value` ASC',
617 __FUNCTION__, __LINE__);
621 // Members are allowed to set to zero mails per day (we will change this soon!)
622 $result = SQL_QUERY('SELECT `value`,`comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC',
623 __FUNCTION__, __LINE__);
627 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
631 // Some entries are found?
632 if (!SQL_HASZERONUMS($result)) {
634 while ($content = SQL_FETCHARRAY($result)) {
635 $OUT .= ' <option value="' . $content['value'] . '"';
636 if (postRequestElement('max_mails') == $content['value']) $OUT .= ' selected="selected"';
637 $OUT .= '>' . $content['value'] . ' {--PER_DAY--}';
638 if (!empty($content['comment'])) $OUT .= '(' . $content['comment'] . ')';
643 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
645 // Maybe the admin has to setup some maximum values?
646 debug_report_bug(__FUNCTION__, __LINE__, 'Nothing is being done here?');
650 SQL_FREERESULT($result);
652 if ($return === true) {
653 // Return generated HTML code
656 // Output directly (default)
661 // Checks wether the given email address is used.
662 function isEmailTaken ($email) {
663 // Default is no userid
664 $useridSql = ' IS NOT NULL';
666 // Is a member logged in?
669 $useridSql = '!= ' . bigintval(getMemberId());
672 // Replace dot with {DOT}
673 $email = str_replace('.', '{DOT}', $email);
675 // Query the database
676 $result = SQL_QUERY_ESC("SELECT
677 COUNT(`userid`) AS `cnt`
679 `{?_MYSQL_PREFIX?}_user_data`
681 '%s' REGEXP `email` AND
687 ), __FUNCTION__, __LINE__);
689 // Is the email there?
690 list($count) = SQL_FETCHROW($result);
693 SQL_FREERESULT($result);
696 return ($count == 1);
699 // Validate the given menu action
700 function isMenuActionValid ($mode, $action, $what, $updateEntry = false) {
701 // Is the cache entry there and we shall not update?
702 if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
704 incrementStatsEntry('cache_hits');
706 // Then use this cache
707 return $GLOBALS['action_valid'][$mode][$action][$what];
710 // By default nothing is valid
713 // Look in all menus or only unlocked
715 if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
717 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mode=' . $mode . ',action=' . $action . ',what=' . $what);
718 if (($mode != 'admin') && ($updateEntry === true)) {
719 // Update guest or member menu
720 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `counter`=`counter`+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
725 ), __FUNCTION__, __LINE__, false);
726 } elseif (($what != 'overview') && (!empty($what))) {
728 $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",
733 ), __FUNCTION__, __LINE__, false);
735 // Admin login overview
736 $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",
740 ), __FUNCTION__, __LINE__, false);
744 $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
746 // Should we look for affected rows (only update) or found rows?
747 if ($updateEntry === true) {
748 // Check updated/affected rows
749 $ret = (!SQL_HASZEROAFFECTED());
752 $ret = (!SQL_HASZERONUMS($result));
756 SQL_FREERESULT($result);
759 $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
765 // Get action value from mode (admin/guest/member) and what-value
766 function getActionFromModuleWhat ($module, $what) {
767 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'module=' . $module . ',what=' . $what);
769 $data['action'] = '';
771 if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
772 // sql_patches is missing so choose depending on mode
776 } elseif ($module == 'admin') {
783 } elseif ((empty($what)) && ($module != 'admin')) {
784 // Use configured 'home'
785 $what = getIndexHome();
788 if ($module == 'admin') {
789 // Action value for admin area
790 if (isGetRequestElementSet('action')) {
792 return getRequestElement('action');
793 } elseif (isActionSet()) {
794 // Get it directly from URL
796 } elseif (($what == 'overview') || (!isWhatSet())) {
797 // Default value for admin area
798 $data['action'] = 'login';
800 } elseif (isActionSet()) {
801 // Get it directly from URL
804 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, ' ret=' . $data['action']);
806 // Does the module have a menu?
807 if (ifModuleHasMenu($module)) {
808 // Rewriting modules to menu
809 $module = mapModuleToTable($module);
811 // Guest and member menu is 'main' as the default
812 if (empty($data['action'])) {
813 $data['action'] = 'main';
816 // Load from database
817 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
821 ), __FUNCTION__, __LINE__);
822 if (SQL_NUMROWS($result) == 1) {
823 // Load action value and pray that this one is the right you want... ;-)
824 $data = SQL_FETCHARRAY($result);
828 SQL_FREERESULT($result);
829 } elseif ((!isExtensionInstalled('sql_patches')) && ($module != 'admin') && ($module != 'unknown')) {
830 // No sql_patches installed, but maybe we need to register an admin?
831 if (isAdminRegistered()) {
832 // Redirect to admin area
833 redirectToUrl('admin.php');
837 // Return action value
838 return $data['action'];
841 // Get category name back
842 function getCategory ($cid) {
843 // Default is not found
844 $data['cat'] = '{--_CATEGORY_404--}';
846 // Is the category id set?
849 $data['cat'] = '{--_CATEGORY_NONE--}';
850 } elseif ($cid > 0) {
851 // Lookup the category in database
852 $result = SQL_QUERY_ESC("SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
853 array(bigintval($cid)), __FUNCTION__, __LINE__);
854 if (SQL_NUMROWS($result) == 1) {
855 // Category found... :-)
856 $data = SQL_FETCHARRAY($result);
860 SQL_FREERESULT($result);
867 // Get a string of "mail title" and price back
868 function getPaymentTitlePrice ($pid, $full=false) {
869 // Default is not found
870 $ret = '{--_PAYMENT_404--}';
873 $result = SQL_QUERY_ESC("SELECT `mail_title`,`price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
874 array(bigintval($pid)), __FUNCTION__, __LINE__);
876 // Do we have an entry?
877 if (SQL_NUMROWS($result) == 1) {
878 // Payment type found... :-)
879 $data = SQL_FETCHARRAY($result);
881 // Only title or also including price?
882 if ($full === false) {
883 $ret = $data['mail_title'];
885 $ret = $data['mail_title'] . ' / {%pipe,translateComma=' . $data['price'] . '%} {?POINTS?}';
890 SQL_FREERESULT($result);
896 // Get (basicly) the price of given payment id
897 function getPaymentPoints ($pid, $lookFor = 'price') {
899 $data[$lookFor] = -1;
901 // Search for it in database
902 $result = SQL_QUERY_ESC("SELECT `%s` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
903 array($lookFor, $pid), __FUNCTION__, __LINE__);
905 // Is the entry there?
906 if (SQL_NUMROWS($result) == 1) {
907 // Payment type found... :-)
908 $data = SQL_FETCHARRAY($result);
912 SQL_FREERESULT($result);
915 return $data[$lookFor];
918 // Remove a receiver's id from $receivers and add a link for him to confirm
919 function removeReceiver (&$receivers, $key, $userid, $poolId, $statsId = 0, $isBonusMail = false) {
920 // Default is not removed
923 // Is the userid valid?
924 if (isValidUserId($userid)) {
925 // Remove entry from array
926 unset($receivers[$key]);
928 // Is there already a line for this user available?
930 // Default is 'normal' mail
932 $rowName = 'stats_id';
934 // Only when we got a real stats id continue searching for the entry
935 if ($isBonusMail === true) {
937 $rowName = 'bonus_id';
940 // Try to look the entry up
941 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s AND `userid`=%s AND link_type='%s' LIMIT 1",
947 ), __FUNCTION__, __LINE__);
949 // Was it *not* found?
950 if (SQL_HASZERONUMS($result)) {
952 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`,`userid`,`link_type`) VALUES ('%s','%s','%s')",
958 ), __FUNCTION__, __LINE__);
960 // Update 'mails_sent' if sql_patches is updated
961 if (isExtensionInstalledAndNewer('sql_patches', '0.7.4')) {
963 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_pool` SET `mails_sent`=`mails_sent`+1 WHERE `id`=%s LIMIT 1",
964 array(bigintval($poolId)), __FUNCTION__, __LINE__);
973 SQL_FREERESULT($result);
977 // Return status for sending routine
981 // Calculate sum (default) or count records of given criteria
982 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '', $mode = '=') {
986 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',tableName=' . $tableName . ',lookFor=' . $lookFor . ',whereStatement=' . $whereStatement . ',add=' . $add);
987 if ((empty($search)) && ($search != '0')) {
988 // Count or sum whole table?
989 if ($countRows === true) {
991 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`" . $add . ' LIMIT 1',
995 ), __FUNCTION__, __LINE__);
998 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`" . $add . ' LIMIT 1',
1002 ), __FUNCTION__, __LINE__);
1004 } elseif (($countRows === true) || ($lookFor == 'userid')) {
1006 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'COUNT!');
1007 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'" . $add . ' LIMIT 1',
1014 ), __FUNCTION__, __LINE__);
1017 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SUM!');
1018 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'" . $add . ' LIMIT 1',
1025 ), __FUNCTION__, __LINE__);
1029 $data = SQL_FETCHARRAY($result);
1032 SQL_FREERESULT($result);
1035 if ((empty($data['res'])) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid')) {
1037 $data['res'] = '0.00000';
1038 } elseif (''.$data['res'].'' == '') {
1044 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'res=' . $data['res']);
1045 return $data['res'];
1048 // Sends out mail to all administrators. This function is no longer obsolete
1049 // because we need it when there is no ext-admins installed
1050 function sendAdminEmails ($subj, $message) {
1051 // Load all admin email addresses
1052 $result = SQL_QUERY('SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC', __FUNCTION__, __LINE__);
1053 while ($content = SQL_FETCHARRAY($result)) {
1054 // Send the email out
1055 sendEmail($content['email'], $subj, $message);
1059 SQL_FREERESULT($result);
1061 // Really simple... ;-)
1064 // Get id number from administrator's login name
1065 function getAdminId ($adminLogin) {
1066 // By default no admin is found
1070 if (isset($GLOBALS['cache_array']['admin']['admin_id'][$adminLogin])) {
1071 // Use it if found to save SQL queries
1072 $data['id'] = $GLOBALS['cache_array']['admin']['admin_id'][$adminLogin];
1074 // Update cache hits
1075 incrementStatsEntry('cache_hits');
1076 } elseif (!isExtensionActive('cache')) {
1077 // Load from database
1078 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1079 array($adminLogin), __FUNCTION__, __LINE__);
1081 // Do we have an entry?
1082 if (SQL_NUMROWS($result) == 1) {
1084 $data = SQL_FETCHARRAY($result);
1088 SQL_FREERESULT($result);
1095 // "Getter" for current admin id
1096 function getCurrentAdminId () {
1097 // Log debug message
1098 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'called!');
1100 // Do we have cache?
1101 if (!isset($GLOBALS['current_admin_id'])) {
1102 // Get the admin login from session
1103 $adminId = getSession('admin_id');
1105 // Remember in cache securely
1106 setCurrentAdminId(bigintval($adminId));
1110 return $GLOBALS['current_admin_id'];
1113 // Setter for current admin id
1114 function setCurrentAdminId ($currentAdminId) {
1116 $GLOBALS['current_admin_id'] = bigintval($currentAdminId);
1119 // Get password hash from administrator's login name
1120 function getAdminHash ($adminId) {
1121 // By default an invalid hash is returned
1122 $data['password'] = -1;
1124 if (isAdminHashSet($adminId)) {
1126 $data['password'] = $GLOBALS['cache_array']['admin']['password'][$adminId];
1128 // Update cache hits
1129 incrementStatsEntry('cache_hits');
1130 } elseif (!isExtensionActive('cache')) {
1131 // Load from database
1132 $result = SQL_QUERY_ESC("SELECT `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1133 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1135 // Do we have an entry?
1136 if (SQL_NUMROWS($result) == 1) {
1138 $data = SQL_FETCHARRAY($result);
1141 setAdminHash($adminId, $data['password']);
1145 SQL_FREERESULT($result);
1148 // Return password hash
1149 return $data['password'];
1152 // "Getter" for admin login
1153 function getAdminLogin ($adminId) {
1154 // By default a non-existent login is returned (other functions react on this!)
1155 $data['login'] = '***';
1157 if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1159 $data['login'] = $GLOBALS['cache_array']['admin']['login'][$adminId];
1161 // Update cache hits
1162 incrementStatsEntry('cache_hits');
1163 } elseif (!isExtensionActive('cache')) {
1164 // Load from database
1165 $result = SQL_QUERY_ESC("SELECT `login` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1166 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1169 if (SQL_NUMROWS($result) == 1) {
1171 $data = SQL_FETCHARRAY($result);
1174 $GLOBALS['cache_array']['admin']['login'][$adminId] = $data['login'];
1178 SQL_FREERESULT($result);
1181 // Return the result
1182 return $data['login'];
1185 // Get email address of admin id
1186 function getAdminEmail ($adminId) {
1187 // By default an invalid emails is returned
1188 $data['email'] = '***';
1190 if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1192 $data['email'] = $GLOBALS['cache_array']['admin']['email'][$adminId];
1194 // Update cache hits
1195 incrementStatsEntry('cache_hits');
1196 } elseif (!isExtensionActive('cache')) {
1197 // Load from database
1198 $result_admin_id = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1199 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1202 if (SQL_NUMROWS($result_admin_id) == 1) {
1204 $data = SQL_FETCHARRAY($result_admin_id);
1207 $GLOBALS['cache_array']['admin']['email'][$adminId] = $data['email'];
1211 SQL_FREERESULT($result_admin_id);
1215 return $data['email'];
1218 // Get default ACL of admin id
1219 function getAdminDefaultAcl ($adminId) {
1220 // By default an invalid ACL value is returned
1221 $data['default_acl'] = 'NO-ACL';
1223 // Is sql_patches there and was it found in cache?
1224 if (!isExtensionActive('sql_patches')) {
1225 // Not found, which is bad, so we need to allow all
1226 $data['default_acl'] = 'allow';
1227 } elseif (isset($GLOBALS['cache_array']['admin']['default_acl'][$adminId])) {
1229 $data['default_acl'] = $GLOBALS['cache_array']['admin']['default_acl'][$adminId];
1231 // Update cache hits
1232 incrementStatsEntry('cache_hits');
1233 } elseif (!isExtensionActive('cache')) {
1234 // Load from database
1235 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1236 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1238 // Do we have an entry?
1239 if (SQL_NUMROWS($result_admin_id) == 1) {
1241 $data = SQL_FETCHARRAY($result_admin_id);
1244 $GLOBALS['cache_array']['admin']['default_acl'][$adminId] = $data['default_acl'];
1248 SQL_FREERESULT($result_admin_id);
1251 // Return default ACL
1252 return $data['default_acl'];
1255 // Get menu mode (la_mode) of admin id
1256 function getAdminMenuMode ($adminId) {
1257 // By default an invalid mode
1258 $data['la_mode'] = 'INVALID';
1260 // Is sql_patches there and was it found in cache?
1261 if (!isExtensionActive('sql_patches')) {
1262 // Not found, which is bad, so we need to allow all
1263 $data['la_mode'] = 'global';
1264 } elseif (isset($GLOBALS['cache_array']['admin']['la_mode'][$adminId])) {
1266 $data['la_mode'] = $GLOBALS['cache_array']['admin']['la_mode'][$adminId];
1268 // Update cache hits
1269 incrementStatsEntry('cache_hits');
1270 } elseif (!isExtensionActive('cache')) {
1271 // Load from database
1272 $result_admin_id = SQL_QUERY_ESC("SELECT `la_mode` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1273 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1275 // Do we have an entry?
1276 if (SQL_NUMROWS($result_admin_id) == 1) {
1278 $data = SQL_FETCHARRAY($result_admin_id);
1281 $GLOBALS['cache_array']['admin']['la_mode'][$adminId] = $data['la_mode'];
1285 SQL_FREERESULT($result_admin_id);
1288 // Return default ACL
1289 return $data['la_mode'];
1292 // Generates an option list from various parameters
1293 function generateOptionList ($table, $id, $name, $default = '', $special = '', $whereStatement = '', $disabled = array(), $callback = '') {
1295 if ($table == '/ARRAY/') {
1296 // Selection from array
1297 if ((is_array($id)) && (is_array($name)) && ((count($id)) == (count($name)) || (!empty($callback)))) {
1299 foreach ($id as $idx => $value) {
1300 $ret .= '<option value="' . $value . '"';
1301 if ($default == $value) {
1302 // Selected by default
1303 $ret .= ' selected="selected"';
1304 } elseif (isset($disabled[$value])) {
1306 $ret .= ' disabled="disabled"';
1309 // Is the call-back function set?
1310 if (!empty($callback)) {
1312 $name[$idx] = call_user_func_array($callback, array($id[$idx]));
1315 // Finish option tag
1316 $ret .= '>' . $name[$idx] . '</option>';
1319 // Problem in request
1320 debug_report_bug(__FUNCTION__, __LINE__, 'Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name) . ',callback=' . $callback);
1323 // Data from database
1324 $SPEC = ',`' . $id . '`';
1325 if (!empty($special)) {
1326 $SPEC = ',`' . $special . '` AS `special`';
1329 // Query the database
1330 $result = SQL_QUERY_ESC("SELECT `%s` AS `id`,`%s` AS `name`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$whereStatement." ORDER BY `%s` ASC",
1336 ), __FUNCTION__, __LINE__);
1339 if (!SQL_HASZERONUMS($result)) {
1340 // Found data so add them as OPTION lines
1341 while ($content = SQL_FETCHARRAY($result)) {
1343 if (!isset($content['special'])) {
1345 $content['special'] = '';
1348 $ret .= '<option value="' . $content['id'] . '"';
1350 if ($default == $content['id']) {
1351 // Selected by default
1352 $ret .= ' selected="selected"';
1353 } elseif (isset($disabled[$content['id']])) {
1355 $ret .= ' disabled="disabled"';
1359 if (!empty($content['special'])) {
1360 $content['special'] = ' (' . $content['special'] . ')';
1363 // Is the call-back function set?
1364 if (!empty($callback)) {
1366 $content['name'] = call_user_func_array($callback, array($content['name']));
1369 // Finish option list
1370 $ret .= '>' . $content['name'] . $content['special'] . '</option>';
1374 $ret = '<option value="x">{--SELECT_NONE--}</option>';
1378 SQL_FREERESULT($result);
1381 // Return - hopefully - the requested data
1385 // Deletes a user account with given reason
1386 function deleteUserAccount ($userid, $reason) {
1388 $data['points'] = '0';
1390 // Search for the points and user data
1391 $result = SQL_QUERY_ESC("SELECT
1392 (SUM(p.`points`) - d.`used_points`) AS `points`
1394 `{?_MYSQL_PREFIX?}_user_points` AS p
1396 `{?_MYSQL_PREFIX?}_user_data` AS d
1398 p.`userid`=d.`userid`
1402 array(bigintval($userid)), __FUNCTION__, __LINE__);
1404 // Do we have an entry?
1405 if (SQL_NUMROWS($result) == 1) {
1406 // Save his points to add them to the jackpot
1407 $data = SQL_FETCHARRAY($result);
1409 // Delete points entries as well
1410 // @TODO Rewrite these lines to a filter
1411 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s",
1412 array(bigintval($userid)), __FUNCTION__, __LINE__);
1414 // Update mediadata as well
1415 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1417 updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1420 // Now, when we have all his points adds them do the jackpot!
1421 if (isExtensionActive('jackpot')) {
1422 addPointsToJackpot($data['points']);
1427 SQL_FREERESULT($result);
1429 // Delete category selections as well...
1430 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1431 array(bigintval($userid)), __FUNCTION__, __LINE__);
1433 // Remove from rallye if found
1434 // @TODO Rewrite this to a filter
1435 if (isExtensionActive('rallye')) {
1436 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1437 array(bigintval($userid)), __FUNCTION__, __LINE__);
1440 // Add reason and translate points
1441 $data['text'] = $reason;
1443 // Now a mail to the user and that's all...
1444 $message = loadEmailTemplate('member_user_deleted', $data, $userid);
1445 sendEmail($userid, '{--ADMIN_DELETE_ACCOUNT--}', $message);
1447 // Ok, delete the account!
1448 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1451 // Gets the matching what name from module
1452 function getWhatFromModule ($modCheck) {
1453 // Is the request element set?
1454 if (isGetRequestElementSet('what')) {
1455 // Then return this!
1456 return getRequestElement('what');
1462 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'modCheck=' . $modCheck);
1463 switch ($modCheck) {
1470 // Is ext-sql_patches installed and newer than 0.0.5?
1471 if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1472 // Use it from config
1473 $what = getIndexHome();
1475 // Use default 'welcome'
1485 // Return what value
1489 // Returns HTML code with an option list of all categories
1490 function generateCategoryOptionsList ($mode) {
1491 // Prepare WHERE statement
1492 $whereStatement = " WHERE `visible`='Y'";
1493 if (isAdmin()) $whereStatement = '';
1495 // Initialize array...
1499 'userids' => array()
1503 $result = SQL_QUERY('SELECT `id`,`cat` FROM `{?_MYSQL_PREFIX?}_cats`' . $whereStatement . ' ORDER BY `sort` ASC',
1504 __FUNCTION__, __LINE__);
1506 // Do we have entries?
1507 if (!SQL_HASZERONUMS($result)) {
1508 // ... and begin loading stuff
1509 while ($content = SQL_FETCHARRAY($result)) {
1510 // Transfer some data
1511 $CATS['id'][] = $content['id'];
1512 $CATS['name'][] = $content['cat'];
1514 // Check which users are in this category
1515 $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s ORDER BY `userid` ASC",
1516 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1522 while ($data = SQL_FETCHARRAY($result_userids)) {
1524 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED' AND `receive_mails` > 0");
1528 SQL_FREERESULT($result_userids);
1531 $CATS['userids'][] = $userid_cnt;
1535 SQL_FREERESULT($result);
1539 foreach ($CATS['id'] as $key => $value) {
1540 if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1541 $OUT .= ' <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1544 // No cateogries are defined yet
1545 $OUT = '<option class="bad">{--MEMBER_NO_CATEGORIES--}</option>';
1552 // Add bonus mail to queue
1553 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $categoryId, $mode='normal', $receiver=0) {
1554 // Is admin or bonus extension there?
1558 } elseif (!isExtensionActive('bonus')) {
1563 // Calculcate target sent
1564 $target = countSelection(explode(';', $receiverList));
1566 // Receiver is zero?
1567 if ($receiver == '0') {
1569 $receiver = $target;
1572 // HTML extension active?
1573 if (isExtensionActive('html_mail')) {
1574 // Determine if we have HTML mode active
1575 $HTML = convertBooleanToYesNo($mode == 'html');
1578 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1579 (`subject`,`text`,`receivers`,`points`,`time`,`data_type`,`timestamp`,`url`,`cat_id`,`target_send`,`mails_sent`,`html_msg`)
1580 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s,'%s')",
1586 bigintval($seconds),
1588 bigintval($categoryId),
1590 bigintval($receiver),
1592 ), __FUNCTION__, __LINE__);
1595 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1596 (`subject`,`text`,`receivers`,`points`,`time`,`data_type`,`timestamp`,`url`,`cat_id`,`target_send`,`mails_sent`)
1597 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s)",
1603 bigintval($seconds),
1605 bigintval($categoryId),
1607 bigintval($receiver),
1608 ), __FUNCTION__, __LINE__);
1612 // Generate a receiver list for given category and maximum receivers
1613 function generateReceiverList ($categoryId, $receiver, $mode = '') {
1621 $categoryId = bigintval($categoryId);
1622 $receiver = bigintval($receiver);
1624 // Is the receiver zero and mode set?
1625 if (($receiver == '0') && (!empty($mode))) {
1626 // Auto-fix receiver maximum
1627 $receiver = getTotalReceivers($mode);
1631 if ($categoryId > 0) {
1633 $CAT_TABS = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.`userid`=c.`userid`";
1634 $CAT_WHERE = sprintf(" AND c.`cat_id`=%s", $categoryId);
1637 // Exclude users in holiday?
1638 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
1639 // Add something for the holiday extension
1640 $CAT_WHERE .= " AND d.`holiday_active`='N'";
1643 if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1644 // Only include HTML receivers
1645 $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",
1648 ), __FUNCTION__, __LINE__);
1651 $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",
1654 ), __FUNCTION__, __LINE__);
1658 if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1660 while ($content = SQL_FETCHARRAY($result)) {
1661 // Add receiver when not empty
1662 if (!empty($content['userid'])) {
1663 $receiverList .= $content['userid'] . ';';
1668 SQL_FREERESULT($result);
1670 // Remove trailing semicolon
1671 $receiverList = substr($receiverList, 0, -1);
1675 return $receiverList;
1678 // Recuce the amount of received emails for the receipients for given email
1679 function reduceRecipientReceivedMails ($column, $id, $count) {
1680 // Search for mail in database
1681 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
1682 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
1684 // Are there entries?
1685 if (!SQL_HASZERONUMS($result)) {
1686 // Now load all userids for one big query!
1688 while ($data = SQL_FETCHARRAY($result)) {
1689 // By default we want to reduce and have no mails found
1692 // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
1693 // @TODO Rewrite this to a filter
1694 if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
1696 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
1697 } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
1699 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
1702 // Reduce this users total received emails?
1704 $userids[$data['userid']] = $data['userid'];
1708 if (count($userids) > 0) {
1709 // Now update all user accounts
1710 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
1711 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
1714 displayMessage('{%message,ADMIN_MAIL_NOTHING_DELETED=' . $id . '%}');
1719 SQL_FREERESULT($result);
1722 // Creates a new task
1723 function createNewTask ($subject, $notes, $taskType, $userid = NULL, $adminId = NULL, $strip = true) {
1724 // Insert the task data into the database
1725 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())",
1727 convertZeroToNull($adminId),
1728 convertZeroToNull($userid),
1732 ), __FUNCTION__, __LINE__, true, $strip);
1734 // Return insert id which is the task id
1735 return SQL_INSERTID();
1738 // Updates last module / online time
1739 // @TODO Fix inconsistency between last_module and getWhat()
1740 function updateLastActivity($userid) {
1741 // Run the update query
1742 SQL_QUERY_ESC("UPDATE
1743 `{?_MYSQL_PREFIX?}_user_data`
1746 `last_online`=UNIX_TIMESTAMP(),
1755 ), __FUNCTION__, __LINE__);