From: Mikael Nordfeldth Date: Thu, 22 Jan 2015 10:30:36 +0000 (+0100) Subject: Replace file_get_contents with HTTPClient in testfeed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3a0136fe1fb66e45c828a31ad3a49f7f463411c8;p=quix0rs-gnu-social.git Replace file_get_contents with HTTPClient in testfeed --- diff --git a/plugins/OStatus/scripts/testfeed.php b/plugins/OStatus/scripts/testfeed.php index 42f21a7aa0..4dd5dfa370 100644 --- a/plugins/OStatus/scripts/testfeed.php +++ b/plugins/OStatus/scripts/testfeed.php @@ -51,9 +51,11 @@ if (!$sub) { exit(1); } -$xml = file_get_contents($feedurl); -if ($xml === false) { - print "Bad fetch.\n"; +// Fetch the URL +try { + $xml = HTTPClient::quickGet($feedurl); +} catch (Exception $e) { + echo sprintf("Could not fetch feedurl %s (%d).\n", $e->getMessage(), $e->getCode()); exit(1); } @@ -85,4 +87,5 @@ if ($skip || $count) { } } +echo "Calling event StartFeedSubReceive\n"; Event::handle('StartFeedSubReceive', array($sub, $feed));