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