source: trunk/header.session.inc.php @ 2909

Revision 2909, 3.4 KB checked in by niltonneto, 14 years ago (diff)

Ticket #1041 - Corrigido problema ao forçar logout de sessão de usuário.

Line 
1<?php
2
3        /***************************************************************************
4        * Expresso Livre                                                           *
5        * http://www.expressolivre.org                                             *
6        * --------------------------------------------                             *
7        *  This program is free software; you can redistribute it and/or modify it *
8        *  under the terms of the GNU General Public License as published by the   *
9        *  Free Software Foundation; either version 2 of the License, or (at your  *
10        *  option) any later version.                                              *
11        \**************************************************************************/
12    if ( isset( $_COOKIE[ 'sessionid' ] ) )
13                session_id( $_COOKIE[ 'sessionid' ] );
14
15        session_start( );
16
17        $sess = $_SESSION[ 'phpgw_session' ];
18        $invalidSession = false;
19        $user_agent = array();
20        if (isset($GLOBALS['phpgw']) && !isset($_SESSION['connection_db_info'])){
21                if($GLOBALS['phpgw_info']['server']['use_https'] == 1) {
22                $new_ip = (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR']."," : ""). $_SERVER['REMOTE_ADDR'];
23                $GLOBALS['phpgw']->db->query("UPDATE phpgw_access_log SET ip='$new_ip' WHERE account_id <> 0 and lo = 0 and sessionid='{$GLOBALS['sessionid']}'",__LINE__,__FILE__);
24                }
25                $GLOBALS['phpgw']->db->query("select trim(sessionid), ip, browser from phpgw_access_log where account_id <> 0 and lo = 0 and sessionid='{$GLOBALS['sessionid']}' limit 1",__LINE__,__FILE__);
26                $GLOBALS['phpgw']->db->next_record();
27                if($GLOBALS['phpgw']->db->row( ))
28                        $_SESSION['connection_db_info']['user_auth'] = implode("",$GLOBALS['phpgw']->db->row( ));
29        }
30        if($_SESSION['connection_db_info']['user_auth']){
31                $invalidSession = true;
32                $http_user_agent = substr($_SERVER[ 'HTTP_USER_AGENT' ],0,199);
33                $user_ip = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? array($_SERVER['REMOTE_ADDR'], $_SERVER['HTTP_X_FORWARDED_FOR']) : array($_SERVER['REMOTE_ADDR']);
34                $user_agent[] = "{$sess['session_id']}{$user_ip[0]}".$http_user_agent;
35                if(count($user_ip) == 2) {
36                        $user_agent[] = "{$sess['session_id']}{$user_ip[1]}".$http_user_agent;
37                        $user_agent[] = $sess['session_id'].implode(",",array_reverse($user_ip)).$http_user_agent;
38                }
39                $pconnection_id = $_SESSION['connection_db_info']['user_auth'];
40                if(array_search($pconnection_id, $user_agent)  !== FALSE) {
41                        $invalidSession = false;
42                }
43        }
44        if (empty($_SESSION['phpgw_session']['session_id']) || $invalidSession)
45        {
46                if($_SESSION['connection_db_info']['user_auth'] && !strstr($_SERVER['SCRIPT_URL'],"/controller.php")) {
47                        error_log( '[ INVALID SESSION ] >>>>' .$_SESSION['connection_db_info']['user_auth'].'<<<< - >>>>' . implode("",$user_agent), 0 );
48                        $GLOBALS['phpgw']->session->phpgw_setcookie('sessionid');
49                        $GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'].'/login.php?cd=10');
50                }
51
52                setcookie(session_name(),"",0); // Removing session cookie.
53                unset($_SESSION);                               // Removing session values.
54                // From ExpressoAjax response "nosession"
55                if(strstr($_SERVER['SCRIPT_URL'],"/controller.php")){
56                        echo serialize(array("nosession" => true));
57                        exit;
58                }
59        }
60        else{
61                // From ExpressoAjax update session_dla (datetime last access).
62                if(strstr($_SERVER['SCRIPT_URL'],"/controller.php"))
63                        $_SESSION['phpgw_session']['session_dla'] = time();
64        }
65?>
Note: See TracBrowser for help on using the repository browser.