find_one($_SESSION["uid"]); if ($user) { if ($user->pwd_hash != $_SESSION["pwd_hash"]) { $_SESSION["login_error_msg"] = __("Session failed to validate (password changed)"); return false; } if ($user->access_level == UserHelper::ACCESS_LEVEL_DISABLED) { $_SESSION["login_error_msg"] = __("Session failed to validate (account is disabled)"); return false; } } else { $_SESSION["login_error_msg"] = __("Session failed to validate (user not found)"); return false; } } return true; } function ttrss_open(string $savePath, string $sessionName): bool { return true; } function ttrss_read(string $id): string { global $session_expire; $sth = \Db::pdo()->prepare("SELECT data FROM ttrss_sessions WHERE id=?"); $sth->execute([$id]); if ($row = $sth->fetch()) { return base64_decode($row["data"]); } else { $expire = time() + $session_expire; $sth = \Db::pdo()->prepare("INSERT INTO ttrss_sessions (id, data, expire) VALUES (?, '', ?)"); $sth->execute([$id, $expire]); return ""; } } function ttrss_write(string $id, string $data): bool { global $session_expire; $data = base64_encode($data); $expire = time() + $session_expire; $sth = \Db::pdo()->prepare("SELECT id FROM ttrss_sessions WHERE id=?"); $sth->execute([$id]); if ($row = $sth->fetch()) { $sth = \Db::pdo()->prepare("UPDATE ttrss_sessions SET data=?, expire=? WHERE id=?"); $sth->execute([$data, $expire, $id]); } else { $sth = \Db::pdo()->prepare("INSERT INTO ttrss_sessions (id, data, expire) VALUES (?, ?, ?)"); $sth->execute([$id, $data, $expire]); } return true; } function ttrss_close(): bool { return true; } function ttrss_destroy(string $id): bool { $sth = \Db::pdo()->prepare("DELETE FROM ttrss_sessions WHERE id = ?"); $sth->execute([$id]); return true; } function ttrss_gc(int $lifetime): bool { \Db::pdo()->query("DELETE FROM ttrss_sessions WHERE expire < " . time()); return true; } if (\Config::get_schema_version() >= 0) { session_set_save_handler('\Sessions\ttrss_open', '\Sessions\ttrss_close', '\Sessions\ttrss_read', '\Sessions\ttrss_write', '\Sessions\ttrss_destroy', '\Sessions\ttrss_gc'); // @phpstan-ignore-line // PHPStan complains about '\Sessions\ttrss_gc' if its $lifetime param isn't marked as string, // but the docs say it's an int. If it is actually a string it'll get coerced to an int. register_shutdown_function('session_write_close'); if (!defined('NO_SESSION_AUTOSTART')) { if (isset($_COOKIE[session_name()])) { if (session_status() != PHP_SESSION_ACTIVE) session_start(); } } }