Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | <?php /* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* # ***** BEGIN LICENSE BLOCK ***** # This file is part of Plume Framework, a simple PHP Application Framework. # Copyright (C) 2001-2007 Loic d'Anterroches and contributors. # # Plume Framework is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # Plume Framework is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # ***** END LICENSE BLOCK ***** */ class Pluf_Session extends Pluf_Model { public $_model = 'Pluf_Session' ; public $data = array (); public $cookie_name = 'sessionid' ; public $touched = false; public $test_cookie_name = 'testcookie' ; public $test_cookie_value = 'worked' ; public $set_test_cookie = false; public $test_cookie = null; function init() { $this ->cookie_name = Pluf::f( 'session_cookie_id' , 'sessionid' ); $this ->_a[ 'table' ] = 'sessions' ; $this ->_a[ 'model' ] = 'Pluf_Session' ; $this ->_a[ 'cols' ] = array ( // It is mandatory to have an "id" column. 'id' => array ( 'type' => 'Pluf_DB_Field_Sequence' , //It is automatically added. 'blank' => true, ), 'session_key' => array ( 'type' => 'Pluf_DB_Field_Varchar' , 'blank' => false, 'size' => 100, ), 'session_data' => array ( 'type' => 'Pluf_DB_Field_Text' , 'blank' => false, ), 'expire' => array ( 'type' => 'Pluf_DB_Field_Datetime' , 'blank' => false, ), ); $this ->_a[ 'idx' ] = array ( 'session_key_idx' => array ( 'type' => 'unique' , 'col' => 'session_key' ), ); $this ->_admin = array (); $this ->_a[ 'views' ] = array (); } /** * Set some data in the session object. * * @param string Key * @param mixed Value (null), if null, it is removing the value * from the session */ function setData( $key , $value =null) { if ( is_null ( $value )) { unset( $this ->data[ $key ]); } else { $this ->data[ $key ] = $value ; } $this ->touched = true; } function getData( $key =null, $default = '' ) { if ( is_null ( $key )) { return parent::getData(); } if (isset( $this ->data[ $key ])) { return $this ->data[ $key ]; } else { return $default ; } } function clear() { $this ->data = array (); $this ->touched = true; } /** * Generate a new session key. */ function getNewSessionKey() { while (1) { $key = md5(microtime().rand(0, 123456789).rand(0, 123456789) .Pluf::f( 'secret_key' )); $sess = $this ->getList( array ( 'filter' => 'session_key=\'' . $key . '\'' )); if ( count ( $sess ) == 0) { break ; } } return $key ; } /** * Presave/create function to encode data into session_data. */ function preSave( $create =false) { $this ->session_data = serialize( $this ->data); if ( $this ->session_key == '' ) { $this ->session_key = $this ->getNewSessionKey(); } $this ->expire = gmdate ( 'Y-m-d H:i:s' , time()+31536000); } /** * Restore function to decode the session_data into $this->data. */ function restore() { $this ->data = unserialize( $this ->session_data); } /** * Create a test cookie. */ public function createTestCookie() { $this ->set_test_cookie = true; } public function getTestCookie() { return ( $this ->test_cookie == $this ->test_cookie_value); } public function deleteTestCookie() { $this ->set_test_cookie = true; $this ->test_cookie_value = null; } } |