[2] | 1 | <?php |
---|
[362] | 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[19703] | 5 | // | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org | |
---|
[2297] | 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 | // +-----------------------------------------------------------------------+ |
---|
[2] | 23 | |
---|
[1568] | 24 | // by default we start with guest |
---|
| 25 | $user['id'] = $conf['guest_id']; |
---|
| 26 | |
---|
[1231] | 27 | if (isset($_COOKIE[session_name()])) |
---|
[2] | 28 | { |
---|
[1511] | 29 | if (isset($_GET['act']) and $_GET['act'] == 'logout') |
---|
[1568] | 30 | { // logout |
---|
[2757] | 31 | logout_user(); |
---|
[11368] | 32 | redirect(get_gallery_home_url()); |
---|
[1568] | 33 | } |
---|
[1623] | 34 | elseif (!empty($_SESSION['pwg_uid'])) |
---|
[1511] | 35 | { |
---|
| 36 | $user['id'] = $_SESSION['pwg_uid']; |
---|
| 37 | } |
---|
[1231] | 38 | } |
---|
[1568] | 39 | |
---|
| 40 | // Now check the auto-login |
---|
| 41 | if ( $user['id']==$conf['guest_id'] ) |
---|
[1511] | 42 | { |
---|
| 43 | auto_login(); |
---|
[541] | 44 | } |
---|
[45] | 45 | |
---|
[804] | 46 | // using Apache authentication override the above user search |
---|
[6074] | 47 | if ($conf['apache_authentication']) |
---|
[804] | 48 | { |
---|
[6074] | 49 | $remote_user = null; |
---|
| 50 | foreach (array('REMOTE_USER', 'REDIRECT_REMOTE_USER') as $server_key) |
---|
[804] | 51 | { |
---|
[6074] | 52 | if (isset($_SERVER[$server_key])) |
---|
| 53 | { |
---|
| 54 | $remote_user = $_SERVER[$server_key]; |
---|
| 55 | break; |
---|
| 56 | } |
---|
[804] | 57 | } |
---|
[6074] | 58 | |
---|
| 59 | if (isset($remote_user)) |
---|
| 60 | { |
---|
| 61 | if (!($user['id'] = get_userid($remote_user))) |
---|
| 62 | { |
---|
[25116] | 63 | $user['id'] = register_user($remote_user, '', '', false); |
---|
[6074] | 64 | } |
---|
| 65 | } |
---|
[804] | 66 | } |
---|
[1651] | 67 | |
---|
[1568] | 68 | $user = build_user( $user['id'], |
---|
[1677] | 69 | ( defined('IN_ADMIN') and IN_ADMIN ) ? false : true // use cache ? |
---|
[1568] | 70 | ); |
---|
[2425] | 71 | if ($conf['browser_language'] and (is_a_guest() or is_generic()) ) |
---|
[2371] | 72 | { |
---|
[2425] | 73 | get_browser_language($user['language']); |
---|
[2371] | 74 | } |
---|
[1821] | 75 | trigger_action('user_init', $user); |
---|
[1903] | 76 | ?> |
---|