source: trunk/include/user.inc.php @ 2496

Last change on this file since 2496 was 2425, checked in by rvelices, 16 years ago
  • fix some side effects with browser language (wrong display/user creation in admin and mails to admin in user browser language)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
RevLine 
[2]1<?php
[362]2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      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// +-----------------------------------------------------------------------+
[2]23
[1568]24// by default we start with guest
25$user['id'] = $conf['guest_id'];
26
[1231]27if (isset($_COOKIE[session_name()]))
[2]28{
[1511]29  session_start();
30  if (isset($_GET['act']) and $_GET['act'] == 'logout')
[1568]31  { // logout
[1511]32    $_SESSION = array();
33    session_unset();
34    session_destroy();
35    setcookie(session_name(),'',0,
[1568]36        ini_get('session.cookie_path'),
37        ini_get('session.cookie_domain')
38      );
[1511]39    setcookie($conf['remember_me_name'], '', 0, cookie_path());
40    redirect(make_index_url());
[1568]41  }
[1623]42  elseif (!empty($_SESSION['pwg_uid']))
[1511]43  {
44    $user['id'] = $_SESSION['pwg_uid'];
45  }
[1231]46}
[1568]47
48// Now check the auto-login
49if ( $user['id']==$conf['guest_id'] )
[1511]50{
51  auto_login();
[541]52}
[45]53
[1623]54if (session_id()=="")
55{
56  session_start();
57}
[1511]58
[804]59// using Apache authentication override the above user search
60if ($conf['apache_authentication'] and isset($_SERVER['REMOTE_USER']))
61{
[808]62  if (!($user['id'] = get_userid($_SERVER['REMOTE_USER'])))
[804]63  {
[2178]64    register_user($_SERVER['REMOTE_USER'], '', '', false);
[808]65    $user['id'] = get_userid($_SERVER['REMOTE_USER']);
[804]66  }
67}
[1651]68
[1568]69$user = build_user( $user['id'],
[1677]70          ( defined('IN_ADMIN') and IN_ADMIN ) ? false : true // use cache ?
[1568]71         );
[2425]72if ($conf['browser_language'] and (is_a_guest() or is_generic()) )
[2371]73{
[2425]74  get_browser_language($user['language']);
[2371]75}
[1821]76trigger_action('user_init', $user);
[1903]77?>
Note: See TracBrowser for help on using the repository browser.