From 81dc93802c32aa6f593a12b3f2efbe38dc9e31f7 Mon Sep 17 00:00:00 2001 From: lolcat Date: Mon, 22 Apr 2024 11:12:46 -0400 Subject: [PATCH] opensearch onion fix --- opensearch.php | 17 +++++++++++++++-- scraper/qwant.php | 1 + sitemap.php | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/opensearch.php b/opensearch.php index fb51430..4bdf97c 100644 --- a/opensearch.php +++ b/opensearch.php @@ -5,14 +5,27 @@ include "data/config.php"; $domain = htmlspecialchars( - ((isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on" || $_SERVER["HTTPS"] === 1)) ? "https" : "http") . + (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? "https" : "http") . '://' . $_SERVER["HTTP_HOST"] ); +if( + preg_match( + '/\.onion$/', + $domain + ) +){ + + $onion = true; +}else{ + + $onion = false; +} + echo '' . '' . - '' . htmlspecialchars(config::SERVER_NAME) . '' . + '' . htmlspecialchars(config::SERVER_NAME) . ($onion ? " (onion)" : "") . '' . 'UTF-8' . '' . $domain . '/favicon.ico' . ''; diff --git a/scraper/qwant.php b/scraper/qwant.php index 8b160ed..a8b69fe 100644 --- a/scraper/qwant.php +++ b/scraper/qwant.php @@ -259,6 +259,7 @@ class qwant{ } curl_close($curlproc); + return $data; } diff --git a/sitemap.php b/sitemap.php index 041550c..80bda66 100644 --- a/sitemap.php +++ b/sitemap.php @@ -5,7 +5,7 @@ include "data/config.php"; $domain = htmlspecialchars( - ((isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on" || $_SERVER["HTTPS"] === 1)) ? "https" : "http") . + (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? "https" : "http") . '://' . $_SERVER["HTTP_HOST"] );