Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 1 | <?php |
| 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Andrey Andreev | bf6b11d | 2015-01-12 17:27:12 +0200 | [diff] [blame] | 5 | * An open source application development framework for PHP |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 6 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 8 | * |
Andrey Andreev | bf6b11d | 2015-01-12 17:27:12 +0200 | [diff] [blame] | 9 | * Copyright (c) 2014 - 2015, British Columbia Institute of Technology |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 10 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 17 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
Andrey Andreev | bf6b11d | 2015-01-12 17:27:12 +0200 | [diff] [blame] | 32 | * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 33 | * @license http://opensource.org/licenses/MIT MIT License |
| 34 | * @link http://codeigniter.com |
| 35 | * @since Version 3.0.0 |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 36 | * @filesource |
| 37 | */ |
| 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
| 39 | |
| 40 | /** |
| 41 | * CodeIgniter Session Database Driver |
| 42 | * |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 43 | * @package CodeIgniter |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 44 | * @subpackage Libraries |
| 45 | * @category Sessions |
Andrey Andreev | 46f2f26 | 2014-11-11 14:37:51 +0200 | [diff] [blame] | 46 | * @author Andrey Andreev |
| 47 | * @link http://codeigniter.com/user_guide/libraries/sessions.html |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 48 | */ |
| 49 | class CI_Session_database_driver extends CI_Session_driver implements SessionHandlerInterface { |
| 50 | |
| 51 | /** |
| 52 | * DB object |
| 53 | * |
| 54 | * @var object |
| 55 | */ |
| 56 | protected $_db; |
| 57 | |
| 58 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 59 | * Row exists flag |
| 60 | * |
| 61 | * @var bool |
| 62 | */ |
| 63 | protected $_row_exists = FALSE; |
| 64 | |
| 65 | /** |
| 66 | * Lock "driver" flag |
| 67 | * |
| 68 | * @var string |
| 69 | */ |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 70 | protected $_platform; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 71 | |
| 72 | // ------------------------------------------------------------------------ |
| 73 | |
| 74 | /** |
| 75 | * Class constructor |
| 76 | * |
| 77 | * @param array $params Configuration parameters |
| 78 | * @return void |
| 79 | */ |
| 80 | public function __construct(&$params) |
| 81 | { |
| 82 | parent::__construct($params); |
| 83 | |
| 84 | $CI =& get_instance(); |
| 85 | isset($CI->db) OR $CI->load->database(); |
Andrey Andreev | 00c222d | 2015-01-29 18:14:31 +0200 | [diff] [blame] | 86 | $this->_db = $CI->db; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 87 | |
| 88 | if ( ! $this->_db instanceof CI_DB_query_builder) |
| 89 | { |
| 90 | throw new Exception('Query Builder not enabled for the configured database. Aborting.'); |
| 91 | } |
| 92 | elseif ($this->_db->pconnect) |
| 93 | { |
| 94 | throw new Exception('Configured database connection is persistent. Aborting.'); |
| 95 | } |
Andrey Andreev | 737a566 | 2015-03-21 12:41:38 +0200 | [diff] [blame] | 96 | elseif ($this->_db->cache_on) |
| 97 | { |
| 98 | throw new Exception('Configured database connection has cache enabled. Aborting.'); |
| 99 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 100 | |
| 101 | $db_driver = $this->_db->dbdriver.(empty($this->_db->subdriver) ? '' : '_'.$this->_db->subdriver); |
| 102 | if (strpos($db_driver, 'mysql') !== FALSE) |
| 103 | { |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 104 | $this->_platform = 'mysql'; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 105 | } |
| 106 | elseif (in_array($db_driver, array('postgre', 'pdo_pgsql'), TRUE)) |
| 107 | { |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 108 | $this->_platform = 'postgre'; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 109 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 110 | |
Andrey Andreev | 7f8eb36 | 2015-01-15 18:01:41 +0200 | [diff] [blame] | 111 | // Note: BC work-around for the old 'sess_table_name' setting, should be removed in the future. |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 112 | isset($this->_config['save_path']) OR $this->_config['save_path'] = config_item('sess_table_name'); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | // ------------------------------------------------------------------------ |
| 116 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 117 | /** |
| 118 | * Open |
| 119 | * |
| 120 | * Initializes the database connection |
| 121 | * |
| 122 | * @param string $save_path Table name |
| 123 | * @param string $name Session cookie name, unused |
| 124 | * @return bool |
| 125 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 126 | public function open($save_path, $name) |
| 127 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 128 | if (empty($this->_db->conn_id) && ! $this->_db->db_connect()) |
| 129 | { |
| 130 | return $this->_failure; |
| 131 | } |
| 132 | |
| 133 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // ------------------------------------------------------------------------ |
| 137 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 138 | /** |
| 139 | * Read |
| 140 | * |
| 141 | * Reads session data and acquires a lock |
| 142 | * |
| 143 | * @param string $session_id Session ID |
| 144 | * @return string Serialized session data |
| 145 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 146 | public function read($session_id) |
| 147 | { |
Andrey Andreev | d069b9b | 2014-09-16 10:18:16 +0300 | [diff] [blame] | 148 | if ($this->_get_lock($session_id) !== FALSE) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 149 | { |
Andrey Andreev | fd5fe1a64 | 2016-01-11 11:58:40 +0200 | [diff] [blame^] | 150 | // Prevent previous QB calls from messing with our queries |
| 151 | $this->_db->reset_query(); |
| 152 | |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 153 | // Needed by write() to detect session_regenerate_id() calls |
| 154 | $this->_session_id = $session_id; |
| 155 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 156 | $this->_db |
| 157 | ->select('data') |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 158 | ->from($this->_config['save_path']) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 159 | ->where('id', $session_id); |
| 160 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 161 | if ($this->_config['match_ip']) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 162 | { |
| 163 | $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']); |
| 164 | } |
| 165 | |
| 166 | if (($result = $this->_db->get()->row()) === NULL) |
| 167 | { |
Andrey Andreev | de8b82c | 2015-10-18 20:58:38 +0300 | [diff] [blame] | 168 | // PHP7 will reuse the same SessionHandler object after |
| 169 | // ID regeneration, so we need to explicitly set this to |
| 170 | // FALSE instead of relying on the default ... |
| 171 | $this->_row_exists = FALSE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 172 | $this->_fingerprint = md5(''); |
| 173 | return ''; |
| 174 | } |
| 175 | |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 176 | // PostgreSQL's variant of a BLOB datatype is Bytea, which is a |
| 177 | // PITA to work with, so we use base64-encoded data in a TEXT |
| 178 | // field instead. |
Andrey Andreev | d012255 | 2015-01-15 21:25:58 +0200 | [diff] [blame] | 179 | $result = ($this->_platform === 'postgre') |
| 180 | ? base64_decode(rtrim($result->data)) |
| 181 | : $result->data; |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 182 | |
Andrey Andreev | d012255 | 2015-01-15 21:25:58 +0200 | [diff] [blame] | 183 | $this->_fingerprint = md5($result); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 184 | $this->_row_exists = TRUE; |
Andrey Andreev | 7400975 | 2015-01-15 21:36:25 +0200 | [diff] [blame] | 185 | return $result; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | $this->_fingerprint = md5(''); |
| 189 | return ''; |
| 190 | } |
| 191 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 192 | // ------------------------------------------------------------------------ |
| 193 | |
| 194 | /** |
| 195 | * Write |
| 196 | * |
| 197 | * Writes (create / update) session data |
| 198 | * |
| 199 | * @param string $session_id Session ID |
| 200 | * @param string $session_data Serialized session data |
| 201 | * @return bool |
| 202 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 203 | public function write($session_id, $session_data) |
| 204 | { |
Andrey Andreev | fd5fe1a64 | 2016-01-11 11:58:40 +0200 | [diff] [blame^] | 205 | // Prevent previous QB calls from messing with our queries |
| 206 | $this->_db->reset_query(); |
| 207 | |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 208 | // Was the ID regenerated? |
Shakespeare2000 | 305186d | 2014-11-02 11:28:47 +0100 | [diff] [blame] | 209 | if ($session_id !== $this->_session_id) |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 210 | { |
| 211 | if ( ! $this->_release_lock() OR ! $this->_get_lock($session_id)) |
| 212 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 213 | return $this->_failure; |
Andrey Andreev | 7474a67 | 2014-10-31 23:35:32 +0200 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | $this->_row_exists = FALSE; |
| 217 | $this->_session_id = $session_id; |
| 218 | } |
Shakespeare2000 | 305186d | 2014-11-02 11:28:47 +0100 | [diff] [blame] | 219 | elseif ($this->_lock === FALSE) |
| 220 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 221 | return $this->_failure; |
Shakespeare2000 | 305186d | 2014-11-02 11:28:47 +0100 | [diff] [blame] | 222 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 223 | |
| 224 | if ($this->_row_exists === FALSE) |
| 225 | { |
Andrey Andreev | 5231d32 | 2015-01-19 02:29:49 +0200 | [diff] [blame] | 226 | $insert_data = array( |
| 227 | 'id' => $session_id, |
| 228 | 'ip_address' => $_SERVER['REMOTE_ADDR'], |
| 229 | 'timestamp' => time(), |
| 230 | 'data' => ($this->_platform === 'postgre' ? base64_encode($session_data) : $session_data) |
| 231 | ); |
| 232 | |
| 233 | if ($this->_db->insert($this->_config['save_path'], $insert_data)) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 234 | { |
| 235 | $this->_fingerprint = md5($session_data); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 236 | $this->_row_exists = TRUE; |
| 237 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 238 | } |
| 239 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 240 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | $this->_db->where('id', $session_id); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 244 | if ($this->_config['match_ip']) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 245 | { |
| 246 | $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']); |
| 247 | } |
| 248 | |
Andrey Andreev | c33c3ad | 2015-01-19 10:54:21 +0200 | [diff] [blame] | 249 | $update_data = array('timestamp' => time()); |
Andrey Andreev | 5231d32 | 2015-01-19 02:29:49 +0200 | [diff] [blame] | 250 | if ($this->_fingerprint !== md5($session_data)) |
| 251 | { |
| 252 | $update_data['data'] = ($this->_platform === 'postgre') |
| 253 | ? base64_encode($session_data) |
| 254 | : $session_data; |
| 255 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 256 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 257 | if ($this->_db->update($this->_config['save_path'], $update_data)) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 258 | { |
| 259 | $this->_fingerprint = md5($session_data); |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 260 | return $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 261 | } |
| 262 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 263 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | // ------------------------------------------------------------------------ |
| 267 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 268 | /** |
| 269 | * Close |
| 270 | * |
| 271 | * Releases locks |
| 272 | * |
Gabriel Potkány | 1fb5000 | 2015-02-04 01:45:59 +0100 | [diff] [blame] | 273 | * @return bool |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 274 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 275 | public function close() |
| 276 | { |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 277 | return ($this->_lock && ! $this->_release_lock()) |
| 278 | ? $this->_failure |
| 279 | : $this->_success; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | // ------------------------------------------------------------------------ |
| 283 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 284 | /** |
| 285 | * Destroy |
| 286 | * |
| 287 | * Destroys the current session. |
| 288 | * |
| 289 | * @param string $session_id Session ID |
| 290 | * @return bool |
| 291 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 292 | public function destroy($session_id) |
| 293 | { |
| 294 | if ($this->_lock) |
| 295 | { |
Andrey Andreev | fd5fe1a64 | 2016-01-11 11:58:40 +0200 | [diff] [blame^] | 296 | // Prevent previous QB calls from messing with our queries |
| 297 | $this->_db->reset_query(); |
| 298 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 299 | $this->_db->where('id', $session_id); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 300 | if ($this->_config['match_ip']) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 301 | { |
| 302 | $this->_db->where('ip_address', $_SERVER['REMOTE_ADDR']); |
| 303 | } |
| 304 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 305 | if ( ! $this->_db->delete($this->_config['save_path'])) |
| 306 | { |
| 307 | return $this->_failure; |
| 308 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 309 | } |
| 310 | |
Andrey Andreev | bb71dba | 2015-12-15 13:00:52 +0200 | [diff] [blame] | 311 | if ($this->close() === $this->_success) |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 312 | { |
| 313 | $this->_cookie_destroy(); |
| 314 | return $this->_success; |
| 315 | } |
| 316 | |
| 317 | return $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | // ------------------------------------------------------------------------ |
| 321 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 322 | /** |
| 323 | * Garbage Collector |
| 324 | * |
| 325 | * Deletes expired sessions |
| 326 | * |
| 327 | * @param int $maxlifetime Maximum lifetime of sessions |
| 328 | * @return bool |
| 329 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 330 | public function gc($maxlifetime) |
| 331 | { |
Andrey Andreev | fd5fe1a64 | 2016-01-11 11:58:40 +0200 | [diff] [blame^] | 332 | // Prevent previous QB calls from messing with our queries |
| 333 | $this->_db->reset_query(); |
| 334 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 335 | return ($this->_db->delete($this->_config['save_path'], 'timestamp < '.(time() - $maxlifetime))) |
| 336 | ? $this->_success |
| 337 | : $this->_failure; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | // ------------------------------------------------------------------------ |
| 341 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 342 | /** |
| 343 | * Get lock |
| 344 | * |
| 345 | * Acquires a lock, depending on the underlying platform. |
| 346 | * |
| 347 | * @param string $session_id Session ID |
| 348 | * @return bool |
| 349 | */ |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 350 | protected function _get_lock($session_id) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 351 | { |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 352 | if ($this->_platform === 'mysql') |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 353 | { |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 354 | $arg = $session_id.($this->_config['match_ip'] ? '_'.$_SERVER['REMOTE_ADDR'] : ''); |
Andrey Andreev | e1a5bb3 | 2015-03-04 13:33:39 +0200 | [diff] [blame] | 355 | if ($this->_db->query("SELECT GET_LOCK('".$arg."', 300) AS ci_session_lock")->row()->ci_session_lock) |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 356 | { |
| 357 | $this->_lock = $arg; |
| 358 | return TRUE; |
| 359 | } |
| 360 | |
| 361 | return FALSE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 362 | } |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 363 | elseif ($this->_platform === 'postgre') |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 364 | { |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 365 | $arg = "hashtext('".$session_id."')".($this->_config['match_ip'] ? ", hashtext('".$_SERVER['REMOTE_ADDR']."')" : ''); |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 366 | if ($this->_db->simple_query('SELECT pg_advisory_lock('.$arg.')')) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 367 | { |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 368 | $this->_lock = $arg; |
| 369 | return TRUE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 370 | } |
| 371 | |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 372 | return FALSE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 373 | } |
| 374 | |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 375 | return parent::_get_lock($session_id); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | // ------------------------------------------------------------------------ |
| 379 | |
Andrey Andreev | 10411fc | 2015-01-19 13:54:53 +0200 | [diff] [blame] | 380 | /** |
| 381 | * Release lock |
| 382 | * |
| 383 | * Releases a previously acquired lock |
| 384 | * |
| 385 | * @return bool |
| 386 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 387 | protected function _release_lock() |
| 388 | { |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 389 | if ( ! $this->_lock) |
| 390 | { |
| 391 | return TRUE; |
| 392 | } |
| 393 | |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 394 | if ($this->_platform === 'mysql') |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 395 | { |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 396 | if ($this->_db->query("SELECT RELEASE_LOCK('".$this->_lock."') AS ci_session_lock")->row()->ci_session_lock) |
| 397 | { |
| 398 | $this->_lock = FALSE; |
| 399 | return TRUE; |
| 400 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 401 | |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 402 | return FALSE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 403 | } |
Andrey Andreev | e9ca012 | 2015-01-15 17:42:17 +0200 | [diff] [blame] | 404 | elseif ($this->_platform === 'postgre') |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 405 | { |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 406 | if ($this->_db->simple_query('SELECT pg_advisory_unlock('.$this->_lock.')')) |
| 407 | { |
| 408 | $this->_lock = FALSE; |
| 409 | return TRUE; |
| 410 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 411 | |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 412 | return FALSE; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 413 | } |
| 414 | |
Andrey Andreev | 93d9fa7 | 2014-08-27 22:14:36 +0300 | [diff] [blame] | 415 | return parent::_release_lock(); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 416 | } |
| 417 | |
Andrey Andreev | af84969 | 2015-12-12 14:07:39 +0200 | [diff] [blame] | 418 | } |