Moved filter function back to filters.php, fix for non-installed ext-sql_patches
[mailer.git] / inc / modules / admin / admin-inc.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Register an administrator account
45 function addAdminAccount ($user, $md5, $email) {
46         // Login does already exist
47         $ret = 'already';
48
49         // Lookup the admin
50         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
51                 array($user), __FUNCTION__, __LINE__);
52
53         // Is the entry there?
54         if (SQL_NUMROWS($result) == 0) {
55                 // Ok, let's create the admin login
56                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admins` (`login`, `password`, `email`) VALUES ('%s', '%s', '%s')",
57                         array(
58                                 $user,
59                                 $md5,
60                                 $email
61                         ), __FUNCTION__, __LINE__);
62                 $ret = 'done';
63         } // END - if
64
65         // Free memory
66         SQL_FREERESULT($result);
67
68         // Return result
69         return $ret;
70 }
71
72 // Only be executed on login procedure!
73 function ifAdminLoginDataIsValid ($admin, $password) {
74         // By default no admin is found
75         $ret = '404';
76
77         // Get admin id
78         $adminId = getAdminId($admin);
79
80         // Init array with admin id by default
81         $data = array('admin_id' => $adminId);
82
83         // Is the cache valid?
84         if (isAdminHashSet($admin)) {
85                 // Get password from cache
86                 $data['password'] = getAdminHash($admin);
87                 $ret = 'pass';
88                 incrementStatsEntry('cache_hits');
89
90                 // Include more admins data?
91                 if ((isExtensionInstalledAndNewer('admins', '0.7.2')) && (isset($GLOBALS['cache_array']['admin']['login_failures'][$adminId]))) {
92                         // Load them here
93                         $data['login_failures'] = $GLOBALS['cache_array']['admin']['login_failures'][$adminId];
94                         $data['last_failure']   = $GLOBALS['cache_array']['admin']['last_failure'][$adminId];
95                 } // END - if
96         } elseif (!isExtensionActive('cache')) {
97                 // Add extra data via filter now
98                 $add = runFilterChain('sql_admin_extra_data');
99
100                 // Get password from DB
101                 $result = SQL_QUERY_ESC("SELECT `password`" . $add . " FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
102                         array($adminId), __FUNCTION__, __LINE__);
103
104                 // Entry found?
105                 if (SQL_NUMROWS($result) == 1) {
106                         // Login password found
107                         $ret = 'pass';
108
109                         // Fetch data
110                         $data = SQL_FETCHARRAY($result);
111                 } // END - if
112
113                 // Free result
114                 SQL_FREERESULT($result);
115         }
116
117         //* DEBUG: */ outputHtml("*".$data['password'].'/'.md5($password).'/'.$ret."<br />");
118         if ((isset($data['password'])) && (strlen($data['password']) == 32) && ($data['password'] == md5($password))) {
119                 // Generate new hash
120                 $data['password'] = generateHash($password);
121
122                 // Is the sql_patches not installed, than we cannot have a valid hashed password here!
123                 if (($ret == 'pass') && ((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) || (!isExtensionInstalled('sql_patches')))) $ret = 'done';
124         } elseif ((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) || (!isExtensionInstalled('sql_patches'))) {
125                 // Old hashing way
126                 return $ret;
127         } elseif (!isset($data['password'])) {
128                 // Password not found, so no valid login!
129                 return $ret;
130         }
131
132         // Generate salt of password
133         $salt = substr($data['password'], 0, -40);
134
135         // Check if password is same
136         //* DEBUG: */ outputHtml("*".$ret.','.$data['password'].','.$password.','.$salt."*<br />");
137         if (($ret == 'pass') && ($data['password'] == generateHash($password, $salt)) && ((!empty($salt))) || ($data['password'] == $password)) {
138                 // Re-hash the plain passord with new random salt
139                 $data['password'] = generateHash($password);
140
141                 // Do we have 0.7.0 of admins or later?
142                 // Remmeber login failures if available
143                 if ((isExtensionInstalledAndNewer('admins', '0.7.2')) && (isset($data['login_failures']))) {
144                         // Store it in session
145                         setSession('mxchange_admin_failures', $data['login_failures']);
146                         setSession('mxchange_admin_last_fail', $data['last_failure']);
147
148                         // Update password and reset login failures
149                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `password`='%s',`login_failures`=0,`last_failure`='0000-00-00 00:00:00' WHERE `id`=%s LIMIT 1",
150                                 array($data['password'], $adminId), __FUNCTION__, __LINE__);
151                 } else {
152                         // Update password
153                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `password`='%s' WHERE `id`=%s LIMIT 1",
154                                 array($data['password'], $adminId), __FUNCTION__, __LINE__);
155                 }
156
157                 // Rebuild cache
158                 rebuildCacheFile('admin', 'admin');
159
160                 // Login has failed by default... ;-)
161                 $ret = 'failed1';
162
163                 // Password matches so login here
164                 if (doAdminLogin($admin, $data['password'])) {
165                         // All done now
166                         $ret = 'done';
167                 } // END - if
168         } elseif ((empty($salt)) && ($ret == 'pass')) {
169                 // Something bad went wrong
170                 $ret = 'failed_salt';
171         } elseif ($ret == 'done') {
172                 // Try to login here if we have the old hashing way (sql_patches not installed?)
173                 if (!doAdminLogin($admin, $data['password'])) {
174                         // Something went wrong
175                         $ret = 'failed2';
176                 } // END - if
177         }
178
179         // Count login failure if admins extension version is 0.7.0+
180         if (($ret == 'pass') && (getExtensionVersion('admins') >= '0.7.0')) {
181                 // Update counter
182                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET login_failures`=`login_failures`+1,`last_failure`=NOW() WHERE `id`=%s LIMIT 1",
183                         array($adminId), __FUNCTION__, __LINE__);
184
185                 // Rebuild cache
186                 rebuildCacheFile('admin', 'admin');
187         } // END - if
188
189         // Return the result
190         //* DEBUG: */ die('RETURN=' . $ret);
191         return $ret;
192 }
193
194 // Try to login the admin by setting some session/cookie variables
195 function doAdminLogin ($adminLogin, $passHash) {
196         // Reset failure counter on matching admins version
197         if ((isExtensionInstalledAndNewer('admins', '0.7.0')) && ((isExtensionOlder('sql_patches', '0.3.6')) || (!isExtensionInstalled('sql_patches')))) {
198                 // Reset counter on out-dated sql_patches version
199                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `login_failures`=0, `last_failure`='0000-00-00 00:00:00' WHERE `login`='%s' LIMIT 1",
200                         array($adminLogin), __FUNCTION__, __LINE__);
201
202                 // Rebuild cache
203                 rebuildCacheFile('admin', 'admin');
204         } // END - if
205
206         // Now set all session variables and return the result
207         return ((
208                 setSession('admin_md5', generatePassString($passHash))
209         ) && (
210                 setSession('admin_login', $adminLogin)
211         ) && (
212                 setSession('admin_last', time())
213         ) && (
214                 setSession('admin_to', bigintval(postRequestElement('timeout')))
215         ));
216 }
217
218 // Only be executed on cookie checking
219 function ifAdminCookiesAreValid ($admin, $password) {
220         // By default no admin cookies are found
221         $ret  = '404';
222         $pass = '';
223
224         // Get hash
225         $pass = getAdminHash($admin);
226         if ($pass != '-1') $ret = 'pass';
227
228         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):".generatePassString($pass).'('.strlen($pass).")/".$password.'('.strlen($password).")<br />");
229
230         // Check if password matches
231         if (($ret == 'pass') && ((generatePassString($pass) == $password) || ($pass == $password) || ((strlen($pass) == 32) && (md5($password) == $pass)))) {
232                 // Passwords matches!
233                 $ret = 'done';
234         } // END - if
235
236         // Return result
237         return $ret;
238 }
239
240 // Do an admin action
241 function doAdminAction ($what) {
242         //* DEBUG: */ outputHtml(__LINE__."*".$what.'/'.getModule().'/'.getAction().'/'.getWhat()."*<br />");
243
244         // Remove any spaces from variable
245         if (empty($what)) {
246                 // Default admin action is the overview page
247                 $what = 'overview';
248         } else {
249                 // Compile out some chars
250                 $what = compileCode($what, false, false, false);
251         }
252
253         // Get action value
254         $action = getModeAction(getModule(), $what);
255
256         // Define admin login name and ID number
257         $content['login'] = getSession('admin_login');
258         $content['id']    = getCurrentAdminId();
259
260         // Preload templates
261         if (isExtensionActive('admins')) {
262                 $content['welcome'] = loadTemplate('admin_welcome_admins', true, $content);
263         } else {
264                 $content['welcome'] = loadTemplate('admin_welcome', true, $content);
265         }
266         $content['footer'] = loadTemplate('admin_footer' , true, $content);
267         $content['menu']   = addAdminMenu($action, $what, true);
268
269         // Tableset header
270         loadTemplate('admin_main_header', false, $content);
271
272         // Check if action/what pair is valid
273         $result_action = SQL_QUERY_ESC("SELECT
274         `id`
275 FROM
276         `{?_MYSQL_PREFIX?}_admin_menu`
277 WHERE
278         `action`='%s' AND
279         (
280                 (
281                         `what`='%s' AND `what` != 'overview'
282                 ) OR (
283                         (
284                                 `what`='' OR `what` IS NULL
285                         ) AND (
286                                 '%s'='overview'
287                         )
288                 )
289         )
290 LIMIT 1", array($action, $what, $what), __FUNCTION__, __LINE__);
291         if (SQL_NUMROWS($result_action) == 1) {
292                 // Is valid but does the inlcude file exists?
293                 $inc = sprintf("inc/modules/admin/action-%s.php", $action);
294                 if ((isIncludeReadable($inc)) && (isMenuActionValid('admin', $action, $what)) && ($GLOBALS['acl_allow'] === true)) {
295                         // Ok, we finally load the admin action module
296                         loadInclude($inc);
297                 } elseif ($GLOBALS['acl_allow'] === false) {
298                         // Access denied
299                         loadTemplate('admin_menu_failed', false, sprintf(getMessage('ADMIN_ACCESS_DENIED'), $what));
300                 } else {
301                         // Include file not found! :-(
302                         loadTemplate('admin_menu_failed', false, sprintf(getMessage('ADMIN_ACTION_404'), $action));
303                 }
304         } else {
305                 // Invalid action/what pair found!
306                 loadTemplate('admin_menu_failed', false, sprintf(getMessage('ADMIN_ACTION_INVALID'), $action.'/'.$what));
307         }
308
309         // Free memory
310         SQL_FREERESULT($result_action);
311
312         // Tableset footer
313         loadTemplate('admin_main_footer', false, $content);
314 }
315
316 // Adds an admin menu
317 function addAdminMenu ($action, $what, $return=false) {
318         // Init variables
319         $SUB = false;
320         $OUT = '';
321
322         // Menu descriptions
323         $GLOBALS['menu']['description'] = array();
324         $GLOBALS['menu']['title'] = array();
325
326         // Build main menu
327         $result_main = SQL_QUERY("SELECT
328         `action`, `title`, `descr`
329 FROM
330         `{?_MYSQL_PREFIX?}_admin_menu`
331 WHERE
332         (`what`='' OR `what` IS NULL)
333 ORDER BY
334         `sort` ASC,
335         `id` DESC", __FUNCTION__, __LINE__);
336         if (SQL_NUMROWS($result_main) > 0) {
337                 $OUT = "<div style=\"height:7px\" class=\"seperator\">&nbsp;</div>\n";
338                 $OUT .= "<ul class=\"admin_menu_main\">\n";
339                 // @TODO Rewrite this to $content = SQL_FETCHARRAY()
340                 while (list($menu, $title, $descr) = SQL_FETCHROW($result_main)) {
341                         if ((isExtensionActive('admins')) && (getExtensionVersion('admins') > '0.2.0')) {
342                                 $ACL = adminsCheckAdminAcl($menu, '');
343                         } else {
344                                 // @TODO ACL is 'allow'... hmmm
345                                 $ACL = true;
346                         }
347
348                         if ($ACL === true) {
349                                 if ($SUB === false) {
350                                         // Insert compiled menu title and description
351                                         $GLOBALS['menu']['title'][$menu]      = $title;
352                                         $GLOBALS['menu']['description'][$menu] = $descr;
353                                 }
354                                 $OUT .= "<li class=\"admin_menu\">
355 <div class=\"nobr\"><strong>&middot;</strong>&nbsp;";
356
357                                 if (($menu == $action) && (empty($what))) {
358                                         $OUT .= "<strong>";
359                                 } else {
360                                         $OUT .= "[<a href=\"{?URL?}/modules.php?module=admin&amp;action=".$menu."\">";
361                                 }
362
363                                 $OUT .= $title;
364
365                                 if (($menu == $action) && (empty($what))) {
366                                         $OUT .= "</strong>";
367                                 } else {
368                                         $OUT .= "</a>]";
369                                 }
370
371                                 $OUT .= "</div>
372 </li>\n";
373
374                                 // Check for menu entries
375                                 $result_what = SQL_QUERY_ESC("SELECT
376         `what`, `title`, `descr`
377 FROM
378         `{?_MYSQL_PREFIX?}_admin_menu`
379 WHERE
380         `action`='%s' AND
381         `what` != '' AND
382         `what` IS NOT NULL
383 ORDER BY
384         `sort` ASC,
385         `id` DESC",
386                                         array($menu), __FUNCTION__, __LINE__);
387
388                                 // Remember the count for later checks
389                                 setAdminMenuHasEntries($menu, ((SQL_NUMROWS($result_what) > 0) && ($action == $menu)));
390
391                                 // Do we have entries?
392                                 if ((ifAdminMenuHasEntries($menu)) && (SQL_NUMROWS($result_what) > 0)) {
393                                         $GLOBALS['menu']['description'] = array();
394                                         $GLOBALS['menu']['title'] = array(); $SUB = true;
395                                         $OUT .= "<li class=\"admin_menu_sub\"><ul class=\"admin_menu_sub\">\n";
396                                         // @TODO Rewrite this to $content = SQL_FETCHARRAY()
397                                         while (list($what_sub, $title_what, $desc_what) = SQL_FETCHROW($result_what)) {
398                                                 // Check for access level
399                                                 if ((isExtensionActive('admins')) && (getExtensionVersion('admins') > '0.2.0')) {
400                                                         $ACL = adminsCheckAdminAcl('', $what_sub);
401                                                 } else {
402                                                         // @TODO ACL is 'allow'... hmmm
403                                                         $ACL = true;
404                                                 }
405
406                                                 // Filename
407                                                 $inc = sprintf("inc/modules/admin/what-%s.php", $what_sub);
408
409                                                 // Is the file readable?
410                                                 $readable = isIncludeReadable($inc);
411
412                                                 // Access allowed?
413                                                 if ($ACL === true) {
414                                                         // Insert compiled title and description
415                                                         $GLOBALS['menu']['title'][$what_sub]      = $title_what;
416                                                         $GLOBALS['menu']['description'][$what_sub] = $desc_what;
417                                                         $OUT .= "<li class=\"admin_menu\">
418                 <div class=\"nobr\"><strong>--&gt;</strong>&nbsp;";
419                                                         if ($readable === true) {
420                                                                 if ($what == $what_sub) {
421                                                                         $OUT .= "<strong>";
422                                                                 } else {
423                                                                         $OUT .= "[<a href=\"{?URL?}/modules.php?module=admin&amp;what=".$what_sub."\">";
424                                                                 }
425                                                         } else {
426                                                                 $OUT .= "<em style=\"cursor:help\" class=\"admin_note\" title=\"{--MENU_WHAT_404--}\">";
427                                                         }
428
429                                                         $OUT .= $title_what;
430
431                                                         if ($readable === true) {
432                                                                 if ($what == $what_sub) {
433                                                                         $OUT .= "</strong>";
434                                                                 } else {
435                                                                         $OUT .= "</a>]";
436                                                                 }
437                                                         } else {
438                                                                 $OUT .= "</em>";
439                                                         }
440                                                         $OUT .= "</div>
441 </li>\n";
442                                                 } // END - if
443                                         } // END - while
444
445                                         // Free memory
446                                         SQL_FREERESULT($result_what);
447                                         $OUT .= "</ul>
448 </li>\n";
449                                 } // END - if
450
451                                 $OUT .= "<li style=\"height:7px\" class=\"seperator\">&nbsp;</li>\n";
452                         } // END - if
453                 } // END - while
454
455                 // Free memory
456                 SQL_FREERESULT($result_main);
457                 $OUT .= "</ul>\n";
458         }
459
460         // Is there a cache instance again?
461         // Return or output content?
462         if ($return === true) {
463                 return $OUT;
464         } else {
465                 outputHtml($OUT);
466         }
467 }
468
469 // Create member selection box
470 function addMemberSelectionBox ($def='0', $add_all=false, $return=false, $none=false, $field='userid') {
471         // Output selection form with all confirmed user accounts listed
472         $result = SQL_QUERY("SELECT `userid`, `surname`, `family` FROM `{?_MYSQL_PREFIX?}_user_data` ORDER BY `userid` ASC", __FUNCTION__, __LINE__);
473
474         // Default output
475         $OUT = '';
476
477         // USe this only for adding points (e.g. adding refs really makes no sence ;-) )
478         if ($add_all === true)   $OUT = "      <option value=\"all\">{--ALL_MEMBERS--}</option>\n";
479          elseif ($none === true) $OUT = "      <option value=\"0\">{--SELECT_NONE--}</option>\n";
480
481         while ($content = SQL_FETCHARRAY($result)) {
482                 $OUT .= "      <option value=\"".bigintval($content['userid'])."\"";
483                 if ($def == $content['userid']) $OUT .= ' selected="selected"';
484                 $OUT .= ">".$content['surname']." ".$content['family']." (".bigintval($content['userid']).")</option>\n";
485         } // END - while
486
487         // Free memory
488         SQL_FREERESULT($result);
489
490         if ($return === false) {
491                 // Remeber options in constant
492                 $content['member_selection'] = $OUT;
493                 $content['what']             = getWhat();
494
495                 // Load template
496                 loadTemplate('admin_member_selection_box', false, $content);
497         } else {
498                 // Return content in selection frame
499                 return "<select class=\"admin_select\" name=\"".$field."\" size=\"1\">\n".$OUT."</select>\n";
500         }
501 }
502
503 // Create a menu selection box for given menu system
504 // @TODO Try to rewrite this to adminAddMenuSelectionBox()
505 // @DEPRECATED
506 function adminMenuSelectionBox_DEPRECATED ($mode, $default = '', $defid = '') {
507         $what = "`what` != ''";
508         if ($mode == 'action') $what = "(`what`='' OR `what` IS NULL) AND action !='login'";
509         $result = SQL_QUERY_ESC("SELECT %s, title FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$what." ORDER BY `sort`",
510                 array($mode), __FUNCTION__, __LINE__);
511         if (SQL_NUMROWS($result) > 0) {
512                 // Load menu as selection
513                 $OUT = "<select name=\"".$mode."_menu";
514                 if ((!empty($defid)) || ($defid == '0')) $OUT .= "[".$defid."]";
515                 $OUT .= "\" size=\"1\" class=\"admin_select\">
516         <option value=\"\">{--SELECT_NONE--}</option>\n";
517                 // @TODO Try to rewrite this to $content = SQL_FETCHARRAY(). Please look some lines above for the dynamic query
518                 while (list($menu, $title) = SQL_FETCHROW($result)) {
519                         $OUT .= "  <option value=\"".$menu."\"";
520                         if ((!empty($default)) && ($default == $menu)) $OUT .= ' selected="selected"';
521                         $OUT .= ">".$title."</option>\n";
522                 } // END - while
523
524                 // Free memory
525                 SQL_FREERESULT($result);
526                 $OUT .= "</select>\n";
527         } else {
528                 // No menus???
529                 $OUT = getMessage('ADMIN_PROBLEM_NO_MENU');
530         }
531
532         // Return output
533         return $OUT;
534 }
535
536 // Wrapper for $_POST and adminSaveSettings
537 function adminSaveSettingsFromPostData ($tableName = "_config", $whereStatement = "config=0", $translateComma = array(), $alwaysAdd = false) {
538         // Get the array
539         $postData = postRequestArray();
540
541         // Call the lower function
542         adminSaveSettings($postData, $tableName, $whereStatement, $translateComma, $alwaysAdd);
543 }
544
545 // Save settings to the database
546 function adminSaveSettings (&$postData, $tableName = "_config", $whereStatement = "config=0", $translateComma = array(), $alwaysAdd = false) {
547         // Prepare all arrays, variables
548         $DATA = array();
549         $skip = false;
550
551         // Now, walk through all entries and prepare them for saving
552         foreach ($postData as $id => $val) {
553                 // Process only formular field but not submit buttons ;)
554                 if ($id != 'ok') {
555                         // Do not save the ok value
556                         convertSelectionsToTimestamp($postData, $DATA, $id, $skip);
557
558                         // Shall we process this ID? It muss not be empty, of course
559                         if (($skip === false) && (!empty($id))) {
560                                 // Save this entry
561                                 $val = compileCode($val);
562
563                                 // Translate the value? (comma to dot!)
564                                 if ((is_array($translateComma)) && (in_array($id, $translateComma))) {
565                                         // Then do it here... :)
566                                         $val = convertCommaToDot($val);
567                                 } // END - if
568
569                                 // Shall we add numbers or strings?
570                                 $test = (float)$val;
571                                 if ("".$val."" == ''.$test."") {
572                                         // Add numbers
573                                         $DATA[] = sprintf("`%s`=%s", $id, $test);
574                                 } else {
575                                         // Add strings
576                                         $DATA[] = sprintf("`%s`='%s'", $id, trim($val));
577                                 }
578
579                                 // Update current configuration
580                                 setConfigEntry($id, $val);
581                         } // END - if
582                 } // END - if
583         } // END - foreach
584
585         // Check if entry does exist
586         $result = false;
587         if ($alwaysAdd === false) {
588                 if (!empty($whereStatement)) {
589                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}".$tableName."` WHERE ".$whereStatement." LIMIT 1", __FUNCTION__, __LINE__);
590                 } else {
591                         $result = SQL_QUERY("SELECT * FROM `{?_MYSQL_PREFIX?}".$tableName."` LIMIT 1", __FUNCTION__, __LINE__);
592                 }
593         } // END - if
594
595         if (SQL_NUMROWS($result) == 1) {
596                 // "Implode" all data to single string
597                 $DATA_UPDATE = implode(", ", $DATA);
598
599                 // Generate SQL string
600                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}%s` SET %s WHERE %s LIMIT 1",
601                 $tableName,
602                 $DATA_UPDATE,
603                 $whereStatement
604                 );
605         } else {
606                 // Add Line (does only work with auto_increment!
607                 $KEYs = array(); $values = array();
608                 foreach ($DATA as $entry) {
609                         // Split up
610                         $line = explode('=', $entry);
611                         $KEYs[] = $line[0]; $values[] = $line[1];
612                 } // END - foreach
613
614                 // Add both in one line
615                 $KEYs = implode(", ", $KEYs);
616                 $values = implode(", ", $values);
617
618                 // Generate SQL string
619                 $sql = sprintf("INSERT INTO {?_MYSQL_PREFIX?}%s (%s) VALUES (%s)",
620                 $tableName,
621                 $KEYs,
622                 $values
623                 );
624         }
625
626         // Free memory
627         SQL_FREERESULT($result);
628
629         // Simply run generated SQL string
630         SQL_QUERY($sql, __FUNCTION__, __LINE__);
631
632         // Rebuild cache
633         rebuildCacheFile('config', 'config');
634
635         // Settings saved
636         loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED'));
637 }
638
639 // Generate a selection box
640 function adminAddMenuSelectionBox ($menu, $type, $name, $default = '') {
641         // Open the requested menu directory
642         $menuArray = getArrayFromDirectory(sprintf("inc/modules/%s/", $menu), '', false, false);
643
644         // Init the selection box
645         $OUT = "<select name=\"".$name."\" class=\"admin_select\" size=\"1\">
646         <option value=\"\">{--IS_TOP_MENU--}</option>\n";
647
648         // Walk through all files
649         foreach ($menuArray as $file) {
650                 // Is this a PHP script?
651                 if ((!isDirectory($file)) && (strpos($file, "".$type.'-') > -1) && (strpos($file, '.php') > 0)) {
652                         // Then test if the file is readable
653                         $test = sprintf("inc/modules/%s/%s", $menu, $file);
654
655                         // Is the file there?
656                         if (isIncludeReadable($test)) {
657                                 // Extract the value for what=xxx
658                                 $part = substr($file, (strlen($type) + 1));
659                                 $part = substr($part, 0, -4);
660
661                                 // Is that part different from the overview?
662                                 if ($part != 'overview') {
663                                         $OUT .= "       <option value=\"".$part."\"";
664                                         if ($part == $default) $OUT .= ' selected="selected"';
665                                         $OUT .= ">".$part."</option>\n";
666                                 } // END - if
667                         } // END - if
668                 } // END - if
669         } // END - foreach
670
671         // Close selection box
672         $OUT .= "</select>\n";
673
674         // Return contents
675         return $OUT;
676 }
677
678 // Creates a user-profile link for the admin. This function can also be used for many other purposes
679 function generateUserProfileLink ($userid, $title = '', $what = 'list_user') {
680         if (($title == '') && ($title != '0')) {
681                 // Set userid as title
682                 $title = $userid;
683         } // END - if
684
685         if (($title == '0') && ($what == 'list_refs')) {
686                 // Return title again
687                 return $title;
688         } // END - if
689
690         // Return link
691         //* DEBUG: */ outputHtml("a:".$title."<br />");
692         return '[<a href="{?URL?}/modules.php?module=admin&amp;what=' . $what . '&amp;userid=' . $userid . '" title="{--ADMIN_USER_PROFILE_TITLE--}">' . $title . '</a>]';
693 }
694
695 // Check "logical-area-mode"
696 function adminGetMenuMode () {
697         // Set the global mode as the mode for all admins
698         $mode = getConfig('admin_menu');
699         $ADMIN = $mode;
700
701         // Get admin id
702         $adminId = getCurrentAdminId();
703
704         // Check individual settings of current admin
705         if (isset($GLOBALS['cache_array']['admin']['la_mode'][$adminId])) {
706                 // Load from cache
707                 $ADMIN = $GLOBALS['cache_array']['admin']['la_mode'][$adminId];
708                 incrementStatsEntry('cache_hits');
709         } elseif (isExtensionInstalledAndNewer('admins', '0.6.7')) {
710                 // Load from database when version of 'admins' is enough
711                 $result = SQL_QUERY_ESC("SELECT la_mode FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
712                         array($adminId), __FUNCTION__, __LINE__);
713                 if (SQL_NUMROWS($result) == 1) {
714                         // Load data
715                         list($ADMIN) = SQL_FETCHROW($result);
716                 }
717
718                 // Free memory
719                 SQL_FREERESULT($result);
720         }
721
722         // Check what the admin wants and set it when it's not the global mode
723         if ($ADMIN != 'global') $mode = $ADMIN;
724
725         // Return admin-menu's mode
726         return $mode;
727 }
728
729 // Change activation status
730 function adminChangeActivationStatus ($IDs, $table, $row, $idRow = 'id') {
731         $cnt = 0; $newStatus = 'Y';
732         if ((is_array($IDs)) && (count($IDs) > 0)) {
733                 // "Walk" all through and count them
734                 foreach ($IDs as $id => $selected) {
735                         // Secure the ID number
736                         $id = bigintval($id);
737
738                         // Should always be set... ;-)
739                         if (!empty($selected)) {
740                                 // Determine new status
741                                 $result = SQL_QUERY_ESC("SELECT %s FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
742                                 array($row, $table, $idRow, $id), __FUNCTION__, __LINE__);
743
744                                 // Row found?
745                                 if (SQL_NUMROWS($result) == 1) {
746                                         // Load the status
747                                         list($currStatus) = SQL_FETCHROW($result);
748
749                                         // And switch it N<->Y
750                                         if ($currStatus == 'Y') $newStatus = 'N'; else $newStatus = 'Y';
751
752                                         // Change this status
753                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s` SET %s='%s' WHERE %s=%s LIMIT 1",
754                                         array($table, $row, $newStatus, $idRow, $id), __FUNCTION__, __LINE__);
755
756                                         // Count up affected rows
757                                         $cnt += SQL_AFFECTEDROWS();
758                                 } // END - if
759
760                                 // Free the result
761                                 SQL_FREERESULT($result);
762                         } // END - if
763                 } // END - foreach
764
765                 // Output status
766                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_STATUS_CHANGED'), $cnt, count($IDs)));
767         } else {
768                 // Nothing selected!
769                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NOTHING_SELECTED_CHANGE'));
770         }
771 }
772
773 // Send mails for del/edit/lock build modes
774 function sendAdminBuildMails ($mode, $table, $content, $id, $subjectPart = '') {
775         // Default subject is the subject part
776         $subject = $subjectPart;
777
778         // Is the subject part not set?
779         if (empty($subjectPart)) {
780                 // Then use it from the mode
781                 $subject = strtoupper($mode);
782         } // END - if
783
784         // Is the raw userid set?
785         if (postRequestElement('userid_raw', $id) > 0) {
786                 // Generate subject
787                 $subjectLine = getMessage('MEMBER_'.strtoupper($subject).'_'.strtoupper($table).'_SUBJECT');
788
789                 // Load email template
790                 if (!empty($subjectPart)) {
791                         $mail = loadEmailTemplate('member_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content);
792                 } else {
793                         $mail = loadEmailTemplate('member_' . $mode . '_' . $table, $content);
794                 }
795
796                 // Send email out
797                 sendEmail(postRequestElement('userid_raw', $id), $subjectLine, $mail);
798         } // END - if
799
800         // Generate subject
801         $subjectLine = getMessage('ADMIN_'.strtoupper($subject).'_'.strtoupper($table).'_SUBJECT');
802
803         // Send admin notification out
804         if (!empty($subjectPart)) {
805                 sendAdminNotification($subjectLine, 'admin_' . $mode . '_' . strtolower($subjectPart) . '_' . $table, $content, postRequestElement('userid_raw', $id));
806         } else {
807                 sendAdminNotification($subjectLine, 'admin_' . $mode . '_' . $table, $content, postRequestElement('userid_raw', $id));
808         }
809 }
810
811 // Build a special template list
812 function adminListBuilder ($listType, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn) {
813         $OUT = ''; $SW = 2;
814
815         // "Walk" through all entries
816         foreach ($IDs as $id => $selected) {
817                 // Secure ID number
818                 $id = bigintval($id);
819
820                 // Get result from a given column array and table name
821                 $result = SQL_RESULT_FROM_ARRAY($table, $columns, $idColumn, $id, __FUNCTION__, __LINE__);
822
823                 // Is there one entry?
824                 if (SQL_NUMROWS($result) == 1) {
825                         // Load all data
826                         $content = SQL_FETCHARRAY($result);
827
828                         // Filter all data
829                         foreach ($content as $key => $value) {
830                                 // Search index
831                                 $idx = array_search($key, $columns, true);
832
833                                 // Do we have a userid?
834                                 if ($key == 'userid') {
835                                         // Add it again as raw id
836                                         $content['userid'] = bigintval($value);
837                                 } // END - if
838
839                                 // Handle the call in external function
840                                 $content[$key] = handleExtraValues($filterFunctions[$idx], $value, $extraValues[$idx]);
841                         } // END - foreach
842
843                         // Add color switching
844                         $content['sw'] = $SW;
845
846                         // Then list it
847                         $OUT .= loadTemplate(sprintf("admin_%s_%s_row",
848                         $listType,
849                         $table
850                         ), true, $content
851                         );
852
853                         // Switch color
854                         $SW = 3 - $SW;
855                 } // END - if
856
857                 // Free the result
858                 SQL_FREERESULT($result);
859         } // END - foreach
860
861         // Load master template
862         loadTemplate(sprintf("admin_%s_%s",
863         $listType,
864         $table
865         ), false, $OUT
866         );
867 }
868
869 // Change status of "build" list
870 function adminBuilderStatusHandler ($mode, $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray) {
871         // All valid entries? (We hope so here!)
872         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (count($statusArray) > 0)) {
873                 // "Walk" through all entries
874                 foreach ($IDs as $id => $sel) {
875                         // Construct SQL query
876                         $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET", SQL_ESCAPE($table));
877
878                         // Load data of entry
879                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
880                                 array($table, $idColumn, $id), __FUNCTION__, __LINE__);
881
882                         // Fetch the data
883                         $content = SQL_FETCHARRAY($result);
884
885                         // Free the result
886                         SQL_FREERESULT($result);
887
888                         // Add all status entries (e.g. status column last_updated or so)
889                         $newStatus = 'UNKNOWN';
890                         $oldStatus = 'UNKNOWN';
891                         $statusColumn = 'unknown';
892                         foreach ($statusArray as $column => $statusInfo) {
893                                 // Does the entry exist?
894                                 if ((isset($content[$column])) && (isset($statusInfo[$content[$column]]))) {
895                                         // Add these entries for update
896                                         $sql .= sprintf(" %s='%s',", SQL_ESCAPE($column), SQL_ESCAPE($statusInfo[$content[$column]]));
897
898                                         // Remember status
899                                         if ($statusColumn == 'unknown') {
900                                                 // Always (!!!) change status column first!
901                                                 $oldStatus = $content[$column];
902                                                 $newStatus = $statusInfo[$oldStatus];
903                                                 $statusColumn = $column;
904                                         } // END - if
905                                 } elseif (isset($content[$column])) {
906                                         // Unfinished!
907                                         app_die(__FUNCTION__, __LINE__, ":UNFINISHED: id={$id}/{$column}[".gettype($statusInfo)."] = {$content[$column]}");
908                                 }
909                         } // END - foreach
910
911                         // Add other columns as well
912                         foreach (postRequestArray() as $key => $entries) {
913                                 // Skip id, raw userid and 'do_$mode'
914                                 if (!in_array($key, array($idColumn, 'userid_raw', ('do_'.$mode)))) {
915                                         // Are there brackets () at the end?
916                                         if (substr($entries[$id], -2, 2) == "()") {
917                                                 // Direct SQL command found
918                                                 $sql .= sprintf(" %s=%s,", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
919                                         } else {
920                                                 // Add regular entry
921                                                 $sql .= sprintf(" %s='%s',", SQL_ESCAPE($key), SQL_ESCAPE($entries[$id]));
922
923                                                 // Add entry
924                                                 $content[$key] = $entries[$id];
925                                         }
926                                 } // END - if
927                         } // END - foreach
928
929                         // Finish SQL statement
930                         $sql = substr($sql, 0, -1) . sprintf(" WHERE `%s`=%s AND `%s`='%s' LIMIT 1",
931                                 $idColumn,
932                                 bigintval($id),
933                                 $statusColumn,
934                                 $oldStatus
935                         );
936
937                         // Run the SQL
938                         SQL_QUERY($sql, __FUNCTION__, __LINE__);
939
940                         // Do we have an URL?
941                         if (isset($content['url'])) {
942                                 // Then add a framekiller test as well
943                                 $content['frametester'] = generateFrametesterUrl($content['url']);
944                         } // END - if
945
946                         // Send "build mails" out
947                         sendAdminBuildMails($mode, $table, $content, $id, $statusInfo[$content[$column]]);
948                 } // END - foreach
949         } // END - if
950 }
951
952 // Delete rows by given ID numbers
953 function adminDeleteEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $deleteNow=false, $idColumn='id', $userIdColumn='userid') {
954         // All valid entries? (We hope so here!)
955         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
956                 // Shall we delete here or list for deletion?
957                 if ($deleteNow === true) {
958                         // The base SQL command:
959                         $sql = "DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s IN (%s)";
960
961                         // Delete them all
962                         $idList = '';
963                         foreach ($IDs as $id => $sel) {
964                                 // Is there a userid?
965                                 if (isPostRequestElementSet('userid_raw', $id)) {
966                                         // Load all data from that id
967                                         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE %s=%s LIMIT 1",
968                                         array($table, $idColumn, $id), __FUNCTION__, __LINE__);
969
970                                         // Fetch the data
971                                         $content = SQL_FETCHARRAY($result);
972
973                                         // Free the result
974                                         SQL_FREERESULT($result);
975
976                                         // Send "build mails" out
977                                         sendAdminBuildMails('del', $table, $content, $id);
978                                 } // END - if
979
980                                 // Add id number
981                                 $idList .= $id . ',';
982                         } // END - foreach
983
984                         // Run the query
985                         SQL_QUERY($sql, array($table, $idColumn, substr($idList, 0, -1)), __FUNCTION__, __LINE__);
986
987                         // Was this fine?
988                         if (SQL_AFFECTEDROWS() == count($IDs)) {
989                                 // All deleted
990                                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_ENTRIES_REMOVED'));
991                         } else {
992                                 // Some are still there :(
993                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_DELETED'), SQL_AFFECTEDROWS(), count($IDs)));
994                         }
995                 } else {
996                         // List for deletion confirmation
997                         adminListBuilder('del', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
998                 }
999         } // END - if
1000 }
1001
1002 // Edit rows by given ID numbers
1003 function adminEditEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $editNow=false, $idColumn='id', $userIdColumn='userid') {
1004         // All valid entries? (We hope so here!)
1005         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues))) {
1006                 // Shall we change here or list for editing?
1007                 if ($editNow === true) {
1008                         // Change them all
1009                         $affected = 0;
1010                         foreach ($IDs as $id => $sel) {
1011                                 // Prepare content array (new values)
1012                                 $content = array();
1013
1014                                 // Prepare SQL for this row
1015                                 $sql = sprintf("UPDATE `{?_MYSQL_PREFIX?}_%s` SET",
1016                                         SQL_ESCAPE($table)
1017                                 );
1018                                 foreach (postRequestArray() as $key => $entries) {
1019                                         // Skip raw userid which is always invalid
1020                                         if ($key == 'userid_raw') {
1021                                                 // Continue with next field
1022                                                 continue;
1023                                         } // END - if
1024
1025                                         // Is entries an array?
1026                                         if (($key != $idColumn) && (is_array($entries)) && (isset($entries[$id]))) {
1027                                                 // Add this entry to content
1028                                                 $content[$key] = $entries[$id];
1029
1030                                                 // Send data through the filter function if found
1031                                                 if ((isset($filterFunctions[$key])) && (isset($extraValues[$key]))) {
1032                                                         // Filter function set!
1033                                                         $entries[$id] = handleExtraValues($filterFunctions[$key], $entries[$id], $extraValues[$key]);
1034                                                 } // END - if
1035
1036                                                 // Then add this value
1037                                                 $sql .= sprintf(" `%s`='%s',",
1038                                                 SQL_ESCAPE($key),
1039                                                 SQL_ESCAPE($entries[$id])
1040                                                 );
1041                                         } elseif (($key != $idColumn) && (!is_array($entries))) {
1042                                                 // Add normal entries as well!
1043                                                 $content[$key] =  $entries;
1044                                         }
1045
1046                                         // Do we have an URL?
1047                                         if ($key == 'url') {
1048                                                 // Then add a framekiller test as well
1049                                                 $content['frametester'] = generateFrametesterUrl($content[$key]);
1050                                         } // END - if
1051                                 } // END - foreach
1052
1053                                 // Finish SQL command
1054                                 $sql = substr($sql, 0, -1) . " WHERE `".$idColumn."`=".bigintval($id)." LIMIT 1";
1055
1056                                 // Run this query
1057                                 SQL_QUERY($sql, __FUNCTION__, __LINE__);
1058
1059                                 // Add affected rows
1060                                 $affected += SQL_AFFECTEDROWS();
1061
1062                                 // Load all data from that id
1063                                 $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`=%s LIMIT 1",
1064                                         array($table, $idColumn, $id), __FUNCTION__, __LINE__);
1065
1066                                 // Fetch the data and merge it into $content
1067                                 $content = merge_array($content, SQL_FETCHARRAY($result));
1068
1069                                 // Free the result
1070                                 SQL_FREERESULT($result);
1071
1072                                 // Send "build mails" out
1073                                 sendAdminBuildMails('edit', $table, $content, $id);
1074                         } // END - foreach
1075
1076                         // Was this fine?
1077                         if ($affected == count($IDs)) {
1078                                 // All deleted
1079                                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_ENTRIES_EDITED'));
1080                         } else {
1081                                 // Some are still there :(
1082                                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SOME_ENTRIES_NOT_EDITED'), $affected, count($IDs)));
1083                         }
1084                 } else {
1085                         // List for editing
1086                         adminListBuilder('edit', $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1087                 }
1088         } // END - if
1089 }
1090
1091 // Un-/lock rows by given ID numbers
1092 function adminLockEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $lockNow=false, $idColumn='id', $userIdColumn='userid') {
1093         // All valid entries? (We hope so here!)
1094         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($lockNow === false) || (count($statusArray) == 1))) {
1095                 // Shall we un-/lock here or list for locking?
1096                 if ($lockNow === true) {
1097                         // Un-/lock entries
1098                         adminBuilderStatusHandler("lock", $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1099                 } else {
1100                         // List for editing
1101                         adminListBuilder("lock", $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1102                 }
1103         } // END - if
1104 }
1105
1106 // Undelete rows by given ID numbers
1107 function adminUndeleteEntriesConfirm ($IDs, $table, $columns=array(), $filterFunctions=array(), $extraValues=array(), $statusArray=array(), $undeleteNow=false, $idColumn='id', $userIdColumn='userid') {
1108         // All valid entries? (We hope so here!)
1109         if ((is_array($IDs)) && (count($IDs) > 0) && (count($columns) == count($filterFunctions)) && (count($columns) == count($extraValues)) && (($undeleteNow === false) || (count($statusArray) == 1))) {
1110                 // Shall we un-/lock here or list for locking?
1111                 if ($undeleteNow === true) {
1112                         // Undelete entries
1113                         adminBuilderStatusHandler("undelete", $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn, $statusArray);
1114                 } else {
1115                         // List for editing
1116                         adminListBuilder("undelete", $IDs, $table, $columns, $filterFunctions, $extraValues, $idColumn, $userIdColumn);
1117                 }
1118         } // END - if
1119 }
1120
1121 // Checks proxy settins by fetching check-updates3.php from www.mxchange.org
1122 function adminTestProxySettings ($settingsArray) {
1123         // Set temporary the new settings
1124         mergeConfig($settingsArray);
1125
1126         // Now get the test URL
1127         $content = sendGetRequest('check-updates3.php');
1128
1129         // Is the first line with "200 OK"?
1130         $valid = (strpos($content[0], '200 OK') !== false);
1131
1132         // Return result
1133         return $valid;
1134 }
1135
1136 // Sends out a link to the given email adress so the admin can reset his/her password
1137 function sendAdminPasswordResetLink ($email) {
1138         // Init output
1139         $OUT = '';
1140
1141         // Compile out security characters (must be for looking up!)
1142         $email = compileCode($email);
1143
1144         // Look up administator login
1145         $result = SQL_QUERY_ESC("SELECT `id`, `login`, `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `email`='%s' LIMIT 1",
1146                 array($email), __FUNCTION__, __LINE__);
1147
1148         // Is there an account?
1149         if (SQL_NUMROWS($result) == 0) {
1150                 // No account found!
1151                 return getMessage('ADMIN_NO_LOGIN_WITH_EMAIL');
1152         } // END - if
1153
1154         // Load all data
1155         $content = SQL_FETCHARRAY($result);
1156
1157         // Free result
1158         SQL_FREERESULT($result);
1159
1160         // Generate hash for reset link
1161         $content['hash'] = generateHash(getConfig('URL').':'.$content['id'].':'.$content['login'].':'.$content['password'], substr($content['password'], 10));
1162
1163         // Remove some data
1164         unset($content['id']);
1165         unset($content['password']);
1166
1167         // Prepare email
1168         $mailText = loadEmailTemplate('admin_reset_password', $content);
1169
1170         // Send it out
1171         sendEmail($email, getMessage('ADMIN_RESET_PASS_LINK_SUBJ'), $mailText);
1172
1173         // Prepare output
1174         return getMessage('ADMIN_RESET_LINK_SENT');
1175 }
1176
1177 // Validate hash and login for password reset
1178 function adminResetValidateHashLogin ($hash, $login) {
1179         // By default nothing validates... ;)
1180         $valid = false;
1181
1182         // Compile the login for lookup
1183         $login = compileCode($login);
1184
1185         // Then try to find that user
1186         $result = SQL_QUERY_ESC("SELECT `id`, `password`, `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1187         array($login), __FUNCTION__, __LINE__);
1188
1189         // Is an account here?
1190         if (SQL_NUMROWS($result) == 1) {
1191                 // Load all data
1192                 $content = SQL_FETCHARRAY($result);
1193
1194                 // Generate hash again
1195                 $hashFromData = generateHash(getConfig('URL').':'.$content['id'].':'.$login.':'.$content['password'], substr($content['password'], 10));
1196
1197                 // Does both match?
1198                 $valid = ($hash == $hashFromData);
1199         } // END - if
1200
1201         // Free result
1202         SQL_FREERESULT($result);
1203
1204         // Return result
1205         return $valid;
1206 }
1207
1208 // Reset the password for the login. Do NOT call this function without calling above function first!
1209 function doResetAdminPassword ($login, $password) {
1210         // Init hash
1211         $passHash = '';
1212
1213         // Now check if we have sql_patches installed
1214         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
1215                 // Use new way of hashing
1216                 $passHash = generateHash($password);
1217         } else {
1218                 // Old MD5 method
1219                 $passHash = md5($password);
1220         }
1221
1222         // Update database
1223         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `password`='%s' WHERE `login`='%s' LIMIT 1",
1224                 array($passHash, $login), __FUNCTION__, __LINE__);
1225
1226         // Run filters
1227         runFilterChain('post_admin_reset_pass', array('login' => $login, 'hash' => $passHash));
1228
1229         // Return output
1230         return getMessage('ADMIN_PASSWORD_RESET_DONE');
1231 }
1232
1233 // Solves a task by given id number
1234 function adminSolveTask ($id) {
1235         // Update the task data
1236         adminUpdateTaskData($id, 'status', 'SOLVED');
1237 }
1238
1239 // Marks a given task as deleted
1240 function adminDeleteTask ($id) {
1241         // Update the task data
1242         adminUpdateTaskData($id, 'status', 'DELETED');
1243 }
1244
1245 // Function to update task data
1246 function adminUpdateTaskData ($id, $row, $data) {
1247         // Should be admin!
1248         if (!isAdmin()) {
1249                 // Not an admin so redirect better
1250                 redirectToUrl('index.php');
1251         } // END - if
1252
1253         // Is the id not set, then we need a backtrace here... :(
1254         if ($id <= 0) {
1255                 // Initiate backtrace
1256                 debug_report_bug(sprintf("id is invalid: %s. row=%s, data=%s",
1257                         $id,
1258                         $row,
1259                         $data
1260                 ));
1261         } // END - if
1262
1263         // Update the task
1264         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `%s`='%s' WHERE `id`=%s LIMIT 1",
1265                 array($row, $data, bigintval($id)), __FUNCTION__, __LINE__);
1266 }
1267
1268 // Checks wether if the admin menu has entries
1269 function ifAdminMenuHasEntries ($action) {
1270         return (
1271                 ((
1272                         isset($GLOBALS['admin_menu_has_entries'][$action])
1273                 ) && (
1274                         $GLOBALS['admin_menu_has_entries'][$action] === true
1275                 )) || (
1276                         $action == 'login'
1277                 )
1278         );
1279 }
1280
1281 // Setter for 'admin_menu_has_entries'
1282 function setAdminMenuHasEntries ($action, $hasEntries) {
1283         $GLOBALS['admin_menu_has_entries'][$action] = (bool) $hasEntries;
1284 }
1285
1286 // Creates a link to the user's admin-profile
1287 function adminCreateUserLink ($userid) {
1288         // Is the userid set correctly?
1289         if ($userid > 0) {
1290                 // Create a link to that profile
1291                 return '{?URL?}/modules.php?module=admin&amp;what=list_user&amp;userid='.bigintval($userid);
1292         } // END - if
1293
1294         // Return a link to the user list
1295         return '{?URL?}/modules.php?module=admin&amp;what=list_user';
1296 }
1297
1298 // [EOF]
1299 ?>