From 50087df16291af5b74e9fb78d497850730814c82 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 3 Mar 2021 11:23:39 +0300 Subject: * remove _SKIP_SELF_URL_PATH_CHECKS * simplify SELF_URL_PATH checks wrt trailing slash --- classes/config.php | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/classes/config.php b/classes/config.php index bad760e3e..3e2ce2e45 100644 --- a/classes/config.php +++ b/classes/config.php @@ -263,8 +263,8 @@ class Config { return $instance->_get($param); } - // this returns Config::SELF_URL_PATH sans ending slash - static function get_self_url() { + /** this returns Config::SELF_URL_PATH sans trailing slash */ + static function get_self_url() : string { $self_url_path = self::get(Config::SELF_URL_PATH); if (substr($self_url_path, -1) === "/") { @@ -274,28 +274,25 @@ class Config { } } - static function is_server_https() { + static function is_server_https() : bool { return (!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] != 'off')) || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'); } - static function make_self_url() { + /** generates reference self_url_path (no trailing slash) */ + static function make_self_url() : string { $proto = self::is_server_https() ? 'https' : 'http'; + $self_url_path = $proto . '://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]; - return $proto . '://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]; + if (substr($self_url_path, -1) === "/") { + return substr($self_url_path, 0, -1); + } else { + return $self_url_path; + } } /* sanity check stuff */ - private static function make_self_url_path() { - if (!isset($_SERVER["HTTP_HOST"])) return false; - - $proto = self::is_server_https() ? 'https' : 'http'; - $url_path = $proto . '://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH); - - return $url_path; - } - private static function check_mysql_tables() { $pdo = Db::pdo(); @@ -360,23 +357,21 @@ class Config { } if (php_sapi_name() != "cli") { - $ref_self_url_path = self::make_self_url_path(); + $ref_self_url_path = self::make_self_url(); if ($ref_self_url_path) { $ref_self_url_path = preg_replace("/\w+\.php$/", "", $ref_self_url_path); } - if (self::get(Config::SELF_URL_PATH) == "http://example.org/tt-rss/") { + if (self::get_self_url() == "http://example.org/tt-rss") { $hint = $ref_self_url_path ? "(possible value: $ref_self_url_path)" : ""; array_push($errors, "Please set SELF_URL_PATH to the correct value for your server: $hint"); } - if ($ref_self_url_path && - (!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS) && - self::get(Config::SELF_URL_PATH) != $ref_self_url_path && self::get(Config::SELF_URL_PATH) != mb_substr($ref_self_url_path, 0, mb_strlen($ref_self_url_path)-1)) { + if (self::get_self_url() != $ref_self_url_path) { array_push($errors, - "Please set SELF_URL_PATH to the correct value detected for your server: $ref_self_url_path (you're using: " . self::get(Config::SELF_URL_PATH) . ")"); + "Please set SELF_URL_PATH to the correct value detected for your server: $ref_self_url_path (you're using: " . self::get_self_url() . ")"); } } -- cgit v1.2.3