344b5909ffa60d37fa9f034c5454e8328797ef36
[mailer.git] / inc / libs / admins_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/30/2003 *
4  * ===================                          Last change: 11/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : admins_functions.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for the admins extension               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer die admins-Erweiterung           *
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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 }
44
45 // Check ACL for menu combination
46 function adminsCheckAdminAcl ($action, $what) {
47         // If action is login or logout allow allways!
48         $default = 'allow';
49         if (($action == 'login') || ($action == 'logout')) return true;
50
51         // Default is deny
52         $ret = false;
53
54         // Get admin's id
55         $adminId = getCurrentAdminId();
56
57         // Get admin's defult access right
58         $default = getAdminDefaultAcl($adminId);
59
60         if (!empty($what)) {
61                 // Check for parent menu:
62                 // First get it's action value
63                 $parent_action = getActionFromModuleWhat('admin', $what);
64
65                 // Check with this function...
66                 $parent = adminsCheckAdminAcl($parent_action, '');
67         } else {
68                 // Anything else is true!
69                 $parent = false;
70         }
71
72         // Shall I test for a main or sub menu? (action or what?)
73         $acl_mode = 'failed';
74         if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isset($GLOBALS['cache_array']['admin_acls'])) && (count($GLOBALS['cache_array']['admin_acls']) > 0)) {
75                 // Lookup in cache
76                 if ((!empty($action)) && (isset($GLOBALS['cache_array']['admin_acls']['action_menu'][$adminId])) & ($GLOBALS['cache_array']['admin_acls']['action_menu'][$adminId] == $action)) {
77                         // Main menu line found
78                         $acl_mode = $GLOBALS['cache_array']['admin_acls']['access_mode'][$adminId];
79
80                         // Count cache hits
81                         incrementStatsEntry('cache_hits');
82                 } elseif ((!empty($what)) && (isset($GLOBALS['cache_array']['admin_acls']['what_menu'][$adminId])) && ($GLOBALS['cache_array']['admin_acls']['what_menu'][$adminId] == $what)) {
83                         // Check sub menu
84                         $acl_mode = $GLOBALS['cache_array']['admin_acls']['access_mode'][$adminId];
85
86                         // Count cache hits
87                         incrementStatsEntry('cache_hits');
88                 }
89         } elseif (!isExtensionActive('cache')) {
90                 // Old version, so load it from database
91                 $result = false;
92                 if (!empty($action)) {
93                         // Main menu
94                         $result = SQL_QUERY_ESC("SELECT `access_mode` FROM `{?_MYSQL_PREFIX?}_admins_acls` WHERE `admin_id`=%s AND `action_menu`='%s' LIMIT 1",
95                                 array(bigintval($adminId), $action), __FUNCTION__, __LINE__);
96                 } elseif (!empty($what)) {
97                         // Sub menu
98                         $result = SQL_QUERY_ESC("SELECT `access_mode` FROM `{?_MYSQL_PREFIX?}_admins_acls` WHERE `admin_id`=%s AND `what_menu`='%s' LIMIT 1",
99                                 array(bigintval($adminId), $what), __FUNCTION__, __LINE__);
100                 }
101
102                 // Is an entry found?
103                 if (SQL_NUMROWS($result) == 1) {
104                         // Load ACL
105                         list($acl_mode) = SQL_FETCHROW($result);
106                 } // END - if
107
108                 // Free memory
109                 SQL_FREERESULT($result);
110         }
111
112         // Check ACL and (maybe) allow
113         //* DEBUG: */ debugOutput('default='.$default.',acl_mode='.$acl_mode.',parent='.intval($parent));
114         if (($default == 'allow') || (($default == 'deny') && ($acl_mode == 'allow')) || ($parent === true) || (($default == '***') && ($acl_mode == 'failed') && ($parent === false))) {
115                 // Access is granted
116                 $ret = true;
117         } // END - if
118
119         // Return value
120         //* DEBUG: */ debugOutput(__FUNCTION__.'['.__LINE__.']:act='.$action.',wht='.$what.',default='.$default.',acl_mode='.$acl_mode);
121         return $ret;
122 }
123
124 // Create email link to admins's account
125 function generateAdminEmailLink ($email, $mod = 'admin') {
126         // Is it an email?
127         if (strpos($email, '@') !== false) {
128                 // Create email link
129                 $result = SQL_QUERY_ESC("SELECT `id`
130 FROM
131         `{?_MYSQL_PREFIX?}_admins`
132 WHERE
133         `email`='%s'
134 LIMIT 1",
135                 array($email), __FUNCTION__, __LINE__);
136
137                 // Is there an entry?
138                 if (SQL_NUMROWS($result) == 1) {
139                         // Load userid
140                         list($adminId) = SQL_FETCHROW($result);
141
142                         // Rewrite email address to contact link
143                         $email = '{%url=modules.php?module=' . $mod . '&amp;what=admins_contct&amp;admin=' . bigintval($adminId) . '%}';
144                 } // END - if
145
146                 // Free memory
147                 SQL_FREERESULT($result);
148         } elseif ((is_int($email)) && ($email > 0)) {
149                 // Direct id given
150                 $email = '{%url=modules.php?module=' . $mod . '&amp;what=admins_contct&amp;admin=' . bigintval($email) . '%}';
151         }
152
153         // Return rewritten (?) email address
154         return $email;
155 }
156
157 // Change a lot admin account
158 function adminsChangeAdminAccount ($postData, $element = '') {
159         // Begin the update
160         $cache_update = '0';
161         foreach ($postData['login'] as $id => $login) {
162                 // Secure id number
163                 $id = bigintval($id);
164
165                 // When both passwords match update admin account
166                 if ((!empty($element)) && (isset($postData[$element]))) {
167                         // Save this setting
168                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admins` SET `%s`='%s' WHERE `id`=%s LIMIT 1",
169                                 array($element, $postData[$element][$id], $id), __FUNCTION__, __LINE__);
170
171                         // Admin account saved
172                         $message = '{--ADMIN_ACCOUNT_SAVED--}';
173                 } elseif ((isset($postData['pass1'])) && (isset($postData['pass2']))) {
174                         // Update only if both passwords match
175                         if (($postData['pass1'][$id] == $postData['pass2'][$id])) {
176                                 // Save only when both passwords are the same (also when they are empty)
177                                 $add = ''; $cache_update = 1;
178
179                                 // Generate hash
180                                 $hash = generateHash($postData['pass1'][$id]);
181
182                                 // Save password when set
183                                 if (!empty($postData['pass1'][$id])) $add = sprintf(", `password`='%s'", SQL_ESCAPE($hash));
184
185                                 // Get admin's id
186                                 $adminId = getCurrentAdminId();
187                                 $salt = substr(getAdminHash(getAdminLogin($adminId)), 0, -40);
188
189                                 // Rewrite cookie when it's own account
190                                 if ($adminId == $id) {
191                                         // Set timeout cookie
192                                         setSession('admin_last', time());
193
194                                         if ($adminId != getSession('admin_id')) {
195                                                 // Update login cookie
196                                                 setSession('admin_id', $adminId);
197
198                                                 // Update password cookie as well?
199                                                 if (!empty($add)) setSession('admin_md5', $hash);
200                                         } elseif (generateHash($postData['pass1'][$id], $salt) != getSession('admin_md5')) {
201                                                 // Update password cookie
202                                                 setSession('admin_md5', $hash);
203                                         }
204                                 } // END - if
205
206                                 // Get default ACL from admin to check if we can allow him to change the default ACL
207                                 $default = getAdminDefaultAcl(getCurrentAdminId());
208
209                                 // Update admin account
210                                 if ($default == 'allow') {
211                                         // Allow changing default ACL
212                                         SQL_QUERY_ESC("UPDATE
213         `{?_MYSQL_PREFIX?}_admins`
214 SET
215         `login`='%s'" . $add . ",
216         `email`='%s',
217         `default_acl`='%s',
218         `la_mode`='%s'
219 WHERE
220         `id`=%s
221 LIMIT 1",
222                                         array(
223                                                 $login,
224                                                 $postData['email'][$id],
225                                                 $postData['mode'][$id],
226                                                 $postData['la_mode'][$id],
227                                                 $id
228                                         ), __FUNCTION__, __LINE__);
229                                 } else {
230                                         // Do not allow it here
231                                         SQL_QUERY_ESC("UPDATE
232         `{?_MYSQL_PREFIX?}_admins`
233 SET
234         `login`='%s'" . $add . ",
235         `email`='%s',
236         `la_mode`='%s'
237 WHERE
238         `id`=%s
239 LIMIT 1",
240                                         array(
241                                                 $login,
242                                                 $postData['email'][$id],
243                                                 $postData['la_mode'][$id],
244                                                 $id
245                                         ), __FUNCTION__, __LINE__);
246                                 }
247
248                                 // Admin account saved
249                                 $message = '{--ADMIN_ACCOUNT_SAVED--}';
250                         } else {
251                                 // Passwords did not match
252                                 $message = '{--ADMINS_ERROR_PASS_MISMATCH--}';
253                         }
254                 } else {
255                         // Update whole array
256                         $SQL = 'UPDATE `{?_MYSQL_PREFIX?}_admins` SET ';
257                         foreach ($postData as $entry => $value) {
258                                 // Skip login/id entry
259                                 if (in_array($entry, array('login', 'id'))) continue;
260
261                                 // Do we have a non-string (e.g. number, NOW() or back-tick at the beginning?
262                                 if ((bigintval($value[$id], true, false) === $value[$id]) || ($value[$id] == 'NOW()') || (substr($value[$id], 0, 1) == '`'))  {
263                                         // No need for ticks (')
264                                         $SQL .= '`' . $entry . '`=' . $value[$id] . ',';
265                                 } else {
266                                         // Strings need ticks (') around them
267                                         $SQL .= '`' . $entry . "`='" . SQL_ESCAPE($value[$id]) . "',";
268                                 }
269                         } // END - foreach
270
271                         // Remove last tick and finish query
272                         $SQL = substr($SQL, 0, -1) . ' WHERE `id`=%s LIMIT 1';
273
274                         // Run it
275                         SQL_QUERY_ESC($SQL, array(bigintval($id)), __FUNCTION__, __LINE__);
276                 }
277         } // END - foreach
278
279         // Display message
280         if (!empty($message)) {
281                 loadTemplate('admin_settings_saved', false, $message);
282         } // END - if
283
284         // Remove cache file
285         runFilterChain('post_admin_edited', postRequestArray());
286 }
287
288 // Make admin accounts editable
289 function adminsEditAdminAccount ($postData) {
290         // "Resolve" current's admin access mode
291         $currMode = getAdminDefaultAcl(getCurrentAdminId());
292
293         // Begin the edit loop
294         $OUT = '';
295         foreach ($postData['sel'] as $id => $selected) {
296                 // Secure id number
297                 $id = bigintval($id);
298
299                 // Get the admin's data
300                 $result = SQL_QUERY_ESC("SELECT `login`, `email`, `default_acl` AS mode, `la_mode` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
301                         array($id), __FUNCTION__, __LINE__);
302                 if ((SQL_NUMROWS($result) == 1) && ($selected == 1)) {
303                         // Entry found
304                         $content = SQL_FETCHARRAY($result);
305                         SQL_FREERESULT($result);
306
307                         // Prepare some more data for the template
308                         $content['id'] = $id;
309
310                         // Shall we allow changing default ACL?
311                         if ($currMode == 'allow') {
312                                 // Allow chaning it
313                                 $content['mode']    = generateOptionList('/ARRAY/', array('allow', 'deny'), array('{--ADMINS_ALLOW_MODE--}', '{--ADMINS_DENY_MODE--}'), $content['mode']);
314                         } else {
315                                 // Don't allow it
316                                 $content['mode'] = '&nbsp;';
317                         }
318                         $content['la_mode'] = generateOptionList('/ARRAY/', array('global', 'OLD', 'NEW'), array('{--ADMINS_GLOBAL_LA_SETTING--}', '{--ADMINS_OLD_LA_SETTING--}', '{--ADMINS_NEW_LA_SETTING--}'), $content['la_mode']);
319
320                         // Load row template and switch color
321                         $OUT .= loadTemplate('admin_edit_admins_row', true, $content);
322                 } // END - if
323         } // END - foreach
324
325         // Load template
326         loadTemplate('admin_edit_admins', false, $OUT);
327 }
328
329 // Delete given admin accounts
330 function adminsDeleteAdminAccount ($postData) {
331         // Check if this account is the last one which cannot be deleted...
332         $result_main = SQL_QUERY("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins`", __FUNCTION__, __LINE__);
333         $accounts = SQL_NUMROWS($result_main);
334         SQL_FREERESULT($result_main);
335         if ($accounts > 1) {
336                 // Delete accounts
337                 $OUT = '';
338                 foreach ($postData['sel'] as $id => $selected) {
339                         // Secure id number
340                         $id = bigintval($id);
341
342                         // Get the admin's data
343                         $result = SQL_QUERY_ESC("SELECT login, email, default_acl AS mode, la_mode FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
344                                 array($id), __FUNCTION__, __LINE__);
345                         if (SQL_NUMROWS($result) == 1) {
346                                 // Entry found
347                                 $content = SQL_FETCHARRAY($result);
348                                 SQL_FREERESULT($result);
349                                 $content['mode']    = '{--ADMINS_' . strtoupper($content['mode'])    . '_MODE--}';
350                                 $content['la_mode'] = '{--ADMINS_' . strtoupper($content['la_mode']) . '_LA_SETTING--}';
351
352                                 // Prepare some more data
353                                 $content['id'] = $id;
354
355                                 // Load row template and switch color
356                                 $OUT .= loadTemplate('admin_del_admins_row', true, $content);
357                         } // END - if
358                 } // END - foreach
359
360                 // Load template
361                 loadTemplate('admin_del_admins', false, $OUT);
362         } else {
363                 // Cannot delete last account!
364                 loadTemplate('admin_settings_saved', false, '{--ADMIN_ADMINS_CANNOT_DELETE_LAST--}');
365         }
366 }
367
368 // Remove the given accounts
369 function adminsRemoveAdminAccount ($postData) {
370         // Begin removal
371         $cache_update = '0';
372         foreach ($postData['sel'] as $id => $del) {
373                 // Secure id number
374                 $id = bigintval($id);
375
376                 // Delete only when it's not your own account!
377                 if (($del == 1) && (getCurrentAdminId() != $id)) {
378                         // Rewrite his tasks to all admins
379                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=0 WHERE `assigned_admin`=%s",
380                                 array($id), __FUNCTION__, __LINE__);
381
382                         // Remove account
383                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
384                                 array($id), __FUNCTION__, __LINE__);
385                 }
386         }
387
388         // Remove cache if cache system is activated
389         runFilterChain('post_admin_deleted', postRequestArray());
390 }
391
392 // List all admin accounts
393 function adminsListAdminAccounts() {
394         // Select all admin accounts
395         $result = SQL_QUERY("SELECT `id`, `login`, `email`, `default_acl` AS mode, `la_mode` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `login` ASC", __FUNCTION__, __LINE__);
396         $OUT = '';
397         while ($content = SQL_FETCHARRAY($result)) {
398                 // Compile some variables
399                 $content['mode']    = '{--ADMINS_' . strtoupper($content['mode'])    . '_MODE--}';
400                 $content['la_mode'] = '{--ADMINS_' . strtoupper($content['la_mode']) . '_LA_SETTING--}';
401
402                 // Prepare some more data
403                 $content['email_link'] = generateEmailLink($content['id'], 'admins');
404
405                 // Load row template and switch color
406                 $OUT .= loadTemplate('admin_list_admins_row', true, $content);
407         } // END - while
408
409         // Free memory
410         SQL_FREERESULT($result);
411
412         // Load template
413         loadTemplate('admin_list_admins', false, $OUT);
414 }
415
416 // Sends out mail to all administrators
417 // IMPORTANT: Please use sendAdminNotification() instead of calling this function directly
418 function sendAdminsEmails ($subj, $template, $content, $userid) {
419         // Trim template name
420         $template = trim($template);
421
422         // Load email template
423         $message = loadEmailTemplate($template, $content, $userid);
424
425         // Check which admin shall receive this mail
426         $result = SQL_QUERY_ESC("SELECT `admin_id` FROM `{?_MYSQL_PREFIX?}_admins_mails` WHERE `mail_template`='%s' ORDER BY `admin_id` ASC",
427                 array($template), __FUNCTION__, __LINE__);
428         if (SQL_HASZERONUMS($result)) {
429                 // Create new entry (to all admins)
430                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admins_mails` (`admin_id`, `mail_template`) VALUES (0, '%s')",
431                         array($template), __FUNCTION__, __LINE__);
432         } else {
433                 // Load admin ids...
434                 // @TODO This can be, somehow, rewritten
435                 $adminIds = array();
436                 while ($content = SQL_FETCHARRAY($result)) {
437                         $adminIds[] = $content['admin_id'];
438                 } // END - while
439
440                 // Free memory
441                 SQL_FREERESULT($result);
442
443                 // Init result
444                 $result = false;
445
446                 // "implode" ids and query string
447                 $adminId = implode(',', $adminIds);
448                 if ($adminId == '-1') {
449                         if (isExtensionActive('events')) {
450                                 // Add line to user events
451                                 EVENTS_ADD_LINE($subj, $message, $userid);
452                         } else {
453                                 // Log error for debug
454                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Extension 'events' missing: tpl=%s,subj=%s,userid=%s",
455                                         $template,
456                                         $subj,
457                                         $userid
458                                 ));
459                         }
460                 } elseif (($adminId == '0') || (empty($adminId))) {
461                         // Select all email adresses
462                         $result = SQL_QUERY("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC",
463                                 __FUNCTION__, __LINE__);
464                 } else {
465                         // If Admin-Id is not "to-all" select
466                         $result = SQL_QUERY_ESC("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id` IN (%s) ORDER BY `id` ASC",
467                                 array($adminId), __FUNCTION__, __LINE__);
468                 }
469         }
470
471         // Load email addresses and send away
472         while ($content = SQL_FETCHARRAY($result)) {
473                 sendEmail($content['email'], $subj, $message);
474         } // END - while
475
476         // Free memory
477         SQL_FREERESULT($result);
478 }
479
480 // "Getter" for current admin's expert settings
481 function getAminsExpertSettings () {
482         // Default is has not the right
483         $data['expert_settings'] = 'N';
484
485         // Get current admin Id
486         $adminId = getCurrentAdminId();
487
488         // Lookup settings in cache
489         if (isset($GLOBALS['cache_array']['admin']['expert_settings'][$adminId])) {
490                 // Use cache
491                 $data['expert_settings'] = $GLOBALS['cache_array']['admin']['expert_settings'][$adminId];
492
493                 // Update cache hits
494                 incrementStatsEntry('cache_hits');
495         } elseif (!isExtensionInstalled('cache')) {
496                 // Load from database
497                 $result = SQL_QUERY_ESC("SELECT `expert_settings` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
498                         array($adminId), __FUNCTION__, __LINE__);
499
500                 // Entry found?
501                 if (SQL_NUMROWS($result) == 1) {
502                         // Fetch data
503                         $data = SQL_FETCHARRAY($result);
504
505                         // Set cache
506                         $GLOBALS['cache_array']['admin']['expert_settings'][$adminId] = $data['expert_settings'];
507                 } // END - if
508
509                 // Free memory
510                 SQL_FREERESULT($result);
511         }
512
513         // Return the result
514         return $data['expert_settings'];
515 }
516
517 // "Getter" for current admin's expert warning (if he wants to see them or not
518 function getAminsExpertWarning () {
519         // Default is has not the right
520         $data['expert_warning'] = 'N';
521
522         // Get current admin id
523         $adminId = getCurrentAdminId();
524
525         // Lookup warning in cache
526         if (isset($GLOBALS['cache_array']['admin']['expert_warning'][$adminId])) {
527                 // Use cache
528                 $data['expert_warning'] = $GLOBALS['cache_array']['admin']['expert_warning'][$adminId];
529
530                 // Update cache hits
531                 incrementStatsEntry('cache_hits');
532         } elseif (!isExtensionInstalled('cache')) {
533                 // Load from database
534                 $result = SQL_QUERY_ESC("SELECT `expert_warning` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
535                         array($adminId), __FUNCTION__, __LINE__);
536
537                 // Entry found?
538                 if (SQL_NUMROWS($result) == 1) {
539                         // Fetch data
540                         $data = SQL_FETCHARRAY($result);
541
542                         // Set cache
543                         $GLOBALS['cache_array']['admin']['expert_warning'][$adminId] = $data['expert_warning'];
544                 } // END - if
545
546                 // Free memory
547                 SQL_FREERESULT($result);
548         }
549
550         // Return the result
551         return $data['expert_warning'];
552 }
553
554 // Get login_failures number from administrator's login name
555 function getAdminLoginFailures ($adminId) {
556         // Admin login should not be empty
557         if (empty($adminId)) {
558                 debug_report_bug(__FUNCTION__, __LINE__, 'adminId is empty.');
559         } // END - if
560
561         // By default no admin is found
562         $data['login_failures'] = '-1';
563
564         // Check cache
565         if (isset($GLOBALS['cache_array']['admin']['login_failures'][$adminId])) {
566                 // Use it if found to save SQL queries
567                 $data['login_failures'] = $GLOBALS['cache_array']['admin']['login_failures'][$adminId];
568
569                 // Update cache hits
570                 incrementStatsEntry('cache_hits');
571         } elseif (!isExtensionActive('cache')) {
572                 // Load from database
573                 $result = SQL_QUERY_ESC("SELECT `login_failures` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
574                         array($adminId), __FUNCTION__, __LINE__);
575
576                 // Do we have an entry?
577                 if (SQL_NUMROWS($result) == 1) {
578                         // Get it
579                         $data = SQL_FETCHARRAY($result);
580                 } // END - if
581
582                 // Free result
583                 SQL_FREERESULT($result);
584         }
585
586         // Return the login_failures
587         return $data['login_failures'];
588 }
589
590 // Get last_failure number from administrator's login name
591 function getAdminLastFailure ($adminId) {
592         // Admin login should not be empty
593         if (empty($adminId)) {
594                 debug_report_bug(__FUNCTION__, __LINE__, 'adminId is empty.');
595         } // END - if
596
597         // By default no admin is found
598         $data['last_failure'] = '-1';
599
600         // Check cache
601         if (isset($GLOBALS['cache_array']['admin']['last_failure'][$adminId])) {
602                 // Use it if found to save SQL queries
603                 $data['last_failure'] = $GLOBALS['cache_array']['admin']['last_failure'][$adminId];
604
605                 // Update cache hits
606                 incrementStatsEntry('cache_hits');
607         } elseif (!isExtensionActive('cache')) {
608                 // Load from database
609                 $result = SQL_QUERY_ESC("SELECT UNIX_TIMESTAMP(`last_failure`) AS `last_failure` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
610                         array($adminId), __FUNCTION__, __LINE__);
611
612                 // Do we have an entry?
613                 if (SQL_NUMROWS($result) == 1) {
614                         // Get it
615                         $data = SQL_FETCHARRAY($result);
616                 } // END - if
617
618                 // Free result
619                 SQL_FREERESULT($result);
620         }
621
622         // Return the last_failure
623         return $data['last_failure'];
624 }
625
626 //*****************************************************************************
627 //                     Below only filter functions
628 //*****************************************************************************
629
630 // Filter for adding extra data to the query
631 function FILTER_ADD_EXTRA_SQL_DATA ($add = '') {
632         // Is the admins extension updated? (should be!)
633         if (isExtensionInstalledAndNewer('admins', '0.3.0')) $add .= ', `default_acl` AS def_acl';
634         if (isExtensionInstalledAndNewer('admins', '0.6.7')) $add .= ', `la_mode`';
635         if (isExtensionInstalledAndNewer('admins', '0.7.2')) $add .= ', `login_failures`, UNIX_TIMESTAMP(`last_failure`) AS last_failure';
636         if (isExtensionInstalledAndNewer('admins', '0.7.3')) $add .= ', `expert_settings`, `expert_warning`';
637
638         // Return it
639         return $add;
640 }
641
642 // Reset the login failures
643 function FILTER_RESET_ADMINS_LOGIN_FAILURES ($data) {
644         // Store it in session
645         setSession('mailer_admin_failures'    , getAdminLoginFailures($data['id']));
646         setSession('mailer_admin_last_failure', getAdminLastFailure($data['id']));
647
648         // Prepare update data
649         $postData['login'][getCurrentAdminId()]          = $data['login'];
650         $postData['login_failures'][getCurrentAdminId()] = '0';
651         $postData['last_failure'][getCurrentAdminId()]   = '0000-00-00 00:00:00';
652
653         // Change it in the admin
654         adminsChangeAdminAccount($postData);
655
656         // Always make sure the cache is destroyed
657         rebuildCache('admin');
658
659         // Return the data for further processing
660         return $data;
661 }
662
663 // Count the login failure
664 function FILTER_COUNT_ADMINS_LOGIN_FAILURE ($data) {
665         // Prepare update data
666         $postData['login'][getCurrentAdminId()]          = $data['login'];
667         $postData['login_failures'][getCurrentAdminId()] = '`login_failures`+1';
668         $postData['last_failure'][getCurrentAdminId()]   = 'NOW()';
669
670         // Change it in the admin
671         adminsChangeAdminAccount($postData);
672
673         // Always make sure the cache is destroyed
674         rebuildCache('admin');
675
676         // Return the data for further processing
677         return $data;
678 }
679
680 // Rehashes the given plain admin password and stores it the database
681 function FILTER_REHASH_ADMINS_PASSWORD ($data) {
682         // Generate new hash
683         $newHash = generateHash($data['plain_pass']);
684
685         // Prepare update data
686         $postData['login'][getCurrentAdminId()]    = $data['login'];
687         $postData['password'][getCurrentAdminId()] = $newHash;
688
689         // Change it in the admin
690         adminsChangeAdminAccount($postData);
691
692         // Update cookie/session and data array
693         setSession('admin_md5', encodeHashForCookie($newHash));
694         $data['pass_hash'] = $newHash;
695
696         // Always make sure the cache is destroyed
697         rebuildCache('admin');
698
699         // Return the data for further processing
700         return $data;
701 }
702
703 // [EOF]
704 ?>