885b670ce1f68ded7d59f5e24be56f7ee4a0ee77
[mailer.git] / inc / mysql-manager.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/26/2003 *
4  * ===================                          Last change: 11/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-manager.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : All MySQL-related functions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle MySQL-Relevanten Funktionen                 *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // "Getter" for module description
44 // @TODO Can we cache this?
45 function getTitleFromMenu ($mode, $what, $column = 'what', $ADD='') {
46         // Fix empty 'what'
47         if (empty($what)) {
48                 $what = getIndexHome();
49         } // END - if
50
51         // Default is not found
52         $data['title'] = '??? (' . $what . ')';
53
54         // Look for title
55         $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `%s`='%s'" . $ADD . " LIMIT 1",
56                 array(
57                         $mode,
58                         $column,
59                         $what
60                 ), __FUNCTION__, __LINE__);
61
62         // Is there an entry?
63         if (SQL_NUMROWS($result) == 1) {
64                 // Fetch the title
65                 $data = SQL_FETCHARRAY($result);
66         } // END - if
67
68         // Free result
69         SQL_FREERESULT($result);
70
71         // Return it
72         return $data['title'];
73 }
74
75 // Add menu description pending on given file name (without path!)
76 function addMenuDescription ($accessLevel, $FQFN, $return = false) {
77         // Use only filename of the FQFN...
78         $file = basename($FQFN);
79
80         // Init variables
81         $LINK_ADD = '';
82         $OUT = '';
83         $ADD = '';
84         $prefix = '';
85
86         // First we have to do some analysis...
87         if (substr($file, 0, 7) == 'action-') {
88                 // This is an action file!
89                 $type = 'action';
90                 $search = substr($file, 7);
91
92                 // Get access level from it
93                 $modCheck = getModuleFromFileName($file, $accessLevel);
94
95                 // Add what
96                 $ADD = " AND (`what`='' OR `what` IS NULL)";
97         } elseif (substr($file, 0, 5) == 'what-') {
98                 // This is a 'what file'!
99                 $type = 'what';
100                 $search = substr($file, 5);
101                 $ADD = " AND `visible`='Y' AND `locked`='N'";
102
103                 // Get access level from it
104                 $modCheck = getModuleFromFileName($file, $accessLevel);
105
106                 // Do we have admin? Then display all
107                 if (isAdmin()) $ADD = '';
108
109                 $dummy = substr($search, 0, -4);
110                 $ADD .= sprintf(" AND `action`='%s'", getActionFromModuleWhat($accessLevel, $dummy));
111         } elseif (($accessLevel == 'sponsor') || ($accessLevel == 'engine')) {
112                 // Sponsor / engine menu
113                 $type     = 'what';
114                 $search   = $file;
115                 $modCheck = getModule();
116                 $ADD      = '';
117         } else {
118                 // Other
119                 $type     = 'menu';
120                 $search   = $file;
121                 $modCheck = getModule();
122                 $ADD      = '';
123         }
124
125         // Begin the navigation line
126         if (!isset($GLOBALS['nav_depth'])) {
127                 // Init nav_depth
128                 $GLOBALS['nav_depth'] = '0';
129
130                 // Run the pre-filter chain
131                 $ret = runFilterChain('pre_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
132
133                 // Add pre-content
134                 $prefix = $ret['content'];
135
136                 $prefix .= '<div class="you_are_here">{--YOU_ARE_HERE--}&nbsp;<strong><a class="you_are_here" href="{%url=modules.php?module=' . getModule() . $LINK_ADD . '%}">Home</a></strong>';
137         } elseif ($return === false) {
138                 // Count depth
139                 $GLOBALS['nav_depth']++;
140         }
141
142         $prefix .= '&nbsp;-&gt;&nbsp;';
143
144         // We need to remove .php and the end
145         if (substr($search, -4, 4) == '.php') {
146                 // Remove the .php
147                 $search = substr($search, 0, -4);
148         } // END - if
149
150         if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
151                 // Output HTML code
152                 $OUT = $prefix . '<strong><a class="you_are_here" href="{%url=modules.php?module=' . $modCheck . '&amp;' . $type . '=' . $search . $LINK_ADD . '%}">' . getTitleFromMenu($accessLevel, $search, $type, $ADD) . '</a></strong>';
153
154                 // Can we close the you-are-here navigation?
155                 //* DEBUG: */ debugOutput(__LINE__.'*'.$type.'/'.getWhat().'*');
156                 if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (getWhat() == 'overview')))) {
157                         //* DEBUG: */ debugOutput(__LINE__.'+'.$type.'+');
158                         // Add closing div and br-tag
159                         $OUT .= '</div>';
160                         $GLOBALS['nav_depth'] = '0';
161
162                         // Run the post-filter chain
163                         $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
164
165                         // Add additional content
166                         $OUT .= $ret['content'];
167                 } // END - if
168         } // END - if
169
170         // Return or output HTML code?
171         if ($return === true) {
172                 // Return HTML code
173                 return $OUT;
174         } else {
175                 // Output HTML code here
176                 outputHtml($OUT);
177         }
178 }
179
180 // Adds a menu (mode = guest/member/admin/sponsor) to output
181 function addMenu ($mode, $action, $what) {
182         // Init some variables
183         $main_cnt = '0';
184         $ADD = '';
185
186         // is the menu action valid?
187         if (!isMenuActionValid($mode, $action, $what, true)) {
188                 return getCode('MENU_NOT_VALID');
189         } // END - if
190
191         // Non-admin shall not see all menus
192         if (!isAdmin()) {
193                 $ADD = " AND `visible`='Y' AND `locked`='N'";
194         } // END - if
195
196         // Load SQL data and add the menu to the output stream...
197         $result_main = SQL_QUERY_ESC("SELECT
198         `title`, `what`, `action`, `visible`, `locked`
199 FROM
200         `{?_MYSQL_PREFIX?}_%s_menu`
201 WHERE
202         (`what`='' OR `what` IS NULL)
203         ".$ADD."
204 ORDER BY
205         `sort` ASC",
206                 array($mode), __FUNCTION__, __LINE__);
207
208         //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.':'.getWhat().'*');
209         if (!SQL_HASZERONUMS($result_main)) {
210                 // There are menus available, so we simply display them... :)
211                 $GLOBALS['rows'] = '';
212                 while ($content = SQL_FETCHARRAY($result_main)) {
213                         //* DEBUG: */ debugOutput(__LINE__ . '/' . $main_cnt . '/' . $content['action'] . ':' . getWhat() . '*');
214                         // Disable the block-mode
215                         enableBlockMode(false);
216
217                         // Load menu header template
218                         $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
219
220                         // Sub menu
221                         $result_sub = SQL_QUERY_ESC("SELECT
222         `title` AS `sub_title`,
223         `what` AS `sub_what`,
224         `visible` AS `sub_visible`,
225         `locked` AS `sub_locked`
226 FROM
227         `{?_MYSQL_PREFIX?}_%s_menu`
228 WHERE
229         `action`='%s' AND
230         `what` != '' AND
231         `what` IS NOT NULL
232         ".$ADD."
233 ORDER BY
234         `sort` ASC",
235                                 array($mode, $content['action']), __FUNCTION__, __LINE__);
236
237                         // Do we have some entries?
238                         if (!SQL_HASZERONUMS($result_sub)) {
239                                 // Init counter
240                                 $cnt = '0';
241
242                                 // Load all sub menus
243                                 while ($content2 = SQL_FETCHARRAY($result_sub)) {
244                                         // Merge both arrays in one
245                                         $content = merge_array($content, $content2);
246
247                                         // Init content
248                                         $OUT = '';
249
250                                         // Full file name for checking menu
251                                         //* DEBUG: */ debugOutput(__LINE__ . ':!!!!' . $content['sub_what'] . '!!!');
252                                         $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
253                                         if (isIncludeReadable($inc)) {
254                                                 // Mark currently selected menu - open
255                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
256                                                         $OUT = '<strong>';
257                                                 } // END - if
258
259                                                 // Navigation link
260                                                 $OUT .= '<a name="menu" class="menu_blur" href="{%url=modules.php?module=' . getModule() . '&amp;what=' . $content['sub_what'] . '%}" target="_self">';
261                                         } else {
262                                                 // Not found! - open
263                                                 $OUT .= '<em style="cursor:help" class="notice" title="{%message,MENU_WHAT_404=' . $content['sub_what'] . '%}">';
264                                         }
265
266                                         // Menu title
267                                         $OUT .= '{?menu_blur_spacer?}' . $content['sub_title'];
268
269                                         if (isIncludeReadable($inc)) {
270                                                 $OUT .= '</a>';
271
272                                                 // Mark currently selected menu - close
273                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
274                                                         $OUT .= '</strong>';
275                                                 } // END - if
276                                         } else {
277                                                 // Not found! - close
278                                                 $OUT .= '</em>';
279                                         }
280
281                                         // Cunt it up
282                                         $cnt++;
283
284                                         // Rewrite array
285                                         $content = array(
286                                                 'menu'    => $OUT,
287                                                 'what'    => $content['sub_what'],
288                                                 'visible' => $content['sub_visible'],
289                                                 'locked'  => $content['locked'],
290                                         );
291
292                                         // Add regular menu row or bottom row?
293                                         if ($cnt < SQL_NUMROWS($result_sub)) {
294                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
295                                         } else {
296                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
297                                         }
298                                 } // END - while
299                         } else {
300                                 // This is a menu block... ;-)
301                                 enableBlockMode();
302
303                                 // Load menu block
304                                 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
305                                 if (isFileReadable($INC)) {
306                                         // Load include file
307                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
308                                         //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat().'*');
309                                         loadInclude($INC);
310                                         //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat().'*');
311                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
312                                 }
313                                 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat().'*');
314                         }
315
316                         // Free result
317                         SQL_FREERESULT($result_sub);
318
319                         // Count one up
320                         $main_cnt++;
321
322                         //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.':'.getWhat().'*');
323                         if (SQL_NUMROWS($result_main) > $main_cnt) {
324                                 // Add seperator
325                                 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
326
327                                 // Should we display adverts in this menu?
328                                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
329                                         // Display advert template
330                                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
331
332                                         // Add seperator again
333                                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
334                                 } // END - if
335                         } // END - if
336                 } // END - while
337
338                 // Free memory
339                 SQL_FREERESULT($result_main);
340
341                 // Should we display adverts in this menu?
342                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
343                         // Add seperator again
344                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
345
346                         // Display advert template
347                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
348                 } // END - if
349
350                 // Prepare data
351                 $content = array(
352                         'rows' => $GLOBALS['rows'],
353                         'mode' => $mode
354                 );
355
356                 // Load main template
357                 //* DEBUG: */ debugOutput(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat().'*');
358                 loadTemplate('menu_table', false, $content);
359         } // END - if
360 }
361
362 // Checks wether the current user is a member
363 function isMember () {
364         // By default no member
365         $ret = false;
366
367         // Fix missing 'last_online' array, damn stupid code :(((
368         // @TODO Try to rewrite this to one or more functions
369         if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) $GLOBALS['last_online'] = array();
370
371         // is the cache entry there?
372         if (isset($GLOBALS[__FUNCTION__])) {
373                 // Then return it
374                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'CACHED! (' . intval($GLOBALS[__FUNCTION__]) . ')');
375                 return $GLOBALS[__FUNCTION__];
376         } elseif ((!isSessionVariableSet('userid')) || (!isSessionVariableSet('u_hash'))) {
377                 // No member
378                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'No member set in cookie/session.');
379                 return false;
380         } else {
381                 // Get it secured from session
382                 setMemberId(getSession('userid'));
383                 setCurrentUserId(getMemberId());
384                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . getSession('userid') . ' used from cookie/session.');
385         }
386
387         // Init user data array
388         initUserData();
389
390         // Fix "deleted" cookies first
391         fixDeletedCookies(array('userid', 'u_hash'));
392
393         // Are cookies set?
394         if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
395                 // Cookies are set with values, but are they valid?
396                 if (fetchUserData(getMemberId()) === true) {
397                         // Validate password by created the difference of it and the secret key
398                         $valPass = encodeHashForCookie(getUserData('password'));
399
400                         // Transfer last module and online time
401                         $GLOBALS['last_online']['module'] = getUserData('last_module');
402                         $GLOBALS['last_online']['online'] = getUserData('last_online');
403
404                         // So did we now have valid data and an unlocked user?
405                         if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
406                                 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
407                                 $ret = true;
408                         } else {
409                                 // Maybe got locked etc.
410                                 //* DEBUG */ logDebugMessage(__FUNCTION__, __LINE__, 'status=' . getUserData('status') . ',' . $valPass . '(' . strlen($valPass) . ')/' . getSession('u_hash') . '(' . strlen(getSession('u_hash')) . ')/' . getUserData('password') . '(' . strlen(getUserData('password')) . ')');
411                                 destroyMemberSession();
412                         }
413                 } else {
414                         // Cookie data is invalid!
415                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Cookie data invalid or user not found.');
416                         destroyMemberSession();
417                 }
418         } else {
419                 // Cookie data is invalid!
420                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Cookie data not complete.');
421                 destroyMemberSession();
422         }
423
424         // Cache status
425         $GLOBALS[__FUNCTION__] = $ret;
426
427         // Return status
428         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . intval($ret));
429         return $ret;
430 }
431
432 // Fetch user data for given user id
433 function fetchUserData ($userid, $column = 'userid') {
434         // If we should look for userid secure&set it here
435         if (substr($column, -2, 2) == 'id') {
436                 // Secure userid
437                 $userid = bigintval($userid);
438
439                 // Set it here
440                 setCurrentUserId($userid);
441
442                 // Don't look for invalid userids...
443                 if (!isValidUserId($userid)) {
444                         // Invalid, so abort here
445                         debug_report_bug(__FUNCTION__, __LINE__, 'User id ' . $userid . ' is invalid.');
446                 } elseif (isUserDataValid()) {
447                         // Use cache, so it is fine
448                         return true;
449                 }
450         } elseif (isUserDataValid()) {
451                 // Use cache, so it is fine
452                 return true;
453         }
454
455         // By default none was found
456         $found = false;
457
458         // Extra statements
459         $ADD = '';
460         if (isExtensionInstalledAndNewer('user', '0.3.5')) $ADD = ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`';
461
462         // Query for the user
463         $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
464                 array($column, $userid), __FUNCTION__, __LINE__);
465
466         // Do we have a record?
467         if (SQL_NUMROWS($result) == 1) {
468                 // Load data from cookies
469                 $data = SQL_FETCHARRAY($result);
470
471                 // Set the userid for later use
472                 setCurrentUserId($data['userid']);
473                 $GLOBALS['user_data'][getCurrentUserId()] = $data;
474
475                 // Rewrite 'last_failure' if found
476                 if (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure'])) {
477                         // Backup the raw one and zero it
478                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
479                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = '0';
480
481                         // Is it not zero?
482                         if ($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] != '0000-00-00 00:00:00') {
483                                 // Seperate data/time
484                                 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
485
486                                 // Seperate data and time again
487                                 $array['date'] = explode('-', $array[0]);
488                                 $array['time'] = explode(':', $array[1]);
489
490                                 // Now pass it to mktime()
491                                 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
492                                         $array['time'][0],
493                                         $array['time'][1],
494                                         $array['time'][2],
495                                         $array['date'][1],
496                                         $array['date'][2],
497                                         $array['date'][0]
498                                 );
499                         } // END - if
500                 } // END - if
501
502                 // Found, but valid?
503                 $found = isUserDataValid();
504         } // END - if
505
506         // Free memory
507         SQL_FREERESULT($result);
508
509         // Return result
510         return $found;
511 }
512
513 // This patched function will reduce many SELECT queries for the specified or current admin login
514 function isAdmin () {
515         // No admin in installation phase!
516         if ((isInstallationPhase()) || (!isAdminRegistered())) {
517                 return false;
518         } // END - if
519
520         // Init variables
521         $ret = false;
522         $adminId = '0';
523         $passCookie = '';
524         $valPass = '';
525         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId);
526
527         // If admin login is not given take current from cookies...
528         if ((isSessionVariableSet('admin_id')) && (isSessionVariableSet('admin_md5'))) {
529                 // Get admin login and password from session/cookies
530                 $adminId    = getSession('admin_id');
531                 $passCookie = getSession('admin_md5');
532         } // END - if
533         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId.'/'.$passCookie);
534
535         // Abort if admin id is zero
536         if ($adminId == '0') {
537                 return false;
538         } // END - if
539
540         // Do we have cache?
541         if (!isset($GLOBALS[__FUNCTION__][$adminId])) {
542                 // Init it with failed
543                 $GLOBALS[__FUNCTION__][$adminId] = false;
544
545                 // Search in array for entry
546                 if (isset($GLOBALS['admin_hash'])) {
547                         // Use cached string
548                         $valPass = $GLOBALS['admin_hash'];
549                 } elseif ((!empty($passCookie)) && (isAdminHashSet($adminId) === true) && (!empty($adminId))) {
550                         // Login data is valid or not?
551                         $valPass = encodeHashForCookie(getAdminHash($adminId));
552
553                         // Cache it away
554                         $GLOBALS['admin_hash'] = $valPass;
555
556                         // Count cache hits
557                         incrementStatsEntry('cache_hits');
558                 } elseif ((!empty($adminId)) && ((!isExtensionActive('cache')) || (isAdminHashSet($adminId) === false))) {
559                         // Get admin hash and hash it
560                         $valPass = encodeHashForCookie(getAdminHash($adminId));
561
562                         // Cache it away
563                         $GLOBALS['admin_hash'] = $valPass;
564                 }
565
566                 if (!empty($valPass)) {
567                         // Check if password is valid
568                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '(' . $valPass . '==' . $passCookie . ')='.intval($valPass == $passCookie));
569                         $GLOBALS[__FUNCTION__][$adminId] = (($GLOBALS['admin_hash'] == $passCookie) || ((strlen($GLOBALS['admin_hash']) == 32) && ($GLOBALS['admin_hash'] == md5($passCookie))) || (($GLOBALS['admin_hash'] == '*FAILED*') && (!isExtensionActive('cache'))));
570                 } // END - if
571         } // END - if
572
573         // Return result of comparision
574         return $GLOBALS[__FUNCTION__][$adminId];
575 }
576
577 // Generates a list of "max receiveable emails per day"
578 function addMaxReceiveList ($mode, $default = '', $return = false) {
579         $OUT = '';
580         $result = false;
581
582         switch ($mode) {
583                 case 'guest':
584                         // Guests (in the registration form) are not allowed to select 0 mails per day.
585                         $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value` > 0 ORDER BY `value` ASC',
586                         __FUNCTION__, __LINE__);
587                         break;
588
589                 case 'member':
590                         // Members are allowed to set to zero mails per day (we will change this soon!)
591                         $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC',
592                         __FUNCTION__, __LINE__);
593                         break;
594
595                 default: // Invalid!
596                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
597                         break;
598         }
599
600         // Some entries are found?
601         if (!SQL_HASZERONUMS($result)) {
602                 $OUT = '';
603                 while ($content = SQL_FETCHARRAY($result)) {
604                         $OUT .= '      <option value="' . $content['value'] . '"';
605                         if (postRequestParameter('max_mails') == $content['value']) $OUT .= ' selected="selected"';
606                         $OUT .= '>' . $content['value'] . ' {--PER_DAY--}';
607                         if (!empty($content['comment'])) $OUT .= '(' . $content['comment'] . ')';
608                         $OUT .= '</option>';
609                 }
610
611                 // Load template
612                 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
613         } else {
614                 // Maybe the admin has to setup some maximum values?
615                 debug_report_bug(__FUNCTION__, __LINE__, 'Nothing is being done here?');
616         }
617
618         // Free result
619         SQL_FREERESULT($result);
620
621         if ($return === true) {
622                 // Return generated HTML code
623                 return $OUT;
624         } else {
625                 // Output directly (default)
626                 outputHtml($OUT);
627         }
628 }
629
630 // Checks wether the given email address is used.
631 function isEmailTaken ($email) {
632         // Query the database
633         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `email` LIKE '%%%s%%' OR `email` LIKE '%%%s%%' LIMIT 1",
634                 array($email, str_replace('.', '{DOT}', $email)), __FUNCTION__, __LINE__);
635
636         // Is the email there?
637         $ret = (SQL_NUMROWS($result) == 1);
638
639         // Free the result
640         SQL_FREERESULT($result);
641
642         // Return result
643         return $ret;
644 }
645
646 // Validate the given menu action
647 function isMenuActionValid ($mode, $action, $what, $updateEntry=false) {
648         // Is the cache entry there and we shall not update?
649         if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
650                 // Count cache hit
651                 incrementStatsEntry('cache_hits');
652
653                 // Then use this cache
654                 return $GLOBALS['action_valid'][$mode][$action][$what];
655         } // END - if
656
657         // By default nothing is valid
658         $ret = false;
659
660         // Look in all menus or only unlocked
661         $add = '';
662         if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
663
664         //* DEBUG: */ debugOutput(__LINE__.':'.$mode.'/'.$action.'/'.$what.'*');
665         if (($mode != 'admin') && ($updateEntry === true)) {
666                 // Update guest or member menu
667                 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET counter=counter+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
668                         array(
669                                 $mode,
670                                 $action,
671                                 $what
672                         ), __FUNCTION__, __LINE__, false);
673         } elseif (($what != 'overview') && (!empty($what))) {
674                 // Other actions
675                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `what`='%s'".$add." ORDER BY `action` DESC LIMIT 1",
676                         array(
677                                 $mode,
678                                 $action,
679                                 $what
680                         ), __FUNCTION__, __LINE__, false);
681         } else {
682                 // Admin login overview
683                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND (`what`='' OR `what` IS NULL)".$add." ORDER BY `action` DESC LIMIT 1",
684                         array(
685                                 $mode,
686                                 $action
687                         ), __FUNCTION__, __LINE__, false);
688         }
689
690         // Run SQL command
691         $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
692
693         // Should we look for affected rows (only update) or found rows?
694         if ($updateEntry === true) {
695                 // Check updated/affected rows
696                 $ret = (SQL_AFFECTEDROWS() == 1);
697         } else {
698                 // Check found rows
699                 $ret = (SQL_NUMROWS($result) == 1);
700         }
701
702         // Free memory
703         SQL_FREERESULT($result);
704
705         // Set cache entry
706         $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
707
708         // Return result
709         return $ret;
710 }
711
712 // Get action value from mode (admin/guest/member) and what-value
713 function getActionFromModuleWhat ($module, $what) {
714         // Init status
715         $data['action'] = '';
716
717         //* DEBUG: */ debugOutput(__LINE__ . '=' . $module . '/'.$what . '/' . getAction() . '=');
718         if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
719                 // sql_patches is missing so choose depending on mode
720                 if (isWhatSet()) {
721                         // Use setted what
722                         $what = getWhat();
723                 } elseif ($module == 'admin') {
724                         // Admin area
725                         $what = 'overview';
726                 } else {
727                         // Everywhere else
728                         $what = 'welcome';
729                 }
730         } elseif ((empty($what)) && ($module != 'admin')) {
731                 // Use configured 'home'
732                 $what = getIndexHome();
733         } // END - if
734
735         if ($module == 'admin') {
736                 // Action value for admin area
737                 if (isGetRequestParameterSet('action')) {
738                         // Use from request!
739                         return getRequestParameter('action');
740                 } elseif (isActionSet()) {
741                         // Get it directly from URL
742                         return getAction();
743                 } elseif (($what == 'overview') || (!isWhatSet())) {
744                         // Default value for admin area
745                         $data['action'] = 'login';
746                 }
747         } elseif (isActionSet()) {
748                 // Get it directly from URL
749                 return getAction();
750         }
751         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): ret=' . $data['action']);
752
753         // Does the module have a menu?
754         if (ifModuleHasMenu($module)) {
755                 // Rewriting modules to menu
756                 $module = mapModuleToTable($module);
757
758                 // Guest and member menu is 'main' as the default
759                 if (empty($data['action'])) $data['action'] = 'main';
760
761                 // Load from database
762                 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
763                         array($module, $what), __FUNCTION__, __LINE__);
764                 if (SQL_NUMROWS($result) == 1) {
765                         // Load action value and pray that this one is the right you want... ;-)
766                         $data = SQL_FETCHARRAY($result);
767                 } // END - if
768
769                 // Free memory
770                 SQL_FREERESULT($result);
771         } elseif ((!isExtensionInstalled('sql_patches')) && ($module != 'admin') && ($module != 'unknown')) {
772                 // No sql_patches installed, but maybe we need to register an admin?
773                 if (isAdminRegistered()) {
774                         // Redirect to admin area
775                         redirectToUrl('admin.php');
776                 } // END - if
777         }
778
779         // Return action value
780         return $data['action'];
781 }
782
783 // Get category name back
784 function getCategory ($cid) {
785         // Default is not found
786         $data['cat'] = '{--_CATEGORY_404--}';
787
788         // Is the category id set?
789         if ($cid == '0') {
790                 // No category
791                 $data['cat'] = '{--_CATEGORY_NONE--}';
792         } elseif ($cid > 0) {
793                 // Lookup the category in database
794                 $result = SQL_QUERY_ESC("SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
795                         array(bigintval($cid)), __FUNCTION__, __LINE__);
796                 if (SQL_NUMROWS($result) == 1) {
797                         // Category found... :-)
798                         $data = SQL_FETCHARRAY($result);
799                 } // END - if
800
801                 // Free result
802                 SQL_FREERESULT($result);
803         } // END - if
804
805         // Return result
806         return $data['cat'];
807 }
808
809 // Get a string of "mail title" and price back
810 function getPaymentTitlePrice ($pid, $full=false) {
811         // Default is not found
812         $ret = '{--_PAYMENT_404--}';
813
814         // Load payment data
815         $result = SQL_QUERY_ESC("SELECT `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
816                 array(bigintval($pid)), __FUNCTION__, __LINE__);
817         if (SQL_NUMROWS($result) == 1) {
818                 // Payment type found... :-)
819                 $data = SQL_FETCHARRAY($result);
820
821                 // Only title or also including price?
822                 if ($full === false) {
823                         $ret = $data['mail_title'];
824                 } else {
825                         $ret = $data['mail_title'] . ' / ' . translateComma($data['price']) . ' {?POINTS?}';
826                 }
827         }
828
829         // Free result
830         SQL_FREERESULT($result);
831
832         // Return result
833         return $ret;
834 }
835
836 // Get (basicly) the price of given payment id
837 function getPaymentPoints ($pid, $lookFor = 'price') {
838         // Default value...
839         $data[$lookFor] = '-1';
840
841         // Search for it in database
842         $result = SQL_QUERY_ESC("SELECT `%s` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
843                 array($lookFor, $pid), __FUNCTION__, __LINE__);
844
845         // Is the entry there?
846         if (SQL_NUMROWS($result) == 1) {
847                 // Payment type found... :-)
848                 $data = SQL_FETCHARRAY($result);
849         } // END - if
850
851         // Free result
852         SQL_FREERESULT($result);
853
854         // Return value
855         return $data[$lookFor];
856 }
857
858 // Remove a receiver's id from $receivers and add a link for him to confirm
859 function removeReceiver (&$receivers, $key, $userid, $pool_id, $stats_id = '', $bonus = false) {
860         // Default is not removed
861         $ret = 'failed';
862
863         // Is the userid valid?
864         if (isValidUserId($userid)) {
865                 // Remove entry from array
866                 unset($receivers[$key]);
867
868                 // Is there already a line for this user available?
869                 if ($stats_id > 0) {
870                         // Only when we got a real stats id continue searching for the entry
871                         $type = 'NORMAL'; $rowName = 'stats_id';
872                         if ($bonus) {
873                                 $type = 'BONUS';
874                                 $rowName = 'bonus_id';
875                         } // END - if
876
877                         // Try to look the entry up
878                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE %s='%s' AND `userid`=%s AND link_type='%s' LIMIT 1",
879                                 array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
880
881                         // Was it *not* found?
882                         if (SQL_HASZERONUMS($result)) {
883                                 // So we add one!
884                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`, `userid`, `link_type`) VALUES ('%s','%s','%s')",
885                                         array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
886                                 $ret = 'done';
887                         } else {
888                                 // Already found
889                                 $ret = 'already';
890                         }
891
892                         // Free memory
893                         SQL_FREERESULT($result);
894                 } // END - if
895         } // END - if
896
897         // Return status for sending routine
898         return $ret;
899 }
900
901 // Calculate sum (default) or count records of given criteria
902 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '') {
903         // Init count/sum
904         $data['res'] = '0';
905
906         //* DEBUG: */ debugOutput($search.'/'.$tableName.'/'.$lookFor.'/'.$whereStatement.'/'.$add);
907         if ((empty($search)) && ($search != '0')) {
908                 // Count or sum whole table?
909                 if ($countRows === true) {
910                         // Count whole table
911                         $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
912                                 array($lookFor, $tableName), __FUNCTION__, __LINE__);
913                 } else {
914                         // Sum whole table
915                         $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
916                                 array($lookFor, $tableName), __FUNCTION__, __LINE__);
917                 }
918         } elseif (($countRows === true) || ($lookFor == 'userid')) {
919                 // Count rows
920                 //* DEBUG: */ debugOutput('COUNT!');
921                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
922                         array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
923         } else {
924                 // Add all rows
925                 //* DEBUG: */ debugOutput('SUM!');
926                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
927                         array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
928         }
929
930         // Load row
931         $data = SQL_FETCHARRAY($result);
932
933         // Free result
934         SQL_FREERESULT($result);
935
936         // Fix empty values
937         if ((empty($data['res'])) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid')) {
938                 // Float number
939                 $data['res'] = '0.00000';
940         } elseif (''.$data['res'].'' == '') {
941                 // Fix empty result
942                 $data['res'] = '0';
943         }
944
945         // Return value
946         //* DEBUG: */ debugOutput('ret=' . $data['res']);
947         return $data['res'];
948 }
949 // Getter fro ref level percents
950 function getReferalLevelPercents ($level) {
951         // Default is zero
952         $data['percents'] = '0';
953
954         // Do we have cache?
955         if ((isset($GLOBALS['cache_array']['refdepths']['level'])) && (isExtensionActive('cache'))) {
956                 // First look for level
957                 $key = array_search($level, $GLOBALS['cache_array']['refdepths']['level']);
958                 if ($key !== false) {
959                         // Entry found!
960                         $data['percents'] = $GLOBALS['cache_array']['refdepths']['percents'][$key];
961
962                         // Count cache hit
963                         incrementStatsEntry('cache_hits');
964                 } // END - if
965         } elseif (!isExtensionActive('cache')) {
966                 // Get referal data
967                 $result_level = SQL_QUERY_ESC("SELECT `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1",
968                         array(bigintval($level)), __FUNCTION__, __LINE__);
969
970                 // Entry found?
971                 if (SQL_NUMROWS($result_level) == 1) {
972                         // Get percents
973                         $data = SQL_FETCHARRAY($result_level);
974                 } // END - if
975
976                 // Free result
977                 SQL_FREERESULT($result_level);
978         }
979
980         // Return percent
981         return $data['percents'];
982 }
983
984 /**
985  *
986  * Dynamic referal system, can also send mails!
987  *
988  * subject     = Subject line, write in lower-case letters and underscore is allowed
989  * userid      = Referal id wich should receive...
990  * points      = ... xxx points
991  * sendNotify  = shall I send the referal an email or not?
992  * refid       = inc/modules/guest/what-confirm.php need this
993  * locked      = Shall I pay it to normal (false) or locked (true) points ammount?
994  * add_mode    = Add points only to $userid or also refs? (WARNING! Changing 'ref' to 'direct'
995  *               for default value will cause no referal will get points ever!!!)
996  */
997 function addPointsThroughReferalSystem ($subject, $userid, $points, $sendNotify = false, $refid = '0', $add_mode = 'ref') {
998         //* DEBUG: */ debugOutput('----------------------- <font color="#00aa00">' . __FUNCTION__ . ' - ENTRY</font> ------------------------<ul><li>');
999         // Convert mode to lower-case
1000         $add_mode = strtolower($add_mode);
1001
1002         // When $userid = '0' add points to jackpot
1003         if (($userid == '0') && (isExtensionActive('jackpot'))) {
1004                 // Add points to jackpot
1005                 addPointsToJackpot($points);
1006                 return;
1007         } // END - if
1008
1009         // Count up referal depth
1010         if (!isset($GLOBALS['ref_level'])) {
1011                 // Initialialize referal system
1012                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): Referal system initialized!');
1013                 $GLOBALS['ref_level'] = '0';
1014         } else {
1015                 // Increase referal level
1016                 $GLOBALS['ref_level']++;
1017                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): Referal level increased. DEPTH='.$GLOBALS['ref_level']);
1018         }
1019
1020         // Check user account
1021         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points);
1022         if (fetchUserData($userid)) {
1023                 // Determine wether the user has some mails to click before he/she gets the points
1024                 $locked = ifUserPointsLocked($userid);
1025
1026                 // Default is 'normal' points
1027                 $data = 'points';
1028
1029                 // Which points, locked or normal?
1030                 if ($locked === true) {
1031                         $data = 'locked_points';
1032                 } // END - if
1033
1034                 // This is the user and his ref
1035                 $GLOBALS['cache_array']['add_userid'][getUserData('refid')] = $userid;
1036
1037                 // Get percents
1038                 $per = getReferalLevelPercents($GLOBALS['ref_level']);
1039                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points.',depth='.$GLOBALS['ref_level'].',per='.$per.',mode='.$add_mode);
1040
1041                 // Some percents found?
1042                 if ($per > 0) {
1043                         // Calculate new points
1044                         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',points='.$points.',per='.$per.',depth='.$GLOBALS['ref_level']);
1045                         $ref_points = $points * $per / 100;
1046
1047                         // Pay refback here if level > 0 and in ref-mode
1048                         if ((isExtensionActive('refback')) && ($GLOBALS['ref_level'] > 0) && ($per < 100) && ($add_mode == 'ref') && (isset($GLOBALS['cache_array']['add_userid'][$userid]))) {
1049                                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',data='.$GLOBALS['cache_array']['add_userid'][$userid].',ref_points='.$ref_points.',depth='.$GLOBALS['ref_level'].' - BEFORE!');
1050                                 $ref_points = addRefbackPoints($GLOBALS['cache_array']['add_userid'][$userid], $userid, $points, $ref_points);
1051                                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',data='.$GLOBALS['cache_array']['add_userid'][$userid].',ref_points='.$ref_points.',depth='.$GLOBALS['ref_level'].' - AFTER!');
1052                         } // END - if
1053
1054                         // Update points...
1055                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `%s`=`%s`+%s WHERE `userid`=%s AND `ref_depth`=%s LIMIT 1",
1056                                 array($data, $data, $ref_points, bigintval($userid), bigintval($GLOBALS['ref_level'])), __FUNCTION__, __LINE__);
1057                         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):data='.$data.',ref_points='.$ref_points.',userid='.$userid.',depth='.$GLOBALS['ref_level'].',mode='.$add_mode.' - UPDATE! ('.SQL_AFFECTEDROWS().')');
1058
1059                         // No entry updated?
1060                         if (SQL_AFFECTEDROWS() < 1) {
1061                                 // First ref in this level! :-)
1062                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_points` (`userid`,`ref_depth`,`%s`) VALUES (%s,%s,%s)",
1063                                         array($data, bigintval($userid), bigintval($GLOBALS['ref_level']), $ref_points), __FUNCTION__, __LINE__);
1064                                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):data='.$data.',ref_points='.$ref_points.',userid='.$userid.',depth='.$GLOBALS['ref_level'].',mode='.$add_mode.' - INSERTED! ('.SQL_AFFECTEDROWS().')');
1065                         } // END - if
1066
1067                         // Prepare data for the filter
1068                         $filterData = array(
1069                                 'subject'  => $subject,
1070                                 'userid'   => $userid,
1071                                 'points'   => $points,
1072                                 'notify'   => $sendNotify,
1073                                 'refid'    => $refid,
1074                                 'locked'   => $locked,
1075                                 'mode'     => 'add',
1076                                 'sub_mode' => $add_mode,
1077                         );
1078
1079                         // Filter it now
1080                         runFilterChain('add_points', $filterData);
1081
1082                         // Points updated, maybe I shall send him an email?
1083                         if (($sendNotify === true) && (isValidUserId(getUserData('refid'))) && ($locked === false)) {
1084                                 // Prepare content
1085                                 $content = array(
1086                                         'percents' => $per,
1087                                         'level'    => bigintval($GLOBALS['ref_level']),
1088                                         'points'   => $ref_points,
1089                                 );
1090
1091                                 // Load email template
1092                                 $message = loadEmailTemplate('confirm-referal', $content, bigintval($userid));
1093
1094                                 // Send email
1095                                 sendEmail($userid, '{--THANX_REFERAL_ONE_SUBJECT--}', $message);
1096                         } elseif (($sendNotify === true) && (!isValidUserId(getUserData('refid'))) && ($locked === false) && ($add_mode == 'direct')) {
1097                                 // Prepare content
1098                                 $content = array(
1099                                         'reason' => '{--REASON_DIRECT_PAYMENT--}',
1100                                         'points' => $ref_points
1101                                 );
1102
1103                                 // Load message
1104                                 $message = loadEmailTemplate('add-points', $content, $userid);
1105
1106                                 // And sent it away
1107                                 sendEmail($userid, '{--DIRECT_PAYMENT_SUBJECT--}', $message);
1108                                 if (!isGetRequestParameterSet('mid')) {
1109                                         // Output message to admin
1110                                         loadTemplate('admin_settings_saved', false, '{--ADMIN_POINTS_ADDED--}');
1111                                 } // END - if
1112                         }
1113
1114                         // Maybe there's another ref?
1115                         if ((isValidUserId(getUserData('refid'))) && ($points > 0) && (getUserData('refid') != $userid) && ($add_mode == 'ref')) {
1116                                 // Then let's credit him here...
1117                                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',ref='.getUserData('refid').',points='.$points.' - ADVANCE!');
1118                                 addPointsThroughReferalSystem(sprintf("%s_ref:%s", $subject, $GLOBALS['ref_level']), getUserData('refid'), $points, $sendNotify, getUserData('refid'));
1119                         } // END - if
1120                 } // END - if
1121         } // END - if
1122
1123         //* DEBUG: */ debugOutput('</li></ul>----------------------- <font color="#aa0000">'.__FUNCTION__.' - EXIT</font> ------------------------<br />');
1124 }
1125
1126 // Updates the referal counter
1127 function updateReferalCounter ($userid) {
1128         // Make it sure referal level zero (member him-/herself) is at least selected
1129         if (empty($GLOBALS['cache_array']['ref_level'][$userid])) $GLOBALS['cache_array']['ref_level'][$userid] = 1;
1130         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',level='.$GLOBALS['cache_array']['ref_level'][$userid]);
1131
1132         // Update counter
1133         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `counter`=`counter`+1 WHERE `userid`=%s AND `level`='%s' LIMIT 1",
1134                 array(bigintval($userid), $GLOBALS['cache_array']['ref_level'][$userid]), __FUNCTION__, __LINE__);
1135
1136         // When no entry was updated then we have to create it here
1137         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):updated=' . SQL_AFFECTEDROWS());
1138         if (SQL_AFFECTEDROWS() < 1) {
1139                 // First count!
1140                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refsystem` (`userid`, `level`, `counter`) VALUES (%s,%s,1)",
1141                         array(bigintval($userid), $GLOBALS['cache_array']['ref_level'][$userid]), __FUNCTION__, __LINE__);
1142                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid);
1143         } // END - if
1144
1145         // Init referal id
1146         $ref = '0';
1147
1148         // Check for his referal
1149         if (fetchUserData($userid)) {
1150                 // Get it
1151                 $ref = getUserData('refid');
1152         } // END - if
1153
1154         //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):userid='.$userid.',ref='.$ref);
1155
1156         // When he has a referal...
1157         if (($ref > 0) && ($ref != $userid)) {
1158                 // Move to next referal level and count his counter one up!
1159                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):ref='.$ref.' - ADVANCE!');
1160                 $GLOBALS['cache_array']['ref_level'][$userid]++;
1161                 updateReferalCounter($ref);
1162         } elseif ((($ref == $userid) || ($ref == '0')) && (isExtensionInstalledAndNewer('cache', '0.1.2'))) {
1163                 // Remove cache here
1164                 //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>):ref='.$ref.' - CACHE!');
1165                 rebuildCache('refsystem', 'refsystem');
1166         }
1167
1168         // "Walk" back here
1169         $GLOBALS['cache_array']['ref_level'][$userid]--;
1170
1171         // Handle refback here if extension is installed
1172         // @TODO Rewrite this to a filter
1173         if (isExtensionActive('refback')) {
1174                 updateRefbackTable($userid);
1175         } // END - if
1176 }
1177
1178 // Sends out mail to all administrators. This function is no longer obsolete
1179 // because we need it when there is no ext-admins installed
1180 function sendAdminEmails ($subj, $message) {
1181         // Load all admin email addresses
1182         $result = SQL_QUERY('SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC', __FUNCTION__, __LINE__);
1183         while ($content = SQL_FETCHARRAY($result)) {
1184                 // Send the email out
1185                 sendEmail($content['email'], $subj, $message);
1186         } // END - if
1187
1188         // Free result
1189         SQL_FREERESULT($result);
1190
1191         // Really simple... ;-)
1192 }
1193
1194 // Get id number from administrator's login name
1195 function getAdminId ($adminLogin) {
1196         // By default no admin is found
1197         $data['id'] = '-1';
1198
1199         // Check cache
1200         if (isset($GLOBALS['cache_array']['admin']['admin_id'][$adminLogin])) {
1201                 // Use it if found to save SQL queries
1202                 $data['id'] = $GLOBALS['cache_array']['admin']['admin_id'][$adminLogin];
1203
1204                 // Update cache hits
1205                 incrementStatsEntry('cache_hits');
1206         } elseif (!isExtensionActive('cache')) {
1207                 // Load from database
1208                 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1209                         array($adminLogin), __FUNCTION__, __LINE__);
1210
1211                 // Do we have an entry?
1212                 if (SQL_NUMROWS($result) == 1) {
1213                         // Get it
1214                         $data = SQL_FETCHARRAY($result);
1215                 } // END - if
1216
1217                 // Free result
1218                 SQL_FREERESULT($result);
1219         }
1220
1221         // Return the id
1222         return $data['id'];
1223 }
1224
1225 // "Getter" for current admin id
1226 function getCurrentAdminId () {
1227         // Do we have cache?
1228         if (!isset($GLOBALS['current_admin_id'])) {
1229                 // Get the admin login from session
1230                 $adminId = getSession('admin_id');
1231
1232                 // Remember in cache securely
1233                 setCurrentAdminId(bigintval($adminId));
1234         } // END - if
1235
1236         // Return it
1237         return $GLOBALS['current_admin_id'];
1238 }
1239
1240 // Setter for current admin id
1241 function setCurrentAdminId ($currentAdminId) {
1242         // Set it secured
1243         $GLOBALS['current_admin_id'] = bigintval($currentAdminId);
1244 }
1245
1246 // Get password hash from administrator's login name
1247 function getAdminHash ($adminId) {
1248         // By default an invalid hash is returned
1249         $data['password'] = '-1';
1250
1251         if (isAdminHashSet($adminId)) {
1252                 // Check cache
1253                 $data['password'] = $GLOBALS['cache_array']['admin']['password'][$adminId];
1254
1255                 // Update cache hits
1256                 incrementStatsEntry('cache_hits');
1257         } elseif (!isExtensionActive('cache')) {
1258                 // Load from database
1259                 $result = SQL_QUERY_ESC("SELECT `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1260                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1261
1262                 // Do we have an entry?
1263                 if (SQL_NUMROWS($result) == 1) {
1264                         // Fetch data
1265                         $data = SQL_FETCHARRAY($result);
1266
1267                         // Set cache
1268                         setAdminHash($adminId, $data['password']);
1269                 } // END - if
1270
1271                 // Free result
1272                 SQL_FREERESULT($result);
1273         }
1274
1275         // Return password hash
1276         return $data['password'];
1277 }
1278
1279 // "Getter" for admin login
1280 function getAdminLogin ($adminId) {
1281         // By default a non-existent login is returned (other functions react on this!)
1282         $data['login'] = '***';
1283
1284         if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1285                 // Get cache
1286                 $data['login'] = $GLOBALS['cache_array']['admin']['login'][$adminId];
1287
1288                 // Update cache hits
1289                 incrementStatsEntry('cache_hits');
1290         } elseif (!isExtensionActive('cache')) {
1291                 // Load from database
1292                 $result = SQL_QUERY_ESC("SELECT `login` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1293                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1294
1295                 // Entry found?
1296                 if (SQL_NUMROWS($result) == 1) {
1297                         // Fetch data
1298                         $data = SQL_FETCHARRAY($result);
1299
1300                         // Set cache
1301                         $GLOBALS['cache_array']['admin']['login'][$adminId] = $data['login'];
1302                 } // END - if
1303
1304                 // Free memory
1305                 SQL_FREERESULT($result);
1306         }
1307
1308         // Return the result
1309         return $data['login'];
1310 }
1311
1312 // Get email address of admin id
1313 function getAdminEmail ($adminId) {
1314         // By default an invalid emails is returned
1315         $data['email'] = '***';
1316
1317         if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1318                 // Get cache
1319                 $data['email'] = $GLOBALS['cache_array']['admin']['email'][$adminId];
1320
1321                 // Update cache hits
1322                 incrementStatsEntry('cache_hits');
1323         } elseif (!isExtensionActive('cache')) {
1324                 // Load from database
1325                 $result_admin_id = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1326                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1327
1328                 // Entry found?
1329                 if (SQL_NUMROWS($result_admin_id) == 1) {
1330                         // Get data
1331                         $data = SQL_FETCHARRAY($result_admin_id);
1332
1333                         // Set cache
1334                         $GLOBALS['cache_array']['admin']['email'][$adminId] = $data['email'];
1335                 } // END - if
1336
1337                 // Free result
1338                 SQL_FREERESULT($result_admin_id);
1339         }
1340
1341         // Return email
1342         return $data['email'];
1343 }
1344
1345 // Get default ACL  of admin id
1346 function getAdminDefaultAcl ($adminId) {
1347         // By default an invalid ACL value is returned
1348         $data['default_acl'] = '***';
1349
1350         // Is sql_patches there and was it found in cache?
1351         if (!isExtensionActive('sql_patches')) {
1352                 // Not found, which is bad, so we need to allow all
1353                 $data['default_acl'] =  'allow';
1354         } elseif (isset($GLOBALS['cache_array']['admin']['def_acl'][$adminId])) {
1355                 // Use cache
1356                 $data['default_acl'] = $GLOBALS['cache_array']['admin']['def_acl'][$adminId];
1357
1358                 // Update cache hits
1359                 incrementStatsEntry('cache_hits');
1360         } elseif (!isExtensionActive('cache')) {
1361                 // Load from database
1362                 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1363                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1364                 if (SQL_NUMROWS($result_admin_id) == 1) {
1365                         // Fetch data
1366                         $data = SQL_FETCHARRAY($result_admin_id);
1367
1368                         // Set cache
1369                         $GLOBALS['cache_array']['admin']['def_acl'][$adminId] = $data['default_acl'];
1370                 }
1371
1372                 // Free result
1373                 SQL_FREERESULT($result_admin_id);
1374         }
1375
1376         // Return default ACL
1377         return $data['default_acl'];
1378 }
1379
1380 // Generates an option list from various parameters
1381 function generateOptionList ($table, $id, $name, $default = '', $special = '', $where = '', $disabled = array(), $callback = '') {
1382         $ret = '';
1383         if ($table == '/ARRAY/') {
1384                 // Selection from array
1385                 if ((is_array($id)) && (is_array($name)) && ((count($id)) == (count($name)) || (!empty($callback)))) {
1386                         // Both are arrays
1387                         foreach ($id as $idx => $value) {
1388                                 $ret .= '<option value="' . $value . '"';
1389                                 if ($default == $value) {
1390                                         // Selected by default
1391                                         $ret .= ' selected="selected"';
1392                                 } elseif (isset($disabled[$value])) {
1393                                         // Disabled!
1394                                         $ret .= ' disabled="disabled"';
1395                                 }
1396
1397                                 // Is the call-back function set?
1398                                 if (!empty($callback)) {
1399                                         // Call it
1400                                         $name[$idx] = call_user_func_array($callback, array($id[$idx]));
1401                                 } // END - if
1402
1403                                 // Finish option tag
1404                                 $ret .= '>' . $name[$idx] . '</option>';
1405                         } // END - foreach
1406                 } else {
1407                         // Problem in request
1408                         debug_report_bug(__FUNCTION__, __LINE__, 'Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name) . ',callback=' . $callback);
1409                 }
1410         } else {
1411                 // Data from database
1412                 $SPEC = ', `' . $id . '`';
1413                 if (!empty($special)) $SPEC = ', `' . $special . '`';
1414
1415                 // Query the database
1416                 $result = SQL_QUERY_ESC("SELECT `%s`, `%s`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$where." ORDER BY `%s` ASC",
1417                         array(
1418                                 $id,
1419                                 $name,
1420                                 $table,
1421                                 $name
1422                         ), __FUNCTION__, __LINE__);
1423
1424                 // Do we have rows?
1425                 if (!SQL_HASZERONUMS($result)) {
1426                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1427                         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
1428                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1429                                 if (empty($special)) $add = '';
1430                                 $ret .= '<option value="' . $value . '"';
1431                                 if ($default == $value) {
1432                                         // Selected by default
1433                                         $ret .= ' selected="selected"';
1434                                 } elseif (isset($disabled[$value])) {
1435                                         // Disabled!
1436                                         $ret .= ' disabled="disabled"';
1437                                 }
1438
1439                                 // Add it, if set
1440                                 if (!empty($add)) $add = ' ('.$add.')';
1441
1442                                 // Is the call-back function set?
1443                                 if (!empty($callback)) {
1444                                         // Call it
1445                                         $title = call_user_func_array($callback, array($title));
1446                                 } // END - if
1447
1448                                 // Finish option list
1449                                 $ret .= '>' . $title . $add . '</option>';
1450                         } // END - while
1451                 } else {
1452                         // No data found
1453                         $ret = '<option value="x">{--SELECT_NONE--}</option>';
1454                 }
1455
1456                 // Free memory
1457                 SQL_FREERESULT($result);
1458         }
1459
1460         // Return - hopefully - the requested data
1461         return $ret;
1462 }
1463 // Activate exchange
1464 function FILTER_ACTIVATE_EXCHANGE () {
1465         // Is the extension 'user' there?
1466         if ((!isExtensionActive('user')) || (getConfig('activate_xchange') == '0')) {
1467                 // Silently abort here
1468                 return false;
1469         } // END - if
1470
1471         // Check total amount of users
1472         if (getTotalConfirmedUser() >= getConfig('activate_xchange')) {
1473                 // Activate System
1474                 setSqlsArray(array(
1475                         "UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N', `hidden`='N', `mem_only`='Y' WHERE `module`='order' LIMIT 1",
1476                         "UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='order' OR `what`='unconfirmed' LIMIT 2",
1477                 ));
1478
1479                 // Run SQLs
1480                 runFilterChain('run_sqls');
1481
1482                 // Update configuration
1483                 updateConfiguration('activate_xchange' ,0);
1484
1485                 // Rebuild cache
1486                 rebuildCache('modules', 'modules');
1487         } // END - if
1488 }
1489
1490 // Deletes a user account with given reason
1491 function deleteUserAccount ($userid, $reason) {
1492         // Init points
1493         $data['points'] = '0';
1494
1495         $result = SQL_QUERY_ESC("SELECT
1496         (SUM(p.`points`) - d.`used_points`) AS `points`
1497 FROM
1498         `{?_MYSQL_PREFIX?}_user_points` AS p
1499 LEFT JOIN
1500         `{?_MYSQL_PREFIX?}_user_data` AS d
1501 ON
1502         p.`userid`=d.`userid`
1503 WHERE
1504         p.`userid`=%s
1505 LIMIT 1",
1506                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1507
1508         // Do we have an entry?
1509         if (SQL_NUMROWS($result) == 1) {
1510                 // Save his points to add them to the jackpot
1511                 $data = SQL_FETCHARRAY($result);
1512
1513                 // Delete points entries as well
1514                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s",
1515                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1516
1517                 // Update mediadata as well
1518                 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1519                         // Update database
1520                         updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1521                 } // END - if
1522
1523                 // Now, when we have all his points adds them do the jackpot!
1524                 if (isExtensionActive('jackpot')) addPointsToJackpot($data['points']);
1525         } // END - if
1526
1527         // Free the result
1528         SQL_FREERESULT($result);
1529
1530         // Delete category selections as well...
1531         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1532                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1533
1534         // Remove from rallye if found
1535         // @TODO Rewrite this to a filter
1536         if (isExtensionActive('rallye')) {
1537                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1538                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1539         } // END - if
1540
1541         // Add reason and translate points
1542         $data['text']   = $reason;
1543
1544         // Now a mail to the user and that's all...
1545         $message = loadEmailTemplate('del-user', $data, $userid);
1546         sendEmail($userid, '{--ADMIN_DELETE_ACCOUNT--}', $message);
1547
1548         // Ok, delete the account!
1549         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1550 }
1551
1552 // Gets the matching what name from module
1553 function getWhatFromModule ($modCheck) {
1554         // Is the request element set?
1555         if (isGetRequestParameterSet('what')) {
1556                 // Then return this!
1557                 return getRequestParameter('what');
1558         } // END - if
1559
1560         // Default is empty
1561         $what = '';
1562
1563         //* DEBUG: */ debugOutput(__LINE__.'!'.$modCheck.'!');
1564         switch ($modCheck) {
1565                 case 'admin':
1566                         $what = 'overview';
1567                         break;
1568
1569                 case 'login':
1570                 case 'index':
1571                         // Is ext-sql_patches installed and newer than 0.0.5?
1572                         if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1573                                 // Use it from config
1574                                 $what = getIndexHome();
1575                         } else {
1576                                 // Use default 'welcome'
1577                                 $what = 'welcome';
1578                         }
1579                         break;
1580
1581                 default:
1582                         $what = '';
1583                         break;
1584         } // END - switch
1585
1586         // Return what value
1587         return $what;
1588 }
1589
1590 // Subtract points from database and mediadata cache
1591 function subtractPoints ($subject, $userid, $points) {
1592         // Add points to used points
1593         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `used_points`=`used_points`+%s WHERE `userid`=%s LIMIT 1",
1594                 array($points, bigintval($userid)), __FUNCTION__, __LINE__);
1595
1596         // Prepare filter data
1597         $filterData = array(
1598                 'subject' => $subject,
1599                 'userid'  => $userid,
1600                 'points'  => $points,
1601                 'mode'    => 'sub'
1602         );
1603
1604         // Insert booking record
1605         runFilterChain('sub_points', $filterData);
1606 }
1607
1608 // "Getter" for total available receivers
1609 function getTotalReceivers ($mode = 'normal') {
1610         // Get num rows
1611         $numRows = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true, ' AND `receive_mails` > 0' . runFilterChain('exclude_users', $mode));
1612
1613         // Return value
1614         return $numRows;
1615 }
1616
1617 // Returns HTML code with an option list of all categories
1618 function generateCategoryOptionsList ($mode) {
1619         // Prepare WHERE statement
1620         $whereStatement = " WHERE `visible`='Y'";
1621         if (isAdmin()) $whereStatement = '';
1622
1623         // Initialize array...
1624         $CATS = array(
1625                 'id'   => array(),
1626                 'name' => array(),
1627                 'userids' => array()
1628         );
1629
1630         // Get categories
1631         $result = SQL_QUERY('SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`' . $whereStatement . ' ORDER BY `sort` ASC',
1632                 __FUNCTION__, __LINE__);
1633
1634         // Do we have entries?
1635         if (!SQL_HASZERONUMS($result)) {
1636                 // ... and begin loading stuff
1637                 while ($content = SQL_FETCHARRAY($result)) {
1638                         // Transfer some data
1639                         $CATS['id'][]   = $content['id'];
1640                         $CATS['name'][] = $content['cat'];
1641
1642                         // Check which users are in this category
1643                         $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s ORDER BY `userid` ASC",
1644                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1645
1646                         // Init count
1647                         $userid_cnt = '0';
1648
1649                         // Start adding all
1650                         while ($data = SQL_FETCHARRAY($result_userids)) {
1651                                 // Add user count
1652                                 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED' AND `receive_mails` > 0");
1653                         } // END - while
1654
1655                         // Free memory
1656                         SQL_FREERESULT($result_userids);
1657
1658                         // Add counter
1659                         $CATS['userids'][] = $userid_cnt;
1660                 } // END - while
1661
1662                 // Free memory
1663                 SQL_FREERESULT($result);
1664
1665                 // Generate options
1666                 $OUT = '';
1667                 foreach ($CATS['id'] as $key => $value) {
1668                         if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1669                         $OUT .= '      <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1670                 } // END - foreach
1671         } else {
1672                 // No cateogries are defined yet
1673                 $OUT = '<option class="notice">{--MEMBER_NO_CATEGORIES--}</option>';
1674         }
1675
1676         // Return HTML code
1677         return $OUT;
1678 }
1679
1680 // Add bonus mail to queue
1681 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $cat, $mode='normal', $receiver=0) {
1682         // Is admin or bonus extension there?
1683         if (!isAdmin()) {
1684                 // Abort here
1685                 return false;
1686         } elseif (!isExtensionActive('bonus')) {
1687                 // Abort here
1688                 return false;
1689         }
1690
1691         // Calculcate target sent
1692         $target = countSelection(explode(';', $receiverList));
1693
1694         // Receiver is zero?
1695         if ($receiver == '0') {
1696                 // Then auto-fix it
1697                 $receiver = $target;
1698         } // END - if
1699
1700         // HTML extension active?
1701         if (isExtensionActive('html_mail')) {
1702                 // No HTML by default
1703                 $HTML = 'N';
1704
1705                 // HTML mode?
1706                 if ($mode == 'html') $HTML = 'Y';
1707
1708                 // Add HTML mail
1709                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1710 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`, `html_msg`)
1711 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s','%s')",
1712                 array(
1713                         $subject,
1714                         $text,
1715                         $receiverList,
1716                         $points,
1717                         $seconds,
1718                         $url,
1719                         $cat,
1720                         $target,
1721                         bigintval($receiver),
1722                         $HTML
1723                 ), __FUNCTION__, __LINE__);
1724         } else {
1725                 // Add regular mail
1726                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1727 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`)
1728 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s')",
1729                 array(
1730                         $subject,
1731                         $text,
1732                         $receiverList,
1733                         $points,
1734                         $seconds,
1735                         $url,
1736                         $cat,
1737                         $target,
1738                         bigintval($receiver),
1739                 ), __FUNCTION__, __LINE__);
1740         }
1741 }
1742
1743 // Generate a receiver list for given category and maximum receivers
1744 function generateReceiverList ($cat, $receiver, $mode = '') {
1745         // Init variables
1746         $CAT_TABS     = '';
1747         $CAT_WHERE    = '';
1748         $receiverList = '';
1749         $result       = false;
1750
1751         // Secure data
1752         $cat      = bigintval($cat);
1753         $receiver = bigintval($receiver);
1754
1755         // Is the receiver zero and mode set?
1756         if (($receiver == '0') && (!empty($mode))) {
1757                 // Auto-fix receiver maximum
1758                 $receiver = getTotalReceivers($mode);
1759         } // END - if
1760
1761         // Category given?
1762         if ($cat > 0) {
1763                 // Select category
1764                 $CAT_TABS  = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.`userid`=c.`userid`";
1765                 $CAT_WHERE = sprintf(" AND c.`cat_id`=%s", $cat);
1766         } // END - if
1767
1768         // Exclude users in holiday?
1769         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
1770                 // Add something for the holiday extension
1771                 $CAT_WHERE .= " AND d.`holiday_active`='N'";
1772         } // END - if
1773
1774         if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1775                 // Only include HTML receivers
1776                 $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",
1777                         array(
1778                                 $receiver
1779                         ), __FUNCTION__, __LINE__);
1780         } else {
1781                 // Include all
1782                 $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",
1783                         array(
1784                                 $receiver
1785                         ), __FUNCTION__, __LINE__);
1786         }
1787
1788         // Entries found?
1789         if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1790                 // Load all entries
1791                 while ($content = SQL_FETCHARRAY($result)) {
1792                         // Add receiver when not empty
1793                         if (!empty($content['userid'])) $receiverList .= $content['userid'] . ';';
1794                 } // END - while
1795
1796                 // Free memory
1797                 SQL_FREERESULT($result);
1798
1799                 // Remove trailing semicolon
1800                 $receiverList = substr($receiverList, 0, -1);
1801         } // END - if
1802
1803         // Return list
1804         return $receiverList;
1805 }
1806
1807 // "Getter" for array for user refs and points in given level
1808 function getUserReferalPoints ($userid, $level) {
1809         //* DEBUG: */ debugOutput('----------------------- <font color="#00aa00">'.__FUNCTION__.' - ENTRY</font> ------------------------<ul><li>');
1810         // Default is no refs and no nickname
1811         $add = '';
1812         $refs = array();
1813
1814         // Do we have nickname extension installed?
1815         if (isExtensionActive('nickname')) {
1816                 $add = ', ud.nickname';
1817         } // END - if
1818
1819         // Get refs from database
1820         $result = SQL_QUERY_ESC("SELECT
1821         ur.id, ur.refid, ud.status, ud.last_online, ud.mails_confirmed, ud.emails_received".$add."
1822 FROM
1823         `{?_MYSQL_PREFIX?}_user_refs` AS ur
1824 LEFT JOIN
1825         `{?_MYSQL_PREFIX?}_user_points` AS up
1826 ON
1827         ur.refid=up.userid AND ur.level=0
1828 LEFT JOIN
1829         `{?_MYSQL_PREFIX?}_user_data` AS ud
1830 ON
1831         ur.refid=ud.userid
1832 WHERE
1833         ur.userid=%s AND ur.level=%s
1834 ORDER BY
1835         ur.refid ASC",
1836                 array(
1837                         bigintval($userid),
1838                         bigintval($level)
1839                 ), __FUNCTION__, __LINE__);
1840
1841         // Are there some entries?
1842         if (!SQL_HASZERONUMS($result)) {
1843                 // Fetch all entries
1844                 while ($row = SQL_FETCHARRAY($result)) {
1845                         // Get total points of this user
1846                         $row['points'] = getTotalPoints($row['refid']);
1847
1848                         // Get unconfirmed mails
1849                         $row['unconfirmed']  = countSumTotalData($row['refid'], 'user_links', 'id', 'userid', true);
1850
1851                         // Init clickrate with zero
1852                         $row['clickrate'] = '0';
1853
1854                         // Is at least one mail received?
1855                         if ($row['emails_received'] > 0) {
1856                                 // Calculate clickrate
1857                                 $row['clickrate'] = ($row['mails_confirmed'] / $row['emails_received'] * 100);
1858                         } // END - if
1859
1860                         // Activity is 'active' by default because if autopurge is not installed
1861                         $row['activity'] = '{--MEMBER_ACTIVITY_ACTIVE--}';
1862
1863                         // Is autopurge installed and the user inactive?
1864                         if ((isExtensionActive('autopurge')) && ((time() - getApInactiveSince()) >= $row['last_online']))  {
1865                                 // Inactive user!
1866                                 $row['activity'] = '{--MEMBER_ACTIVITY_INACTIVE--}';
1867                         } // END - if
1868
1869                         // Remove some entries
1870                         unset($row['mails_confirmed']);
1871                         unset($row['emails_received']);
1872                         unset($row['last_online']);
1873
1874                         // Add row
1875                         $refs[$row['id']] = $row;
1876                 } // END - while
1877         } // END - if
1878
1879         // Free result
1880         SQL_FREERESULT($result);
1881
1882         // Return result
1883         //* DEBUG: */ debugOutput('</li></ul>----------------------- <font color="#aa0000">'.__FUNCTION__.' - EXIT</font> ------------------------<br />');
1884         return $refs;
1885 }
1886
1887 // Recuce the amount of received emails for the receipients for given email
1888 function reduceRecipientReceivedMails ($column, $id, $count) {
1889         // Search for mail in database
1890         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
1891                 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
1892
1893         // Are there entries?
1894         if (!SQL_HASZERONUMS($result)) {
1895                 // Now load all userids for one big query!
1896                 $userids = array();
1897                 while ($data = SQL_FETCHARRAY($result)) {
1898                         // By default we want to reduce and have no mails found
1899                         $num = 0;
1900
1901                         // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
1902                         // @TODO Rewrite this to a filter
1903                         if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
1904                                 // User email
1905                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
1906                         } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
1907                                 // Bonus mail
1908                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
1909                         }
1910
1911                         // Reduce this users total received emails?
1912                         if ($num === 0) $userids[$data['userid']] = $data['userid'];
1913                 } // END - while
1914
1915                 if (count($userids) > 0) {
1916                         // Now update all user accounts
1917                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
1918                                 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
1919                 } else {
1920                         // Nothing deleted
1921                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MAIL_NOTHING_DELETED', $id));
1922                 }
1923         } // END - if
1924
1925         // Free result
1926         SQL_FREERESULT($result);
1927 }
1928
1929 // Creates a new task
1930 function createNewTask ($subject, $notes, $taskType, $userid = '0', $adminId = '0', $strip = true) {
1931         // Insert the task data into the database
1932         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())",
1933                 array(
1934                         $adminId,
1935                         $userid,
1936                         $taskType,
1937                         $subject,
1938                         $notes
1939                 ), __FUNCTION__, __LINE__, true, $strip);
1940
1941         // Return insert id which is the task id
1942         return SQL_INSERTID();
1943 }
1944
1945 // Updates last module / online time
1946 // @TODO Fix inconsistency between last_module and getWhat()
1947 function updateLastActivity($userid) {
1948         // Run the update query
1949         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_module`='%s', `last_online`=UNIX_TIMESTAMP(), `REMOTE_ADDR`='%s' WHERE `userid`=%s LIMIT 1",
1950                 array(
1951                         getWhat(),
1952                         detectRemoteAddr(),
1953                         bigintval($userid)
1954                 ), __FUNCTION__, __LINE__);
1955 }
1956
1957 // [EOF]
1958 ?>