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