From: Antonio Ospite Date: Thu, 9 Feb 2017 15:48:55 +0000 (+0100) Subject: Tweeper.php: allow to pass parameters to Tweeper::tweep() X-Git-Tag: v1.1.0~10 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/c00b4af91e650a23612cf94067606ec5851e6204 Tweeper.php: allow to pass parameters to Tweeper::tweep() This allows to call Tweeper::tweep() on file:// URLs which can make development faster. --- diff --git a/src/Tweeper.php b/src/Tweeper.php index 93ac9e0..8ac2fe3 100644 --- a/src/Tweeper.php +++ b/src/Tweeper.php @@ -315,21 +315,30 @@ class Tweeper { /** * Convert the site content to RSS. */ - public function tweep($src_url) { + public function tweep($src_url, $host=NULL, $validate_scheme=TRUE) { $url = parse_url($src_url); - if (FALSE === $url || empty($url["host"])) { + if (FALSE === $url) { trigger_error("Invalid URL: $src_url", E_USER_ERROR); return NULL; } - $scheme = $url["scheme"]; - if (!in_array($scheme, array("http", "https"))) { - trigger_error("unsupported scheme: $scheme", E_USER_ERROR); - return NULL; + if (TRUE === $validate_scheme) { + $scheme = $url["scheme"]; + if (!in_array($scheme, array("http", "https"))) { + trigger_error("unsupported scheme: $scheme", E_USER_ERROR); + return NULL; + } } - // Strip the leading www. to be more forgiving on input URLs. - $host = preg_replace('/^www\./', '', $url["host"]); + // if the host is not given derive it from the URL + if (NULL === $host) { + if (empty($url["host"])) { + trigger_error("Invalid host in URL: $src_url", E_USER_ERROR); + return NULL; + } + // Strip the leading www. to be more forgiving on input URLs. + $host = preg_replace('/^www\./', '', $url["host"]); + } $xsltProcessor = $this->loadStylesheet($host); if (NULL === $xsltProcessor) {