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