. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Illuminate\Database\Capsule\Manager as DB; use Psr\Http\Message\ServerRequestInterface; use SessionHandlerInterface; use function date; use function time; /** * Session handling - stores sessions in the database. */ class SessionDatabaseHandler implements SessionHandlerInterface { private ServerRequestInterface $request; private ?object $row; /** * SessionDatabaseHandler constructor. * * @param ServerRequestInterface $request */ public function __construct(ServerRequestInterface $request) { $this->request = $request; } /** * @param string $path * @param string $name * * @return bool */ public function open($path, $name): bool { return true; } /** * @return bool */ public function close(): bool { return true; } /** * @param string $id * * @return string */ public function read($id): string { $this->row = DB::table('session') ->where('session_id', '=', $id) ->first(); return $this->row->session_data ?? ''; } /** * @param string $id * @param string $data * * @return bool */ public function write($id, $data): bool { $ip_address = $this->request->getAttribute('client-ip'); $session_time = time(); $user_id = (int) Auth::id(); if ($this->row === null) { DB::table('session')->insert([ 'session_id' => $id, 'session_time' => date('Y-m-d H:i:s', $session_time), 'user_id' => $user_id, 'ip_address' => $ip_address, 'session_data' => $data, ]); } else { $updates = []; // The user ID can change if we masquerade as another user. if ((int) $this->row->user_id !== $user_id) { $updates['user_id'] = $user_id; } if ($this->row->ip_address !== $ip_address) { $updates['ip_address'] = $ip_address; } if ($this->row->session_data !== $data) { $updates['session_data'] = $data; } if ($session_time - 60 > $this->row->session_time) { $updates['session_time'] = $session_time; } if ($updates !== []) { DB::table('session') ->where('session_id', '=', $id) ->update($updates); } } return true; } /** * @param string $id * * @return bool */ public function destroy($id): bool { DB::table('session') ->where('session_id', '=', $id) ->delete(); return true; } /** * @param int $max_lifetime * * @return int|false */ #[\ReturnTypeWillChange] public function gc($max_lifetime) { return DB::table('session') ->where('session_time', '<', date('Y-m-d H:i:s', time() - $max_lifetime)) ->delete(); } }