From 7a04f7d98e10eff14feb94e1307a6ea7b030ff72 Mon Sep 17 00:00:00 2001 From: drigato Date: Wed, 29 Jan 2014 12:09:05 -0500 Subject: [PATCH] CC-5672: Webstream warnings on SaaS Don't parse/use header info if get_headers returns false --- airtime_mvc/application/models/Webstream.php | 32 ++++++++++++-------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/airtime_mvc/application/models/Webstream.php b/airtime_mvc/application/models/Webstream.php index 693a08146..21c794b07 100644 --- a/airtime_mvc/application/models/Webstream.php +++ b/airtime_mvc/application/models/Webstream.php @@ -360,21 +360,27 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable private static function discoverStreamMime($url) { - //TODO: What if invalid URL? - $headers = get_headers($url); + try { + $headers = @get_headers($url); - $headers = self::cleanHeaders($headers); - - $mime = null; - $content_length_found = false; - foreach ($headers as $h) { - if (preg_match("/^content-type:/i", $h)) { - list(, $value) = explode(":", $h, 2); - $mime = trim($value); - } - if (preg_match("/^content-length:/i", $h)) { - $content_length_found = true; + $mime = null; + $content_length_found = false; + + if ($headers !== false) { + $headers = self::cleanHeaders($headers); + foreach ($headers as $h) { + if (preg_match("/^content-type:/i", $h)) { + list(, $value) = explode(":", $h, 2); + $mime = trim($value); + } + if (preg_match("/^content-length:/i", $h)) { + $content_length_found = true; + } + } } + } catch (Exception $e) { + Logging::info("Invalid stream URL"); + Logging::info($e->getMessage()); } return array($mime, $content_length_found);