bce95acae4a5d8f8e7212e4026b2adc5d1e423f1
[mailer.git] / inc / modules / admin / admin-inc.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/31/2003 *
4  * ===================                          Last change: 11/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : admin-inc.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Administrative related functions                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Fuer die Administration benoetigte 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, 2010 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 // Register an administrator account
44 function addAdminAccount ($adminLogin, $passHash, $adminEmail) {
45         // Login does already exist
46         $ret = 'already';
47
48         // Lookup the admin
49         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
50                 array($adminLogin), __FUNCTION__, __LINE__);
51
52         // Is the entry there?
53         if (SQL_HASZERONUMS($result)) {
54                 // Ok, let's create the admin login
55                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admins` (`login`, `password`, `email`) VALUES ('%s', '%s', '%s')",
56                         array(
57                                 $adminLogin,
58                                 $passHash,
59                                 $adminEmail
60                         ), __FUNCTION__, __LINE__);
61
62                 // All done
63                 $ret = 'done';
64         } // END - if
65
66         // Free memory
67         SQL_FREERESULT($result);
68
69         // Return result
70         return $ret;
71 }
72
73 // This function will be executed when the admin is not logged in and has submitted his login data
74 function ifAdminLoginDataIsValid ($adminLogin, $adminPassword) {
75         // First of all, no admin login is found
76         $ret = '404';
77
78         // Get admin id from login
79         $adminId = getAdminId($adminLogin);
80
81         // Continue only with found admin ids
82         if ($adminId > 0) {
83                 // Then we need to lookup the login name by getting the admin hash
84                 $adminHash = getAdminHash($adminId);
85
86                 // If this is fine, we can continue
87                 if ($adminHash != '-1') {
88                         // Get admin id and set it as current
89                         setCurrentAdminId($adminId);
90
91                         // Now, we need to encode the password in the same way the one is encoded in database
92                         $testHash = generateHash($adminPassword, $adminHash);
93
94                         // If they both match, the login data is valid
95                         if ($testHash == $adminHash) {
96                                 // All fine
97                                 $ret = 'done';
98                         } else {
99                                 // Set status
100                                 $ret = 'password';
101                         }
102                 } // END - if
103         } // END - if
104
105         // Prepare data array
106         $data = array(
107                 'id'         => $adminId,
108                 'login'      => $adminLogin,
109                 'plain_pass' => $adminPassword,
110                 'pass_hash'  => $adminHash
111         );
112
113         // Run a special filter
114         runFilterChain('do_admin_login_' . $ret, $data);
115
116         // Return status
117         return $ret;
118 }
119
120 // Only be executed on cookie checking
121 function ifAdminCookiesAreValid ($adminLogin, $passHash) {
122         // First of all, no admin login is found
123         $ret = '404';
124
125         // Then we need to lookup the login name by getting the admin hash
126         $adminHash = getAdminHash($adminLogin);
127
128         // If this is fine, we can continue
129         if ($adminHash != '-1') {
130                 // Now, we need to encode the password in the same way the one is encoded in database
131                 $testHash = encodeHashForCookie($adminHash);
132                 //* DEBUG: */ debugOutput('adminLogin=' . $adminLogin . ',passHash='.$passHash.',adminHash='.$adminHash.',testHash='.$testHash);
133
134                 // If they both match, the login data is valid
135                 if ($testHash == $passHash) {
136                         // All fine
137                         $ret = 'done';
138                 } else {
139                         // Set status
140                         $ret = 'password';
141                 }
142         } // END - if
143
144         // Return status
145         //* DEBUG: */ debugOutput('ret='.$ret);
146         return $ret;
147 }
148
149 // Do an admin action
150 function doAdminAction () {
151         // Get default what
152         $what = getWhat();
153
154         //* DEBUG: */ debugOutput(__LINE__.'*'.$what.'/'.getModule().'/'.getAction().'/'.getWhat().'*');
155
156         // Remove any spaces from variable
157         if (empty($what)) {
158                 // Default admin action is the overview page
159                 $what = 'overview';
160         } else {
161                 // Secure it
162                 $what = secureString($what);
163         }
164
165         // Get action value
166         $action = getActionFromModuleWhat(getModule(), $what);
167
168         // Load welcome template
169         if (isExtensionActive('admins')) {
170                 // @TODO This and the next getCurrentAdminId() call might be moved into the templates?
171                 $content['welcome'] = loadTemplate('admin_welcome_admins', true, getCurrentAdminId());
172         } else {
173                 $content['welcome'] = loadTemplate('admin_welcome', true, getCurrentAdminId());
174         }
175
176         // Load header, footer, render menu
177         $content['header'] = loadTemplate('admin_header' , true, $content);
178         $content['footer'] = loadTemplate('admin_footer' , true, $content);
179         $content['menu']   = addAdminMenu($action, $what, true);
180
181         // Tableset header
182         loadTemplate('admin_main_header', false, $content);
183
184         // Check if action/what pair is valid
185         $result_action = SQL_QUERY_ESC("SELECT
186         `id`
187 FROM
188         `{?_MYSQL_PREFIX?}_admin_menu`
189 WHERE
190         `action`='%s' AND
191         (
192                 (
193                         `what`='%s' AND `what` != 'overview'
194                 ) OR (
195                         (
196                                 `what`='' OR `what` IS NULL
197                         ) AND (
198                                 '%s'='overview'
199                         )
200                 )
201         )
202 LIMIT 1",
203                 array(
204                         $action,
205                         $what,
206                         $what
207                 ), __FUNCTION__, __LINE__);
208
209         // Do we have an entry?
210         if (SQL_NUMROWS($result_action) == 1) {
211                 // Is valid but does the inlcude file exists?
212                 $inc = sprintf("inc/modules/admin/action-%s.php", $action);
213                 if ((isIncludeReadable($inc)) && (isMenuActionValid('admin', $action, $what)) && ($GLOBALS['acl_allow'] === true)) {
214                         // Ok, we finally load the admin action module
215                         loadInclude($inc);
216                 } elseif ($GLOBALS['acl_allow'] === false) {
217                         // Access denied
218                         loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACCESS_DENIED', $what));
219                 } else {
220                         // Include file not found! :-(
221                         loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACTION_404', $action));
222                 }
223         } else {
224                 // Invalid action/what pair found!
225                 loadTemplate('admin_menu_failed', false, getMaskedMessage('ADMIN_ACTION_INVALID', $action . '/' . $what));
226         }
227
228         // Free memory
229         SQL_FREERESULT($result_action);
230
231         // Tableset footer
232         loadTemplate('admin_main_footer', false, $content);
233 }
234
235 // Adds an admin menu
236 function addAdminMenu ($action, $what, $return=false) {
237         // Init variables
238         $SUB = false;
239         $OUT = '';
240
241         // Menu descriptions
242         $GLOBALS['menu']['description'] = array();
243         $GLOBALS['menu']['title'] = array();
244
245         // Build main menu
246         $result_main = SQL_QUERY("SELECT
247         `action`, `title`, `descr`
248 FROM
249         `{?_MYSQL_PREFIX?}_admin_menu`
250 WHERE
251         (`what`='' OR `what` IS NULL)
252 ORDER BY
253         `sort` ASC,
254         `id` DESC", __FUNCTION__, __LINE__);
255
256         // Do we have entries?
257         if (!SQL_HASZERONUMS($result_main)) {
258                 $OUT .= '<ul class="admin_menu_main">';
259                 // @TODO Rewrite this to $content = SQL_FETCHARRAY()
260                 while (list($menu, $title, $descr) = SQL_FETCHROW($result_main)) {
261                         if (isExtensionInstalledAndNewer('admins', '0.2.0')) {
262                                 $ACL = adminsCheckAdminAcl($menu, '');
263                         } else {
264                                 // @TODO ACL is 'allow'... hmmm
265                                 $ACL = true;
266                         }
267
268                         // Filename
269                         $inc = sprintf("inc/modules/admin/action-%s.php", $menu);
270
271                         // Is the file readable?
272                         $readable = isIncludeReadable($inc);
273
274                         if ($ACL === true) {
275                                 if ($SUB === false) {
276                                         // Insert compiled menu title and description
277                                         $GLOBALS['menu']['title'][$menu]      = $title;
278                                         $GLOBALS['menu']['description'][$menu] = $descr;
279                                 }
280                                 $OUT .= '<li class="admin_menu">
281 <div class="nobr"><strong>&middot;</strong>&nbsp;';
282
283                                 if ($readable === true) {
284                                         if (($menu == $action) && (empty($what))) {
285                                                 $OUT .= '<strong>';
286                                         } else {
287                                                 $OUT .= '[<a href="{%url=modules.php?module=admin&amp;action=' . $menu . '%}">';
288                                         }
289                                 } else {
290                                         $OUT .= '<em style="cursor:help" class="notice" title="{%message,MENU_ACTION_404=' . $menu . '}">';
291                                 }
292
293                                 $OUT .= $title;
294
295                                 if ($readable === true) {
296                                         if (($menu == $action) && (empty($what))) {
297                                                 $OUT .= '</strong>';
298                                         } else {
299                                                 $OUT .= '</a>]';
300                                         }
301                                 } else {
302                                         $OUT .= '</em>';
303                                 }
304
305                                 $OUT .= '</div>
306 </li>';
307
308                                 // Check for menu entries
309                                 $result_what = SQL_QUERY_ESC("SELECT
310         `what`, `title`, `descr`
311 FROM
312         `{?_MYSQL_PREFIX?}_admin_menu`
313 WHERE
314         `action`='%s' AND
315         `what` != '' AND
316         `what` IS NOT NULL
317 ORDER BY
318         `sort` ASC,
319         `id` DESC",
320                                         array($menu), __FUNCTION__, __LINE__);
321
322                                 // Remember the count for later checks
323                                 setAdminMenuHasEntries($menu, ((!SQL_HASZERONUMS($result_what)) && ($action == $menu)));
324
325                                 // Do we have entries?
326                                 if ((ifAdminMenuHasEntries($menu)) && (!SQL_HASZERONUMS($result_what))) {
327                                         $GLOBALS['menu']['description'] = array();
328                                         $GLOBALS['menu']['title'] = array(); $SUB = true;
329                                         $OUT .= '<li class="admin_menu_sub"><ul class="admin_menu_sub">';
330                                         // @TODO Rewrite this to $content = SQL_FETCHARRAY()
331                                         while (list($what_sub, $title_what, $desc_what) = SQL_FETCHROW($result_what)) {
332                                                 // Check for access level
333                                                 if (isExtensionInstalledAndNewer('admins', '0.2.0')) {
334                                                         $ACL = adminsCheckAdminAcl('', $what_sub);
335                                                 } else {
336                                                         // @TODO ACL is 'allow'... hmmm
337                                                         $ACL = true;
338                                                 }
339
340                                                 // Filename
341                                                 $inc = sprintf("inc/modules/admin/what-%s.php", $what_sub);
342
343                                                 // Is the file readable?
344                                                 $readable = isIncludeReadable($inc);
345
346                                                 // Access allowed?
347                                                 if ($ACL === true) {
348                                                         // Insert compiled title and description
349                                                         $GLOBALS['menu']['title'][$what_sub]      = $title_what;
350                                                         $GLOBALS['menu']['description'][$what_sub] = $desc_what;
351                                                         $OUT .= '<li class="admin_menu">
352 <div class="nobr"><strong>--&gt;</strong>&nbsp;';
353                                                         if ($readable === true) {
354                                                                 if ($what == $what_sub) {
355                                                                         $OUT .= '<strong>';
356                                                                 } else {
357                                                                         $OUT .= '[<a href="{%url=modules.php?module=admin&amp;what=' . $what_sub . '%}">';
358                                                                 }
359                                                         } else {
360                                                                 $OUT .= '<em style="cursor:help" class="notice" title="{%message,MENU_WHAT_404=' . $what_sub . '%}">';
361                                                         }
362
363                                                         $OUT .= $title_what;
364
365                                                         if ($readable === true) {
366                                                                 if ($what == $what_sub) {
367                                                                         $OUT .= '</strong>';
368                                                                 } else {
369                                                                         $OUT .= '</a>]';
370                                                                 }
371                                                         } else {
372                                                                 $OUT .= '</em>';
373                                                         }
374                                                         $OUT .= '</div>
375 </li>';
376                                                 } // END - if
377                                         } // END - while
378
379                                         // Free memory
380                                         SQL_FREERESULT($result_what);
381                                         $OUT .= '</ul>
382 </li>';
383                                 } // END - if
384                         } // END - if
385                 } // END - while
386
387                 // Free memory
388                 SQL_FREERESULT($result_main);
389                 $OUT .= '</ul>';
390         }
391
392         // Is there a cache instance again?
393         // Return or output content?
394         if ($return === true) {
395                 return $OUT;
396         } else {
397                 outputHtml($OUT);
398         }
399 }
400
401 // Create member selection box
402 function addMemberSelectionBox ($def = 0, $add_all = false, $return = false, $none = false, $field = 'userid') {
403         // Output selection form with all confirmed user accounts listed
404         $result = SQL_QUERY("SELECT `userid`, `surname`, `family` FROM `{?_MYSQL_PREFIX?}_user_data` ORDER BY `userid` ASC", __FUNCTION__, __LINE__);
405
406         // Default output
407         $OUT = '';
408
409         // USe this only for adding points (e.g. adding refs really makes no sence ;-) )
410         if ($add_all === true)   $OUT = '      <option value="all">{--ALL_MEMBERS--}</option>';
411          elseif ($none === true) $OUT = '      <option value="0">{--SELECT_NONE--}</option>';
412
413         while ($content = SQL_FETCHARRAY($result)) {
414                 $OUT .= '<option value="' . bigintval($content['userid']) . '"';
415                 if ($def == $content['userid']) $OUT .= ' selected="selected"';
416                 $OUT .= '>' . $content['surname'] . ' ' . $content['family'] . ' (' . bigintval($content['userid']) . ')</option>';
417         } // END - while
418
419         // Free memory
420         SQL_FREERESULT($result);
421
422         if ($return === false) {
423                 // Remeber options in constant
424                 $content['form_selection'] = $OUT;
425                 $content['what']             = getWhat();
426
427                 // Load template
428                 loadTemplate('admin_form_selection_box', false, $content);
429         } else {
430                 // Return content in selection frame
431                 return '<select class="form_select" name="' . handleFieldWithBraces($field) . '" size="1">' . $OUT . '</select>';
432         }
433 }
434
435 // Create a menu selection box for given menu system
436 // @TODO Try to rewrite this to adminAddMenuSelectionBox()
437 // @DEPRECATED
438 function adminMenuSelectionBox_DEPRECATED ($mode, $default = '', $defid = '') {
439         $what = "`what` != ''";
440         if ($mode == 'action') $what = "(`what`='' OR `what` IS NULL) AND `action` !='login'";
441
442         $result = SQL_QUERY_ESC("SELECT `%s` AS `menu`, `title` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$what." ORDER BY `sort` ASC",
443                 array($mode), __FUNCTION__, __LINE__);
444         if (!SQL_HASZERONUMS($result)) {
445                 // Load menu as selection
446                 $OUT = '<select name="' . $mode . '_menu';
447                 if ((!empty($defid)) || ($defid == '0')) $OUT .= '[' . $defid . ']';
448                 $OUT .= '" size="1" class="form_select">
449         <option value="">{--SELECT_NONE--}</option>';
450                 // Load all entries
451                 while ($content = SQL_FETCHARRAY($result)) {
452                         $OUT .= '<option value="' . $content['menu'] . '"';
453                         if ((!empty($default)) && ($default == $content['menu'])) $OUT .= ' selected="selected"';
454                         $OUT .= '>' . $content['title'] . '</option>';
455                 } // END - while
456
457                 // Free memory
458                 SQL_FREERESULT($result);
459
460                 // Add closing select-tag
461                 $OUT .= '</select>';
462         } else {
463                 // No menus???
464                 $OUT = '{--ADMIN_PROBLEM_NO_MENU--}';
465         }
466
467         // Return output
468         return $OUT;
469 }
470
471 // Wrapper for $_POST and adminSaveSettings
472 function adminSaveSettingsFromPostData ($tableName = '_config', $whereStatement = '`config`=0', $translateComma = array(), $alwaysAdd = false, $displayMessage = true) {
473         // Get the array
474         $postData = postRequestArray();
475
476         // Call the lower function
477         adminSaveSettings($postData, $tableName, $whereStatement, $translateComma, $alwaysAdd, $displayMessage);
478 }
479
480 // Save settings to the database
481 function adminSaveSettings (&$postData, $tableName = '_config', $whereStatement = '`config`=0', $translateComma = array(), $alwaysAdd = false, $displayMessage = true) {
482         // Prepare all arrays, variables
483         $tableData = array();
484         $skip = false;
485
486         // Now, walk through all entries and prepare them for saving
487         foreach ($postData as $id => $val) {
488                 // Process only formular field but not submit buttons ;)
489                 if ($id != 'ok') {
490                         // Do not save the ok value
491                         convertSelectionsToTimestamp($postData, $tableData, $id, $skip);
492
493                         // Shall we process this id? It muss not be empty, of course
494                         if (($skip === false) && (!empty($id)) && ((!isset($GLOBALS['skip_config'][$id]))) || ($tableName != '_config')) {
495                                 // Translate the value? (comma to dot!)
496                                 if ((is_array($translateComma)) && (in_array($id, $translateComma))) {
497                                         // Then do it here... :)
498                                         $val = convertCommaToDot($val);
499                                 } // END - if
500
501                                 // Shall we add numbers or strings?
502                                 $test = (float) $val;
503                                 if ('' . $val . '' == '' . $test . '') {
504                                         // Add numbers
505                                         $tableData[] = sprintf("`%s`=%s", $id, $test);
506                                 } elseif (is_null($val)) {
507                                         // Add NULL
508                                         $tableData[] = sprintf("`%s`=NULL", $id);
509                                 } else {
510                                         // Add strings
511                                         $tableData[] = sprintf("`%s`='%s'", $id, trim($val));
512                                 }
513
514                                 // Do not add a config entry twice
515                                 $GLOBALS['skip_config'][$id] = true;
516
517                                 // Update current configuration
518                                 setConfigEntry($id, $val);
519                         } // END - if
520                 } // END - if
521         } // END - foreach
522
523         // Check if entry does exist
524         $result = false;
525         if ($alwaysAdd === false) {
526                 if (!empty($whereStatement)) {
527                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}" . $tableName . "` WHERE " . $whereStatement . " LIMIT 1", __FUNCTION__, __LINE__);
528                 } else {
529                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}" . $tableName . "` LIMIT 1", __FUNCTION__, __LINE__);
530                 }
531         } // END - if
532
533         if (SQL_NUMROWS($result) == 1) {
534                 // "Implode" all data to single string
535                 $updatedData = implode(', ', $tableData);
536
537                 // Generate SQL string
538                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}%s` SET %s WHERE %s LIMIT 1",
539                         $tableName,
540                         $updatedData,
541                         $whereStatement
542                 );
543         } else {
544                 // Add Line (does only work with auto_increment!
545                 $keys = array(); $values = array();
546                 foreach ($tableData as $entry) {
547                         // Split up
548                         $line = explode('=', $entry);
549                         $keys[] = $line[0];
550                         $values[] = $line[1];
551                 } // END - foreach
552
553                 // Add both in one line
554                 $keys = implode('`, `', $keys);
555                 $values = implode(', ', $values);
556
557                 // Generate SQL string
558                 $sql = sprintf("INSERT INTO `{?_MYSQL_PREFIX?}%s` (%s) VALUES (%s)",
559                         $tableName,
560                         $keys,
561                         $values
562                 );
563         }
564
565         // Free memory
566         SQL_FREERESULT($result);
567
568         // Simply run generated SQL string
569         SQL_QUERY($sql, __FUNCTION__, __LINE__);
570
571         // Remember affected rows
572         $affected = SQL_AFFECTEDROWS();
573
574         // Rebuild cache
575         rebuildCache('config', 'config');
576
577         // Settings saved, so display message?
578         if ($displayMessage === true) loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}');
579
580         // Return affected rows
581         return $affected;
582 }
583
584 // Generate a selection box
585 function adminAddMenuSelectionBox ($menu, $type, $name, $default = '') {
586         // Open the requested menu directory
587         $menuArray = getArrayFromDirectory(sprintf("inc/modules/%s/", $menu), $type . '-', false, false);
588
589         // Init the selection box
590         $OUT = '<select name="' . $name . '" class="form_select" size="1"><option value="">{--ADMIN_IS_TOP_MENU--}</option>';
591
592         // Walk through all files
593         foreach ($menuArray as $file) {
594                 // Is this a PHP script?
595                 if ((!isDirectory($file)) && (strpos($file, '' . $type . '-') > -1) && (strpos($file, '.php') > 0)) {
596                         // Then test if the file is readable
597                         $test = sprintf("inc/modules/%s/%s", $menu, $file);
598
599                         // Is the file there?
600                         if (isIncludeReadable($test)) {
601                                 // Extract the value for what=xxx
602                                 $part = substr($file, (strlen($type) + 1));
603                                 $part = substr($part, 0, -4);
604
605                                 // Is that part different from the overview?
606                                 if ($part != 'overview') {
607                                         $OUT .= '<option value="' . $part . '"';
608                                         if ($part == $default) $OUT .= ' selected="selected"';
609                                         $OUT .= '>' . $part . '</option>';
610                                 } // END - if
611                         } // END - if
612                 } // END - if
613         } // END - foreach
614
615         // Close selection box
616         $OUT .= '</select>';
617
618         // Return contents
619         return $OUT;
620 }
621
622 // Creates a user-profile link for the admin. This function can also be used for many other purposes
623 function generateUserProfileLink ($userid, $title = '', $what = 'list_user') {
624         if (($title == '') && (isValidUserId($userid))) {
625                 // Set userid as title
626                 $title = $userid;
627         } elseif ($userid == 0) {
628                 // User id zero is invalid
629                 return '<strong>' . $userid . '</strong>';
630         }
631
632         if (($title == '0') && ($what == 'list_refs')) {
633                 // Return title again
634                 return $title;
635         } elseif (isExtensionActive('nickname')) {
636                 // Get nickname
637                 $nick = getNickname($userid);
638
639                 // Is it not empty, use it as title else the userid
640                 if (!empty($nick)) $title = $nick . '(' . $userid . ')'; else $title = $userid;
641         }
642
643         // Return link
644         return '[<a href="{%url=modules.php?module=admin&amp;what=' . $what . '&amp;userid=' . $userid . '%}" title="{--ADMIN_USER_PROFILE_TITLE--}">' . $title . '</a>]';
645 }
646
647 // Check "logical-area-mode"
648 function adminGetMenuMode () {
649         // Set the default menu mode as the mode for all admins
650         $mode = getAdminMenu();
651         $adminMode = $mode;
652
653         // Get admin id
654         $adminId = getCurrentAdminId();
655
656         // Check individual settings of current admin
657         if (isset($GLOBALS['cache_array']['admin']['la_mode'][$adminId])) {
658                 // Load from cache
659                 $adminMode = $GLOBALS['cache_array']['admin']['la_mode'][$adminId];
660                 incrementStatsEntry('cache_hits');
661         } elseif (isExtensionInstalledAndNewer('admins', '0.6.7')) {
662                 // Load from database when version of 'admins' is enough
663                 $result = SQL_QUERY_ESC("SELECT `la_mode` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
664                         array($adminId), __FUNCTION__, __LINE__);
665
666                 // Do we have an entry?
667                 if (SQL_NUMROWS($result) == 1) {
668                         // Load data
669                         list($adminMode) = SQL_FETCHROW($result);
670                 } // END - if
671
672                 // Free memory
673                 SQL_FREERESULT($result);
674         }
675
676         // Check what the admin wants and set it when it's not the default mode
677         if ($adminMode != 'global') {
678                 $mode = $adminMode;
679         } // END - if
680
681         // Return admin-menu's mode
682         return $mode;
683 }
684
685 // Change activation status
686 function adminChangeActivationStatus ($IDs, $table, $row, $idRow = 'id') {
687         $count = '0'; $newStatus = 'Y';
688         if ((is_array($IDs)) && (count($IDs) > 0)) {
689                 // "Walk" all through and count them
690                 foreach ($IDs as $id => $selected) {
691                         // Secure the id number
692                         $id = bigintval($id);
693
694                         // Should always be set... ;-)
695                         if (!empty($selected)) {
696                                 // Determine new status
697                                 $result = SQL_QUERY_ESC("SELECT %s FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
698                                 array($row, $table, $idRow, $id), __FUNCTION__, __LINE__);
699
700                                 // Row found?
701                                 if (SQL_NUMROWS($result) == 1) {
702                                         // Load the status
703                                         list($currStatus) = SQL_FETCHROW($result);
704
705                                         // And switch it N<->Y
706                                         if ($currStatus == 'Y') $newStatus = 'N'; else $newStatus = 'Y';
707
708                                         // Change this status
709                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s` SET %s='%s' WHERE %s=%s LIMIT 1",
710                                         array($table, $row, $newStatus, $idRow, $id), __FUNCTION__, __LINE__);
711
712                                         // Count up affected rows
713                                         $count += SQL_AFFECTEDROWS();
714                                 } // END - if
715
716                                 // Free the result
717                                 SQL_FREERESULT($result);
718                         } // END - if
719                 } // END - foreach
720
721                 // Output status
722                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_STATUS_CHANGED'), $count, count($IDs)));
723         } else {
724                 // Nothing selected!
725                 loadTemplate('admin_settings_saved', false, '{--ADMIN_NOTHING_SELECTED_CHANGE--}');
726         }
727 }
728
729 // Send mails for del/edit/lock build modes
730 function sendAdminBuildMails ($mode, $table, $content, $id, $subjectPart = '', $userid = 'userid') {
731         // Default subject is the subject part
732         $subject = $subjectPart;
733
734         // Is the subject part not set?
735         if (empty($subjectPart)) {
736                 // Then use it from the mode
737                 $subject = strtoupper($mode);
738         } // END - if
739
740         // Is the raw userid set?
741         if (postRequestParameter($userid, $id) > 0) {
742                 // Load email template
743                 if (!empty($subjectPart)) {
744                         $mail = loadEmailTemplate('member_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content);
745                 } else {
746                         $mail = loadEmailTemplate('member_' . $mode . '_' . $table, $content);
747                 }
748
749                 // Send email out
750                 sendEmail(postRequestParameter($userid, $id), strtoupper('{--MEMBER_' . $subject . '_' . $table . '_SUBJECT--}'), $mail);
751         } // END - if
752
753         // Generate subject
754         $subject = strtoupper('{--ADMIN_' . $subject . '_' . $table . '_SUBJECT--}');
755
756         // Send admin notification out
757         if (!empty($subjectPart)) {
758                 sendAdminNotification($subject, 'admin_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content, postRequestParameter($userid, $id));
759         } else {
760                 sendAdminNotification($subject, 'admin_' . $mode . '_' . $table, $content, postRequestParameter($userid, $id));
761         }
762 }
763
764 // Build a special template list
765 function adminListBuilder ($listType, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $userid = 'userid') {
766         $OUT = '';
767
768         // "Walk" through all entries
769         foreach ($IDs as $id => $selected) {
770                 // Secure id number
771                 $id = bigintval($id);
772
773                 // Get result from a given column array and table name
774                 $result = SQL_RESULT_FROM_ARRAY($table, $columns, $idColumn, $id, __FUNCTION__, __LINE__);
775
776                 // Is there one entry?
777                 if (SQL_NUMROWS($result) == 1) {
778                         // Load all data
779                         $content = SQL_FETCHARRAY($result);
780
781                         // Filter all data
782                         foreach ($content as $key => $value) {
783                                 // Search index
784                                 $idx = array_search($key, $columns, true);
785
786                                 // Do we have a userid?
787                                 if ($key == $userIdColumn) {
788                                         // Add it again as raw id
789                                         $content[$userIdColumn] = bigintval($value);
790                                         $content[$userIdColumn . '_raw'] = $content[$userIdColumn];
791                                 } // END - if
792
793                                 // If the key matches the idColumn variable, we need to temporary remember it
794                                 //* DEBUG: */ debugOutput('key=' . $key . ',idColumn=' . $idColumn . ',value=' . $value);
795                                 if ($key == $idColumn) {
796                                         // Found, so remember it
797                                         $GLOBALS['admin_list_builder_id_value'] = $value;
798                                 } // END - if
799
800                                 // Handle the call in external function
801                                 //* DEBUG: */ debugOutput('key=' . $key . ',fucntion=' . $filterFunctions[$idx] . ',value=' . $value);
802                                 $content[$key] = handleExtraValues($filterFunctions[$idx], $value, $extraValues[$idx]);
803                         } // END - foreach
804
805                         // Then list it
806                         $OUT .= loadTemplate(sprintf("admin_%s_%s_row",
807                                 $listType,
808                                 $table
809                                 ), true, $content
810                         );
811                 } // END - if
812
813                 // Free the result
814                 SQL_FREERESULT($result);
815         } // END - foreach
816
817         // Load master template
818         loadTemplate(sprintf("admin_%s_%s",
819                 $listType,
820                 $table
821                 ), false, $OUT
822         );
823 }
824
825 // Change status of "build" list
826 function adminBuilderStatusHandler ($mode, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray, $userid = 'userid') {
827         // All valid entries? (We hope so here!)
828         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (count($statusArray) > 0)) {
829                 // "Walk" through all entries
830                 foreach ($IDs as $id => $sel) {
831                         // Construct SQL query
832                         $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET", SQL_ESCAPE($table));
833
834                         // Load data of entry
835                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`=%s LIMIT 1",
836                                 array($table, $idColumn, $id), __FUNCTION__, __LINE__);
837
838                         // Fetch the data
839                         $content = SQL_FETCHARRAY($result);
840
841                         // Free the result
842                         SQL_FREERESULT($result);
843
844                         // Add all status entries (e.g. status column last_updated or so)
845                         $newStatus = 'UNKNOWN';
846                         $oldStatus = 'UNKNOWN';
847                         $statusColumn = 'unknown';
848                         foreach ($statusArray as $column => $statusInfo) {
849                                 // Does the entry exist?
850                                 if ((isset($content[$column])) && (isset($statusInfo[$content[$column]]))) {
851                                         // Add these entries for update
852                                         $sql .= sprintf(" %s='%s',", SQL_ESCAPE($column), SQL_ESCAPE($statusInfo[$content[$column]]));
853
854                                         // Remember status
855                                         if ($statusColumn == 'unknown') {
856                                                 // Always (!!!) change status column first!
857                                                 $oldStatus = $content[$column];
858                                                 $newStatus = $statusInfo[$oldStatus];
859                                                 $statusColumn = $column;
860                                         } // END - if
861                                 } elseif (isset($content[$column])) {
862                                         // Unfinished!
863                                         debug_report_bug(__FUNCTION__, __LINE__, ':UNFINISHED: id=' . $id . ',column=' . $column . '[' . gettype($statusInfo) . '] = ' . $content[$column]);
864                                 }
865                         } // END - foreach
866
867                         // Add other columns as well
868                         foreach (postRequestArray() as $key => $entries) {
869                                 // Debug message
870                                 logDebugMessage(__FUNCTION__, __LINE__, 'Found entry: ' . $key);
871
872                                 // Skip id, raw userid and 'do_$mode'
873                                 if (!in_array($key, array($idColumn, $userid, ('do_' . $mode)))) {
874                                         // Are there brackets () at the end?
875                                         if (substr($entries[$id], -2, 2) == '()') {
876                                                 // Direct SQL command found
877                                                 $sql .= sprintf(" %s=%s,", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
878                                         } else {
879                                                 // Add regular entry
880                                                 $sql .= sprintf(" %s='%s',", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
881
882                                                 // Add entry
883                                                 $content[$key] = $entries[$id];
884                                         }
885                                 } else {
886                                         // Skipped entry
887                                         logDebugMessage(__FUNCTION__, __LINE__, 'Skipped: ' . $key);
888                                 }
889                         } // END - foreach
890
891                         // Finish SQL statement
892                         $sql = substr($sql, 0, -1) . sprintf(" WHERE `%s`=%s AND `%s`='%s' LIMIT 1",
893                                 $idColumn,
894                                 bigintval($id),
895                                 $statusColumn,
896                                 $oldStatus
897                         );
898
899                         // Run the SQL
900                         SQL_QUERY($sql, __FUNCTION__, __LINE__);
901
902                         // Do we have an URL?
903                         if (isset($content['url'])) {
904                                 // Then add a framekiller test as well
905                                 $content['frametester'] = generateFrametesterUrl($content['url']);
906                         } // END - if
907
908                         // Send "build mails" out
909                         sendAdminBuildMails($mode, $table, $content, $id, $statusInfo[$content[$column]]);
910                 } // END - foreach
911         } // END - if
912 }
913
914 // Delete rows by given id numbers
915 function adminDeleteEntriesConfirm ($IDs, $table, $columns = array(), $filterFunctions = array(), $extraValues = array(), $deleteNow = false, $idColumn = 'id', $userIdColumn = 'userid', $userid = 'userid') {
916         // All valid entries? (We hope so here!)
917         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
918                 // Shall we delete here or list for deletion?
919                 if ($deleteNow === true) {
920                         // The base SQL command:
921                         $sql = "DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s` IN (%s)";
922
923                         // Delete them all
924                         $idList = '';
925                         foreach ($IDs as $id => $sel) {
926                                 // Is there a userid?
927                                 if (isPostRequestParameterSet($userid, $id)) {
928                                         // Load all data from that id
929                                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`=%s LIMIT 1",
930                                                 array(
931                                                         $table,
932                                                         $idColumn,
933                                                         $id
934                                                 ), __FUNCTION__, __LINE__);
935
936                                         // Fetch the data
937                                         $content = SQL_FETCHARRAY($result);
938
939                                         // Free the result
940                                         SQL_FREERESULT($result);
941
942                                         // Send "build mails" out
943                                         sendAdminBuildMails('delete', $table, $content, $id);
944                                 } // END - if
945
946                                 // Add id number
947                                 $idList .= $id . ',';
948                         } // END - foreach
949
950                         // Run the query
951                         SQL_QUERY_ESC($sql, array($table, $idColumn, substr($idList, 0, -1)), __FUNCTION__, __LINE__);
952
953                         // Was this fine?
954                         if (SQL_AFFECTEDROWS() == count($IDs)) {
955                                 // All deleted
956                                 loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_ENTRIES_REMOVED--}');
957                         } else {
958                                 // Some are still there :(
959                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_DELETED'), SQL_AFFECTEDROWS(), count($IDs)));
960                         }
961                 } else {
962                         // List for deletion confirmation
963                         adminListBuilder('delete', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
964                 }
965         } // END - if
966 }
967
968 // Edit rows by given id numbers
969 function adminEditEntriesConfirm ($IDs, $table, $columns = array(), $filterFunctions = array(), $extraValues = array(), $editNow = false, $idColumn = 'id', $userIdColumn = 'userid', $userid = 'userid') {
970         // All valid entries? (We hope so here!)
971         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
972                 // Shall we change here or list for editing?
973                 if ($editNow === true) {
974                         // Change them all
975                         $affected = '0';
976                         foreach ($IDs as $id => $sel) {
977                                 // Prepare content array (new values)
978                                 $content = array();
979
980                                 // Prepare SQL for this row
981                                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET",
982                                         SQL_ESCAPE($table)
983                                 );
984                                 foreach (postRequestArray() as $key => $entries) {
985                                         // Skip raw userid which is always invalid
986                                         if ($key == $userid) {
987                                                 // Continue with next field
988                                                 continue;
989                                         } // END - if
990
991                                         // Is entries an array?
992                                         if (($key != $idColumn) && (is_array($entries)) && (isset($entries[$id]))) {
993                                                 // Add this entry to content
994                                                 $content[$key] = $entries[$id];
995
996                                                 // Send data through the filter function if found
997                                                 if ((isset($filterFunctions[$key])) && (isset($extraValues[$key]))) {
998                                                         // Filter function set!
999                                                         $entries[$id] = handleExtraValues($filterFunctions[$key], $entries[$id], $extraValues[$key]);
1000                                                 } // END - if
1001
1002                                                 // Then add this value
1003                                                 $sql .= sprintf(" `%s`='%s',",
1004                                                         SQL_ESCAPE($key),
1005                                                         SQL_ESCAPE($entries[$id])
1006                                                 );
1007                                         } elseif (($key != $idColumn) && (!is_array($entries))) {
1008                                                 // Add normal entries as well!
1009                                                 $content[$key] =  $entries;
1010                                         }
1011
1012                                         // Do we have an URL?
1013                                         if ($key == 'url') {
1014                                                 // Then add a framekiller test as well
1015                                                 $content['frametester'] = generateFrametesterUrl($content[$key]);
1016                                         } // END - if
1017                                 } // END - foreach
1018
1019                                 // Finish SQL command
1020                                 $sql = substr($sql, 0, -1) . " WHERE `" . $idColumn . "`=" . bigintval($id) . " LIMIT 1";
1021
1022                                 // Run this query
1023                                 SQL_QUERY($sql, __FUNCTION__, __LINE__);
1024
1025                                 // Add affected rows
1026                                 $affected += SQL_AFFECTEDROWS();
1027
1028                                 // Load all data from that id
1029                                 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`=%s LIMIT 1",
1030                                         array($table, $idColumn, $id), __FUNCTION__, __LINE__);
1031
1032                                 // Fetch the data and merge it into $content
1033                                 $content = merge_array($content, SQL_FETCHARRAY($result));
1034
1035                                 // Free the result
1036                                 SQL_FREERESULT($result);
1037
1038                                 // Send "build mails" out
1039                                 sendAdminBuildMails('edit', $table, $content, $id);
1040                         } // END - foreach
1041
1042                         // Was this fine?
1043                         if ($affected == count($IDs)) {
1044                                 // All deleted
1045                                 loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_ENTRIES_EDITED--}');
1046                         } else {
1047                                 // Some are still there :(
1048                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_EDITED'), $affected, count($IDs)));
1049                         }
1050                 } else {
1051                         // List for editing
1052                         adminListBuilder('edit', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1053                 }
1054         } // END - if
1055 }
1056
1057 // Un-/lock rows by given id numbers
1058 function adminLockEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $lockNow=false, $idColumn='id', $userIdColumn='userid') {
1059         // All valid entries? (We hope so here!)
1060         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($lockNow === false) || (count($statusArray) == 1))) {
1061                 // Shall we un-/lock here or list for locking?
1062                 if ($lockNow === true) {
1063                         // Un-/lock entries
1064                         adminBuilderStatusHandler('lock', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1065                 } else {
1066                         // List for editing
1067                         adminListBuilder('lock', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1068                 }
1069         } // END - if
1070 }
1071
1072 // Undelete rows by given id numbers
1073 function adminUndeleteEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $undeleteNow=false, $idColumn='id', $userIdColumn='userid') {
1074         // All valid entries? (We hope so here!)
1075         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($undeleteNow === false) || (count($statusArray) == 1))) {
1076                 // Shall we un-/lock here or list for locking?
1077                 if ($undeleteNow === true) {
1078                         // Undelete entries
1079                         adminBuilderStatusHandler('undelete', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1080                 } else {
1081                         // List for editing
1082                         adminListBuilder('undelete', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1083                 }
1084         } // END - if
1085 }
1086
1087 // Checks proxy settins by fetching check-updates3.php from www.mxchange.org
1088 function adminTestProxySettings ($settingsArray) {
1089         // Set temporary the new settings
1090         mergeConfig($settingsArray);
1091
1092         // Now get the test URL
1093         $content = sendGetRequest('check-updates3.php');
1094
1095         // Is the first line with "200 OK"?
1096         $valid = (strpos($content[0], '200 OK') !== false);
1097
1098         // Return result
1099         return $valid;
1100 }
1101
1102 // Sends out a link to the given email adress so the admin can reset his/her password
1103 function sendAdminPasswordResetLink ($email) {
1104         // Init output
1105         $OUT = '';
1106
1107         // Look up administator login
1108         $result = SQL_QUERY_ESC("SELECT `id`, `login`, `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `email`='%s' LIMIT 1",
1109                 array($email), __FUNCTION__, __LINE__);
1110
1111         // Is there an account?
1112         if (SQL_HASZERONUMS($result)) {
1113                 // No account found!
1114                 return '{--ADMIN_NO_LOGIN_WITH_EMAIL--}';
1115         } // END - if
1116
1117         // Load all data
1118         $content = SQL_FETCHARRAY($result);
1119
1120         // Free result
1121         SQL_FREERESULT($result);
1122
1123         // Generate hash for reset link
1124         $content['hash'] = generateHash(getUrl() . ':' . $content['id'] . ':' . $content['login'] . ':' . $content['password'], substr($content['password'], 10));
1125
1126         // Remove some data
1127         unset($content['id']);
1128         unset($content['password']);
1129
1130         // Prepare email
1131         $mailText = loadEmailTemplate('form_reset_password', $content);
1132
1133         // Send it out
1134         sendEmail($email, '{--ADMIN_RESET_PASS_LINK_SUBJECT--}', $mailText);
1135
1136         // Prepare output
1137         return '{--ADMIN_RESET_LINK_SENT--}';
1138 }
1139
1140 // Validate hash and login for password reset
1141 function adminResetValidateHashLogin ($hash, $login) {
1142         // By default nothing validates... ;)
1143         $valid = false;
1144
1145         // Then try to find that user
1146         $result = SQL_QUERY_ESC("SELECT `id`, `password`, `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1147                 array($login), __FUNCTION__, __LINE__);
1148
1149         // Is an account here?
1150         if (SQL_NUMROWS($result) == 1) {
1151                 // Load all data
1152                 $content = SQL_FETCHARRAY($result);
1153
1154                 // Generate hash again
1155                 $hashFromData = generateHash(getUrl() . ':' . $content['id'] . ':' . $login . ':' . $content['password'], substr($content['password'], 10));
1156
1157                 // Does both match?
1158                 $valid = ($hash == $hashFromData);
1159         } // END - if
1160
1161         // Free result
1162         SQL_FREERESULT($result);
1163
1164         // Return result
1165         return $valid;
1166 }
1167
1168 // Reset the password for the login. Do NOT call this function without calling above function first!
1169 function doResetAdminPassword ($login, $password) {
1170         // Generate hash (we already check for sql_patches in generateHash())
1171         $passHash = generateHash($password);
1172
1173         // Update database
1174         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `password`='%s' WHERE `login`='%s' LIMIT 1",
1175                 array($passHash, $login), __FUNCTION__, __LINE__);
1176
1177         // Run filters
1178         runFilterChain('post_form_reset_pass', array('login' => $login, 'hash' => $passHash));
1179
1180         // Return output
1181         return '{--ADMIN_PASSWORD_RESET_DONE--}';
1182 }
1183
1184 // Solves a task by given id number
1185 function adminSolveTask ($id) {
1186         // Update the task data
1187         adminUpdateTaskData($id, 'status', 'SOLVED');
1188 }
1189
1190 // Marks a given task as deleted
1191 function adminDeleteTask ($id) {
1192         // Update the task data
1193         adminUpdateTaskData($id, 'status', 'DELETED');
1194 }
1195
1196 // Function to update task data
1197 function adminUpdateTaskData ($id, $row, $data) {
1198         // Should be admin!
1199         if (!isAdmin()) {
1200                 // Not an admin so redirect better
1201                 redirectToUrl('modules.php?module=index');
1202         } // END - if
1203
1204         // Is the id not set, then we need a backtrace here... :(
1205         if ($id <= 0) {
1206                 // Initiate backtrace
1207                 debug_report_bug(__FUNCTION__, __LINE__, sprintf("id is invalid: %s. row=%s, data=%s",
1208                         $id,
1209                         $row,
1210                         $data
1211                 ));
1212         } // END - if
1213
1214         // Update the task
1215         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `%s`='%s' WHERE `id`=%s LIMIT 1",
1216                 array(
1217                         $row,
1218                         $data,
1219                         bigintval($id)
1220                 ), __FUNCTION__, __LINE__);
1221 }
1222
1223 // Checks wether if the admin menu has entries
1224 function ifAdminMenuHasEntries ($action) {
1225         return (
1226                 ((
1227                         // Is the entry set?
1228                         isset($GLOBALS['admin_menu_has_entries'][$action])
1229                 ) && (
1230                         // And do we have a menu for this action?
1231                         $GLOBALS['admin_menu_has_entries'][$action] === true
1232                 )) || (
1233                         // Login has always a menu
1234                         $action == 'login'
1235                 )
1236         );
1237 }
1238
1239 // Setter for 'admin_menu_has_entries'
1240 function setAdminMenuHasEntries ($action, $hasEntries) {
1241         $GLOBALS['admin_menu_has_entries'][$action] = (bool) $hasEntries;
1242 }
1243
1244 // Creates a link to the user's admin-profile
1245 function adminCreateUserLink ($userid) {
1246         // Is the userid set correctly?
1247         if (isValidUserId($userid)) {
1248                 // Create a link to that profile
1249                 return '{%url=modules.php?module=admin&amp;what=list_user&amp;userid=' . bigintval($userid) . '%}';
1250         } // END - if
1251
1252         // Return a link to the user list
1253         return '{%url=modules.php?module=admin&amp;what=list_user%}';
1254 }
1255
1256 // Generate a "link" for the given admin id (admin_id)
1257 function generateAdminLink ($adminId) {
1258         // No assigned admin is default
1259         $adminLink = '<span class="notice">{--ADMIN_NO_ADMIN_ASSIGNED--}</span>';
1260
1261         // Zero? = Not assigned
1262         if (bigintval($adminId) > 0) {
1263                 // Load admin's login
1264                 $login = getAdminLogin($adminId);
1265
1266                 // Is the login valid?
1267                 if ($login != '***') {
1268                         // Is the extension there?
1269                         if (isExtensionActive('admins')) {
1270                                 // Admin found
1271                                 $adminLink = '<a href="' . generateEmailLink(getAdminEmail($adminId), 'admins') . '" title="{--ADMIN_CONTACT_LINK_TITLE--}">' . $login . '</a>';
1272                         } else {
1273                                 // Extension not found
1274                                 $adminLink = getMaskedMessage('ADMIN_TASK_ROW_EXTENSION_NOT_INSTALLED', 'admins');
1275                         }
1276                 } else {
1277                         // Maybe deleted?
1278                         $adminLink = '<div class="notice">' . getMaskedMessage('ADMIN_ID_404', $adminId) . '</div>';
1279                 }
1280         } // END - if
1281
1282         // Return result
1283         return $adminLink;
1284 }
1285
1286 // Verifies if the current admin has confirmed to alter expert settings
1287 //
1288 // Return values:
1289 // 'failed'    = Something goes wrong (default)
1290 // 'agreed'    = Has verified and and confirmed it to see them
1291 // 'forbidden' = Has not the proper right to alter them
1292 // 'update'    = Need to update extension 'admins'
1293 // 'ask'       = A form was send to the admin
1294 function doVerifyExpertSettings () {
1295         // Default return status is failed
1296         $return = 'failed';
1297
1298         // Is the extension installed and recent?
1299         if (isExtensionInstalledAndNewer('admins', '0.7.3')) {
1300                 // Okay, load the status
1301                 $expertSettings = getAminsExpertSettings();
1302
1303                 // Is he allowed?
1304                 if ($expertSettings == 'Y') {
1305                         // Okay, does he want to see them?
1306                         if (getAminsExpertWarning() == 'Y') {
1307                                 // Ask for them
1308                                 if (isFormSent()) {
1309                                         // Is the element set, then we need to change the admin
1310                                         if (isPostRequestParameterSet('expert_settings')) {
1311                                                 // Get it and prepare final post data array
1312                                                 $postData['login'][getCurrentAdminId()] = getCurrentAdminLogin();
1313                                                 $postData['expert_warning'][getCurrentAdminId()] = 'N';
1314
1315                                                 // Change it in the admin
1316                                                 adminsChangeAdminAccount($postData, 'expert_warning');
1317
1318                                                 // Clear form
1319                                                 unsetPostRequestParameter('ok');
1320                                         } // END - if
1321
1322                                         // All fine!
1323                                         $return = 'agreed';
1324                                 } else {
1325                                         // Send form
1326                                         loadTemplate('admin_expert_settings_form');
1327
1328                                         // Asked for it
1329                                         $return = 'ask';
1330                                 }
1331                         } else {
1332                                 // Do not display
1333                                 $return = 'agreed';
1334                         }
1335                 } else {
1336                         // Forbidden
1337                         $return = 'forbidden';
1338                 }
1339         } else {
1340                 // Out-dated extension or not installed
1341                 $return = 'update';
1342         }
1343
1344         // Output message for other status than ask/agreed
1345         if (($return != 'ask') && ($return != 'agreed')) {
1346                 // Output message
1347                 loadTemplate('admin_settings_saved', false, '{--ADMIN_EXPERT_SETTINGS_STATUS_' . strtoupper($return) . '--}');
1348         } // END - if
1349
1350         // Return status
1351         return $return;
1352 }
1353
1354 // Generate link to unconfirmed mails for admin
1355 function generateUnconfirmedAdminLink ($id, $unconfirmed, $type = 'bid') {
1356         // Init output
1357         $OUT = $unconfirmed;
1358
1359         // Do we have unconfirmed mails?
1360         if ($unconfirmed > 0) {
1361                 // Add link to list_unconfirmed what-file
1362                 $OUT = '<a href="{%url=modules.php?module=admin&amp;what=list_unconfirmed&amp;' . $type . '=' . $id . '%}">{%pipe,translateComma=' . $unconfirmed . '%}</a>';
1363         } // END - if
1364
1365         // Return it
1366         return $OUT;
1367 }
1368
1369 // Generates a navigation row for listing emails
1370 function addEmailNavigation ($numPages, $offset, $show_form, $colspan, $return=false) {
1371         // Don't do anything if $numPages is 1
1372         if ($numPages == 1) {
1373                 // Abort here with empty content
1374                 return '';
1375         } // END - if
1376
1377         $TOP = '';
1378         if ($show_form === false) {
1379                 $TOP = ' top';
1380         } // END - if
1381
1382         $NAV = '';
1383         for ($page = 1; $page <= $numPages; $page++) {
1384                 // Is the page currently selected or shall we generate a link to it?
1385                 if (($page == getRequestParameter('page')) || ((!isGetRequestParameterSet('page')) && ($page == 1))) {
1386                         // Is currently selected, so only highlight it
1387                         $NAV .= '<strong>-';
1388                 } else {
1389                         // Open anchor tag and add base URL
1390                         $NAV .= '<a href="{%url=modules.php?module=admin&amp;what=' . getWhat() . '&amp;page=' . $page . '&amp;offset=' . $offset;
1391
1392                         // Add userid when we shall show all mails from a single member
1393                         if ((isGetRequestParameterSet('userid')) && (isValidUserId(getRequestParameter('userid')))) $NAV .= '&amp;userid=' . bigintval(getRequestParameter('userid'));
1394
1395                         // Close open anchor tag
1396                         $NAV .= '%}">';
1397                 }
1398                 $NAV .= $page;
1399                 if (($page == getRequestParameter('page')) || ((!isGetRequestParameterSet('page')) && ($page == 1))) {
1400                         // Is currently selected, so only highlight it
1401                         $NAV .= '-</strong>';
1402                 } else {
1403                         // Close anchor tag
1404                         $NAV .= '</a>';
1405                 }
1406
1407                 // Add seperator if we have not yet reached total pages
1408                 if ($page < $numPages) {
1409                         // Add it
1410                         $NAV .= '|';
1411                 } // END - if
1412         } // END - for
1413
1414         // Define constants only once
1415         $content['nav']  = $NAV;
1416         $content['span'] = $colspan;
1417         $content['top']  = $TOP;
1418
1419         // Load navigation template
1420         $OUT = loadTemplate('admin_email_nav_row', true, $content);
1421
1422         if ($return === true) {
1423                 // Return generated HTML-Code
1424                 return $OUT;
1425         } else {
1426                 // Output HTML-Code
1427                 outputHtml($OUT);
1428         }
1429 }
1430
1431 // Process menu editing form
1432 function adminProcessMenuEditForm ($type, $subMenu) {
1433         // An action is done...
1434         foreach (postRequestParameter('sel') as $sel => $menu) {
1435                 $AND = "(`what` = '' OR `what` IS NULL)";
1436
1437                 $sel = bigintval($sel);
1438
1439                 if (!empty($subMenu)) {
1440                         $AND = "`action`='" . $subMenu . "'";
1441                 } // END - if
1442
1443                 switch (postRequestParameter('ok')) {
1444                         case 'edit': // Edit menu
1445                                 if (postRequestParameter('sel_what', $sel) == '') {
1446                                         // Update with 'what'=null
1447                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `title`='%s', `action`='%s', `what`=NULL WHERE ".$AND." AND `id`=%s LIMIT 1",
1448                                                 array(
1449                                                         $type,
1450                                                         $menu,
1451                                                         postRequestParameter('sel_action', $sel),
1452                                                         $sel
1453                                                 ), __FILE__, __LINE__);
1454                                 } else {
1455                                         // Update with selected 'what'
1456                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `title`='%s', `action`='%s', `what`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1",
1457                                                 array(
1458                                                         $type,
1459                                                         $menu,
1460                                                         postRequestParameter('sel_action', $sel),
1461                                                         postRequestParameter('sel_what', $sel),
1462                                                         $sel
1463                                                 ), __FILE__, __LINE__);
1464                                 }
1465                                 break;
1466
1467                         case 'delete': // Delete menu
1468                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE ".$AND." AND `id`=%s LIMIT 1",
1469                                         array($type, $sel), __FILE__, __LINE__);
1470                                 break;
1471
1472                         case 'status': // Change status of menus
1473                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `visible`='%s', `locked`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1",
1474                                         array($type, postRequestParameter('visible', $sel), postRequestParameter('locked', $sel), $sel), __FILE__, __LINE__);
1475                                 break;
1476
1477                         default: // Unexpected action
1478                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unsupported action %s detected.", postRequestParameter('ok')));
1479                                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_OKAY', postRequestParameter('ok')));
1480                                 break;
1481                 } // END - switch
1482         } // END - foreach
1483
1484         // Load template
1485         loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}');
1486 }
1487
1488 // Handle weightning
1489 function doAdminProcessMenuWeightning ($type) {
1490         // Are there all required (generalized) GET parameter?
1491         if ((isGetRequestParameterSet('act')) && (isGetRequestParameterSet('tid')) && (isGetRequestParameterSet('fid'))) {
1492                 // Init variables
1493                 $tid = ''; $fid = '';
1494
1495                 // Get ids
1496                 if (isGetRequestParameterSet('w')) {
1497                         // Sub menus selected
1498                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1",
1499                                 array(
1500                                         $type,
1501                                         getRequestParameter('act'),
1502                                         bigintval(getRequestParameter('tid'))
1503                                 ), __FILE__, __LINE__);
1504                         list($tid) = SQL_FETCHROW($result);
1505                         SQL_FREERESULT($result);
1506                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1",
1507                                 array(
1508                                         $type,
1509                                         getRequestParameter('act'),
1510                                         bigintval(getRequestParameter('fid'))
1511                                 ), __FILE__, __LINE__);
1512                         list($fid) = SQL_FETCHROW($result);
1513                         SQL_FREERESULT($result);
1514                 } else {
1515                         // Main menu selected
1516                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1",
1517                                 array(
1518                                         $type,
1519                                         bigintval(getRequestParameter('tid'))
1520                                 ), __FILE__, __LINE__);
1521                         list($tid) = SQL_FETCHROW($result);
1522                         SQL_FREERESULT($result);
1523                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1",
1524                                 array(
1525                                         $type,
1526                                         bigintval(getRequestParameter('fid'))
1527                                 ), __FILE__, __LINE__);
1528                         list($fid) = SQL_FETCHROW($result);
1529                         SQL_FREERESULT($result);
1530                 }
1531
1532                 if ((!empty($tid)) && (!empty($fid))) {
1533                         // Sort menu
1534                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `sort`=%s WHERE ".$AND." AND `id`=%s LIMIT 1",
1535                                 array(
1536                                         $type,
1537                                         bigintval(getRequestParameter('tid')),
1538                                         bigintval($fid)
1539                                 ), __FILE__, __LINE__);
1540                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET `sort`=%s WHERE ".$AND." AND `id`=%s LIMIT 1",
1541                                 array(
1542                                         $type,
1543                                         bigintval(getRequestParameter('fid')),
1544                                         bigintval($tid)
1545                                 ), __FILE__, __LINE__);
1546                 } // END - if
1547         } // END - if
1548 }
1549
1550 // [EOF]
1551 ?>