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