X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=45c8bedeaf58397abe15b1b7684a009156f63cad;hb=2b537840941634d561ba3eed2215aedca7897471;hp=7cbc2432d995ecf2f4352b4eb80bcdc3c6d7349d;hpb=eec2289619469ad4e43b760a980c56e5ea406568;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index 7cbc2432d9..45c8bedeaf 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -5,23 +5,25 @@ */ namespace Friendica\Object; +use Exception; use Friendica\App; use Friendica\Core\Cache; use Friendica\Core\Config; +use Friendica\Core\L10n; +use Friendica\Core\Logger; use Friendica\Core\System; -use Friendica\Database\DBM; +use Friendica\Database\DBA; use Friendica\Model\Photo; -use Exception; +use Friendica\Util\Network; use Imagick; use ImagickPixel; -require_once "include/photos.php"; - /** * Class to handle images */ class Image { + /** @var Imagick|resource */ private $image; /* @@ -43,13 +45,13 @@ class Image if (class_exists('Imagick')) { // Imagick::queryFormats won't help us a lot there... // At least, not yet, other parts of friendica uses this array - $t = array( + $t = [ 'image/jpeg' => 'jpg', 'image/png' => 'png', 'image/gif' => 'gif' - ); + ]; } else { - $t = array(); + $t = []; $t['image/jpeg'] ='jpg'; if (imagetypes() & IMG_PNG) { $t['image/png'] = 'png'; @@ -61,9 +63,10 @@ class Image /** * @brief Constructor - * @param object $data data + * @param string $data * @param boolean $type optional, default null - * @return object + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException */ public function __construct($data, $type = null) { @@ -115,17 +118,19 @@ class Image */ public static function getFormatsMap() { - $m = array( + $m = [ 'image/jpeg' => 'JPG', 'image/png' => 'PNG', 'image/gif' => 'GIF' - ); + ]; return $m; } /** - * @param object $data data + * @param string $data data * @return boolean + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException */ private function loadData($data) { @@ -294,8 +299,6 @@ class Image $width = $this->getWidth(); $height = $this->getHeight(); - $dest_width = $dest_height = 0; - if ((! $width)|| (! $height)) { return false; } @@ -481,7 +484,7 @@ class Image break; } - // logger('exif: ' . print_r($exif,true)); + // Logger::log('exif: ' . print_r($exif,true)); return $exif; } @@ -498,8 +501,6 @@ class Image $width = $this->getWidth(); $height = $this->getHeight(); - $dest_width = $dest_height = 0; - if ((!$width)|| (!$height)) { return false; } @@ -641,6 +642,7 @@ class Image /** * @param string $path file path * @return mixed + * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public function saveToFilePath($path) { @@ -650,11 +652,11 @@ class Image $string = $this->asString(); - $a = get_app(); + $a = \get_app(); $stamp1 = microtime(true); file_put_contents($path, $string); - $a->save_timestamp($stamp1, "file"); + $a->getProfiler()->saveTimestamp($stamp1, "file", System::callstack()); } /** @@ -665,6 +667,7 @@ class Image * $data = (string) $Image; * * @return string + * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public function __toString() { return $this->asString(); @@ -672,6 +675,7 @@ class Image /** * @return mixed + * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public function asString() { @@ -686,8 +690,6 @@ class Image return $string; } - $quality = false; - ob_start(); // Enable interlacing @@ -719,20 +721,24 @@ class Image * * @param string $filename Image filename * @param boolean $fromcurl Check Content-Type header from curl request + * @param string $header passed headers to take into account * * @return object + * @throws \ImagickException */ - public static function guessType($filename, $fromcurl = false) + public static function guessType($filename, $fromcurl = false, $header = '') { - logger('Image: guessType: '.$filename . ($fromcurl?' from curl headers':''), LOGGER_DEBUG); + Logger::log('Image: guessType: '.$filename . ($fromcurl?' from curl headers':''), Logger::DEBUG); $type = null; if ($fromcurl) { - $a = get_app(); - $headers=array(); - $h = explode("\n", $a->get_curl_headers()); + $headers=[]; + $h = explode("\n", $header); 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']; @@ -759,36 +765,50 @@ class Image } } } - logger('Image: guessType: type='.$type, LOGGER_DEBUG); + Logger::log('Image: guessType: type='.$type, Logger::DEBUG); return $type; } /** * @param string $url url * @return object + * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public static function getInfoFromURL($url) { - $data = array(); + $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); + + if (!$img_str) { + return false; + } + $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->getProfiler()->saveTimestamp($stamp1, "file", System::callstack()); - $data = getimagesize($tempfile); - unlink($tempfile); + $data = getimagesize($tempfile); + unlink($tempfile); + } + } catch (Exception $e) { + return false; } if ($data) { @@ -809,8 +829,6 @@ class Image */ public static function getScalingDimensions($width, $height, $max) { - $dest_width = $dest_height = 0; - if ((!$width) || (!$height)) { return false; } @@ -852,16 +870,18 @@ class Image } } } - return array("width" => $dest_width, "height" => $dest_height); + return ["width" => $dest_width, "height" => $dest_height]; } /** * @brief This function is used by the fromgplus addon - * @param object $a App + * @param App $a App * @param integer $uid user id * @param string $imagedata optional, default empty * @param string $url optional, default empty * @return array + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException */ public static function storePhoto(App $a, $uid, $imagedata = "", $url = "") { @@ -871,55 +891,55 @@ class Image intval($uid) ); - if (!DBM::is_result($r)) { - logger("Can't detect user data for uid ".$uid, LOGGER_DEBUG); - return(array()); + if (!DBA::isResult($r)) { + Logger::log("Can't detect user data for uid ".$uid, Logger::DEBUG); + return([]); } $page_owner_nick = $r[0]['nickname']; /// @TODO /// $default_cid = $r[0]['id']; - /// $community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false); + /// $community_page = (($r[0]['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false); if ((strlen($imagedata) == 0) && ($url == "")) { - logger("No image data and no url provided", LOGGER_DEBUG); - return(array()); + Logger::log("No image data and no url provided", Logger::DEBUG); + return([]); } elseif (strlen($imagedata) == 0) { - logger("Uploading picture from ".$url, LOGGER_DEBUG); + Logger::log("Uploading picture from ".$url, Logger::DEBUG); $stamp1 = microtime(true); $imagedata = @file_get_contents($url); - $a->save_timestamp($stamp1, "file"); + $a->getProfiler()->saveTimestamp($stamp1, "file", System::callstack()); } $maximagesize = Config::get('system', 'maximagesize'); if (($maximagesize) && (strlen($imagedata) > $maximagesize)) { - logger("Image exceeds size limit of ".$maximagesize, LOGGER_DEBUG); - return(array()); + Logger::log("Image exceeds size limit of ".$maximagesize, Logger::DEBUG); + return([]); } $tempfile = tempnam(get_temppath(), "cache"); $stamp1 = microtime(true); file_put_contents($tempfile, $imagedata); - $a->save_timestamp($stamp1, "file"); + $a->getProfiler()->saveTimestamp($stamp1, "file", System::callstack()); $data = getimagesize($tempfile); if (!isset($data["mime"])) { unlink($tempfile); - logger("File is no picture", LOGGER_DEBUG); - return(array()); + Logger::log("File is no picture", Logger::DEBUG); + return([]); } $Image = new Image($imagedata, $data["mime"]); if (!$Image->isValid()) { unlink($tempfile); - logger("Picture is no valid picture", LOGGER_DEBUG); - return(array()); + Logger::log("Picture is no valid picture", Logger::DEBUG); + return([]); } $Image->orient($tempfile); @@ -937,24 +957,22 @@ class Image $width = $Image->getWidth(); $height = $Image->getHeight(); - $hash = photo_new_resource(); - - $smallest = 0; + $hash = Photo::newResource(); // Pictures are always public by now //$defperm = '<'.$default_cid.'>'; $defperm = ""; $visitor = 0; - $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, t('Wall Photos'), 0, 0, $defperm); + $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 0, 0, $defperm); if (!$r) { - logger("Picture couldn't be stored", LOGGER_DEBUG); - return(array()); + Logger::log("Picture couldn't be stored", Logger::DEBUG); + return([]); } - $image = array("page" => System::baseUrl().'/photos/'.$page_owner_nick.'/image/'.$hash, - "full" => System::baseUrl()."/photo/{$hash}-0.".$Image->getExt()); + $image = ["page" => System::baseUrl().'/photos/'.$page_owner_nick.'/image/'.$hash, + "full" => System::baseUrl()."/photo/{$hash}-0.".$Image->getExt()]; if ($width > 800 || $height > 800) { $image["large"] = System::baseUrl()."/photo/{$hash}-0.".$Image->getExt(); @@ -962,7 +980,7 @@ class Image if ($width > 640 || $height > 640) { $Image->scaleDown(640); - $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, t('Wall Photos'), 1, 0, $defperm); + $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 1, 0, $defperm); if ($r) { $image["medium"] = System::baseUrl()."/photo/{$hash}-1.".$Image->getExt(); } @@ -970,7 +988,7 @@ class Image if ($width > 320 || $height > 320) { $Image->scaleDown(320); - $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, t('Wall Photos'), 2, 0, $defperm); + $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 2, 0, $defperm); if ($r) { $image["small"] = System::baseUrl()."/photo/{$hash}-2.".$Image->getExt(); } @@ -995,7 +1013,7 @@ class Image $min = 160; $Image->crop(160, $x, $y, $min, $min); - $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, t('Wall Photos'), 3, 0, $defperm); + $r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 3, 0, $defperm); if ($r) { $image["thumb"] = System::baseUrl()."/photo/{$hash}-3.".$Image->getExt(); }