Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / guest / what-login.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/14/2003 *
4  * ===================                          Last change: 04/28/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-login.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Login area (redirects to the real login module)  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Loginbereich (leitet an das richtige Lgin-Modul  *
12  *                     weiter)                                          *
13  * -------------------------------------------------------------------- *
14  * $Revision::                                                        $ *
15  * $Date::                                                            $ *
16  * $Tag:: 0.2.1-FINAL                                                 $ *
17  * $Author::                                                          $ *
18  * -------------------------------------------------------------------- *
19  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
20  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
21  * For more information visit: http://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         exit();
42 } // END - if
43
44 // Add description as navigation point
45 addYouAreHereLink('guest', __FILE__);
46
47 if ((!isExtensionActive('user')) && (!isAdmin())) {
48         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=user%}');
49         return;
50 } // END - if
51
52 // Initialize variables as not logged in
53 $errorCode = '0';
54 $userid = NULL;
55 $hash = '';
56 $url = '';
57 $add = '';
58
59 // Already logged in?
60 if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
61         // Maybe, then continue with it
62         $userid = getMemberId();
63 } elseif ((isPostRequestElementSet('id')) && (isPostRequestElementSet('password')) && (isFormSent('login'))) {
64         // Set userid and crypt password when login data was submitted
65         if (isNicknameUsed(postRequestElement('id'))) {
66                 // Nickname entered
67                 $userid = sqlEscapeString(postRequestElement('id'));
68         } else {
69                 // Direct userid entered
70                 $userid  = bigintval(postRequestElement('id'));
71         }
72 } elseif (isPostRequestElementSet('new_pass')) {
73         // New password requested
74         $userid = NULL;
75         if (isPostRequestElementSet('email')) {
76                 // Email is set
77                 $userid = sqlEscapeString(postRequestElement('email'));
78         } elseif (isPostRequestElementSet('id')) {
79                 // Is there nickname or userid?
80                 if (isNicknameUsed(postRequestElement('id'))) {
81                         // Nickname entered
82                         $userid = sqlEscapeString(postRequestElement('id'));
83                 } else {
84                         // Direct userid entered
85                         $userid  = bigintval(postRequestElement('id'));
86                 }
87         } // END - if
88 }
89
90 if (isMember()) {
91         // Login immidiately...
92         $url = 'modules.php?module=login';
93 } elseif ((isFormSent('login')) && ('' . $userid . '' != '' . postRequestElement('id') . '')) {
94         // Invalid input (no nickname extension installed but nickname entered)
95         $errorCode = getCode('EXTENSION_PROBLEM');
96 } elseif (isFormSent('login')) {
97         // Are both 'id' and 'password' set?
98         if ((isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) {
99                 // Try the login (see inc/libs/user_functions.php)
100                 $url = doUserLogin(postRequestElement('id'), postRequestElement('password'));
101         } elseif (!isPostRequestElementSet('id')) {
102                 // Empty 'id'
103                 $errorCode = getCode('LOGIN_EMPTY_ID');
104         } else {
105                 // Empty 'password'
106                 $errorCode = getCode('LOGIN_EMPTY_PASSWORD');
107         }
108 } elseif ((isPostRequestElementSet('new_pass')) && (!empty($userid))) {
109         // Try the userid/email lookup (see inc/libs/user_functions.php)
110         $errorCode = doNewUserPassword(postRequestElement('email'), $userid);
111 }
112
113 // Login problems?
114 if (isGetRequestElementSet('login')) {
115         // Use code from URL
116         $errorCode = getRequestElement('login');
117 } // END  - if
118
119 // No problems, no output by detault
120 $content['message'] = '';
121
122 // Login problems?
123 if (!empty($errorCode)) {
124         // Is there a userid set?
125         if (isSessionVariableSet('userid')) {
126                 // Then prefetch data for this account
127                 fetchUserData(getSession('userid'));
128         } // END - if
129
130         // Add message code
131         $content['message'] = loadTemplate('guest_login_error_message', TRUE, $errorCode);
132 } // END - if
133
134 // Display login form with resend-password form
135 if (isExtensionActive('nickname')) {
136         loadTemplate('guest_nickname_login', FALSE, $content);
137 } else {
138         loadTemplate('guest_login', FALSE, $content);
139 }
140
141 // Was an URL constructed?
142 if (!empty($url)) {
143         // URL was constructed
144         if (ifFatalErrorsDetected()) {
145                 // Handle fatal errors
146                 runFilterChain('handle_fatal_errors');
147         } else {
148                 // Load URL
149                 redirectToUrl($url);
150         }
151 } // END - if
152
153 // [EOF]
154 ?>