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

Last change on this file since 20543 was 20543, checked in by patdenice, 11 years ago

bug:2835
ability detect mobile theme earlier, before plugin load

  • Property svn:eol-style set to LF
File size: 2.9 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 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// by default we start with guest
25$user['id'] = $conf['guest_id'];
26
27if (isset($_COOKIE[session_name()]))
28{
29  if (session_id() == '')
30  {
31    session_start();
32  }
33  if (isset($_GET['act']) and $_GET['act'] == 'logout')
34  { // logout
35    logout_user();
36    redirect(get_gallery_home_url());
37  }
38  elseif (!empty($_SESSION['pwg_uid']))
39  {
40    $user['id'] = $_SESSION['pwg_uid'];
41  }
42}
43
44// Now check the auto-login
45if ( $user['id']==$conf['guest_id'] )
46{
47  auto_login();
48}
49
50if (session_id()=="")
51{
52  session_start();
53}
54
55// using Apache authentication override the above user search
56if ($conf['apache_authentication'])
57{
58  $remote_user = null;
59  foreach (array('REMOTE_USER', 'REDIRECT_REMOTE_USER') as $server_key)
60  {
61    if (isset($_SERVER[$server_key]))
62    {
63      $remote_user = $_SERVER[$server_key];
64      break;
65    }
66  }
67
68  if (isset($remote_user))
69  {
70    if (!($user['id'] = get_userid($remote_user)))
71    {
72      register_user($remote_user, '', '', false);
73      $user['id'] = get_userid($remote_user);
74    }
75  }
76}
77
78$user = build_user( $user['id'],
79          ( defined('IN_ADMIN') and IN_ADMIN ) ? false : true // use cache ?
80         );
81if ($conf['browser_language'] and (is_a_guest() or is_generic()) )
82{
83  get_browser_language($user['language']);
84}
85trigger_action('user_init', $user);
86?>
Note: See TracBrowser for help on using the repository browser.