b3e272c6c57a42851b016cc1ce1bcca3f5351138
[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  * Needs to be in all Files and every File needs "svn propset           *
19  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
20  * -------------------------------------------------------------------- *
21  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
22  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
23  * For more information visit: http://www.mxchange.org                  *
24  *                                                                      *
25  * This program is free software; you can redistribute it and/or modify *
26  * it under the terms of the GNU General Public License as published by *
27  * the Free Software Foundation; either version 2 of the License, or    *
28  * (at your option) any later version.                                  *
29  *                                                                      *
30  * This program is distributed in the hope that it will be useful,      *
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
33  * GNU General Public License for more details.                         *
34  *                                                                      *
35  * You should have received a copy of the GNU General Public License    *
36  * along with this program; if not, write to the Free Software          *
37  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
38  * MA  02110-1301  USA                                                  *
39  ************************************************************************/
40
41 // Some security stuff...
42 if (!defined('__SECURITY')) {
43         die();
44 }
45
46 // Add description as navigation point
47 addMenuDescription('guest', __FILE__);
48
49 if ((!isExtensionActive('user')) && (!isAdmin())) {
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
51         return;
52 } // END - if
53
54 // Initialize variables
55 $errorCode = '0';
56 $userid = false;
57 $hash = '';
58 $url = '';
59 $add = '';
60
61 // Already logged in?
62 if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
63         // Maybe, then continue with it
64         $userid = getMemberId();
65 } elseif ((isPostRequestParameterSet('id')) && (isPostRequestParameterSet('password')) && (isFormSent())) {
66         // Set userid and crypt password when login data was submitted
67         if ((isExtensionActive('nickname')) && (isNicknameUsed(postRequestParameter('id')))) {
68                 // Nickname entered
69                 $userid = SQL_ESCAPE(postRequestParameter('id'));
70         } else {
71                 // Direct userid entered
72                 $userid  = bigintval(postRequestParameter('id'));
73         }
74 } elseif (isPostRequestParameterSet('new_pass')) {
75         // New password requested
76         $userid = '0';
77         if ((isPostRequestParameterSet('id')) && (postRequestParameter('id') > 0)) $userid = bigintval(postRequestParameter('id'));
78 } else {
79         // Not logged in
80         $userid = '0'; $hash = '';
81 }
82
83 if (isMember()) {
84         // Login immidiately...
85         $url = 'modules.php?module=login';
86 } elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestParameter('id') . '')) {
87         // Invalid input (no nickname extension installed but nickname entered)
88         $errorCode = getCode('EXTENSION_PROBLEM');
89 } elseif (isFormSent()) {
90         // Try the login (see inc/libs/user_functions.php)
91         $url = doUserLogin(postRequestParameter('id'), postRequestParameter('password'));
92 } elseif ((isPostRequestParameterSet('new_pass')) && (isset($userid))) {
93         // Try the userid/email lookup (see inc/libs/user_functions.php)
94         $errorCode = doNewUserPassword(postRequestParameter('email'), $userid);
95 }
96
97 // Login problems?
98 if (isGetRequestParameterSet('login')) {
99         // Use code from URL
100         $errorCode = getRequestParameter('login');
101 } // END  - if
102
103 // No problems, no output by detault
104 $content['message'] = '';
105
106 // Login problems?
107 if (!empty($errorCode)) {
108         // @TODO Move this HTML code into a template
109         $message = "<tr>
110   <td colspan=\"4\" align=\"center\">
111     <span class=\"guest_failed\">";
112
113         // Do we have a userid set?
114         if (isSessionVariableSet('current_userid')) {
115                 // Then prefetch data for this account
116                 fetchUserData(getSession('current_userid'));
117         } // END - if
118
119         // Convert the code to message
120         $message .= getMessageFromErrorCode($errorCode);
121
122         // Continue with HTML
123         $message .= "</span>
124   </td>
125 </tr>\n";
126         $content['message'] = $message;
127 } // END - if
128
129 // Display login form with resend-password form
130 if (isExtensionActive('nickname')) {
131         loadTemplate('guest_nickname_login', false, $content);
132 } else {
133         loadTemplate('guest_login', false, $content);
134 }
135
136 // Was an URL constructed?
137 if (!empty($url)) {
138         // URL was constructed
139         if (ifFatalErrorsDetected()) {
140                 // Handle fatal errors
141                 runFilterChain('handle_fatal_errors');
142         } else {
143                 // Load URL
144                 redirectToUrl($url);
145         }
146 } // END - if
147
148 // [EOF]
149 ?>