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 - 2012 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 = '') {
47 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mode=' . $mode . ',what=' . $what . ',column=' . $column . ',add=' . $ADD);
51 $what = getIndexHome();
52 } elseif ((isGetRequestElementSet('action')) && ($column == 'what')) {
54 return getTitleFromMenu($mode, getAction(), 'action', $ADD);
55 } elseif ($what == 'welcome') {
57 return '{--WHAT_IS_WELCOME--}';
60 // Default is not found
61 $data['title'] = '??? (' . $what . ')';
64 $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `%s`='%s'" . $ADD . " LIMIT 1",
69 ), __FUNCTION__, __LINE__);
72 if (SQL_NUMROWS($result) == 1) {
74 $data = SQL_FETCHARRAY($result);
78 SQL_FREERESULT($result);
81 return $data['title'];
84 // Add link into output stream (or return it) for 'You Are Here' navigation
85 function addYouAreHereLink ($accessLevel, $FQFN, $return = false) {
86 // Use only filename of the FQFN...
87 $file = basename($FQFN);
95 // First we have to do some analysis...
96 if (substr($file, 0, 7) == 'action-') {
97 // This is an action file!
99 $search = substr($file, 7);
101 // Get access level from it
102 $modCheck = getModuleFromFileName($file, $accessLevel);
105 $ADD = " AND (`what`='' OR `what` IS NULL)";
106 } elseif (substr($file, 0, 5) == 'what-') {
107 // This is a 'what file'!
109 $search = substr($file, 5);
111 // Get access level from it
112 $modCheck = getModuleFromFileName($file, $accessLevel);
114 // Do we have admin? Then display all
115 $ADD = " AND `visible`='Y' AND `locked`='N'";
121 $dummy = substr($search, 0, -4);
122 $ADD .= sprintf(" AND `action`='%s'", getActionFromModuleWhat($accessLevel, $dummy));
123 } elseif ($accessLevel == 'sponsor') {
127 $modCheck = getModule();
132 $modCheck = getModule();
135 // Begin the navigation line
136 if (!isset($GLOBALS['nav_depth'])) {
138 $GLOBALS['nav_depth'] = '0';
140 // Run the pre-filter chain
141 $ret = runFilterChain('pre_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'search' => $search, 'prefix' => $prefix, 'link_add' => $linkAdd, 'content' => '', 'add' => $ADD));
144 $prefix = $ret['content'];
146 // Add default content
147 $prefix .= '<div class="you_are_here">{--YOU_ARE_HERE--} <strong><a class="you_are_here" href="{%url=modules.php?module=' . getModule() . $linkAdd . '%}">Home</a></strong>';
148 } elseif ($return === false) {
150 $GLOBALS['nav_depth']++;
154 $prefix .= ' -> ';
156 // We need to remove .php and the end
157 if (substr($search, -4, 4) == '.php') {
159 $search = substr($search, 0, -4);
162 // Is ext-sql_patches installed?
163 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isExtensionInstalledAndNewer()=' . intval(isExtensionInstalledAndNewer('sql_patches', '0.2.3')) . ',youre_here=' . getConfig('youre_here') . ',isAdmin()=' . intval(isAdmin()) . ',modCheck=' . $modCheck);
164 if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
166 $OUT = $prefix . '<strong><a class="you_are_here" href="{%url=modules.php?module=' . $modCheck . '&' . $type . '=' . $search . $linkAdd . '%}">' . getTitleFromMenu($accessLevel, $search, $type, $ADD) . '</a></strong>';
168 // Can we close the you-are-here navigation?
169 /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type . ',getWhat()=' . getWhat() . ',accessLevel=' . $accessLevel . ',isWhatSet()=' . intval(isWhatSet()));
170 if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (($accessLevel == 'admin') && (getWhat() == 'welcome'))))) {
171 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type);
172 // Add closing div and br-tag
173 $GLOBALS['nav_depth'] = '0';
175 // Run the post-filter chain
176 $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'search' => $search, 'prefix' => $prefix, 'link_add' => $linkAdd, 'content' => $OUT, 'add' => $ADD));
178 // Get content from filter back
179 $OUT = $ret['content'];
181 // Close div-tag, so not the filters have to do it
186 // Return or output HTML code?
187 if ($return === true) {
191 // Output HTML code here
196 // Adds a menu (mode = guest/member/admin/sponsor) to output
197 function addMenu ($mode, $action, $what) {
198 // Init some variables
201 // is the menu action valid?
202 if (!isMenuActionValid($mode, $action, $what, true)) {
203 return getCode('MENU_NOT_VALID');
206 // Non-admin shall not see all menus
207 $ADD = " AND `visible`='Y' AND `locked`='N'";
209 // Is admin, so make all visible
213 // Load SQL data and add the menu to the output stream...
214 $result_main = SQL_QUERY_ESC("SELECT
221 `{?_MYSQL_PREFIX?}_%s_menu`
223 (`what`='' OR `what` IS NULL)
227 array($mode), __FUNCTION__, __LINE__);
229 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
230 if (!SQL_HASZERONUMS($result_main)) {
231 // There are menus available, so we simply display them... :)
232 $GLOBALS['rows'] = '';
233 while ($content = SQL_FETCHARRAY($result_main)) {
234 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
235 // Disable the block-mode
236 enableBlockMode(false);
238 // Load menu header template
239 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
242 $result_sub = SQL_QUERY_ESC("SELECT
243 `title` AS `sub_title`,
244 `what` AS `sub_what`,
245 `visible` AS `sub_visible`,
246 `locked` AS `sub_locked`
248 `{?_MYSQL_PREFIX?}_%s_menu`
259 ), __FUNCTION__, __LINE__);
261 // Do we have some entries?
262 if (!SQL_HASZERONUMS($result_sub)) {
266 // Load all sub menus
267 while ($content2 = SQL_FETCHARRAY($result_sub)) {
268 // Merge both arrays in one
269 $content = merge_array($content, $content2);
274 // Full file name for checking menu
275 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'sub_what=' . $content['sub_what']);
276 $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
277 if (isIncludeReadable($inc)) {
278 // Mark currently selected menu - open
279 if ((!empty($what)) && (($what == $content['sub_what']))) {
283 // Is ext-sql_patches up-to-date, and display_home_in_index is Y?
284 if ((getModule() == 'index') && (isExtensionInstalledAndNewer('sql_patches', '0.8.3')) && (isDisplayHomeInIndexEnabled()) && ($content['sub_what'] == getIndexHome())) {
285 // Use index.php as link
286 $OUT .= '<a name="menu" class="menu_blur" href="{%url=index.php%}" target="_self">';
288 // Regular navigation link
289 $OUT .= '<a name="menu" class="menu_blur" href="{%url=modules.php?module=' . getModule() . '&what=' . $content['sub_what'] . '%}" target="_self">';
293 $OUT .= '<span class="bad" style="cursor:help" title="{%message,ADMIN_MENU_WHAT_404_TITLE=' . $content['sub_what'] . '%}">';
297 $OUT .= '{?menu_blur_spacer?}' . $content['sub_title'];
299 if (isIncludeReadable($inc)) {
302 // Mark currently selected menu - close
303 if ((!empty($what)) && (($what == $content['sub_what']))) {
317 'what' => $content['sub_what'],
318 'visible' => $content['sub_visible'],
319 'locked' => $content['locked'],
322 // Add regular menu row or bottom row?
323 if ($count < SQL_NUMROWS($result_sub)) {
324 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
326 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
330 // This is a menu block... ;-)
334 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
335 if (isFileReadable($INC)) {
337 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
338 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
340 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
341 if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
343 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
347 SQL_FREERESULT($result_sub);
352 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
353 if (SQL_NUMROWS($result_main) > $main_cnt) {
355 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
357 // Should we display adverts in this menu?
358 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
359 // Display advert template
360 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
362 // Add separator again
363 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
369 SQL_FREERESULT($result_main);
371 // Should we display adverts in this menu?
372 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
373 // Add separator again
374 $GLOBALS['rows'] .= loadTemplate('menu_separator', true, $mode);
376 // Display advert template
377 $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
382 'rows' => $GLOBALS['rows'],
386 // Load main template
387 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
388 loadTemplate('menu_table', false, $content);
392 // Checks whether the current user is a member
393 function isMember () {
394 // By default no member
397 // Fix missing 'last_online' array, damn stupid code :(((
398 // @TODO Try to rewrite this to one or more functions
399 if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) {
400 $GLOBALS['last_online'] = array();
403 // Is the cache entry there?
404 if (isset($GLOBALS[__FUNCTION__])) {
406 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'CACHED! (' . intval($GLOBALS[__FUNCTION__]) . ')');
407 return $GLOBALS[__FUNCTION__];
408 } elseif ((!isSessionVariableSet('userid')) || (!isSessionVariableSet('u_hash'))) {
409 // Destroy any existing user session data
410 destroyMemberSession();
411 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'No member set in cookie/session.');
413 // Abort further processing
417 // Get userid secured from session
418 setMemberId(getSession('userid'));
420 // ... and set it as currently handled user id
421 setCurrentUserId(getMemberId());
423 // Init user data array
426 // Fix "deleted" cookies first
427 fixDeletedCookies(array('userid', 'u_hash'));
429 // Are cookies set and can the member data be loaded?
430 if ((isMemberIdSet()) && (isSessionVariableSet('u_hash')) && (fetchUserData(getMemberId()) === true)) {
431 // Validate password by created the difference of it and the secret key
432 $valPass = encodeHashForCookie(getUserData('password'));
434 // So did we now have valid data and an unlocked user?
435 if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
436 // Transfer last module and online time
437 $GLOBALS['last_online']['module'] = getUserData(getUserLastWhatName());
438 $GLOBALS['last_online']['online'] = getUserData('last_online');
440 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
445 // Is $ret still false?
446 if ($ret === false) {
447 // Yes, so destroy the session
448 destroyMemberSession();
452 $GLOBALS[__FUNCTION__] = $ret;
455 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . intval($ret));
459 // Fetch user data for given user id
460 function fetchUserData ($value, $column = 'userid') {
461 // Extension ext-user must be there at any case
462 if (!isExtensionActive('user')) {
463 // Absent ext-user is really not good
465 } elseif (is_null($value)) {
466 // This shall never happen, so please report it
467 reportBug(__FUNCTION__, __LINE__, 'value=NULL,column=' . $column . ' - value can never be NULL');
470 // If we should look for userid secure&set it here
471 if (substr($column, -2, 2) == 'id') {
473 $value = bigintval($value);
475 // Don't look for invalid userids...
476 if (!isValidUserId($value)) {
477 // Invalid, so abort here
478 reportBug(__FUNCTION__, __LINE__, 'User id ' . $value . ' is invalid.');
479 } elseif (isUserDataValid()) {
480 // Use cache, so it is fine
481 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'value=' . $value . ' is valid, using cache #1');
484 } elseif (isUserDataValid()) {
485 // Using cache is fine
486 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'value=' . $value . ' is valid, using cache #2');
490 // By default none was found
493 // Extra SQL statements
494 $ADD = runFilterChain('convert_user_data_columns', '');
496 // Query for the user
497 $result = SQL_QUERY_ESC("SELECT *" . $ADD . " FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
498 array($column, $value), __FUNCTION__, __LINE__);
500 // Do we have a record?
501 if (SQL_NUMROWS($result) == 1) {
502 // Load data from cookies
503 $data = SQL_FETCHARRAY($result);
505 // Set the userid for later use
506 setCurrentUserId($data['userid']);
508 // And cache the data for this userid
509 $GLOBALS['user_data'][getCurrentUserId()] = $data;
511 // Rewrite 'last_failure' if found and ext-user has version >= 0.3.7
512 if ((isExtensionInstalledAndNewer('user', '0.3.7')) && (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure']))) {
513 // Backup the raw one and zero it
514 $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
515 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = NULL;
518 if (!is_null($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'])) {
519 // Seperate data/time
520 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
522 // Seperate data and time again
523 $array['date'] = explode('-', $array[0]);
524 $array['time'] = explode(':', $array[1]);
526 // Now pass it to mktime()
527 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
539 $found = isUserDataValid();
543 SQL_FREERESULT($result);
550 * Checks whether the current session bears a valid admin id and password hash.
552 * This patched function will reduce many SELECT queries for the current admin
555 function isAdmin () {
556 // No admin in installation phase!
557 if ((isInstallationPhase()) || (!isAdminRegistered())) {
564 $passwordFromCookie = '';
566 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId);
568 // If admin login is not given take current from cookies...
569 if ((isSessionVariableSet('admin_id')) && (isSessionVariableSet('admin_md5'))) {
570 // Get admin login and password from session/cookies
571 $adminId = getCurrentAdminId();
572 $passwordFromCookie = getAdminMd5();
574 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'adminId=' . $adminId . 'passwordFromCookie=' . $passwordFromCookie);
576 // Abort if admin id is zero
577 if ($adminId == '0') {
578 // A very noisy debug message ...
579 //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Current adminId is zero. isSessionVariableSet(admin_id)=' . intval(isSessionVariableSet('admin_id')) . ',isSessionVariableSet(admin_md5)=' . intval(isSessionVariableSet('admin_md5')));
586 if (!isset($GLOBALS[__FUNCTION__][$adminId])) {
587 // Init it with failed
588 $GLOBALS[__FUNCTION__][$adminId] = false;
590 // Search in array for entry
591 if (isset($GLOBALS['admin_hash'])) {
593 $valPass = $GLOBALS['admin_hash'];
594 } elseif ((!empty($passwordFromCookie)) && (isAdminHashSet($adminId) === true) && (!empty($adminId))) {
595 // Login data is valid or not?
596 $valPass = encodeHashForCookie(getAdminHash($adminId));
599 $GLOBALS['admin_hash'] = $valPass;
602 incrementStatsEntry('cache_hits');
603 } elseif ((!empty($adminId)) && ((!isExtensionActive('cache')) || (isAdminHashSet($adminId) === false))) {
604 // Get admin hash and hash it
605 $valPass = encodeHashForCookie(getAdminHash($adminId));
608 $GLOBALS['admin_hash'] = $valPass;
611 if (!empty($valPass)) {
612 // Check if password is valid
613 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '(' . $valPass . '==' . $passwordFromCookie . ')='.intval($valPass == $passwordFromCookie));
614 $GLOBALS[__FUNCTION__][$adminId] = ($GLOBALS['admin_hash'] == $passwordFromCookie);
618 // Return result of comparision
619 return $GLOBALS[__FUNCTION__][$adminId];
622 // Generates a list of "max receiveable emails per day"
623 function addMaxReceiveList ($mode, $default = '', $return = false) {
629 // Guests (in the registration form) are not allowed to select 0 mails per day.
630 $result = SQL_QUERY('SELECT `value`,`comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value` > 0 ORDER BY `value` ASC',
631 __FUNCTION__, __LINE__);
636 // Members are allowed to set to zero mails per day (we will change this soon!)
637 $result = SQL_QUERY('SELECT `value`,`comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC',
638 __FUNCTION__, __LINE__);
642 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
646 // Some entries are found?
647 if (!SQL_HASZERONUMS($result)) {
649 while ($content = SQL_FETCHARRAY($result)) {
650 $OUT .= ' <option value="' . $content['value'] . '"';
652 if (postRequestElement('max_mails') == $content['value']) {
653 $OUT .= ' selected="selected"';
656 $OUT .= '>' . $content['value'] . ' {--PER_DAY--}';
657 if (!empty($content['comment'])) $OUT .= '(' . $content['comment'] . ')';
662 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
664 // Maybe the admin has to setup some maximum values?
665 reportBug(__FUNCTION__, __LINE__, 'Nothing is being done here?');
669 SQL_FREERESULT($result);
671 if ($return === true) {
672 // Return generated HTML code
675 // Output directly (default)
680 // Checks whether the given email address is used.
681 function isEmailTaken ($email) {
682 // Default is no userid
683 $useridSql = ' IS NOT NULL';
685 // Is a member logged in?
688 $useridSql = '!= ' . bigintval(getMemberId());
691 // Replace dot with {DOT}
692 $email = str_replace('.', '{DOT}', $email);
694 // Query the database
695 $result = SQL_QUERY_ESC("SELECT
696 COUNT(`userid`) AS `cnt`
698 `{?_MYSQL_PREFIX?}_user_data`
700 '%s' REGEXP `email` AND
706 ), __FUNCTION__, __LINE__);
708 // Is the email there?
709 list($count) = SQL_FETCHROW($result);
712 SQL_FREERESULT($result);
715 return ($count == 1);
718 // Validate the given menu action
719 function isMenuActionValid ($mode, $action, $what, $updateEntry = false) {
720 // Is the cache entry there and we shall not update?
721 if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
723 incrementStatsEntry('cache_hits');
725 // Then use this cache
726 return $GLOBALS['action_valid'][$mode][$action][$what];
729 // By default nothing is valid
732 // Look in all menus or only unlocked
734 if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
736 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mode=' . $mode . ',action=' . $action . ',what=' . $what);
737 if (($mode != 'admin') && ($updateEntry === true)) {
738 // Update guest or member menu
739 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `counter`=`counter`+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
744 ), __FUNCTION__, __LINE__, false);
745 } elseif (($what != 'welcome') && (!empty($what))) {
747 $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",
752 ), __FUNCTION__, __LINE__, false);
754 // Admin login overview
755 $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",
759 ), __FUNCTION__, __LINE__, false);
763 $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
765 // Should we look for affected rows (only update) or found rows?
766 if ($updateEntry === true) {
767 // Check updated/affected rows
768 $ret = (!SQL_HASZEROAFFECTED());
771 $ret = (!SQL_HASZERONUMS($result));
775 SQL_FREERESULT($result);
778 $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
784 // Get action value from mode (admin/guest/member) and what-value
785 function getActionFromModuleWhat ($module, $what) {
786 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'module=' . $module . ',what=' . $what);
788 $data['action'] = '';
790 if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
791 // sql_patches is missing so choose depending on mode
792 $what = determineWhat($module);
793 } elseif ((empty($what)) && ($module != 'admin')) {
794 // Use configured 'home'
795 $what = getIndexHome();
798 if ($module == 'admin') {
799 // Action value for admin area
800 if (isGetRequestElementSet('action')) {
802 return getRequestElement('action');
803 } elseif (isActionSet()) {
804 // Get it directly from URL
806 } elseif (($what == 'welcome') || (!isWhatSet())) {
807 // Default value for admin area
808 $data['action'] = 'login';
810 } elseif (isActionSet()) {
811 // Get it directly from URL
814 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, ' ret=' . $data['action']);
816 // Does the module have a menu?
817 if (ifModuleHasMenu($module)) {
818 // Rewriting modules to menu
819 $module = mapModuleToTable($module);
821 // Guest and member menu is 'main' as the default
822 if (empty($data['action'])) {
823 $data['action'] = 'main';
826 // Load from database
827 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
831 ), __FUNCTION__, __LINE__);
832 if (SQL_NUMROWS($result) == 1) {
833 // Load action value and pray that this one is the right you want... ;-)
834 $data = SQL_FETCHARRAY($result);
838 SQL_FREERESULT($result);
839 } elseif ((!isExtensionInstalled('sql_patches')) && ($module != 'admin') && ($module != 'unknown')) {
840 // No sql_patches installed, but maybe we need to register an admin?
841 if (isAdminRegistered()) {
842 // Redirect to admin area
843 redirectToUrl('admin.php');
847 // Return action value
848 return $data['action'];
851 // Get category name back
852 function getCategory ($cid) {
853 // Default is not found
854 $data['cat'] = '{--_CATEGORY_404--}';
856 // Is the category id set?
859 $data['cat'] = '{--_CATEGORY_NONE--}';
860 } elseif ($cid > 0) {
861 // Lookup the category in database
862 $result = SQL_QUERY_ESC('SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1',
863 array(bigintval($cid)), __FUNCTION__, __LINE__);
864 if (SQL_NUMROWS($result) == 1) {
865 // Category found... :-)
866 $data = SQL_FETCHARRAY($result);
870 SQL_FREERESULT($result);
877 // Get a string of "mail title" and price back
878 function getPaymentTitlePrice ($paymentsId, $full = false) {
879 // Only title or also including price?
880 if ($full === false) {
881 $ret = getPaymentData($paymentsId, 'main_title');
883 $ret = getPaymentData($paymentsId, 'main_title') . ' / {%pipe,getPaymentData,translateComma=' . $paymentsId . '%} {?POINTS?}';
890 // "Getter" for payment data (cached)
891 function getPaymentData ($paymentsId, $lookFor = 'price') {
893 $data[$lookFor] = NULL;
896 if (isset($GLOBALS['cache_array']['payments'][$paymentsId]['id'])) {
897 // Use it if found to save SQL queries
898 $data[$lookFor] = $GLOBALS['cache_array']['payments'][$lookFor][$paymentsId];
901 incrementStatsEntry('cache_hits');
902 } elseif (!isExtensionActive('cache')) {
903 // Search for it in database
904 $result = SQL_QUERY_ESC('SELECT `%s` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1',
907 bigintval($paymentsId)
908 ), __FUNCTION__, __LINE__);
910 // Is the entry there?
911 if (SQL_NUMROWS($result) == 1) {
912 // Payment type found... :-)
913 $data = SQL_FETCHARRAY($result);
917 SQL_FREERESULT($result);
921 return $data[$lookFor];
924 // Remove a receiver's id from $receivers and add a link for him to confirm
925 function removeReceiver (&$receivers, $key, $userid, $poolId, $statsId = 0, $isBonusMail = false) {
926 // Default is not removed
929 // Is the userid valid?
930 if (isValidUserId($userid)) {
931 // Remove entry from array
932 unset($receivers[$key]);
934 // Is there already a line for this user available?
936 // Default is 'normal' mail
938 $rowName = 'stats_id';
940 // Only when we got a real stats id continue searching for the entry
941 if ($isBonusMail === true) {
943 $rowName = 'bonus_id';
946 // Try to look the entry up
947 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s AND `userid`=%s AND `link_type`='%s' LIMIT 1",
953 ), __FUNCTION__, __LINE__);
955 // Was it *not* found?
956 if (SQL_HASZERONUMS($result)) {
958 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`,`userid`,`link_type`) VALUES (%s,%s,'%s')",
964 ), __FUNCTION__, __LINE__);
966 // Update 'mails_sent' if sql_patches is updated
967 if (isExtensionInstalledAndNewer('sql_patches', '0.7.4')) {
969 SQL_QUERY_ESC('UPDATE `{?_MYSQL_PREFIX?}_pool` SET `mails_sent`=`mails_sent`+1 WHERE `id`=%s LIMIT 1',
970 array(bigintval($poolId)), __FUNCTION__, __LINE__);
979 SQL_FREERESULT($result);
983 // Return status for sending routine
987 // Calculate sum (default) or count records of given criteria
988 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '', $mode = '=') {
992 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',tableName=' . $tableName . ',lookFor=' . $lookFor . ',whereStatement=' . $whereStatement . ',add=' . $add);
993 if ((empty($search)) && ($search != '0')) {
994 // Count or sum whole table?
995 if ($countRows === true) {
997 $result = SQL_QUERY_ESC('SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`' . $add . ' LIMIT 1',
1001 ), __FUNCTION__, __LINE__);
1004 $result = SQL_QUERY_ESC('SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`' . $add . ' LIMIT 1',
1008 ), __FUNCTION__, __LINE__);
1010 } elseif (($countRows === true) || ($lookFor == 'userid')) {
1012 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'COUNT!');
1013 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'" . $add . ' LIMIT 1',
1020 ), __FUNCTION__, __LINE__);
1023 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SUM!');
1024 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'" . $add . ' LIMIT 1',
1031 ), __FUNCTION__, __LINE__);
1035 $data = SQL_FETCHARRAY($result);
1038 SQL_FREERESULT($result);
1041 if ((empty($data['res'])) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid') && ($lookFor != 'rallye_id')) {
1043 $data['res'] = '0.00000';
1044 } elseif (''.$data['res'].'' == '') {
1050 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'res=' . $data['res']);
1051 return $data['res'];
1055 * Sends out mail to all administrators. This function is no longer obsolete
1056 * because we need it when there is no ext-admins installed
1058 function sendAdminEmails ($subject, $message, $isBugReport = false) {
1059 // Default is no special header
1062 // Is it a bug report?
1063 if ($isBugReport === true) {
1064 // Then add a reply-to line back to the author (me)
1065 $mailHeader = 'Reply-To: webmaster@mxchange.org' . chr(10);
1068 // Load all admin email addresses
1069 $result = SQL_QUERY('SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC', __FUNCTION__, __LINE__);
1071 // And send the notification to all of them
1072 while ($content = SQL_FETCHARRAY($result)) {
1073 // Send the email out
1074 sendEmail($content['email'], $subject, $message, 'N', $mailHeader);
1078 SQL_FREERESULT($result);
1080 // Really simple... ;-)
1083 // Get id number from administrator's login name
1084 function getAdminId ($adminLogin) {
1085 // By default no admin is found
1089 if (isset($GLOBALS['cache_array']['admin']['admin_id'][$adminLogin])) {
1090 // Use it if found to save SQL queries
1091 $data['id'] = $GLOBALS['cache_array']['admin']['admin_id'][$adminLogin];
1093 // Update cache hits
1094 incrementStatsEntry('cache_hits');
1095 } elseif (!isExtensionActive('cache')) {
1096 // Load from database
1097 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1098 array($adminLogin), __FUNCTION__, __LINE__);
1100 // Do we have an entry?
1101 if (SQL_NUMROWS($result) == 1) {
1103 $data = SQL_FETCHARRAY($result);
1107 SQL_FREERESULT($result);
1114 // "Getter" for current admin id
1115 function getCurrentAdminId () {
1116 // Log debug message
1117 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'called!');
1119 // Do we have cache?
1120 if (!isset($GLOBALS['current_admin_id'])) {
1121 // Get the admin login from session
1122 $adminId = getSession('admin_id');
1124 // Remember in cache securely
1125 setCurrentAdminId(bigintval($adminId));
1129 return $GLOBALS['current_admin_id'];
1132 // Setter for current admin id
1133 function setCurrentAdminId ($currentAdminId) {
1135 $GLOBALS['current_admin_id'] = bigintval($currentAdminId);
1138 // Get password hash from administrator's login name
1139 function getAdminHash ($adminId) {
1140 // By default an invalid hash is returned
1141 $data['password'] = -1;
1143 if (isAdminHashSet($adminId)) {
1145 $data['password'] = $GLOBALS['cache_array']['admin']['password'][$adminId];
1147 // Update cache hits
1148 incrementStatsEntry('cache_hits');
1149 } elseif (!isExtensionActive('cache')) {
1150 // Load from database
1151 $result = SQL_QUERY_ESC("SELECT `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1152 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1154 // Do we have an entry?
1155 if (SQL_NUMROWS($result) == 1) {
1157 $data = SQL_FETCHARRAY($result);
1160 setAdminHash($adminId, $data['password']);
1164 SQL_FREERESULT($result);
1167 // Return password hash
1168 return $data['password'];
1171 // "Getter" for admin login
1172 function getAdminLogin ($adminId) {
1173 // By default a non-existent login is returned (other functions react on this!)
1174 $data['login'] = '***';
1176 if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1178 $data['login'] = $GLOBALS['cache_array']['admin']['login'][$adminId];
1180 // Update cache hits
1181 incrementStatsEntry('cache_hits');
1182 } elseif (!isExtensionActive('cache')) {
1183 // Load from database
1184 $result = SQL_QUERY_ESC("SELECT `login` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1185 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1188 if (SQL_NUMROWS($result) == 1) {
1190 $data = SQL_FETCHARRAY($result);
1193 $GLOBALS['cache_array']['admin']['login'][$adminId] = $data['login'];
1197 SQL_FREERESULT($result);
1200 // Return the result
1201 return $data['login'];
1204 // Get email address of admin id
1205 function getAdminEmail ($adminId) {
1206 // By default an invalid emails is returned
1207 $data['email'] = '***';
1209 if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1211 $data['email'] = $GLOBALS['cache_array']['admin']['email'][$adminId];
1213 // Update cache hits
1214 incrementStatsEntry('cache_hits');
1215 } elseif (!isExtensionActive('cache')) {
1216 // Load from database
1217 $result_admin_id = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1218 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1221 if (SQL_NUMROWS($result_admin_id) == 1) {
1223 $data = SQL_FETCHARRAY($result_admin_id);
1226 $GLOBALS['cache_array']['admin']['email'][$adminId] = $data['email'];
1230 SQL_FREERESULT($result_admin_id);
1234 return $data['email'];
1237 // Get default ACL of admin id
1238 function getAdminDefaultAcl ($adminId) {
1239 // By default an invalid ACL value is returned
1240 $data['default_acl'] = 'NO-ACL';
1242 // Is sql_patches there and was it found in cache?
1243 if (!isExtensionActive('sql_patches')) {
1244 // Not found, which is bad, so we need to allow all
1245 $data['default_acl'] = 'allow';
1246 } elseif (isset($GLOBALS['cache_array']['admin']['default_acl'][$adminId])) {
1248 $data['default_acl'] = $GLOBALS['cache_array']['admin']['default_acl'][$adminId];
1250 // Update cache hits
1251 incrementStatsEntry('cache_hits');
1252 } elseif (!isExtensionActive('cache')) {
1253 // Load from database
1254 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1255 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1257 // Do we have an entry?
1258 if (SQL_NUMROWS($result_admin_id) == 1) {
1260 $data = SQL_FETCHARRAY($result_admin_id);
1263 $GLOBALS['cache_array']['admin']['default_acl'][$adminId] = $data['default_acl'];
1267 SQL_FREERESULT($result_admin_id);
1270 // Return default ACL
1271 return $data['default_acl'];
1274 // Get menu mode (la_mode) of admin id
1275 function getAdminMenuMode ($adminId) {
1276 // By default an invalid mode
1277 $data['la_mode'] = 'INVALID';
1279 // Is sql_patches there and was it found in cache?
1280 if (!isExtensionActive('sql_patches')) {
1281 // Not found, which is bad, so we need to allow all
1282 $data['la_mode'] = 'global';
1283 } elseif (isset($GLOBALS['cache_array']['admin']['la_mode'][$adminId])) {
1285 $data['la_mode'] = $GLOBALS['cache_array']['admin']['la_mode'][$adminId];
1287 // Update cache hits
1288 incrementStatsEntry('cache_hits');
1289 } elseif (!isExtensionActive('cache')) {
1290 // Load from database
1291 $result_admin_id = SQL_QUERY_ESC("SELECT `la_mode` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1292 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1294 // Do we have an entry?
1295 if (SQL_NUMROWS($result_admin_id) == 1) {
1297 $data = SQL_FETCHARRAY($result_admin_id);
1300 $GLOBALS['cache_array']['admin']['la_mode'][$adminId] = $data['la_mode'];
1304 SQL_FREERESULT($result_admin_id);
1307 // Return default ACL
1308 return $data['la_mode'];
1311 // Generates an option list from various parameters
1312 function generateOptions ($table, $id, $name, $default = '', $special = '', $whereStatement = '', $disabled = array(), $callback = '') {
1314 if ($table == '/ARRAY/') {
1315 // Selection from array
1316 if ((is_array($id)) && (is_array($name)) && ((count($id)) == (count($name)) || (!empty($callback)))) {
1318 foreach ($id as $idx => $value) {
1319 $ret .= '<option value="' . $value . '"';
1320 if ($default == $value) {
1321 // Selected by default
1322 $ret .= ' selected="selected"';
1323 } elseif (isset($disabled[$value])) {
1325 $ret .= ' disabled="disabled"';
1328 // Is the call-back function set?
1329 if (!empty($callback)) {
1331 $name[$idx] = call_user_func_array($callback, array($id[$idx]));
1334 // Finish option tag
1335 $ret .= '>' . $name[$idx] . '</option>';
1338 // Problem in request
1339 reportBug(__FUNCTION__, __LINE__, 'Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name) . ',callback=' . $callback);
1342 // Data from database
1343 $SPEC = ',`' . $id . '`';
1344 if (!empty($special)) {
1345 $SPEC = ',`' . $special . '` AS `special`';
1348 // Query the database
1349 $result = SQL_QUERY_ESC("SELECT `%s` AS `id`,`%s` AS `name`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$whereStatement." ORDER BY `%s` ASC",
1355 ), __FUNCTION__, __LINE__);
1358 if (!SQL_HASZERONUMS($result)) {
1359 // Found data so add them as OPTION lines
1360 while ($content = SQL_FETCHARRAY($result)) {
1362 if (!isset($content['special'])) {
1364 $content['special'] = '';
1367 $ret .= '<option value="' . $content['id'] . '"';
1369 if ($default == $content['id']) {
1370 // Selected by default
1371 $ret .= ' selected="selected"';
1372 } elseif (isset($disabled[$content['id']])) {
1374 $ret .= ' disabled="disabled"';
1378 if (!empty($content['special'])) {
1379 $content['special'] = ' (' . $content['special'] . ')';
1382 // Is the call-back function set?
1383 if (!empty($callback)) {
1385 $content['name'] = call_user_func_array($callback, array($content['name']));
1388 // Finish option list
1389 $ret .= '>' . $content['name'] . $content['special'] . '</option>';
1393 $ret = '<option value="x">{--SELECT_NONE--}</option>';
1397 SQL_FREERESULT($result);
1400 // Return - hopefully - the requested data
1404 // Deletes a user account with given reason
1405 function deleteUserAccount ($userid, $reason) {
1407 $data['points'] = '0';
1409 // Search for the points and user data
1410 $result = SQL_QUERY_ESC("SELECT
1411 (SUM(p.`points`) - d.`used_points`) AS `points`
1413 `{?_MYSQL_PREFIX?}_user_points` AS p
1415 `{?_MYSQL_PREFIX?}_user_data` AS d
1417 p.`userid`=d.`userid`
1421 array(bigintval($userid)), __FUNCTION__, __LINE__);
1423 // Do we have an entry?
1424 if (SQL_NUMROWS($result) == 1) {
1425 // Save his points to add them to the jackpot
1426 $data = SQL_FETCHARRAY($result);
1428 // Delete points entries as well
1429 // @TODO Rewrite these lines to a filter
1430 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s",
1431 array(bigintval($userid)), __FUNCTION__, __LINE__);
1433 // Update mediadata as well
1434 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1436 updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1439 // Now, when we have all his points adds them do the jackpot!
1440 if (isExtensionActive('jackpot')) {
1441 addPointsToJackpot($data['points']);
1446 SQL_FREERESULT($result);
1448 // Delete category selections as well...
1449 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1450 array(bigintval($userid)), __FUNCTION__, __LINE__);
1452 // Remove from rallye if found
1453 // @TODO Rewrite this to a filter
1454 if (isExtensionActive('rallye')) {
1455 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1456 array(bigintval($userid)), __FUNCTION__, __LINE__);
1459 // Add reason and translate points
1460 $data['text'] = $reason;
1462 // Now a mail to the user and that's all...
1463 $message = loadEmailTemplate('member_user_deleted', $data, $userid);
1464 sendEmail($userid, '{--ADMIN_DELETE_ACCOUNT--}', $message);
1466 // Ok, delete the account!
1467 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1470 // Gets the matching what name from module
1471 function getWhatFromModule ($modCheck) {
1472 // Is the request element set?
1473 if (isGetRequestElementSet('what')) {
1474 // Then return this!
1475 return getRequestElement('what');
1481 // Check on given module
1482 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'modCheck=' . $modCheck);
1483 switch ($modCheck) {
1484 case 'index': // Guest area
1485 // Is ext-sql_patches installed and newer than 0.0.5?
1486 if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1487 // Use it from config
1488 $what = getIndexHome();
1490 // Use default 'welcome'
1495 default: // Default for all other menus (getIndexHome() is for index module only)
1500 // Return what value
1504 // Returns HTML code with an option list of all categories
1505 function generateCategoryOptionsList ($mode, $userid = NULL) {
1506 // Prepare WHERE statement
1507 $whereStatement = " WHERE `visible`='Y'";
1508 if (isAdmin()) $whereStatement = '';
1510 // Initialize array...
1511 $categories = array(
1514 'userids' => array()
1518 $result = SQL_QUERY('SELECT `id`,`cat` FROM `{?_MYSQL_PREFIX?}_cats`' . $whereStatement . ' ORDER BY `sort` ASC',
1519 __FUNCTION__, __LINE__);
1521 // Do we have entries?
1522 if (!SQL_HASZERONUMS($result)) {
1523 // ... and begin loading stuff
1524 while ($content = SQL_FETCHARRAY($result)) {
1525 // Transfer some data
1526 $categories['id'][] = $content['id'];
1527 array_push($categories['name'], $content['cat']);
1529 // Check which users are in this category
1530 $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s AND `userid` != %s ORDER BY `userid` ASC",
1532 bigintval($content['id']),
1533 convertNullToZero($userid)
1534 ), __FUNCTION__, __LINE__);
1540 while ($data = SQL_FETCHARRAY($result_userids)) {
1542 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, runFilterChain('user_exclusion_sql', " AND `status`='CONFIRMED' AND `receive_mails` > 0"));
1546 SQL_FREERESULT($result_userids);
1549 array_push($categories['userids'], $userid_cnt);
1553 SQL_FREERESULT($result);
1557 foreach ($categories['id'] as $key => $value) {
1558 $OUT .= ' <option value="' . $value . '">' . $categories['name'][$key] . ' (' . $categories['userids'][$key] . ' {--USERS_IN_CATEGORY--})</option>';
1561 // No cateogries are defined yet
1562 $OUT = '<option class="bad">{--MEMBER_NO_CATEGORIES--}</option>';
1569 // Add bonus mail to queue
1570 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $categoryId, $mode='normal', $receiver=0) {
1571 // Is admin or bonus extension there?
1575 } elseif (!isExtensionActive('bonus')) {
1580 // Calculcate target sent
1581 $target = countSelection(explode(';', $receiverList));
1583 // Receiver is zero?
1584 if ($receiver == '0') {
1586 $receiver = $target;
1589 // HTML extension active?
1590 if (isExtensionActive('html_mail')) {
1591 // Determine if we have HTML mode active
1592 $HTML = convertBooleanToYesNo($mode == 'html');
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`,`html_msg`)
1597 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s,'%s')",
1603 bigintval($seconds),
1605 bigintval($categoryId),
1607 bigintval($receiver),
1609 ), __FUNCTION__, __LINE__);
1612 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1613 (`subject`,`text`,`receivers`,`points`,`time`,`data_type`,`timestamp`,`url`,`cat_id`,`target_send`,`mails_sent`)
1614 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s)",
1620 bigintval($seconds),
1622 bigintval($categoryId),
1624 bigintval($receiver),
1625 ), __FUNCTION__, __LINE__);
1629 // Generate a receiver list for given category and maximum receivers
1630 function generateReceiverList ($categoryId, $receiver, $mode = '') {
1637 $categoryId = bigintval($categoryId);
1638 $receiver = bigintval($receiver);
1640 // Is the receiver zero and mode set?
1641 if (($receiver == '0') && (!empty($mode))) {
1642 // Auto-fix receiver maximum
1643 $receiver = getTotalReceivers($mode);
1646 // Exclude (maybe exclude) testers
1647 $addWhere = runFilterChain('user_exclusion_sql', ' ');
1650 if ($categoryId > 0) {
1652 $extraColumns = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.`userid`=c.`userid`";
1653 $addWhere = sprintf(" AND c.`cat_id`=%s", $categoryId);
1656 // Exclude users in holiday?
1657 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
1658 // Add something for the holiday extension
1659 $addWhere .= " AND d.`holiday_active`='N'";
1662 // Include only HTML recipients?
1663 if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1664 $addWhere .= " AND d.`html`='Y'";
1668 $result = SQL_QUERY_ESC("SELECT d.`userid` FROM `{?_MYSQL_PREFIX?}_user_data` AS d ".$extraColumns." WHERE d.`status`='CONFIRMED' ".$addWhere." ORDER BY d.`{?order_select?}` {?order_mode?} LIMIT %s",
1671 ), __FUNCTION__, __LINE__);
1674 if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1676 while ($content = SQL_FETCHARRAY($result)) {
1677 // Add receiver when not empty
1678 if (!empty($content['userid'])) {
1679 $receiverList .= $content['userid'] . ';';
1684 SQL_FREERESULT($result);
1686 // Remove trailing semicolon
1687 $receiverList = substr($receiverList, 0, -1);
1691 return $receiverList;
1694 // Recuce the amount of received emails for the receipients for given email
1695 function reduceRecipientReceivedMails ($column, $id, $count) {
1696 // Search for mail in database
1697 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
1698 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
1700 // Are there entries?
1701 if (!SQL_HASZERONUMS($result)) {
1702 // Now load all userids for one big query!
1704 while ($data = SQL_FETCHARRAY($result)) {
1705 // By default we want to reduce and have no mails found
1708 // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
1709 // @TODO Rewrite this to a filter
1710 if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
1712 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
1713 } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
1715 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
1718 // Reduce this users total received emails?
1720 $userids[$data['userid']] = $data['userid'];
1724 if (count($userids) > 0) {
1725 // Now update all user accounts
1726 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
1727 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
1730 displayMessage('{%message,ADMIN_MAIL_NOTHING_DELETED=' . $id . '%}');
1735 SQL_FREERESULT($result);
1738 // Creates a new task
1739 function createNewTask ($subject, $notes, $taskType, $userid = NULL, $adminId = NULL, $strip = true) {
1740 // Insert the task data into the database
1741 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())",
1743 convertZeroToNull($adminId),
1744 convertZeroToNull($userid),
1748 ), __FUNCTION__, __LINE__, true, $strip);
1750 // Return insert id which is the task id
1751 return SQL_INSERTID();
1754 // Updates last module / online time
1755 function updateLastActivity($userid) {
1758 // Run the update query
1759 SQL_QUERY_ESC("UPDATE
1760 `{?_MYSQL_PREFIX?}_user_data`
1763 `last_online`=UNIX_TIMESTAMP(),
1769 getUserLastWhatName(),
1773 ), __FUNCTION__, __LINE__);
1775 // No what set, needs to be ignored (last_module is last_what)
1776 SQL_QUERY_ESC("UPDATE
1777 `{?_MYSQL_PREFIX?}_user_data`
1780 `last_online`=UNIX_TIMESTAMP(),
1786 getUserLastWhatName(),
1789 ), __FUNCTION__, __LINE__);
1794 * Checks if given subject is found and if not, adds an SQL query to the
1795 * extension registration queue.
1797 function registerExtensionPointsData ($subject, $columnName, $lockedMode, $paymentMethod) {
1798 // Default is old extension version
1801 // Is the extension equal or newer 0.8.9?
1802 if (((isInstallationPhase()) && ((getExtensionMode() == 'register') || (getExtensionMode() == 'update'))) || (isExtensionInstalledAndNewer('sql_patches', '0.8.9'))) {
1803 // Then add provider
1804 $add = " AND `account_provider`='EXTENSION'";
1807 // Is the 'subject' there?
1808 if (((!ifSqlTableExists('points_data')) && ((getExtensionMode() == 'register') || (getExtensionMode() == 'update'))) || (countSumTotalData($subject, 'points_data', 'id', 'subject', true, $add) == 0)) {
1810 if (isset($GLOBALS['previous_extension'][getCurrentExtensionName()])) {
1811 $dummy = $GLOBALS['previous_extension'][getCurrentExtensionName()];
1812 reportBug(__FUNCTION__, __LINE__, 'previous_extension[' . gettype($dummy) . ']=' . $dummy . ',getCurrentExtensionName()=' . getCurrentExtensionName() . ' - Under development, please report this!');
1815 // ... add an SQL query
1816 addExtensionSql(sprintf("INSERT INTO `{?_MYSQL_PREFIX?}_points_data` (`subject`,`column_name`,`locked_mode`,`payment_method`) VALUES ('%s','%s','%s','%s')",
1826 * Checks if given subject is found and if so, adds an SQL query to the
1827 * extension unregistration queue.
1829 function unregisterExtensionPointsData ($subject) {
1830 // Default is old extension version
1833 // Is the extension equal or newer 0.8.9?
1834 if (isExtensionInstalledAndNewer('sql_patches', '0.8.9')) {
1835 // Then add provider
1836 $add = " AND `account_provider`='EXTENSION'";
1839 // Is the 'subject' there?
1840 if (countSumTotalData($subject, 'points_data', 'id', 'subject', true, $add) == 1) {
1841 // Found one or more, so add an SQL query
1842 addExtensionSql(sprintf("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_points_data` WHERE `subject`='%s'" . $add . " LIMIT 1",