New functions introduced, several rewrites:
[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 (postRequestElement('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 (isGetRequestElementSet('action')) {
893                         // Use from request!
894                         return getRequestElement('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 (!isGetRequestElementSet('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 `id`=%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='') {
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) $ret .= ' selected="selected"';
1531                                 $ret .= '>' . $name[$idx] . '</option>';
1532                         } // END - foreach
1533                 } else {
1534                         // Problem in request
1535                         debug_report_bug('Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name));
1536                 }
1537         } else {
1538                 // Data from database
1539                 $SPEC = ', `' . $id . '`';
1540                 if (!empty($special)) $SPEC = ', `' . $special . '`';
1541
1542                 // Query the database
1543                 $result = SQL_QUERY_ESC("SELECT `%s`, `%s`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$where." ORDER BY `%s` ASC",
1544                         array(
1545                                 $id,
1546                                 $name,
1547                                 $table,
1548                                 $name
1549                         ), __FUNCTION__, __LINE__);
1550
1551                 // Do we have rows?
1552                 if (SQL_NUMROWS($result) > 0) {
1553                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1554                         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
1555                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1556                                 if (empty($special)) $add = '';
1557                                 $ret .= '<option value="' . $value . '"';
1558                                 if ($default == $value) $ret .= ' selected="selected"';
1559                                 if (!empty($add)) $add = ' ('.$add.')';
1560                                 $ret .= '>' . $title . $add . '</option>';
1561                         } // END - while
1562                 } else {
1563                         // No data found
1564                         $ret = '<option value="x">{--SELECT_NONE--}</option>';
1565                 }
1566
1567                 // Free memory
1568                 SQL_FREERESULT($result);
1569         }
1570
1571         // Return - hopefully - the requested data
1572         return $ret;
1573 }
1574 // Activate exchange
1575 function FILTER_ACTIVATE_EXCHANGE () {
1576         // Is the extension 'user' there?
1577         if ((!isExtensionActive('user')) || (getConfig('activate_xchange') == '0')) {
1578                 // Silently abort here
1579                 return false;
1580         } // END - if
1581
1582         // Check total amount of users
1583         $totalUsers = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true, ' AND max_mails > 0');
1584
1585         if ($totalUsers >= getConfig('activate_xchange')) {
1586                 // Activate System
1587                 setSqlsArray(array(
1588                         "UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N', `hidden`='N', `mem_only`='Y' WHERE `module`='order' LIMIT 1",
1589                         "UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='order' OR `what`='unconfirmed' LIMIT 2",
1590                 ));
1591
1592                 // Run SQLs
1593                 runFilterChain('run_sqls');
1594
1595                 // Update configuration
1596                 updateConfiguration('activate_xchange' ,0);
1597
1598                 // Rebuild cache
1599                 rebuildCacheFile('modules', 'modules');
1600         } // END - if
1601 }
1602
1603 // Deletes a user account with given reason
1604 function deleteUserAccount ($userid, $reason) {
1605         // Init points
1606         $data['points'] = '0';
1607
1608         $result = SQL_QUERY_ESC("SELECT
1609         (SUM(p.points) - d.used_points) AS points
1610 FROM
1611         `{?_MYSQL_PREFIX?}_user_points` AS p
1612 LEFT JOIN
1613         `{?_MYSQL_PREFIX?}_user_data` AS d
1614 ON
1615         p.userid=d.userid
1616 WHERE
1617         p.userid=%s",
1618                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1619
1620         // Do we have an entry?
1621         if (SQL_NUMROWS($result) == 1) {
1622                 // Save his points to add them to the jackpot
1623                 $data = SQL_FETCHARRAY($result);
1624
1625                 // Delete points entries as well
1626                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s", array(bigintval($userid)), __FUNCTION__, __LINE__);
1627
1628                 // Update mediadata as well
1629                 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1630                         // Update database
1631                         updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1632                 } // END - if
1633
1634                 // Now, when we have all his points adds them do the jackpot!
1635                 if (isExtensionActive('jackpot')) addPointsToJackpot($data['points']);
1636         } // END - if
1637
1638         // Free the result
1639         SQL_FREERESULT($result);
1640
1641         // Delete category selections as well...
1642         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1643                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1644
1645         // Remove from rallye if found
1646         // @TODO Rewrite this to a filter
1647         if (isExtensionActive('rallye')) {
1648                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1649                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1650         } // END - if
1651
1652         // Add reason and translate points
1653         $data['text']   = $reason;
1654         $data['points'] = translateComma($data['points']);
1655
1656         // Now a mail to the user and that's all...
1657         $message = loadEmailTemplate('del-user', $data, $userid);
1658         sendEmail($userid, getMessage('ADMIN_DEL_ACCOUNT'), $message);
1659
1660         // Ok, delete the account!
1661         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1662 }
1663
1664 // Generates meta description for given module and 'what' value
1665 function generateMetaDescriptionCode ($module, $what) {
1666         // Exclude admin and member's area
1667         if (($module != 'admin') && ($module != 'login')) {
1668                 // Construct dynamic description
1669                 $DESCR = '{?MAIN_TITLE?} '.trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', $what);
1670
1671                 // Output it directly
1672                 outputHtml('<meta name="description" content="' . $DESCR . '" />');
1673         } // END - if
1674
1675         // Remove depth
1676         unset($GLOBALS['ref_level']);
1677 }
1678
1679 // Gets the matching what name from module
1680 function getWhatFromModule ($modCheck) {
1681         // Is the request element set?
1682         if (isGetRequestElementSet('what')) {
1683                 // Then return this!
1684                 return getRequestElement('what');
1685         } // END - if
1686
1687         // Default is empty
1688         $what = '';
1689
1690         //* DEBUG: */ print(__LINE__.'!'.$modCheck."!<br />");
1691         switch ($modCheck) {
1692                 case 'admin':
1693                         $what = 'overview';
1694                         break;
1695
1696                 case 'login':
1697                 case 'index':
1698                         // Is ext-sql_patches installed and newer than 0.0.5?
1699                         if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1700                                 // Use it from config
1701                                 $what = getConfig('index_home');
1702                         } else {
1703                                 // Use default 'welcome'
1704                                 $what = 'welcome';
1705                         }
1706                         break;
1707
1708                 default:
1709                         $what = '';
1710                         break;
1711         } // END - switch
1712
1713         // Return what value
1714         return $what;
1715 }
1716
1717 // Subtract points from database and mediadata cache
1718 function subtractPoints ($subject, $userid, $points) {
1719         // Add points to used points
1720         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `used_points`=`used_points`+%s WHERE `userid`=%s LIMIT 1",
1721                 array($points, bigintval($userid)), __FUNCTION__, __LINE__);
1722
1723         // Prepare filter data
1724         $filterData = array(
1725                 'subject' => $subject,
1726                 'userid'  => $userid,
1727                 'points'  => $points,
1728                 'mode'    => 'sub'
1729         );
1730
1731         // Insert booking record
1732         runFilterChain('sub_points', $filterData);
1733 }
1734
1735 // "Getter" for total available receivers
1736 function getTotalReceivers ($mode='normal') {
1737         // Query database
1738         $result_all = SQL_QUERY("SELECT
1739         `userid`
1740 FROM
1741         `{?_MYSQL_PREFIX?}_user_data`
1742 WHERE
1743         `status`='CONFIRMED' AND `receive_mails` > 0 ".runFilterChain('exclude_users', $mode),
1744         __FUNCTION__, __LINE__);
1745
1746         // Get num rows
1747         $numRows = SQL_NUMROWS($result_all);
1748
1749         // Free result
1750         SQL_FREERESULT($result_all);
1751
1752         // Return value
1753         return $numRows;
1754 }
1755
1756 // Returns HTML code with an option list of all categories
1757 function generateCategoryOptionsList ($mode) {
1758         // Prepare WHERE statement
1759         $whereStatement = " WHERE `visible`='Y'";
1760         if (isAdmin()) $whereStatement = '';
1761
1762         // Initialize array...
1763         $CATS = array(
1764                 'id'   => array(),
1765                 'name' => array(),
1766                 'userids' => array()
1767         );
1768
1769         // Get categories
1770         $result = SQL_QUERY("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`".$whereStatement." ORDER BY `sort` ASC",
1771                 __FUNCTION__, __LINE__);
1772
1773         // Do we have entries?
1774         if (SQL_NUMROWS($result) > 0) {
1775                 // ... and begin loading stuff
1776                 while ($content = SQL_FETCHARRAY($result)) {
1777                         // Transfer some data
1778                         $CATS['id'][]   = $content['id'];
1779                         $CATS['name'][] = $content['cat'];
1780
1781                         // Check which users are in this category
1782                         $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s ORDER BY `userid` ASC",
1783                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1784
1785                         // Init count
1786                         $userid_cnt = '0';
1787
1788                         // Start adding all
1789                         while ($data = SQL_FETCHARRAY($result_userids)) {
1790                                 // Add user count
1791                                 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED' AND `receive_mails` > 0");
1792                         } // END - while
1793
1794                         // Free memory
1795                         SQL_FREERESULT($result_userids);
1796
1797                         // Add counter
1798                         $CATS['userids'][] = $userid_cnt;
1799                 } // END - while
1800
1801                 // Free memory
1802                 SQL_FREERESULT($result);
1803
1804                 // Generate options
1805                 $OUT = '';
1806                 foreach ($CATS['id'] as $key => $value) {
1807                         if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1808                         $OUT .= '      <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1809                 } // END - foreach
1810         } else {
1811                 // No cateogries are defined yet
1812                 $OUT = '<option class="member_failed">{--MEMBER_NO_CATS--}</option>';
1813         }
1814
1815         // Return HTML code
1816         return $OUT;
1817 }
1818
1819 // Add bonus mail to queue
1820 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $cat, $mode='normal', $receiver=0) {
1821         // Is admin or bonus extension there?
1822         if (!isAdmin()) {
1823                 // Abort here
1824                 return false;
1825         } elseif (!isExtensionActive('bonus')) {
1826                 // Abort here
1827                 return false;
1828         }
1829
1830         // Calculcate target sent
1831         $target = countSelection(explode(';', $receiverList));
1832
1833         // Receiver is zero?
1834         if ($receiver == '0') {
1835                 // Then auto-fix it
1836                 $receiver = $target;
1837         } // END - if
1838
1839         // HTML extension active?
1840         if (isExtensionActive('html_mail')) {
1841                 // No HTML by default
1842                 $HTML = 'N';
1843
1844                 // HTML mode?
1845                 if ($mode == 'html') $HTML = 'Y';
1846
1847                 // Add HTML mail
1848                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1849 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`, `html_msg`)
1850 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s','%s')",
1851                 array(
1852                         $subject,
1853                         $text,
1854                         $receiverList,
1855                         $points,
1856                         $seconds,
1857                         $url,
1858                         $cat,
1859                         $target,
1860                         bigintval($receiver),
1861                         $HTML
1862                 ), __FUNCTION__, __LINE__);
1863         } else {
1864                 // Add regular mail
1865                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1866 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`)
1867 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s')",
1868                 array(
1869                         $subject,
1870                         $text,
1871                         $receiverList,
1872                         $points,
1873                         $seconds,
1874                         $url,
1875                         $cat,
1876                         $target,
1877                         bigintval($receiver),
1878                 ), __FUNCTION__, __LINE__);
1879         }
1880 }
1881
1882 // Generate a receiver list for given category and maximum receivers
1883 function generateReceiverList ($cat, $receiver, $mode = '') {
1884         // Init variables
1885         $CAT_TABS     = '';
1886         $CAT_WHERE    = '';
1887         $receiverList = '';
1888         $result       = false;
1889
1890         // Secure data
1891         $cat      = bigintval($cat);
1892         $receiver = bigintval($receiver);
1893
1894         // Is the receiver zero and mode set?
1895         if (($receiver == '0') && (!empty($mode))) {
1896                 // Auto-fix receiver maximum
1897                 $receiver = getTotalReceivers($mode);
1898         } // END - if
1899
1900         // Category given?
1901         if ($cat > 0) {
1902                 // Select category
1903                 $CAT_TABS  = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.userid=c.userid";
1904                 $CAT_WHERE = sprintf(" AND c.cat_id=%s", $cat);
1905         } // END - if
1906
1907         // Exclude users in holiday?
1908         if (getExtensionVersion('holiday') >= '0.1.3') {
1909                 // Add something for the holiday extension
1910                 $CAT_WHERE .= " AND d.`holiday_active`='N'";
1911         } // END - if
1912
1913         if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1914                 // Only include HTML receivers
1915                 $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",
1916                         array(
1917                                 $receiver
1918                         ), __FUNCTION__, __LINE__);
1919         } else {
1920                 // Include all
1921                 $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",
1922                         array(
1923                                 $receiver
1924                         ), __FUNCTION__, __LINE__);
1925         }
1926
1927         // Entries found?
1928         if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1929                 // Load all entries
1930                 while ($content = SQL_FETCHARRAY($result)) {
1931                         // Add receiver when not empty
1932                         if (!empty($content['userid'])) $receiverList .= $content['userid'] . ';';
1933                 } // END - while
1934
1935                 // Free memory
1936                 SQL_FREERESULT($result);
1937
1938                 // Remove trailing semicolon
1939                 $receiverList = substr($receiverList, 0, -1);
1940         } // END - if
1941
1942         // Return list
1943         return $receiverList;
1944 }
1945
1946 // Get timestamp for given stats type and data
1947 function getTimestampFromUserStats ($type, $data, $userid = '0') {
1948         // Default timestamp is zero
1949         $data['inserted'] = '0';
1950
1951         // User id set?
1952         if ((isMemberIdSet()) && ($userid == '0')) {
1953                 $userid = getMemberId();
1954         } // END - if
1955
1956         // Is the extension installed and updated?
1957         if ((!isExtensionActive('sql_patches')) || (isExtensionOlder('sql_patches', '0.5.6'))) {
1958                 // Return zero here
1959                 return $data['inserted'];
1960         } // END - if
1961
1962         // Try to find the entry
1963         $result = SQL_QUERY_ESC("SELECT
1964         UNIX_TIMESTAMP(`inserted`) AS inserted
1965 FROM
1966         `{?_MYSQL_PREFIX?}_user_stats_data`
1967 WHERE
1968         `userid`=%s AND
1969         `stats_type`='%s' AND
1970         `stats_data`='%s'
1971 LIMIT 1",
1972                 array(
1973                         bigintval($userid),
1974                         $type,
1975                         $data
1976                 ), __FUNCTION__, __LINE__);
1977
1978         // Is the entry there?
1979         if (SQL_NUMROWS($result) == 1) {
1980                 // Get this stamp
1981                 $data = SQL_FETCHARRAY($result);
1982         } // END - if
1983
1984         // Free result
1985         SQL_FREERESULT($result);
1986
1987         // Return stamp
1988         return $data['inserted'];
1989 }
1990
1991 // Inserts user stats
1992 function insertUserStatsRecord ($userid, $type, $data) {
1993         // Is the extension installed and updated?
1994         if ((!isExtensionActive('sql_patches')) || (isExtensionOlder('sql_patches', '0.5.6'))) {
1995                 // Return zero here
1996                 return false;
1997         } // END - if
1998
1999         // Does it exist?
2000         if ((!getTimestampFromUserStats($type, $data, $userid)) && (!is_array($data))) {
2001                 // Then insert it!
2002                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_stats_data` (`userid`,`stats_type`,`stats_data`) VALUES (%s,'%s','%s')",
2003                         array(bigintval($userid), $type, $data), __FUNCTION__, __LINE__);
2004         } elseif (is_array($data)) {
2005                 // Invalid data!
2006                 logDebugMessage(__FUNCTION__, __LINE__, "userid={$userid},type={$type},data={".gettype($data).": Invalid statistics data type!");
2007         }
2008 }
2009
2010 // "Getter" for array for user refs and points in given level
2011 function getUserReferalPoints ($userid, $level) {
2012         //* DEBUG: */ print("----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n");
2013         // Default is no refs and no nickname
2014         $add = '';
2015         $refs = array();
2016
2017         // Do we have nickname extension installed?
2018         if (isExtensionActive('nickname')) {
2019                 $add = ', ud.nickname';
2020         } // END - if
2021
2022         // Get refs from database
2023         $result = SQL_QUERY_ESC("SELECT
2024         ur.id, ur.refid, ud.status, ud.last_online, ud.mails_confirmed, ud.emails_received".$add."
2025 FROM
2026         `{?_MYSQL_PREFIX?}_user_refs` AS ur
2027 LEFT JOIN
2028         `{?_MYSQL_PREFIX?}_user_points` AS up
2029 ON
2030         ur.refid=up.userid AND ur.level=0
2031 LEFT JOIN
2032         `{?_MYSQL_PREFIX?}_user_data` AS ud
2033 ON
2034         ur.refid=ud.userid
2035 WHERE
2036         ur.userid=%s AND ur.level=%s
2037 ORDER BY
2038         ur.refid ASC",
2039                 array(
2040                         bigintval($userid),
2041                         bigintval($level)
2042                 ), __FUNCTION__, __LINE__);
2043
2044         // Are there some entries?
2045         if (SQL_NUMROWS($result) > 0) {
2046                 // Fetch all entries
2047                 while ($row = SQL_FETCHARRAY($result)) {
2048                         // Get total points of this user
2049                         $row['points'] = countSumTotalData($row['refid'], 'user_points', 'points') - countSumTotalData($row['refid'], 'user_data', 'used_points');
2050
2051                         // Get unconfirmed mails
2052                         $row['unconfirmed']  = countSumTotalData($row['refid'], 'user_links', 'id', 'userid', true);
2053
2054                         // Init clickrate with zero
2055                         $row['clickrate'] = '0';
2056
2057                         // Is at least one mail received?
2058                         if ($row['emails_received'] > 0) {
2059                                 // Calculate clickrate
2060                                 $row['clickrate'] = ($row['mails_confirmed'] / $row['emails_received'] * 100);
2061                         } // END - if
2062
2063                         // Activity is 'active' by default because if autopurge is not installed
2064                         $row['activity'] = getMessage('MEMBER_ACTIVITY_ACTIVE');
2065
2066                         // Is autopurge installed and the user inactive?
2067                         if ((isExtensionActive('autopurge')) && ((time() - getConfig('ap_inactive_since')) >= $row['last_online']))  {
2068                                 // Inactive user!
2069                                 $row['activity'] = getMessage('MEMBER_ACTIVITY_INACTIVE');
2070                         } // END - if
2071
2072                         // Remove some entries
2073                         unset($row['mails_confirmed']);
2074                         unset($row['emails_received']);
2075                         unset($row['last_online']);
2076
2077                         // Add row
2078                         $refs[$row['id']] = $row;
2079                 } // END - while
2080         } // END - if
2081
2082         // Free result
2083         SQL_FREERESULT($result);
2084
2085         // Return result
2086         //* DEBUG: */ print("</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />");
2087         return $refs;
2088 }
2089
2090 // Recuce the amount of received emails for the receipients for given email
2091 function reduceRecipientReceivedMails ($column, $id, $count) {
2092         // Search for mail in database
2093         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
2094                 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
2095
2096         // Are there entries?
2097         if (SQL_NUMROWS($result) > 0) {
2098                 // Now load all userids for one big query!
2099                 $userids = array();
2100                 while ($data = SQL_FETCHARRAY($result)) {
2101                         // By default we want to reduce and have no mails found
2102                         $num = 0;
2103
2104                         // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
2105                         // @TODO Rewrite this to a filter
2106                         if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
2107                                 // User email
2108                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
2109                         } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
2110                                 // Bonus mail
2111                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
2112                         }
2113
2114                         // Reduce this users total received emails?
2115                         if ($num === 0) $userids[$data['userid']] = $data['userid'];
2116                 } // END - while
2117
2118                 if (count($userids) > 0) {
2119                         // Now update all user accounts
2120                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
2121                                 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
2122                 } else {
2123                         // Nothing deleted
2124                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MAIL_NOTHING_DELETED', $id));
2125                 }
2126         } // END - if
2127
2128         // Free result
2129         SQL_FREERESULT($result);
2130 }
2131
2132 // Creates a new task
2133 function createNewTask ($subject, $notes, $taskType, $userid = '0', $adminId = '0', $strip = true) {
2134         // Insert the task data into the database
2135         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())",
2136                 array(
2137                         $adminId,
2138                         $userid,
2139                         $taskType,
2140                         $subject,
2141                         $notes
2142                 ), __FUNCTION__, __LINE__, true, $strip);
2143 }
2144
2145 // Updates last module / online time
2146 // @TODO Fix inconsistency between last_module and getWhat()
2147 function updateLastActivity($userid) {
2148         // Run the update query
2149         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_module`='%s', `last_online`=UNIX_TIMESTAMP(), `REMOTE_ADDR`='%s' WHERE `userid`=%s LIMIT 1",
2150                 array(
2151                         getWhat(),
2152                         detectRemoteAddr(),
2153                         bigintval($userid)
2154                 ), __FUNCTION__, __LINE__);
2155 }
2156
2157 // [EOF]
2158 ?>