]> git.mxchange.org Git - mailer.git/blob - inc/mysql-manager.php
Code moved around (referal-functions.php added)
[mailer.git] / inc / mysql-manager.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/26/2003 *
4  * ===================                          Last change: 11/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-manager.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : All database-related functions                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle datenbank-relevanten Funktionen             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // "Getter" for module description
44 // @TODO Can we cache this?
45 function getTitleFromMenu ($mode, $what, $column = 'what', $ADD='') {
46         // Fix empty 'what'
47         if (empty($what)) {
48                 $what = getIndexHome();
49         } // END - if
50
51         // Default is not found
52         $data['title'] = '??? (' . $what . ')';
53
54         // Look for title
55         $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `%s`='%s'" . $ADD . " LIMIT 1",
56                 array(
57                         $mode,
58                         $column,
59                         $what
60                 ), __FUNCTION__, __LINE__);
61
62         // Is there an entry?
63         if (SQL_NUMROWS($result) == 1) {
64                 // Fetch the title
65                 $data = SQL_FETCHARRAY($result);
66         } // END - if
67
68         // Free result
69         SQL_FREERESULT($result);
70
71         // Return it
72         return $data['title'];
73 }
74
75 // Add link into output stream (or return it) for 'You Are Here' navigation
76 function addYouAreHereLink ($accessLevel, $FQFN, $return = false) {
77         // Use only filename of the FQFN...
78         $file = basename($FQFN);
79
80         // Init variables
81         $LINK_ADD = '';
82         $OUT = '';
83         $ADD = '';
84         $prefix = '';
85
86         // First we have to do some analysis...
87         if (substr($file, 0, 7) == 'action-') {
88                 // This is an action file!
89                 $type = 'action';
90                 $search = substr($file, 7);
91
92                 // Get access level from it
93                 $modCheck = getModuleFromFileName($file, $accessLevel);
94
95                 // Add what
96                 $ADD = " AND (`what`='' OR `what` IS NULL)";
97         } elseif (substr($file, 0, 5) == 'what-') {
98                 // This is a 'what file'!
99                 $type = 'what';
100                 $search = substr($file, 5);
101
102                 // Get access level from it
103                 $modCheck = getModuleFromFileName($file, $accessLevel);
104
105                 // Do we have admin? Then display all
106                 $ADD = " AND `visible`='Y' AND `locked`='N'";
107                 if (isAdmin()) {
108                         // Display all!
109                         $ADD = '';
110                 } // END - if
111
112                 $dummy = substr($search, 0, -4);
113                 $ADD .= sprintf(" AND `action`='%s'", getActionFromModuleWhat($accessLevel, $dummy));
114         } elseif ($accessLevel == 'sponsor') {
115                 // Sponsor menu
116                 $type     = 'what';
117                 $search   = $file;
118                 $modCheck = getModule();
119                 $ADD      = '';
120         } else {
121                 // Other
122                 $type     = 'menu';
123                 $search   = $file;
124                 $modCheck = getModule();
125                 $ADD      = '';
126         }
127
128         // Begin the navigation line
129         if (!isset($GLOBALS['nav_depth'])) {
130                 // Init nav_depth
131                 $GLOBALS['nav_depth'] = '0';
132
133                 // Run the pre-filter chain
134                 $ret = runFilterChain('pre_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
135
136                 // Add pre-content
137                 $prefix = $ret['content'];
138
139                 $prefix .= '<div class="you_are_here">{--YOU_ARE_HERE--}&nbsp;<strong><a class="you_are_here" href="{%url=modules.php?module=' . getModule() . $LINK_ADD . '%}">Home</a></strong>';
140         } elseif ($return === false) {
141                 // Count depth
142                 $GLOBALS['nav_depth']++;
143         }
144
145         $prefix .= '&nbsp;-&gt;&nbsp;';
146
147         // We need to remove .php and the end
148         if (substr($search, -4, 4) == '.php') {
149                 // Remove the .php
150                 $search = substr($search, 0, -4);
151         } // END - if
152
153         if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
154                 // Output HTML code
155                 $OUT = $prefix . '<strong><a class="you_are_here" href="{%url=modules.php?module=' . $modCheck . '&amp;' . $type . '=' . $search . $LINK_ADD . '%}">' . getTitleFromMenu($accessLevel, $search, $type, $ADD) . '</a></strong>';
156
157                 // Can we close the you-are-here navigation?
158                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type . 'getWhat()=' . getWhat());
159                 if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (getWhat() == 'overview')))) {
160                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'type=' . $type);
161                         // Add closing div and br-tag
162                         $OUT .= '</div>';
163                         $GLOBALS['nav_depth'] = '0';
164
165                         // Run the post-filter chain
166                         $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ''));
167
168                         // Add additional content
169                         $OUT .= $ret['content'];
170                 } // END - if
171         } // END - if
172
173         // Return or output HTML code?
174         if ($return === true) {
175                 // Return HTML code
176                 return $OUT;
177         } else {
178                 // Output HTML code here
179                 outputHtml($OUT);
180         }
181 }
182
183 // Adds a menu (mode = guest/member/admin/sponsor) to output
184 function addMenu ($mode, $action, $what) {
185         // Init some variables
186         $main_cnt = '0';
187         $ADD = '';
188
189         // is the menu action valid?
190         if (!isMenuActionValid($mode, $action, $what, true)) {
191                 return getCode('MENU_NOT_VALID');
192         } // END - if
193
194         // Non-admin shall not see all menus
195         if (!isAdmin()) {
196                 $ADD = " AND `visible`='Y' AND `locked`='N'";
197         } // END - if
198
199         // Load SQL data and add the menu to the output stream...
200         $result_main = SQL_QUERY_ESC("SELECT
201         `title`, `what`, `action`, `visible`, `locked`
202 FROM
203         `{?_MYSQL_PREFIX?}_%s_menu`
204 WHERE
205         (`what`='' OR `what` IS NULL)
206         ".$ADD."
207 ORDER BY
208         `sort` ASC",
209                 array($mode), __FUNCTION__, __LINE__);
210
211         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
212         if (!SQL_HASZERONUMS($result_main)) {
213                 // There are menus available, so we simply display them... :)
214                 $GLOBALS['rows'] = '';
215                 while ($content = SQL_FETCHARRAY($result_main)) {
216                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
217                         // Disable the block-mode
218                         enableBlockMode(false);
219
220                         // Load menu header template
221                         $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
222
223                         // Sub menu
224                         $result_sub = SQL_QUERY_ESC("SELECT
225         `title` AS `sub_title`,
226         `what` AS `sub_what`,
227         `visible` AS `sub_visible`,
228         `locked` AS `sub_locked`
229 FROM
230         `{?_MYSQL_PREFIX?}_%s_menu`
231 WHERE
232         `action`='%s' AND
233         `what` != '' AND
234         `what` IS NOT NULL
235         ".$ADD."
236 ORDER BY
237         `sort` ASC",
238                                 array($mode, $content['action']), __FUNCTION__, __LINE__);
239
240                         // Do we have some entries?
241                         if (!SQL_HASZERONUMS($result_sub)) {
242                                 // Init counter
243                                 $count = '0';
244
245                                 // Load all sub menus
246                                 while ($content2 = SQL_FETCHARRAY($result_sub)) {
247                                         // Merge both arrays in one
248                                         $content = merge_array($content, $content2);
249
250                                         // Init content
251                                         $OUT = '';
252
253                                         // Full file name for checking menu
254                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'sub_what=' . $content['sub_what']);
255                                         $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
256                                         if (isIncludeReadable($inc)) {
257                                                 // Mark currently selected menu - open
258                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
259                                                         $OUT = '<strong>';
260                                                 } // END - if
261
262                                                 // Navigation link
263                                                 $OUT .= '<a name="menu" class="menu_blur" href="{%url=modules.php?module=' . getModule() . '&amp;what=' . $content['sub_what'] . '%}" target="_self">';
264                                         } else {
265                                                 // Not found - open
266                                                 $OUT .= '<em style="cursor:help" class="notice" title="{%message,ADMIN_MENU_WHAT_404_TITLE=' . $content['sub_what'] . '%}">';
267                                         }
268
269                                         // Menu title
270                                         $OUT .= '{?menu_blur_spacer?}' . $content['sub_title'];
271
272                                         if (isIncludeReadable($inc)) {
273                                                 $OUT .= '</a>';
274
275                                                 // Mark currently selected menu - close
276                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
277                                                         $OUT .= '</strong>';
278                                                 } // END - if
279                                         } else {
280                                                 // Not found - close
281                                                 $OUT .= '</em>';
282                                         }
283
284                                         // Cunt it up
285                                         $count++;
286
287                                         // Rewrite array
288                                         $content = array(
289                                                 'menu'    => $OUT,
290                                                 'what'    => $content['sub_what'],
291                                                 'visible' => $content['sub_visible'],
292                                                 'locked'  => $content['locked'],
293                                         );
294
295                                         // Add regular menu row or bottom row?
296                                         if ($count < SQL_NUMROWS($result_sub)) {
297                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
298                                         } else {
299                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
300                                         }
301                                 } // END - while
302                         } else {
303                                 // This is a menu block... ;-)
304                                 enableBlockMode();
305
306                                 // Load menu block
307                                 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
308                                 if (isFileReadable($INC)) {
309                                         // Load include file
310                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
311                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
312                                         loadInclude($INC);
313                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
314                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
315                                 }
316                                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',action=' . $content['action'] . ',getWhat()=' . getWhat());
317                         }
318
319                         // Free result
320                         SQL_FREERESULT($result_sub);
321
322                         // Count one up
323                         $main_cnt++;
324
325                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
326                         if (SQL_NUMROWS($result_main) > $main_cnt) {
327                                 // Add seperator
328                                 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
329
330                                 // Should we display adverts in this menu?
331                                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
332                                         // Display advert template
333                                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
334
335                                         // Add seperator again
336                                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
337                                 } // END - if
338                         } // END - if
339                 } // END - while
340
341                 // Free memory
342                 SQL_FREERESULT($result_main);
343
344                 // Should we display adverts in this menu?
345                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
346                         // Add seperator again
347                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
348
349                         // Display advert template
350                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
351                 } // END - if
352
353                 // Prepare data
354                 $content = array(
355                         'rows' => $GLOBALS['rows'],
356                         'mode' => $mode
357                 );
358
359                 // Load main template
360                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'main_cnt=' . $main_cnt . ',getWhat()=' . getWhat());
361                 loadTemplate('menu_table', false, $content);
362         } // END - if
363 }
364
365 // Checks wether the current user is a member
366 function isMember () {
367         // By default no member
368         $ret = false;
369
370         // Fix missing 'last_online' array, damn stupid code :(((
371         // @TODO Try to rewrite this to one or more functions
372         if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) {
373                 $GLOBALS['last_online'] = array();
374         } // END - if
375
376         // Is the cache entry there?
377         if (isset($GLOBALS[__FUNCTION__])) {
378                 // Then return it
379                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'CACHED! (' . intval($GLOBALS[__FUNCTION__]) . ')');
380                 return $GLOBALS[__FUNCTION__];
381         } elseif ((!isSessionVariableSet('userid')) || (!isSessionVariableSet('u_hash'))) {
382                 // Destroy any existing user session data
383                 destroyMemberSession();
384                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'No member set in cookie/session.');
385
386                 // Abort further processing
387                 return false;
388         }
389
390         // Get userid secured from session
391         setMemberId(getSession('userid'));
392
393         // ... and set it as currently handled user id
394         setCurrentUserId(getMemberId());
395
396         // Init user data array
397         initUserData();
398
399         // Fix "deleted" cookies first
400         fixDeletedCookies(array('userid', 'u_hash'));
401
402         // Are cookies set and can the member data be loaded?
403         if ((isMemberIdSet()) && (isSessionVariableSet('u_hash')) && (fetchUserData(getMemberId()) === true)) {
404                 // Validate password by created the difference of it and the secret key
405                 $valPass = encodeHashForCookie(getUserData('password'));
406
407                 // So did we now have valid data and an unlocked user?
408                 if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
409                         // Transfer last module and online time
410                         $GLOBALS['last_online']['module'] = getUserData('last_module');
411                         $GLOBALS['last_online']['online'] = getUserData('last_online');
412
413                         // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
414                         $ret = true;
415                 } // END - if
416         } // END - if
417
418         // Is $ret still false?
419         if ($ret === false) {
420                 // Yes, so destroy the session
421                 destroyMemberSession();
422         } // END - if
423
424         // Cache status
425         $GLOBALS[__FUNCTION__] = $ret;
426
427         // Return status
428         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . intval($ret));
429         return $ret;
430 }
431
432 // Fetch user data for given user id
433 function fetchUserData ($value, $column = 'userid') {
434         // Extension ext-user must be there at any case
435         if (!isExtensionActive('user')) {
436                 // Absent ext-user is really not good
437                 return false;
438         } // END - if
439
440         // If we should look for userid secure&set it here
441         if (substr($column, -2, 2) == 'id') {
442                 // Secure userid
443                 $value = bigintval($value);
444
445                 // Set it here
446                 setCurrentUserId($value);
447
448                 // Don't look for invalid userids...
449                 if (!isValidUserId($value)) {
450                         // Invalid, so abort here
451                         debug_report_bug(__FUNCTION__, __LINE__, 'User id ' . $value . ' is invalid.');
452                 } elseif (isUserDataValid()) {
453                         // Use cache, so it is fine
454                         return true;
455                 }
456         } elseif (isUserDataValid())  {
457                 // Using cache is fine
458                 return true;
459         }
460
461         // By default none was found
462         $found = false;
463
464         // Extra statements
465         $ADD = '';
466         if (isExtensionInstalledAndNewer('user', '0.3.5')) {
467                 $ADD = ', UNIX_TIMESTAMP(`lock_timestamp`) AS `lock_timestamp`';
468         } // END - if
469
470         // Query for the user
471         $result = SQL_QUERY_ESC("SELECT *".$ADD." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
472                 array($column, $value), __FUNCTION__, __LINE__);
473
474         // Do we have a record?
475         if (SQL_NUMROWS($result) == 1) {
476                 // Load data from cookies
477                 $data = SQL_FETCHARRAY($result);
478
479                 // Set the userid for later use
480                 setCurrentUserId($data['userid']);
481
482                 // And cache the data for this userid
483                 $GLOBALS['user_data'][getCurrentUserId()] = $data;
484
485                 // Rewrite 'last_failure' if found and ext-user has version >= 0.3.7
486                 if ((isExtensionInstalledAndNewer('user', '0.3.7')) && (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure']))) {
487                         // Backup the raw one and zero it
488                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
489                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = null;
490
491                         // Is it not zero?
492                         if (!is_null($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'])) {
493                                 // Seperate data/time
494                                 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
495
496                                 // Seperate data and time again
497                                 $array['date'] = explode('-', $array[0]);
498                                 $array['time'] = explode(':', $array[1]);
499
500                                 // Now pass it to mktime()
501                                 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
502                                         $array['time'][0],
503                                         $array['time'][1],
504                                         $array['time'][2],
505                                         $array['date'][1],
506                                         $array['date'][2],
507                                         $array['date'][0]
508                                 );
509                         } // END - if
510                 } // END - if
511
512                 // Found, but valid?
513                 $found = isUserDataValid();
514         } // END - if
515
516         // Free memory
517         SQL_FREERESULT($result);
518
519         // Return result
520         return $found;
521 }
522
523 // This patched function will reduce many SELECT queries for the specified or current admin login
524 function isAdmin () {
525         // No admin in installation phase!
526         if ((isInstallationPhase()) || (!isAdminRegistered())) {
527                 return false;
528         } // END - if
529
530         // Init variables
531         $ret = false;
532         $adminId = '0';
533         $passCookie = '';
534         $valPass = '';
535         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $adminId);
536
537         // If admin login is not given take current from cookies...
538         if ((isSessionVariableSet('admin_id')) && (isSessionVariableSet('admin_md5'))) {
539                 // Get admin login and password from session/cookies
540                 $adminId    = getCurrentAdminId();
541                 $passCookie = getAdminMd5();
542         } // END - if
543         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mainId=' . $adminId . 'passCookie=' . $passCookie);
544
545         // Abort if admin id is zero
546         if ($adminId == '0') {
547                 return false;
548         } // END - if
549
550         // Do we have cache?
551         if (!isset($GLOBALS[__FUNCTION__][$adminId])) {
552                 // Init it with failed
553                 $GLOBALS[__FUNCTION__][$adminId] = false;
554
555                 // Search in array for entry
556                 if (isset($GLOBALS['admin_hash'])) {
557                         // Use cached string
558                         $valPass = $GLOBALS['admin_hash'];
559                 } elseif ((!empty($passCookie)) && (isAdminHashSet($adminId) === true) && (!empty($adminId))) {
560                         // Login data is valid or not?
561                         $valPass = encodeHashForCookie(getAdminHash($adminId));
562
563                         // Cache it away
564                         $GLOBALS['admin_hash'] = $valPass;
565
566                         // Count cache hits
567                         incrementStatsEntry('cache_hits');
568                 } elseif ((!empty($adminId)) && ((!isExtensionActive('cache')) || (isAdminHashSet($adminId) === false))) {
569                         // Get admin hash and hash it
570                         $valPass = encodeHashForCookie(getAdminHash($adminId));
571
572                         // Cache it away
573                         $GLOBALS['admin_hash'] = $valPass;
574                 }
575
576                 if (!empty($valPass)) {
577                         // Check if password is valid
578                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '(' . $valPass . '==' . $passCookie . ')='.intval($valPass == $passCookie));
579                         $GLOBALS[__FUNCTION__][$adminId] = (($GLOBALS['admin_hash'] == $passCookie) || ((strlen($GLOBALS['admin_hash']) == 32) && ($GLOBALS['admin_hash'] == md5($passCookie))) || (($GLOBALS['admin_hash'] == '*FAILED*') && (!isExtensionActive('cache'))));
580                 } // END - if
581         } // END - if
582
583         // Return result of comparision
584         return $GLOBALS[__FUNCTION__][$adminId];
585 }
586
587 // Generates a list of "max receiveable emails per day"
588 function addMaxReceiveList ($mode, $default = '', $return = false) {
589         $OUT = '';
590         $result = false;
591
592         switch ($mode) {
593                 case 'guest':
594                         // Guests (in the registration form) are not allowed to select 0 mails per day.
595                         $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value` > 0 ORDER BY `value` ASC',
596                         __FUNCTION__, __LINE__);
597                         break;
598
599                 case 'member':
600                         // Members are allowed to set to zero mails per day (we will change this soon!)
601                         $result = SQL_QUERY('SELECT `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC',
602                         __FUNCTION__, __LINE__);
603                         break;
604
605                 default: // Invalid!
606                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
607                         break;
608         }
609
610         // Some entries are found?
611         if (!SQL_HASZERONUMS($result)) {
612                 $OUT = '';
613                 while ($content = SQL_FETCHARRAY($result)) {
614                         $OUT .= '      <option value="' . $content['value'] . '"';
615                         if (postRequestParameter('max_mails') == $content['value']) $OUT .= ' selected="selected"';
616                         $OUT .= '>' . $content['value'] . ' {--PER_DAY--}';
617                         if (!empty($content['comment'])) $OUT .= '(' . $content['comment'] . ')';
618                         $OUT .= '</option>';
619                 }
620
621                 // Load template
622                 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
623         } else {
624                 // Maybe the admin has to setup some maximum values?
625                 debug_report_bug(__FUNCTION__, __LINE__, 'Nothing is being done here?');
626         }
627
628         // Free result
629         SQL_FREERESULT($result);
630
631         if ($return === true) {
632                 // Return generated HTML code
633                 return $OUT;
634         } else {
635                 // Output directly (default)
636                 outputHtml($OUT);
637         }
638 }
639
640 // Checks wether the given email address is used.
641 function isEmailTaken ($email) {
642         // Replace dot with {DOT}
643         $email = str_replace('.', '{DOT}', $email);
644
645         // Query the database
646         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `email` LIKE '%%%s%%' LIMIT 1",
647                 array($email), __FUNCTION__, __LINE__);
648
649         // Is the email there?
650         $isTaken = (SQL_NUMROWS($result) == 1);
651
652         // Free the result
653         SQL_FREERESULT($result);
654
655         // Return result
656         return $isTaken;
657 }
658
659 // Validate the given menu action
660 function isMenuActionValid ($mode, $action, $what, $updateEntry=false) {
661         // Is the cache entry there and we shall not update?
662         if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
663                 // Count cache hit
664                 incrementStatsEntry('cache_hits');
665
666                 // Then use this cache
667                 return $GLOBALS['action_valid'][$mode][$action][$what];
668         } // END - if
669
670         // By default nothing is valid
671         $ret = false;
672
673         // Look in all menus or only unlocked
674         $add = '';
675         if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
676
677         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'mode=' . $mode . ',action=' . $action . ',what=' . $what);
678         if (($mode != 'admin') && ($updateEntry === true)) {
679                 // Update guest or member menu
680                 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `counter`=`counter`+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
681                         array(
682                                 $mode,
683                                 $action,
684                                 $what
685                         ), __FUNCTION__, __LINE__, false);
686         } elseif (($what != 'overview') && (!empty($what))) {
687                 // Other actions
688                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `what`='%s'".$add." ORDER BY `action` DESC LIMIT 1",
689                         array(
690                                 $mode,
691                                 $action,
692                                 $what
693                         ), __FUNCTION__, __LINE__, false);
694         } else {
695                 // Admin login overview
696                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND (`what`='' OR `what` IS NULL)".$add." ORDER BY `action` DESC LIMIT 1",
697                         array(
698                                 $mode,
699                                 $action
700                         ), __FUNCTION__, __LINE__, false);
701         }
702
703         // Run SQL command
704         $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
705
706         // Should we look for affected rows (only update) or found rows?
707         if ($updateEntry === true) {
708                 // Check updated/affected rows
709                 $ret = (!SQL_HASZEROAFFECTED());
710         } else {
711                 // Check found rows
712                 $ret = (!SQL_HASZERONUMS($result));
713         }
714
715         // Free memory
716         SQL_FREERESULT($result);
717
718         // Set cache entry
719         $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
720
721         // Return result
722         return $ret;
723 }
724
725 // Get action value from mode (admin/guest/member) and what-value
726 function getActionFromModuleWhat ($module, $what) {
727         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'module=' . $module . ',what=' . $what);
728         // Init status
729         $data['action'] = '';
730
731         if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
732                 // sql_patches is missing so choose depending on mode
733                 if (isWhatSet()) {
734                         // Use setted what
735                         $what = getWhat();
736                 } elseif ($module == 'admin') {
737                         // Admin area
738                         $what = 'overview';
739                 } else {
740                         // Everywhere else
741                         $what = 'welcome';
742                 }
743         } elseif ((empty($what)) && ($module != 'admin')) {
744                 // Use configured 'home'
745                 $what = getIndexHome();
746         } // END - if
747
748         if ($module == 'admin') {
749                 // Action value for admin area
750                 if (isGetRequestParameterSet('action')) {
751                         // Use from request!
752                         return getRequestParameter('action');
753                 } elseif (isActionSet()) {
754                         // Get it directly from URL
755                         return getAction();
756                 } elseif (($what == 'overview') || (!isWhatSet())) {
757                         // Default value for admin area
758                         $data['action'] = 'login';
759                 }
760         } elseif (isActionSet()) {
761                 // Get it directly from URL
762                 return getAction();
763         }
764         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, ' ret=' . $data['action']);
765
766         // Does the module have a menu?
767         if (ifModuleHasMenu($module)) {
768                 // Rewriting modules to menu
769                 $module = mapModuleToTable($module);
770
771                 // Guest and member menu is 'main' as the default
772                 if (empty($data['action'])) $data['action'] = 'main';
773
774                 // Load from database
775                 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
776                         array($module, $what), __FUNCTION__, __LINE__);
777                 if (SQL_NUMROWS($result) == 1) {
778                         // Load action value and pray that this one is the right you want... ;-)
779                         $data = SQL_FETCHARRAY($result);
780                 } // END - if
781
782                 // Free memory
783                 SQL_FREERESULT($result);
784         } elseif ((!isExtensionInstalled('sql_patches')) && ($module != 'admin') && ($module != 'unknown')) {
785                 // No sql_patches installed, but maybe we need to register an admin?
786                 if (isAdminRegistered()) {
787                         // Redirect to admin area
788                         redirectToUrl('admin.php');
789                 } // END - if
790         }
791
792         // Return action value
793         return $data['action'];
794 }
795
796 // Get category name back
797 function getCategory ($cid) {
798         // Default is not found
799         $data['cat'] = '{--_CATEGORY_404--}';
800
801         // Is the category id set?
802         if ($cid == '0') {
803                 // No category
804                 $data['cat'] = '{--_CATEGORY_NONE--}';
805         } elseif ($cid > 0) {
806                 // Lookup the category in database
807                 $result = SQL_QUERY_ESC("SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
808                         array(bigintval($cid)), __FUNCTION__, __LINE__);
809                 if (SQL_NUMROWS($result) == 1) {
810                         // Category found... :-)
811                         $data = SQL_FETCHARRAY($result);
812                 } // END - if
813
814                 // Free result
815                 SQL_FREERESULT($result);
816         } // END - if
817
818         // Return result
819         return $data['cat'];
820 }
821
822 // Get a string of "mail title" and price back
823 function getPaymentTitlePrice ($pid, $full=false) {
824         // Default is not found
825         $ret = '{--_PAYMENT_404--}';
826
827         // Load payment data
828         $result = SQL_QUERY_ESC("SELECT `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
829                 array(bigintval($pid)), __FUNCTION__, __LINE__);
830
831         // Do we have an entry?
832         if (SQL_NUMROWS($result) == 1) {
833                 // Payment type found... :-)
834                 $data = SQL_FETCHARRAY($result);
835
836                 // Only title or also including price?
837                 if ($full === false) {
838                         $ret = $data['mail_title'];
839                 } else {
840                         $ret = $data['mail_title'] . ' / {%pipe,translateComma=' . $data['price'] . '%} {?POINTS?}';
841                 }
842         } // END - if
843
844         // Free result
845         SQL_FREERESULT($result);
846
847         // Return result
848         return $ret;
849 }
850
851 // Get (basicly) the price of given payment id
852 function getPaymentPoints ($pid, $lookFor = 'price') {
853         // Default value...
854         $data[$lookFor] = -1;
855
856         // Search for it in database
857         $result = SQL_QUERY_ESC("SELECT `%s` FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
858                 array($lookFor, $pid), __FUNCTION__, __LINE__);
859
860         // Is the entry there?
861         if (SQL_NUMROWS($result) == 1) {
862                 // Payment type found... :-)
863                 $data = SQL_FETCHARRAY($result);
864         } // END - if
865
866         // Free result
867         SQL_FREERESULT($result);
868
869         // Return value
870         return $data[$lookFor];
871 }
872
873 // Remove a receiver's id from $receivers and add a link for him to confirm
874 function removeReceiver (&$receivers, $key, $userid, $pool_id, $stats_id = 0, $isBonusMail = false) {
875         // Default is not removed
876         $ret = 'failed';
877
878         // Is the userid valid?
879         if (isValidUserId($userid)) {
880                 // Remove entry from array
881                 unset($receivers[$key]);
882
883                 // Is there already a line for this user available?
884                 if ($stats_id > 0) {
885                         // Default is 'normal' mail
886                         $type = 'NORMAL';
887                         $rowName = 'stats_id';
888
889                         // Only when we got a real stats id continue searching for the entry
890                         if ($isBonusMail === true) {
891                                 $type = 'BONUS';
892                                 $rowName = 'bonus_id';
893                         } // END - if
894
895                         // Try to look the entry up
896                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE %s='%s' AND `userid`=%s AND link_type='%s' LIMIT 1",
897                                 array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
898
899                         // Was it *not* found?
900                         if (SQL_HASZERONUMS($result)) {
901                                 // So we add one!
902                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`, `userid`, `link_type`) VALUES ('%s','%s','%s')",
903                                         array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
904
905                                 // Update 'mails_sent' if sql_patches is updated
906                                 if (isExtensionInstalledAndNewer('sql_patches', '0.7.4')) {
907                                         // Update the pool
908                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_pool` SET `mails_sent`=`mails_sent`+1 WHERE `id`=%s LIMIT 1",
909                                                 array(bigintval($pool_id)), __FUNCTION__, __LINE__);
910                                 } // END - if
911                                 $ret = 'done';
912                         } else {
913                                 // Already found
914                                 $ret = 'already';
915                         }
916
917                         // Free memory
918                         SQL_FREERESULT($result);
919                 } // END - if
920         } // END - if
921
922         // Return status for sending routine
923         return $ret;
924 }
925
926 // Calculate sum (default) or count records of given criteria
927 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '', $mode = '=') {
928         // Init count/sum
929         $data['res'] = '0';
930
931         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',tableName=' . $tableName . ',lookFor=' . $lookFor . ',whereStatement=' . $whereStatement . ',add=' . $add);
932         if ((empty($search)) && ($search != '0')) {
933                 // Count or sum whole table?
934                 if ($countRows === true) {
935                         // Count whole table
936                         $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
937                                 array(
938                                         $lookFor,
939                                         $tableName
940                                 ), __FUNCTION__, __LINE__);
941                 } else {
942                         // Sum whole table
943                         $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`".$add,
944                                 array(
945                                         $lookFor,
946                                         $tableName
947                                 ), __FUNCTION__, __LINE__);
948                 }
949         } elseif (($countRows === true) || ($lookFor == 'userid')) {
950                 // Count rows
951                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'COUNT!');
952                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'".$add,
953                         array(
954                                 $lookFor,
955                                 $tableName,
956                                 $whereStatement,
957                                 $mode,
958                                 $search
959                         ), __FUNCTION__, __LINE__);
960         } else {
961                 // Add all rows
962                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SUM!');
963                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`%s'%s'".$add,
964                         array(
965                                 $lookFor,
966                                 $tableName,
967                                 $whereStatement,
968                                 $mode,
969                                 $search
970                         ), __FUNCTION__, __LINE__);
971         }
972
973         // Load row
974         $data = SQL_FETCHARRAY($result);
975
976         // Free result
977         SQL_FREERESULT($result);
978
979         // Fix empty values
980         if ((empty($data['res'])) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid')) {
981                 // Float number
982                 $data['res'] = '0.00000';
983         } elseif (''.$data['res'].'' == '') {
984                 // Fix empty result
985                 $data['res'] = '0';
986         }
987
988         // Return value
989         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'res=' . $data['res']);
990         return $data['res'];
991 }
992
993 // Sends out mail to all administrators. This function is no longer obsolete
994 // because we need it when there is no ext-admins installed
995 function sendAdminEmails ($subj, $message) {
996         // Load all admin email addresses
997         $result = SQL_QUERY('SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC', __FUNCTION__, __LINE__);
998         while ($content = SQL_FETCHARRAY($result)) {
999                 // Send the email out
1000                 sendEmail($content['email'], $subj, $message);
1001         } // END - if
1002
1003         // Free result
1004         SQL_FREERESULT($result);
1005
1006         // Really simple... ;-)
1007 }
1008
1009 // Get id number from administrator's login name
1010 function getAdminId ($adminLogin) {
1011         // By default no admin is found
1012         $data['id'] = -1;
1013
1014         // Check cache
1015         if (isset($GLOBALS['cache_array']['admin']['admin_id'][$adminLogin])) {
1016                 // Use it if found to save SQL queries
1017                 $data['id'] = $GLOBALS['cache_array']['admin']['admin_id'][$adminLogin];
1018
1019                 // Update cache hits
1020                 incrementStatsEntry('cache_hits');
1021         } elseif (!isExtensionActive('cache')) {
1022                 // Load from database
1023                 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1024                         array($adminLogin), __FUNCTION__, __LINE__);
1025
1026                 // Do we have an entry?
1027                 if (SQL_NUMROWS($result) == 1) {
1028                         // Get it
1029                         $data = SQL_FETCHARRAY($result);
1030                 } // END - if
1031
1032                 // Free result
1033                 SQL_FREERESULT($result);
1034         }
1035
1036         // Return the id
1037         return $data['id'];
1038 }
1039
1040 // "Getter" for current admin id
1041 function getCurrentAdminId () {
1042         // Log debug message
1043         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'called!');
1044
1045         // Do we have cache?
1046         if (!isset($GLOBALS['current_admin_id'])) {
1047                 // Get the admin login from session
1048                 $adminId = getSession('admin_id');
1049
1050                 // Remember in cache securely
1051                 setCurrentAdminId(bigintval($adminId));
1052         } // END - if
1053
1054         // Return it
1055         return $GLOBALS['current_admin_id'];
1056 }
1057
1058 // Setter for current admin id
1059 function setCurrentAdminId ($currentAdminId) {
1060         // Set it secured
1061         $GLOBALS['current_admin_id'] = bigintval($currentAdminId);
1062 }
1063
1064 // Get password hash from administrator's login name
1065 function getAdminHash ($adminId) {
1066         // By default an invalid hash is returned
1067         $data['password'] = -1;
1068
1069         if (isAdminHashSet($adminId)) {
1070                 // Check cache
1071                 $data['password'] = $GLOBALS['cache_array']['admin']['password'][$adminId];
1072
1073                 // Update cache hits
1074                 incrementStatsEntry('cache_hits');
1075         } elseif (!isExtensionActive('cache')) {
1076                 // Load from database
1077                 $result = SQL_QUERY_ESC("SELECT `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1078                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1079
1080                 // Do we have an entry?
1081                 if (SQL_NUMROWS($result) == 1) {
1082                         // Fetch data
1083                         $data = SQL_FETCHARRAY($result);
1084
1085                         // Set cache
1086                         setAdminHash($adminId, $data['password']);
1087                 } // END - if
1088
1089                 // Free result
1090                 SQL_FREERESULT($result);
1091         }
1092
1093         // Return password hash
1094         return $data['password'];
1095 }
1096
1097 // "Getter" for admin login
1098 function getAdminLogin ($adminId) {
1099         // By default a non-existent login is returned (other functions react on this!)
1100         $data['login'] = '***';
1101
1102         if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1103                 // Get cache
1104                 $data['login'] = $GLOBALS['cache_array']['admin']['login'][$adminId];
1105
1106                 // Update cache hits
1107                 incrementStatsEntry('cache_hits');
1108         } elseif (!isExtensionActive('cache')) {
1109                 // Load from database
1110                 $result = SQL_QUERY_ESC("SELECT `login` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1111                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1112
1113                 // Entry found?
1114                 if (SQL_NUMROWS($result) == 1) {
1115                         // Fetch data
1116                         $data = SQL_FETCHARRAY($result);
1117
1118                         // Set cache
1119                         $GLOBALS['cache_array']['admin']['login'][$adminId] = $data['login'];
1120                 } // END - if
1121
1122                 // Free memory
1123                 SQL_FREERESULT($result);
1124         }
1125
1126         // Return the result
1127         return $data['login'];
1128 }
1129
1130 // Get email address of admin id
1131 function getAdminEmail ($adminId) {
1132         // By default an invalid emails is returned
1133         $data['email'] = '***';
1134
1135         if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1136                 // Get cache
1137                 $data['email'] = $GLOBALS['cache_array']['admin']['email'][$adminId];
1138
1139                 // Update cache hits
1140                 incrementStatsEntry('cache_hits');
1141         } elseif (!isExtensionActive('cache')) {
1142                 // Load from database
1143                 $result_admin_id = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1144                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1145
1146                 // Entry found?
1147                 if (SQL_NUMROWS($result_admin_id) == 1) {
1148                         // Get data
1149                         $data = SQL_FETCHARRAY($result_admin_id);
1150
1151                         // Set cache
1152                         $GLOBALS['cache_array']['admin']['email'][$adminId] = $data['email'];
1153                 } // END - if
1154
1155                 // Free result
1156                 SQL_FREERESULT($result_admin_id);
1157         }
1158
1159         // Return email
1160         return $data['email'];
1161 }
1162
1163 // Get default ACL  of admin id
1164 function getAdminDefaultAcl ($adminId) {
1165         // By default an invalid ACL value is returned
1166         $data['default_acl'] = 'NO-ACL';
1167
1168         // Is sql_patches there and was it found in cache?
1169         if (!isExtensionActive('sql_patches')) {
1170                 // Not found, which is bad, so we need to allow all
1171                 $data['default_acl'] =  'allow';
1172         } elseif (isset($GLOBALS['cache_array']['admin']['def_acl'][$adminId])) {
1173                 // Use cache
1174                 $data['default_acl'] = $GLOBALS['cache_array']['admin']['def_acl'][$adminId];
1175
1176                 // Update cache hits
1177                 incrementStatsEntry('cache_hits');
1178         } elseif (!isExtensionActive('cache')) {
1179                 // Load from database
1180                 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1181                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1182
1183                 // Do we have an entry?
1184                 if (SQL_NUMROWS($result_admin_id) == 1) {
1185                         // Fetch data
1186                         $data = SQL_FETCHARRAY($result_admin_id);
1187
1188                         // Set cache
1189                         $GLOBALS['cache_array']['admin']['def_acl'][$adminId] = $data['default_acl'];
1190                 }
1191
1192                 // Free result
1193                 SQL_FREERESULT($result_admin_id);
1194         }
1195
1196         // Return default ACL
1197         return $data['default_acl'];
1198 }
1199
1200 // Generates an option list from various parameters
1201 function generateOptionList ($table, $id, $name, $default = '', $special = '', $where = '', $disabled = array(), $callback = '') {
1202         $ret = '';
1203         if ($table == '/ARRAY/') {
1204                 // Selection from array
1205                 if ((is_array($id)) && (is_array($name)) && ((count($id)) == (count($name)) || (!empty($callback)))) {
1206                         // Both are arrays
1207                         foreach ($id as $idx => $value) {
1208                                 $ret .= '<option value="' . $value . '"';
1209                                 if ($default == $value) {
1210                                         // Selected by default
1211                                         $ret .= ' selected="selected"';
1212                                 } elseif (isset($disabled[$value])) {
1213                                         // Disabled!
1214                                         $ret .= ' disabled="disabled"';
1215                                 }
1216
1217                                 // Is the call-back function set?
1218                                 if (!empty($callback)) {
1219                                         // Call it
1220                                         $name[$idx] = call_user_func_array($callback, array($id[$idx]));
1221                                 } // END - if
1222
1223                                 // Finish option tag
1224                                 $ret .= '>' . $name[$idx] . '</option>';
1225                         } // END - foreach
1226                 } else {
1227                         // Problem in request
1228                         debug_report_bug(__FUNCTION__, __LINE__, 'Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name) . ',callback=' . $callback);
1229                 }
1230         } else {
1231                 // Data from database
1232                 $SPEC = ', `' . $id . '`';
1233                 if (!empty($special)) {
1234                         $SPEC = ', `' . $special . '`';
1235                 } // END - if
1236
1237                 // Query the database
1238                 $result = SQL_QUERY_ESC("SELECT `%s`, `%s`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$where." ORDER BY `%s` ASC",
1239                         array(
1240                                 $id,
1241                                 $name,
1242                                 $table,
1243                                 $name
1244                         ), __FUNCTION__, __LINE__);
1245
1246                 // Do we have rows?
1247                 if (!SQL_HASZERONUMS($result)) {
1248                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1249                         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
1250                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1251                                 if (empty($special)) $add = '';
1252                                 $ret .= '<option value="' . $value . '"';
1253                                 if ($default == $value) {
1254                                         // Selected by default
1255                                         $ret .= ' selected="selected"';
1256                                 } elseif (isset($disabled[$value])) {
1257                                         // Disabled!
1258                                         $ret .= ' disabled="disabled"';
1259                                 }
1260
1261                                 // Add it, if set
1262                                 if (!empty($add)) {
1263                                         $add = ' ('.$add.')';
1264                                 } // END - if
1265
1266                                 // Is the call-back function set?
1267                                 if (!empty($callback)) {
1268                                         // Call it
1269                                         $title = call_user_func_array($callback, array($title));
1270                                 } // END - if
1271
1272                                 // Finish option list
1273                                 $ret .= '>' . $title . $add . '</option>';
1274                         } // END - while
1275                 } else {
1276                         // No data found
1277                         $ret = '<option value="x">{--SELECT_NONE--}</option>';
1278                 }
1279
1280                 // Free memory
1281                 SQL_FREERESULT($result);
1282         }
1283
1284         // Return - hopefully - the requested data
1285         return $ret;
1286 }
1287
1288 // Deletes a user account with given reason
1289 function deleteUserAccount ($userid, $reason) {
1290         // Init points
1291         $data['points'] = '0';
1292
1293         // Search for the points and user data
1294         $result = SQL_QUERY_ESC("SELECT
1295         (SUM(p.`points`) - d.`used_points`) AS `points`
1296 FROM
1297         `{?_MYSQL_PREFIX?}_user_points` AS p
1298 LEFT JOIN
1299         `{?_MYSQL_PREFIX?}_user_data` AS d
1300 ON
1301         p.`userid`=d.`userid`
1302 WHERE
1303         p.`userid`=%s
1304 LIMIT 1",
1305                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1306
1307         // Do we have an entry?
1308         if (SQL_NUMROWS($result) == 1) {
1309                 // Save his points to add them to the jackpot
1310                 $data = SQL_FETCHARRAY($result);
1311
1312                 // Delete points entries as well
1313                 // @TODO Rewrite these lines to a filter
1314                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s",
1315                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1316
1317                 // Update mediadata as well
1318                 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1319                         // Update database
1320                         updateMediadataEntry(array('total_points'), 'sub', $data['points']);
1321                 } // END - if
1322
1323                 // Now, when we have all his points adds them do the jackpot!
1324                 if (isExtensionActive('jackpot')) {
1325                         addPointsToJackpot($data['points']);
1326                 } // END - if
1327         } // END - if
1328
1329         // Free the result
1330         SQL_FREERESULT($result);
1331
1332         // Delete category selections as well...
1333         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1334                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1335
1336         // Remove from rallye if found
1337         // @TODO Rewrite this to a filter
1338         if (isExtensionActive('rallye')) {
1339                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1340                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1341         } // END - if
1342
1343         // Add reason and translate points
1344         $data['text']   = $reason;
1345
1346         // Now a mail to the user and that's all...
1347         $message = loadEmailTemplate('member_user_deleted', $data, $userid);
1348         sendEmail($userid, '{--ADMIN_DELETE_ACCOUNT--}', $message);
1349
1350         // Ok, delete the account!
1351         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1352 }
1353
1354 // Gets the matching what name from module
1355 function getWhatFromModule ($modCheck) {
1356         // Is the request element set?
1357         if (isGetRequestParameterSet('what')) {
1358                 // Then return this!
1359                 return getRequestParameter('what');
1360         } // END - if
1361
1362         // Default is empty
1363         $what = '';
1364
1365         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'modCheck=' . $modCheck);
1366         switch ($modCheck) {
1367                 case 'admin':
1368                         $what = 'overview';
1369                         break;
1370
1371                 case 'login':
1372                 case 'index':
1373                         // Is ext-sql_patches installed and newer than 0.0.5?
1374                         if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1375                                 // Use it from config
1376                                 $what = getIndexHome();
1377                         } else {
1378                                 // Use default 'welcome'
1379                                 $what = 'welcome';
1380                         }
1381                         break;
1382
1383                 default:
1384                         $what = '';
1385                         break;
1386         } // END - switch
1387
1388         // Return what value
1389         return $what;
1390 }
1391
1392 // Returns HTML code with an option list of all categories
1393 function generateCategoryOptionsList ($mode) {
1394         // Prepare WHERE statement
1395         $whereStatement = " WHERE `visible`='Y'";
1396         if (isAdmin()) $whereStatement = '';
1397
1398         // Initialize array...
1399         $CATS = array(
1400                 'id'   => array(),
1401                 'name' => array(),
1402                 'userids' => array()
1403         );
1404
1405         // Get categories
1406         $result = SQL_QUERY('SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`' . $whereStatement . ' ORDER BY `sort` ASC',
1407                 __FUNCTION__, __LINE__);
1408
1409         // Do we have entries?
1410         if (!SQL_HASZERONUMS($result)) {
1411                 // ... and begin loading stuff
1412                 while ($content = SQL_FETCHARRAY($result)) {
1413                         // Transfer some data
1414                         $CATS['id'][]   = $content['id'];
1415                         $CATS['name'][] = $content['cat'];
1416
1417                         // Check which users are in this category
1418                         $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s ORDER BY `userid` ASC",
1419                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1420
1421                         // Init count
1422                         $userid_cnt = '0';
1423
1424                         // Start adding all
1425                         while ($data = SQL_FETCHARRAY($result_userids)) {
1426                                 // Add user count
1427                                 $userid_cnt += countSumTotalData($data['userid'], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED' AND `receive_mails` > 0");
1428                         } // END - while
1429
1430                         // Free memory
1431                         SQL_FREERESULT($result_userids);
1432
1433                         // Add counter
1434                         $CATS['userids'][] = $userid_cnt;
1435                 } // END - while
1436
1437                 // Free memory
1438                 SQL_FREERESULT($result);
1439
1440                 // Generate options
1441                 $OUT = '';
1442                 foreach ($CATS['id'] as $key => $value) {
1443                         if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1444                         $OUT .= '      <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1445                 } // END - foreach
1446         } else {
1447                 // No cateogries are defined yet
1448                 $OUT = '<option class="notice">{--MEMBER_NO_CATEGORIES--}</option>';
1449         }
1450
1451         // Return HTML code
1452         return $OUT;
1453 }
1454
1455 // Add bonus mail to queue
1456 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $categoryId, $mode='normal', $receiver=0) {
1457         // Is admin or bonus extension there?
1458         if (!isAdmin()) {
1459                 // Abort here
1460                 return false;
1461         } elseif (!isExtensionActive('bonus')) {
1462                 // Abort here
1463                 return false;
1464         }
1465
1466         // Calculcate target sent
1467         $target = countSelection(explode(';', $receiverList));
1468
1469         // Receiver is zero?
1470         if ($receiver == '0') {
1471                 // Then auto-fix it
1472                 $receiver = $target;
1473         } // END - if
1474
1475         // HTML extension active?
1476         if (isExtensionActive('html_mail')) {
1477                 // Determine if we have HTML mode active
1478                 $HTML = convertBooleanToYesNo($mode == 'html');
1479
1480                 // Add HTML mail
1481                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1482 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`, `html_msg`)
1483 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s,'%s')",
1484                 array(
1485                         $subject,
1486                         $text,
1487                         $receiverList,
1488                         $points,
1489                         bigintval($seconds),
1490                         $url,
1491                         bigintval($categoryId),
1492                         $target,
1493                         bigintval($receiver),
1494                         $HTML
1495                 ), __FUNCTION__, __LINE__);
1496         } else {
1497                 // Add regular mail
1498                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1499 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`)
1500 VALUES ('%s','%s','%s',%s,%s,'NEW', UNIX_TIMESTAMP(),'%s',%s,%s,%s)",
1501                 array(
1502                         $subject,
1503                         $text,
1504                         $receiverList,
1505                         $points,
1506                         bigintval($seconds),
1507                         $url,
1508                         bigintval($categoryId),
1509                         $target,
1510                         bigintval($receiver),
1511                 ), __FUNCTION__, __LINE__);
1512         }
1513 }
1514
1515 // Generate a receiver list for given category and maximum receivers
1516 function generateReceiverList ($categoryId, $receiver, $mode = '') {
1517         // Init variables
1518         $CAT_TABS     = '';
1519         $CAT_WHERE    = '';
1520         $receiverList = '';
1521         $result       = false;
1522
1523         // Secure data
1524         $categoryId = bigintval($categoryId);
1525         $receiver   = bigintval($receiver);
1526
1527         // Is the receiver zero and mode set?
1528         if (($receiver == '0') && (!empty($mode))) {
1529                 // Auto-fix receiver maximum
1530                 $receiver = getTotalReceivers($mode);
1531         } // END - if
1532
1533         // Category given?
1534         if ($categoryId > 0) {
1535                 // Select category
1536                 $CAT_TABS  = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.`userid`=c.`userid`";
1537                 $CAT_WHERE = sprintf(" AND c.`cat_id`=%s", $categoryId);
1538         } // END - if
1539
1540         // Exclude users in holiday?
1541         if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
1542                 // Add something for the holiday extension
1543                 $CAT_WHERE .= " AND d.`holiday_active`='N'";
1544         } // END - if
1545
1546         if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
1547                 // Only include HTML receivers
1548                 $result = SQL_QUERY_ESC("SELECT d.`userid` FROM `{?_MYSQL_PREFIX?}_user_data` AS d ".$CAT_TABS." WHERE d.`status`='CONFIRMED' AND d.`html`='Y'".$CAT_WHERE." ORDER BY d.`{?order_select?}` {?order_mode?} LIMIT %s",
1549                         array(
1550                                 $receiver
1551                         ), __FUNCTION__, __LINE__);
1552         } else {
1553                 // Include all
1554                 $result = SQL_QUERY_ESC("SELECT d.`userid` FROM `{?_MYSQL_PREFIX?}_user_data` AS d ".$CAT_TABS." WHERE d.`status`='CONFIRMED'".$CAT_WHERE." ORDER BY d.`{?order_select?}` {?order_mode?} LIMIT %s",
1555                         array(
1556                                 $receiver
1557                         ), __FUNCTION__, __LINE__);
1558         }
1559
1560         // Entries found?
1561         if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
1562                 // Load all entries
1563                 while ($content = SQL_FETCHARRAY($result)) {
1564                         // Add receiver when not empty
1565                         if (!empty($content['userid'])) {
1566                                 $receiverList .= $content['userid'] . ';';
1567                         } // END - if
1568                 } // END - while
1569
1570                 // Free memory
1571                 SQL_FREERESULT($result);
1572
1573                 // Remove trailing semicolon
1574                 $receiverList = substr($receiverList, 0, -1);
1575         } // END - if
1576
1577         // Return list
1578         return $receiverList;
1579 }
1580
1581 // Recuce the amount of received emails for the receipients for given email
1582 function reduceRecipientReceivedMails ($column, $id, $count) {
1583         // Search for mail in database
1584         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
1585                 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
1586
1587         // Are there entries?
1588         if (!SQL_HASZERONUMS($result)) {
1589                 // Now load all userids for one big query!
1590                 $userids = array();
1591                 while ($data = SQL_FETCHARRAY($result)) {
1592                         // By default we want to reduce and have no mails found
1593                         $num = 0;
1594
1595                         // We must now look if he has already confirmed this mail, so might sound double, but it may resolve problems
1596                         // @TODO Rewrite this to a filter
1597                         if ((isset($data['stats_id'])) && ($data['stats_id'] > 0)) {
1598                                 // User email
1599                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='mailid' AND `stats_data`=%s", bigintval($data['stats_id'])));
1600                         } elseif ((isset($data['bonus_id'])) && ($data['bonus_id'] > 0)) {
1601                                 // Bonus mail
1602                                 $num = countSumTotalData($data['userid'], 'user_stats_data', 'id', 'userid', true, sprintf(" AND `stats_type`='bonusid' AND `stats_data`=%s", bigintval($data['bonus_id'])));
1603                         }
1604
1605                         // Reduce this users total received emails?
1606                         if ($num === 0) $userids[$data['userid']] = $data['userid'];
1607                 } // END - while
1608
1609                 if (count($userids) > 0) {
1610                         // Now update all user accounts
1611                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
1612                                 array(implode(',', $userids), count($userids)), __FUNCTION__, __LINE__);
1613                 } else {
1614                         // Nothing deleted
1615                         displayMessage('{%message,ADMIN_MAIL_NOTHING_DELETED=' . $id . '%}');
1616                 }
1617         } // END - if
1618
1619         // Free result
1620         SQL_FREERESULT($result);
1621 }
1622
1623 // Creates a new task
1624 function createNewTask ($subject, $notes, $taskType, $userid = '0', $adminId = '0', $strip = true) {
1625         // Insert the task data into the database
1626         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_task_system` (`assigned_admin`, `userid`, `status`, `task_type`, `subject`, `text`, `task_created`) VALUES (%s,%s,'NEW','%s','%s','%s', UNIX_TIMESTAMP())",
1627                 array(
1628                         $adminId,
1629                         $userid,
1630                         $taskType,
1631                         $subject,
1632                         $notes
1633                 ), __FUNCTION__, __LINE__, true, $strip);
1634
1635         // Return insert id which is the task id
1636         return SQL_INSERTID();
1637 }
1638
1639 // Updates last module / online time
1640 // @TODO Fix inconsistency between last_module and getWhat()
1641 function updateLastActivity($userid) {
1642         // Run the update query
1643         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_module`='%s', `last_online`=UNIX_TIMESTAMP(), `REMOTE_ADDR`='%s' WHERE `userid`=%s LIMIT 1",
1644                 array(
1645                         getWhat(),
1646                         detectRemoteAddr(),
1647                         bigintval($userid)
1648                 ), __FUNCTION__, __LINE__);
1649 }
1650
1651 // [EOF]
1652 ?>