[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 | |
---|
[1013] | 24 | // The function generate_key creates a string with pseudo random characters. |
---|
| 25 | // the size of the string depends on the $conf['session_id_size']. |
---|
| 26 | // Characters used are a-z A-Z and numerical values. Examples : |
---|
| 27 | // "Er4Tgh6", "Rrp08P", "54gj" |
---|
| 28 | // input : none (using global variable) |
---|
| 29 | // output : $key |
---|
| 30 | function generate_key($size) |
---|
| 31 | { |
---|
| 32 | global $conf; |
---|
| 33 | |
---|
| 34 | $md5 = md5(substr(microtime(), 2, 6)); |
---|
| 35 | $init = ''; |
---|
| 36 | for ( $i = 0; $i < strlen( $md5 ); $i++ ) |
---|
| 37 | { |
---|
| 38 | if ( is_numeric( $md5[$i] ) ) $init.= $md5[$i]; |
---|
| 39 | } |
---|
| 40 | $init = substr( $init, 0, 8 ); |
---|
| 41 | mt_srand( $init ); |
---|
| 42 | $key = ''; |
---|
| 43 | for ( $i = 0; $i < $size; $i++ ) |
---|
| 44 | { |
---|
| 45 | $c = mt_rand( 0, 2 ); |
---|
| 46 | if ( $c == 0 ) $key .= chr( mt_rand( 65, 90 ) ); |
---|
| 47 | else if ( $c == 1 ) $key .= chr( mt_rand( 97, 122 ) ); |
---|
| 48 | else $key .= mt_rand( 0, 9 ); |
---|
| 49 | } |
---|
| 50 | return $key; |
---|
| 51 | } |
---|
| 52 | |
---|
[1063] | 53 | if (isset($conf['session_save_handler']) |
---|
[1013] | 54 | and ($conf['session_save_handler'] == 'db') |
---|
[1063] | 55 | and defined('PHPWG_INSTALLED')) |
---|
[1007] | 56 | { |
---|
[1063] | 57 | session_set_save_handler('pwg_session_open', |
---|
[1007] | 58 | 'pwg_session_close', |
---|
| 59 | 'pwg_session_read', |
---|
| 60 | 'pwg_session_write', |
---|
| 61 | 'pwg_session_destroy', |
---|
| 62 | 'pwg_session_gc' |
---|
| 63 | ); |
---|
[1217] | 64 | if ( function_exists('ini_set') ) |
---|
| 65 | { |
---|
| 66 | ini_set('session.use_cookies', $conf['session_use_cookies']); |
---|
| 67 | ini_set('session.use_only_cookies', $conf['session_use_only_cookies']); |
---|
| 68 | ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid'])); |
---|
| 69 | } |
---|
[1493] | 70 | session_name($conf['session_name']); |
---|
| 71 | session_set_cookie_params(0, cookie_path()); |
---|
[1004] | 72 | } |
---|
| 73 | |
---|
[1010] | 74 | /** |
---|
| 75 | * returns true; used when the session_start() function is called |
---|
| 76 | * |
---|
| 77 | * @params not use but useful for php engine |
---|
| 78 | */ |
---|
[1063] | 79 | function pwg_session_open($path, $name) |
---|
[2] | 80 | { |
---|
[1004] | 81 | return true; |
---|
| 82 | } |
---|
[45] | 83 | |
---|
[1010] | 84 | /** |
---|
| 85 | * returns true; used when the session is closed (unset($_SESSION)) |
---|
| 86 | * |
---|
| 87 | */ |
---|
[1063] | 88 | function pwg_session_close() |
---|
[1004] | 89 | { |
---|
| 90 | return true; |
---|
[2] | 91 | } |
---|
[45] | 92 | |
---|
[1010] | 93 | /** |
---|
| 94 | * this function returns |
---|
[1063] | 95 | * a string corresponding to the value of the variable save in the session |
---|
[1010] | 96 | * or an empty string when the variable doesn't exist |
---|
[1063] | 97 | * |
---|
[1010] | 98 | * @param string session id |
---|
| 99 | */ |
---|
[1063] | 100 | function pwg_session_read($session_id) |
---|
[2] | 101 | { |
---|
[1007] | 102 | $query = ' |
---|
[1063] | 103 | SELECT data |
---|
[1010] | 104 | FROM '.SESSIONS_TABLE.' |
---|
| 105 | WHERE id = \''.$session_id.'\' |
---|
| 106 | ;'; |
---|
[1004] | 107 | $result = pwg_query($query); |
---|
[1063] | 108 | if ($result) |
---|
[1007] | 109 | { |
---|
[1004] | 110 | $row = mysql_fetch_assoc($result); |
---|
| 111 | return $row['data']; |
---|
[1063] | 112 | } |
---|
| 113 | else |
---|
[1007] | 114 | { |
---|
[1004] | 115 | return ''; |
---|
[2] | 116 | } |
---|
| 117 | } |
---|
| 118 | |
---|
[1010] | 119 | /** |
---|
[1063] | 120 | * returns true; writes set a variable in the active session |
---|
| 121 | * |
---|
[1010] | 122 | * @param string session id |
---|
| 123 | * @data string value of date to be saved |
---|
| 124 | */ |
---|
[1063] | 125 | function pwg_session_write($session_id, $data) |
---|
[2] | 126 | { |
---|
[1007] | 127 | $query = ' |
---|
[1063] | 128 | UPDATE '.SESSIONS_TABLE.' |
---|
[1032] | 129 | SET expiration = now(), |
---|
| 130 | data = \''.$data.'\' |
---|
[1010] | 131 | WHERE id = \''.$session_id.'\' |
---|
[1063] | 132 | ;'; |
---|
| 133 | pwg_query($query); |
---|
[1192] | 134 | if ( mysql_affected_rows()>0 ) |
---|
[1217] | 135 | { |
---|
[1192] | 136 | return true; |
---|
| 137 | } |
---|
| 138 | $query = ' |
---|
[1063] | 139 | INSERT INTO '.SESSIONS_TABLE.' |
---|
[1010] | 140 | (id,data,expiration) |
---|
| 141 | VALUES(\''.$session_id.'\',\''.$data.'\',now()) |
---|
| 142 | ;'; |
---|
[1217] | 143 | mysql_query($query); |
---|
[1004] | 144 | return true; |
---|
| 145 | } |
---|
[808] | 146 | |
---|
[1010] | 147 | /** |
---|
[1063] | 148 | * returns true; delete the active session |
---|
| 149 | * |
---|
[1010] | 150 | * @param string session id |
---|
| 151 | */ |
---|
[1063] | 152 | function pwg_session_destroy($session_id) |
---|
[1004] | 153 | { |
---|
[1007] | 154 | $query = ' |
---|
[1063] | 155 | DELETE |
---|
[1010] | 156 | FROM '.SESSIONS_TABLE.' |
---|
| 157 | WHERE id = \''.$session_id.'\' |
---|
| 158 | ;'; |
---|
[1004] | 159 | pwg_query($query); |
---|
| 160 | return true; |
---|
[2] | 161 | } |
---|
[45] | 162 | |
---|
[1010] | 163 | /** |
---|
| 164 | * returns true; delete expired sessions |
---|
| 165 | * called each time a session is closed. |
---|
| 166 | */ |
---|
[1063] | 167 | function pwg_session_gc() |
---|
[45] | 168 | { |
---|
[1004] | 169 | global $conf; |
---|
| 170 | |
---|
[1007] | 171 | $query = ' |
---|
[1063] | 172 | DELETE |
---|
[1010] | 173 | FROM '.SESSIONS_TABLE.' |
---|
[1007] | 174 | WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(expiration) > ' |
---|
[1010] | 175 | .$conf['session_length'].' |
---|
| 176 | ;'; |
---|
[1004] | 177 | pwg_query($query); |
---|
| 178 | return true; |
---|
[45] | 179 | } |
---|
[1623] | 180 | |
---|
| 181 | |
---|
| 182 | /** |
---|
| 183 | * persistently stores a variable for the current session |
---|
| 184 | * currently we use standard php sessions but it might change |
---|
| 185 | * @return boolean true on success |
---|
| 186 | * @see pwg_get_session_var, pwg_unset_session_var |
---|
| 187 | */ |
---|
| 188 | function pwg_set_session_var($var, $value) |
---|
| 189 | { |
---|
| 190 | if ( !isset($_SESSION) ) |
---|
| 191 | return false; |
---|
| 192 | $_SESSION['pwg_'.$var] = $value; |
---|
| 193 | return true; |
---|
| 194 | } |
---|
| 195 | |
---|
| 196 | /** |
---|
| 197 | * retrieves the value of a persistent variable for the current session |
---|
| 198 | * currently we use standard php sessions but it might change |
---|
| 199 | * @return mixed |
---|
| 200 | * @see pwg_set_session_var, pwg_unset_session_var |
---|
| 201 | */ |
---|
| 202 | function pwg_get_session_var($var, $default = null) |
---|
| 203 | { |
---|
| 204 | if (isset( $_SESSION['pwg_'.$var] ) ) |
---|
| 205 | { |
---|
| 206 | return $_SESSION['pwg_'.$var]; |
---|
| 207 | } |
---|
| 208 | return $default; |
---|
| 209 | } |
---|
| 210 | |
---|
| 211 | /** |
---|
| 212 | * deletes a persistent variable for the current session |
---|
| 213 | * currently we use standard php sessions but it might change |
---|
| 214 | * @return boolean true on success |
---|
| 215 | * @see pwg_set_session_var, pwg_get_session_var |
---|
| 216 | */ |
---|
| 217 | function pwg_unset_session_var($var) |
---|
| 218 | { |
---|
| 219 | if ( !isset($_SESSION) ) |
---|
| 220 | return false; |
---|
| 221 | unset( $_SESSION['pwg_'.$var] ); |
---|
| 222 | return true; |
---|
| 223 | } |
---|
| 224 | |
---|
[362] | 225 | ?> |
---|