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