2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/14/2003 *
4 * =================== Last change: 04/28/2004 *
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 *
13 * -------------------------------------------------------------------- *
16 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
39 ************************************************************************/
41 // Some security stuff...
42 if (!defined('__SECURITY')) {
46 // Add description as navigation point
47 addMenuDescription('guest', __FILE__);
49 if ((!isExtensionActive('user')) && (!isAdmin())) {
50 loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
54 // Initialize variables
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')))) {
69 $userid = SQL_ESCAPE(postRequestParameter('id'));
71 // Direct userid entered
72 $userid = bigintval(postRequestParameter('id'));
74 } elseif (isPostRequestParameterSet('new_pass')) {
75 // New password requested
77 if ((isPostRequestParameterSet('id')) && (postRequestParameter('id') > 0)) $userid = bigintval(postRequestParameter('id'));
80 $userid = '0'; $hash = '';
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);
98 if (isGetRequestParameterSet('login')) {
100 $errorCode = getRequestParameter('login');
103 // No problems, no output by detault
104 $content['message'] = '';
107 if (!empty($errorCode)) {
108 // Do we have a userid set?
109 if (isSessionVariableSet('current_userid')) {
110 // Then prefetch data for this account
111 fetchUserData(getSession('current_userid'));
114 // @TODO Move this HTML code into a template
115 $content['message'] = '<tr>
116 <td colspan="4" align="center">
117 <span class="guest_failed">' . getMessageFromErrorCode($errorCode) . '</span>
122 // Display login form with resend-password form
123 if (isExtensionActive('nickname')) {
124 loadTemplate('guest_nickname_login', false, $content);
126 loadTemplate('guest_login', false, $content);
129 // Was an URL constructed?
131 // URL was constructed
132 if (ifFatalErrorsDetected()) {
133 // Handle fatal errors
134 runFilterChain('handle_fatal_errors');