745fc31efd231e5b5c6ee861a8065265c8c17185
[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  *                                                                      *
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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 OPEN_TABLE("500", "guest_login_header dashed", "center");
42
43 OUTPUT_HTML("<br /><STRONG>".VALIDATING_LOGIN."</STRONG><br />");
44
45 if (!empty($GLOBALS['userid']) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime'))) {
46         // Get theme from profile
47         $result = SQL_QUERY_ESC("SELECT curr_theme FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
48          array($GLOBALS['userid']), __FILE__, __LINE__);
49         list($NewTheme) = SQL_FETCHROW($result);
50         SQL_FREERESULT($result);
51
52         // Change to new theme
53         set_session("mxchange_theme", $NewTheme, (time() + 60*60*24*365), COOKIE_PATH);
54
55         $bonus = false;
56         if ((GET_EXT_VERSION("sql_patches") >= "0.2.8") && (GET_EXT_VERSION("bonus") >= "0.2.1") && ($_CONFIG['bonus_login_yn'] == 'N') && ($_CONFIG['bonus_login_yn'] == 'Y')) {
57                 // Update last login
58                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data
59 SET last_login=UNIX_TIMESTAMP()
60 WHERE userid=%d AND last_login < (UNIX_TIMESTAMP() - %d)
61 LIMIT 1", array($GLOBALS['userid'], $_CONFIG['login_timeout']),
62  __FILE__, __LINE__);
63                 if (SQL_AFFECTEDROWS($link) == 1) $bonus = true;
64         }
65         if (($bonus) && ($_GET['mode'] == "bonus") && (EXT_IS_ACTIVE("bonus")))         {
66                 // Output message with added points
67                 OUTPUT_HTML("<FONT class=\"tiny\">
68   ".BONUS_LOGIN_BONUS_ADDED_1."
69   <STRONG>".TRANSLATE_COMMA($_CONFIG['login_bonus'])." ".POINTS."</STRONG>
70   ".BONUS_LOGIN_BONUS_ADDED_2."
71 </FONT>");
72         }
73          elseif (EXT_IS_ACTIVE("bonus"))
74         {
75                 // No login bonus added!
76                 OUTPUT_HTML("<FONT class=\"member_failed\">".BONUS_LOGIN_BONUS_NOT_ADDED."</FONT>");
77         }
78
79         // Redirect to member area
80         LOAD_TEMPLATE("member_login_js");
81 }
82  else
83 {
84         // Login failed!
85         LOAD_TEMPLATE("login_failed_js");
86 }
87
88 // Close table
89 CLOSE_TABLE();
90
91 //
92 ?>