Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / chk_login.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/26/2003 *
4  * ===============                              Last change: 02/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : chk_login.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Check if user has logged in (delay)              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Pruefen ob die Login-Cookies gesetzt sind        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Initial message part
45 $message = "<strong>{--VALIDATING_LOGIN--}</strong>";
46
47 if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
48         // Is 'theme' installed and activated?
49         if (isExtensionActive('theme')) {
50                 // Login failures are supported since 0.4.7
51                 // Do we have 0.4.7 of sql_patches or later?
52                 $add = '';
53                 if (getExtensionVersion('sql_patches') >= '0.6.1') {
54                         // Load them here
55                         $add = ", `login_failures`, UNIX_TIMESTAMP(`last_failure`) AS last_failure";
56                 } // END - if
57
58                 // Get theme from profile
59                 $result = SQL_QUERY_ESC("SELECT `curr_theme`".$add." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
60                         array(getUserId()), __FILE__, __LINE__);
61
62                 // Load data
63                 $data = SQL_FETCHARRAY($result);
64
65                 // Free result
66                 SQL_FREERESULT($result);
67
68                 // Change to new theme
69                 setTheme($data['curr_theme']);
70
71                 // Remmeber login failures if available
72                 if (getExtensionVersion('sql_patches') >= '0.6.1') {
73                         // Reset login failures
74                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
75 SET `login_failures`=0, `last_failure`='0000-00-00 00:00:00'
76 WHERE `userid`=%s
77 LIMIT 1",
78                                 array(getUserId()), __FILE__, __LINE__);
79
80                         // Store it in session
81                         setSession('mxchange_member_failures', $data['login_failures']);
82                         setSession('mxchange_member_last_fail', $data['last_failure']);
83                 } // END - if
84         } // END - if
85
86         // Bonus is not given by default ;-)
87         $bonus = false;
88         if ((getExtensionVersion('sql_patches') >= '0.2.8') && (getExtensionVersion('bonus') >= '0.2.1') && (getConfig('bonus_login_yn') == 'Y')) {
89                 // Update last login if far enougth away
90                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
91 SET `last_login`=UNIX_TIMESTAMP()
92 WHERE `userid`=%s AND `last_login` < (UNIX_TIMESTAMP() - %s)
93 LIMIT 1",
94                 array(
95                         getUserId(),
96                         getConfig('login_timeout')
97                 ), __FILE__, __LINE__
98                 );
99                 if (SQL_AFFECTEDROWS() == 1) $bonus = true;
100         } // END - if
101
102         if (($bonus === true) && (getRequestElement('mode') == 'bonus') && (isExtensionActive('bonus'))) {
103                 // Output message with added points
104                 $message .= "<div class=\"tiny\">
105   ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
106 </div>";
107         } elseif (isExtensionActive('bonus')) {
108                 // No login bonus added!
109                 $message .= "<div class=\"member_failed\">{--BONUS_LOGIN_BONUS_NOT_ADDED--}</div>";
110         }
111
112         // Redirect to member area
113         $message .= loadTemplate('member_login_js', true);
114 } else {
115         // Login failed!
116         $message .= loadTemplate('login_failed_js', true);
117 }
118
119 // Output final message
120 loadTemplate('admin_settings_saved', false, $message);
121
122 // [EOF]
123 ?>