]> git.mxchange.org Git - friendica.git/blobdiff - mod/parse_url.php
Use CurlResult->getHeaderArray instead of custom conversion
[friendica.git] / mod / parse_url.php
index 49e41246c9caab4fb400503e9b099bf4c7d525fc..5061035df27cbb49d7c49672c0aa5db0a4e79295 100644 (file)
@@ -28,7 +28,7 @@ use Friendica\Content\PageInfo;
 use Friendica\Core\Hook;
 use Friendica\Core\Logger;
 use Friendica\Core\System;
-use Friendica\Network\HTTPRequest;
+use Friendica\DI;
 use Friendica\Util\ParseUrl;
 use Friendica\Util\Strings;
 
@@ -85,19 +85,11 @@ function parse_url_content(App $a)
        // Check if the URL is an image, video or audio file. If so format
        // the URL with the corresponding BBCode media tag
        // Fetch the header of the URL
-       $curlResponse = HTTPRequest::curl($url, false, ['novalidate' => true, 'nobody' => true]);
+       $curlResponse = DI::httpRequest()->head($url);
 
        if ($curlResponse->isSuccess()) {
-               // Convert the header fields into an array
-               $hdrs = [];
-               $h = explode("\n", $curlResponse->getHeader());
-               foreach ($h as $l) {
-                       $header = array_map('trim', explode(':', trim($l), 2));
-                       if (count($header) == 2) {
-                               list($k, $v) = $header;
-                               $hdrs[$k] = $v;
-                       }
-               }
+               $hdrs = $curlResponse->getHeaderArray();
+
                $type = null;
                $content_type = '';
                $bbcode = '';