From 44257b801650dddd65f01a0f20e0865d5184c3a3 Mon Sep 17 00:00:00 2001 From: wn_ Date: Fri, 12 Jul 2024 01:18:53 +0000 Subject: Move side effects out of the 'Sessions' constructor. --- classes/Sessions.php | 25 +++++++++++++++++++------ include/sessions.php | 2 ++ 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/classes/Sessions.php b/classes/Sessions.php index 7bd050d32..08c6b5855 100644 --- a/classes/Sessions.php +++ b/classes/Sessions.php @@ -1,16 +1,23 @@ session_expire = min(2147483647 - time() - 1, max(\Config::get(\Config::SESSION_COOKIE_LIFETIME), 86400)); - $this->session_name = \Config::get(\Config::SESSION_NAME); + $this->session_expire = min(2147483647 - time() - 1, max(Config::get(Config::SESSION_COOKIE_LIFETIME), 86400)); + $this->session_name = Config::get(Config::SESSION_NAME); + } - if (\Config::is_server_https()) { + /** + * Adjusts session-related PHP configuration options + */ + public function configure(): void { + if (Config::is_server_https()) { ini_set('session.cookie_secure', 'true'); } @@ -19,10 +26,15 @@ class Sessions implements \SessionHandlerInterface { ini_set('session.use_only_cookies', 'true'); ini_set('session.gc_maxlifetime', $this->session_expire); ini_set('session.cookie_lifetime', '0'); + } - // prolong PHP session cookie + /** + * Extend the validity of the PHP session cookie (if it exists) + * @return bool Whether the new cookie was set successfully + */ + public function extend_session(): bool { if (isset($_COOKIE[$this->session_name])) { - setcookie($this->session_name, + return setcookie($this->session_name, $_COOKIE[$this->session_name], time() + $this->session_expire, ini_get('session.cookie_path'), @@ -30,6 +42,7 @@ class Sessions implements \SessionHandlerInterface { ini_get('session.cookie_secure'), ini_get('session.cookie_httponly')); } + return false; } public function open(string $path, string $name): bool { diff --git a/include/sessions.php b/include/sessions.php index cee2702be..586eab7d5 100644 --- a/include/sessions.php +++ b/include/sessions.php @@ -5,6 +5,8 @@ require_once 'autoload.php'; require_once 'errorhandler.php'; $sessions = new \Sessions; +$sessions->configure(); +$sessions->extend_session(); if (\Config::get_schema_version() >= 0) { session_set_save_handler($sessions); -- cgit v1.2.3-54-g00ecf