]>
src.bluestatic.org Git - bugdar.git/blob - login.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright 2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array (
29 $focus [ 'user' ] = 'focus' ;
31 require_once ( './global.php' );
32 require_once ( './includes/api_user.php' );
33 require_once ( './includes/class_api_error.php' );
35 APIError ( array ( new API_Error_Handler ( $message ), 'user_cumulative' ));
37 // ###################################################################
39 if ( $bugsys- > userinfo
[ 'userid' ] AND $_REQUEST [ 'do' ] != 'logout' AND $_POST [ 'do' ] != 'cplogin' AND $_REQUEST [ 'do' ] != 'cplogout' )
41 $message- > error ( T ( 'You are already logged in.' ));
44 // ###################################################################
46 if ( empty ( $_REQUEST [ 'do' ]))
48 eval ( ' $template- >flush("' . $template- > fetch ( 'login' ) . '");' );
51 // ###################################################################
53 if ( $_POST [ 'do' ] == 'login' OR $_POST [ 'do' ] == 'cplogin' )
55 $keeplogin = $bugsys- > input_clean ( 'rememberme' , TYPE_BOOL
);
56 if ( $_POST [ 'cplogin' ])
61 if ( $_SERVER [ 'HTTP_REFERER' ] AND ! $_POST [ 'goindex' ])
63 $url = $_SERVER [ 'HTTP_REFERER' ];
70 if ( $auth- > authenticateLogin ( $bugsys- > in
[ 'email' ], $bugsys- > in
[ 'password' ], $keeplogin ))
72 if ( $_POST [ 'do' ] == 'cplogin' )
74 $hash = $funct- > rand ( 90 );
75 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "adminsession WHERE dateline < " . ( TIMENOW
- 3600 ));
76 $db- > query ( "INSERT INTO " . TABLE_PREFIX
. "adminsession (sessionid, userid, dateline) VALUES (' $hash' , " . $auth- > bugdarUser
[ 'userid' ] . ", " . TIMENOW
. ")" );
77 $funct- > cookie ( COOKIE_PREFIX
. 'adminsession' , $hash , false );
79 $message- > redirect ( T ( 'Welcome back! You are now logged in.' ), $url );
83 $message- > error ( T ( 'Invalid email or password.' ));
87 // ###################################################################
89 if ( $_REQUEST [ 'do' ] == 'logout' )
91 if ( $bugsys- > userinfo
[ 'userid' ])
93 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "adminsession WHERE sessionid = '" . $bugsys- > input_escape ( COOKIE_PREFIX
. 'adminsession' ) . "'" );
94 $auth- > clearCookies ();
95 $funct- > cookie ( COOKIE_PREFIX
. 'adminsession' );
96 $message- > redirect ( T ( 'You have been logged out.' ), ( $_SERVER [ 'HTTP_REFERER' ] ? $_SERVER [ 'HTTP_REFERER' ] : 'index.php' ));
100 $message- > error ( T ( 'You need to be logged in to access this feature.' ));
104 // ###################################################################
106 if ( $_POST [ 'do' ] == 'sendpw' )
108 $user = new UserAPI ( $bugsys );
109 $user- > set ( 'email' , $bugsys- > in
[ 'email' ], true , false ); // don't verify so we don't get errors about existing emails
110 $user- > set_condition ( array ( 'email' ));
113 if ( $message- > hasErrors ())
115 $show [ 'lostpwerror' ] = true ;
116 $_REQUEST [ 'do' ] = 'lostpw' ;
120 $activator = $funct- > rand ( 25 );
121 $db- > query ( "INSERT INTO " . TABLE_PREFIX
. "passwordreset (activatorid, dateline, userid) VALUES ('" . $activator . "', " . TIMENOW
. ", " . $user- > objdata
[ 'userid' ] . ")" );
123 eval ( ' $email = "' . $template- > fetch ( FetchEmailPath ( 'passwordreset.xml' , bugdar
:: $datastore [ 'language' ][ $user- > objdata
[ 'languageid' ]][ 'langcode' ])) . '";' );
124 $email = $bugsys- > xml
-> parse ( $email );
126 $mail- > setSubject ( $email [ 'email' ][ 'subject' ][ 'value' ]);
127 $mail- > setBodyText ( $email [ 'email' ][ 'bodyText' ][ 'value' ]);
129 $mail- > send ( $user- > objdata
[ 'email' ], $user- > objdata
[ 'displayname' ]);
131 $message- > message ( sprintf ( T ( 'An email has been dispatched to %1 $s that contains instructions on how to reset your password.' ), $user- > objdata
[ 'email' ]));
135 // ###################################################################
137 if ( $_REQUEST [ 'do' ] == 'lostpw' )
139 eval ( ' $template- >flush("' . $template- > fetch ( 'lostpassword' ) . '");' );
142 // ###################################################################
144 if ( $_POST [ 'do' ] == 'resetpw' )
146 // remove old activators
147 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "passwordreset WHERE dateline < " . ( TIMENOW
- 86400 ));
150 $activation = $db- > query_first ( "SELECT * FROM " . TABLE_PREFIX
. "passwordreset WHERE activatorid = '" . $bugsys- > input_escape ( 'activator' ) . "'" );
153 $message- > error ( L_INVALID_ID
);
156 $user = new UserAPI ( $bugsys );
157 $user- > set ( 'userid' , $activation [ 'userid' ]);
158 $user- > set_condition ();
160 if ( $bugsys- > in
[ 'fix_password' ] != $bugsys- > in
[ 'confirm_password' ])
162 $message- > addError ( T ( 'The passwords you entered do not patch.' ));
164 if ( empty ( $bugsys- > in
[ 'fix_password' ]))
166 $message- > addError ( T ( 'Your new password cannot be empty.' ));
169 $user- > set ( 'password' , $bugsys- > in
[ 'fix_password' ]);
171 if (! $message- > hasErrors ())
173 // remove old other activators for this user
174 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "passwordreset WHERE userid = " . $activation [ 'userid' ]);
177 $message- > redirect ( T ( 'Your password has been changed successfully. You will now be redirected to the login page.' ), 'login.php' );
181 $show [ 'errors' ] = true ;
182 $_REQUEST [ 'do' ] = 'recoverpw' ;
186 // ###################################################################
188 if ( $_REQUEST [ 'do' ] == 'recoverpw' )
190 // remove old activators
191 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "passwordreset WHERE dateline < " . ( TIMENOW
- 86400 ));
194 $activation = $db- > query_first ( "SELECT * FROM " . TABLE_PREFIX
. "passwordreset WHERE activatorid = '" . $bugsys- > input_escape ( 'activator' ) . "'" );
197 $message- > error ( T ( 'Invalid activation reset key. Please make sure you copied the URL exactly as it appeared in the email.' ));
200 eval ( ' $template- >flush("' . $template- > fetch ( 'passwordreset' ) . '");' );
203 // ###################################################################
205 if ( $_REQUEST [ 'do' ] == 'cplogout' )
207 if ( $_COOKIE [ COOKIE_PREFIX
. 'adminsession' ])
209 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "adminsession WHERE sessionid = '" . $bugsys- > input_escape ( COOKIE_PREFIX
. 'adminsession' ) . "'" );
210 $funct- > cookie ( COOKIE_PREFIX
. 'adminsession' );
211 $message- > redirect ( T ( 'You have been logged out.' ), 'admin/' );
215 $message- > error ( T ( 'You are not logged in.' ));