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