| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Piwigo - a PHP based picture gallery | |
|---|
| 4 | // +-----------------------------------------------------------------------+ |
|---|
| 5 | // | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | |
|---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
|---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
|---|
| 8 | // +-----------------------------------------------------------------------+ |
|---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 11 | // | the Free Software Foundation | |
|---|
| 12 | // | | |
|---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 16 | // | General Public License for more details. | |
|---|
| 17 | // | | |
|---|
| 18 | // | You should have received a copy of the GNU General Public License | |
|---|
| 19 | // | along with this program; if not, write to the Free Software | |
|---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 21 | // | USA. | |
|---|
| 22 | // +-----------------------------------------------------------------------+ |
|---|
| 23 | |
|---|
| 24 | //--------------------------------------------------------------------- include |
|---|
| 25 | define('PHPWG_ROOT_PATH','./'); |
|---|
| 26 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
|---|
| 27 | |
|---|
| 28 | // +-----------------------------------------------------------------------+ |
|---|
| 29 | // | Check Access and exit when user status is not ok | |
|---|
| 30 | // +-----------------------------------------------------------------------+ |
|---|
| 31 | check_status(ACCESS_FREE); |
|---|
| 32 | |
|---|
| 33 | //-------------------------------------------------------------- identification |
|---|
| 34 | $errors = array(); |
|---|
| 35 | |
|---|
| 36 | $redirect_to = ''; |
|---|
| 37 | if ( !empty($_GET['redirect']) ) |
|---|
| 38 | { |
|---|
| 39 | $redirect_to = urldecode($_GET['redirect']); |
|---|
| 40 | if ( is_a_guest() ) |
|---|
| 41 | { |
|---|
| 42 | array_push($errors, l10n('You are not authorized to access the requested page')); |
|---|
| 43 | } |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | if (isset($_POST['login'])) |
|---|
| 47 | { |
|---|
| 48 | if (!isset($_COOKIE[session_name()])) |
|---|
| 49 | { |
|---|
| 50 | array_push( |
|---|
| 51 | $errors, |
|---|
| 52 | l10n('Cookies are blocked or not supported by your browser. You must enable cookies to connect.') |
|---|
| 53 | ); |
|---|
| 54 | } |
|---|
| 55 | else |
|---|
| 56 | { |
|---|
| 57 | $redirect_to = isset($_POST['redirect']) ? urldecode($_POST['redirect']) : ''; |
|---|
| 58 | $remember_me = isset($_POST['remember_me']) and $_POST['remember_me']==1; |
|---|
| 59 | if ( try_log_user($_POST['username'], $_POST['password'], $remember_me) ) |
|---|
| 60 | { |
|---|
| 61 | redirect(empty($redirect_to) ? make_index_url() : $redirect_to); |
|---|
| 62 | } |
|---|
| 63 | else |
|---|
| 64 | { |
|---|
| 65 | array_push( $errors, l10n('Invalid password!') ); |
|---|
| 66 | } |
|---|
| 67 | } |
|---|
| 68 | } |
|---|
| 69 | |
|---|
| 70 | //----------------------------------------------------- template initialization |
|---|
| 71 | // |
|---|
| 72 | // Start output of page |
|---|
| 73 | // |
|---|
| 74 | $title = l10n('Identification'); |
|---|
| 75 | $page['body_id'] = 'theIdentificationPage'; |
|---|
| 76 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
|---|
| 77 | |
|---|
| 78 | $template->set_filenames( array('identification'=>'identification.tpl') ); |
|---|
| 79 | |
|---|
| 80 | $template->assign( |
|---|
| 81 | array( |
|---|
| 82 | 'U_LOST_PASSWORD' => get_root_url().'password.php', |
|---|
| 83 | 'U_REDIRECT' => $redirect_to, |
|---|
| 84 | |
|---|
| 85 | 'F_LOGIN_ACTION' => get_root_url().'identification.php', |
|---|
| 86 | 'authorize_remembering' => $conf['authorize_remembering'], |
|---|
| 87 | )); |
|---|
| 88 | |
|---|
| 89 | if ($conf['allow_user_registration']) |
|---|
| 90 | { |
|---|
| 91 | $template->assign('U_REGISTER', get_root_url().'register.php' ); |
|---|
| 92 | } |
|---|
| 93 | |
|---|
| 94 | //-------------------------------------------------------------- errors display |
|---|
| 95 | if ( sizeof( $errors ) != 0 ) |
|---|
| 96 | { |
|---|
| 97 | $template->assign('errors', $errors); |
|---|
| 98 | } |
|---|
| 99 | |
|---|
| 100 | //----------------------------------------------------------- html code display |
|---|
| 101 | $template->pparse('identification'); |
|---|
| 102 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
|---|
| 103 | ?> |
|---|