X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=7a5442311fef34c9716d14efe0f8d5c121de1a13;hb=4f2ae8868431952bd3acda1537ee899740cbf205;hp=b2908455b7913eea7d20e999b0c4d539257d30dc;hpb=56ee734b00aead633d5d213a6b140b75bc17ba96;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index b2908455b7..7a5442311f 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -10,7 +10,10 @@ * @see ParseUrl::getSiteinfo() for more information about scraping embeddable content */ -use Friendica\ParseUrl; +use Friendica\App; +use Friendica\Core\Addon; +use Friendica\Util\Network; +use Friendica\Util\ParseUrl; require_once("include/items.php"); @@ -58,14 +61,17 @@ function parse_url_content(App $a) { // the URL with the corresponding BBCode media tag $redirects = 0; // Fetch the header of the URL - $result = z_fetch_url($url, false, $redirects, array("novalidate" => true, "nobody" => true)); + $result = Network::curl($url, false, $redirects, ["novalidate" => true, "nobody" => true]); if($result["success"]) { // Convert the header fields into an array - $hdrs = array(); + $hdrs = []; $h = explode("\n", $result["header"]); foreach ($h as $l) { - list($k,$v) = array_map("trim", explode(":", trim($l), 2)); - $hdrs[$k] = $v; + $header = array_map("trim", explode(":", trim($l), 2)); + if (count($header) == 2) { + list($k,$v) = $header; + $hdrs[$k] = $v; + } } if (array_key_exists("Content-Type", $hdrs)) { $type = $hdrs["Content-Type"]; @@ -88,9 +94,9 @@ function parse_url_content(App $a) { $template = "[bookmark=%s]%s[/bookmark]%s"; - $arr = array("url" => $url, "text" => ""); + $arr = ["url" => $url, "text" => ""]; - call_hooks("parse_link", $arr); + Addon::callHooks("parse_link", $arr); if (strlen($arr["text"])) { echo $arr["text"]; @@ -101,7 +107,7 @@ function parse_url_content(App $a) { // need to parse the url for content. if ($url && $title && $text) { - $title = str_replace(array("\r","\n"),array("",""),$title); + $title = str_replace(["\r","\n"],["",""],$title); $text = "[quote]" . trim($text) . "[/quote]" . $br;