New function fetchUserData() introduced to API, total rewrite (not all)
[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                 // Get theme from profile
51                 if (!fetchUserData(getUserId())) {
52                         // Userid is not valid
53                         debug_report_bug('User id '.getUserId() . ' is invalid.');
54                 } // END - if
55
56                 // Load data
57                 $data = getUserDataArray();
58
59                 // Change to new theme
60                 setTheme($data['curr_theme']);
61
62                 // Remmeber login failures if available
63                 if (getExtensionVersion('sql_patches') >= '0.6.1') {
64                         // Reset login failures
65                         SQL_QUERY_ESC("UPDATE
66         `{?_MYSQL_PREFIX?}_user_data`
67 SET
68         `login_failures`=0,
69         `last_failure`='0000-00-00 00:00:00'
70 WHERE
71         `userid`=%s
72 LIMIT 1",
73                                 array(getUserId()), __FILE__, __LINE__);
74
75                         // Store it in session
76                         setSession('mxchange_member_failures', $data['login_failures']);
77                         setSession('mxchange_member_last_fail', $data['last_failure']);
78                 } // END - if
79         } // END - if
80
81         // Bonus is not given by default ;-)
82         $bonus = false;
83         if ((getExtensionVersion('sql_patches') >= '0.2.8') && (getExtensionVersion('bonus') >= '0.2.1') && (getConfig('bonus_login_yn') == 'Y')) {
84                 // Update last login if far enougth away
85                 SQL_QUERY_ESC("UPDATE
86         `{?_MYSQL_PREFIX?}_user_data`
87 SET
88         `last_login`=UNIX_TIMESTAMP()
89 WHERE
90         `userid`=%s AND
91         `last_login` < (UNIX_TIMESTAMP() - %s)
92 LIMIT 1",
93                         array(
94                                 getUserId(),
95                                 getConfig('login_timeout')
96                         ), __FILE__, __LINE__
97                 );
98                 if (SQL_AFFECTEDROWS() == 1) $bonus = true;
99         } // END - if
100
101         if (($bonus === true) && (getRequestElement('mode') == 'bonus') && (isExtensionActive('bonus'))) {
102                 // Output message with added points
103                 $message .= "<div class=\"tiny\">
104   ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
105 </div>";
106         } elseif (isExtensionActive('bonus')) {
107                 // No login bonus added!
108                 $message .= "<div class=\"member_failed\">{--BONUS_LOGIN_BONUS_NOT_ADDED--}</div>";
109         }
110
111         // Redirect to member area
112         $message .= loadTemplate('member_login_js', true);
113 } else {
114         // Login failed!
115         $message .= loadTemplate('login_failed_js', true);
116 }
117
118 // Output final message
119 loadTemplate('admin_settings_saved', false, $message);
120
121 // [EOF]
122 ?>