1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees; 21 22use Illuminate\Database\Capsule\Manager as DB; 23use Psr\Http\Message\ServerRequestInterface; 24use SessionHandlerInterface; 25 26/** 27 * Session handling - stores sessions in the database. 28 */ 29class SessionDatabaseHandler implements SessionHandlerInterface 30{ 31 private ServerRequestInterface $request; 32 33 private ?object $row; 34 35 /** 36 * SessionDatabaseHandler constructor. 37 * 38 * @param ServerRequestInterface $request 39 */ 40 public function __construct(ServerRequestInterface $request) 41 { 42 $this->request = $request; 43 } 44 45 /** 46 * @param string $path 47 * @param string $name 48 * 49 * @return bool 50 */ 51 public function open($path, $name): bool 52 { 53 return true; 54 } 55 56 /** 57 * @return bool 58 */ 59 public function close(): bool 60 { 61 return true; 62 } 63 64 /** 65 * @param string $id 66 * 67 * @return string 68 */ 69 public function read($id): string 70 { 71 $this->row = DB::table('session') 72 ->where('session_id', '=', $id) 73 ->first(); 74 75 76 return $this->row->session_data ?? ''; 77 } 78 79 /** 80 * @param string $id 81 * @param string $data 82 * 83 * @return bool 84 */ 85 public function write($id, $data): bool 86 { 87 $ip_address = $this->request->getAttribute('client-ip'); 88 $session_time = Carbon::now(); 89 $user_id = (int) Auth::id(); 90 91 if ($this->row === null) { 92 DB::table('session')->insert([ 93 'session_id' => $id, 94 'session_time' => $session_time, 95 'user_id' => $user_id, 96 'ip_address' => $ip_address, 97 'session_data' => $data, 98 ]); 99 } else { 100 $updates = []; 101 102 // The user ID can change if we masquerade as another user. 103 if ((int) $this->row->user_id !== $user_id) { 104 $updates['user_id'] = $user_id; 105 } 106 107 if ($this->row->ip_address !== $ip_address) { 108 $updates['ip_address'] = $ip_address; 109 } 110 111 if ($this->row->session_data !== $data) { 112 $updates['session_data'] = $data; 113 } 114 115 if ($session_time->subMinute()->gt($this->row->session_time)) { 116 $updates['session_time'] = $session_time; 117 } 118 119 if ($updates !== []) { 120 DB::table('session') 121 ->where('session_id', '=', $id) 122 ->update($updates); 123 } 124 } 125 126 return true; 127 } 128 129 /** 130 * @param string $id 131 * 132 * @return bool 133 */ 134 public function destroy($id): bool 135 { 136 DB::table('session') 137 ->where('session_id', '=', $id) 138 ->delete(); 139 140 return true; 141 } 142 143 /** 144 * @param int $max_lifetime 145 * 146 * @return int|false 147 */ 148 #[\ReturnTypeWillChange] 149 public function gc($max_lifetime) 150 { 151 return DB::table('session') 152 ->where('session_time', '<', Carbon::now()->subSeconds($max_lifetime)) 153 ->delete(); 154 } 155} 156