X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=aafed8f95d16c6e0c7ff12b2f4cc24f8c2352c32;hb=cfa68c52b9117616fa95a4639ad74e7d220d193d;hp=2feb3b92411e1fc8223244be2f4e7db5fce7d81a;hpb=6b44fbbda03af125035c185c964f10ce78f97610;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index 2feb3b9241..aafed8f95d 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -10,8 +10,9 @@ use Friendica\Core\Cache; use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\System; -use Friendica\Database\DBM; +use Friendica\Database\DBA; use Friendica\Model\Photo; +use Friendica\Util\Network; use Exception; use Imagick; use ImagickPixel; @@ -730,8 +731,11 @@ class Image $headers=[]; $h = explode("\n", $a->get_curl_headers()); foreach ($h as $l) { - list($k,$v) = array_map("trim", explode(":", trim($l), 2)); - $headers[$k] = $v; + $data = array_map("trim", explode(":", trim($l), 2)); + if (count($data) > 1) { + list($k,$v) = $data; + $headers[$k] = $v; + } } if (array_key_exists('Content-Type', $headers)) $type = $headers['Content-Type']; @@ -770,24 +774,32 @@ class Image { $data = []; + if (empty($url)) { + return $data; + } + $data = Cache::get($url); if (is_null($data) || !$data || !is_array($data)) { - $img_str = fetch_url($url, true, $redirects, 4); + $img_str = Network::fetchUrl($url, true, $redirects, 4); $filesize = strlen($img_str); - if (function_exists("getimagesizefromstring")) { - $data = getimagesizefromstring($img_str); - } else { - $tempfile = tempnam(get_temppath(), "cache"); + try { + if (function_exists("getimagesizefromstring")) { + $data = getimagesizefromstring($img_str); + } else { + $tempfile = tempnam(get_temppath(), "cache"); - $a = get_app(); - $stamp1 = microtime(true); - file_put_contents($tempfile, $img_str); - $a->save_timestamp($stamp1, "file"); + $a = get_app(); + $stamp1 = microtime(true); + file_put_contents($tempfile, $img_str); + $a->save_timestamp($stamp1, "file"); - $data = getimagesize($tempfile); - unlink($tempfile); + $data = getimagesize($tempfile); + unlink($tempfile); + } + } catch (Exception $e) { + return false; } if ($data) { @@ -870,7 +882,7 @@ class Image intval($uid) ); - if (!DBM::is_result($r)) { + if (!DBA::isResult($r)) { logger("Can't detect user data for uid ".$uid, LOGGER_DEBUG); return([]); } @@ -936,7 +948,7 @@ class Image $width = $Image->getWidth(); $height = $Image->getHeight(); - $hash = photo_new_resource(); + $hash = Photo::newResource(); $smallest = 0;