]> git.mxchange.org Git - friendica.git/blob - src/Util/Images.php
Simplyfied picture fetching
[friendica.git] / src / Util / Images.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Util;
23
24 use Friendica\Core\Logger;
25 use Friendica\DI;
26 use Friendica\Model\Photo;
27
28 /**
29  * Image utilities
30  */
31 class Images
32 {
33         /**
34          * Maps Mime types to Imagick formats
35          *
36          * @return array
37          */
38         public static function getFormatsMap()
39         {
40                 $m = [
41                         'image/jpeg' => 'JPG',
42                         'image/png' => 'PNG',
43                         'image/gif' => 'GIF'
44                 ];
45
46                 return $m;
47         }
48
49         /**
50          * Returns supported image mimetypes and corresponding file extensions
51          *
52          * @return array
53          */
54         public static function supportedTypes()
55         {
56                 $types = [
57                         'image/jpeg' => 'jpg'
58                 ];
59                 if (class_exists('Imagick')) {
60                         // Imagick::queryFormats won't help us a lot there...
61                         // At least, not yet, other parts of friendica uses this array
62                         $types += [
63                                 'image/png' => 'png',
64                                 'image/gif' => 'gif'
65                         ];
66                 } elseif (imagetypes() & IMG_PNG) {
67                         $types += [
68                                 'image/png' => 'png'
69                         ];
70                 }
71
72                 return $types;
73         }
74
75         /**
76          * Fetch image mimetype from the image data or guessing from the file name
77          *
78          * @param string $image_data Image data
79          * @param string $filename   File name (for guessing the type via the extension)
80          * @param string $mime       default mime type
81          *
82          * @return string
83          * @throws \Exception
84          */
85         public static function getMimeTypeByData(string $image_data, string $filename = '', string $mime = '')
86         {
87                 if (substr($mime, 0, 6) == 'image/') {
88                         Logger::info('Using default mime type', ['filename' => $filename, 'mime' => $mime]);
89                         return $mime;
90                 }
91
92                 $image = @getimagesizefromstring($image_data);
93                 if (!empty($image['mime'])) {
94                         Logger::info('Mime type detected via data', ['filename' => $filename, 'default' => $mime, 'mime' => $image['mime']]);
95                         return $image['mime'];
96                 }
97
98                 return self::guessTypeByExtension($filename);
99         }
100
101         /**
102          * Fetch image mimetype from the image data or guessing from the file name
103          *
104          * @param string $sourcefile Source file of the image
105          * @param string $filename   File name (for guessing the type via the extension)
106          * @param string $mime       default mime type
107          *
108          * @return string
109          * @throws \Exception
110          */
111         public static function getMimeTypeBySource(string $sourcefile, string $filename = '', string $mime = '')
112         {
113                 if (substr($mime, 0, 6) == 'image/') {
114                         Logger::info('Using default mime type', ['filename' => $filename, 'mime' => $mime]);
115                         return $mime;
116                 }
117
118                 $image = @getimagesize($sourcefile);
119                 if (!empty($image['mime'])) {
120                         Logger::info('Mime type detected via file', ['filename' => $filename, 'default' => $mime, 'image' => $image]);
121                         return $image['mime'];
122                 }
123
124                 return self::guessTypeByExtension($filename);
125         }
126
127         /**
128          * Guess image mimetype from the filename
129          *
130          * @param string $filename   Image filename
131          *
132          * @return string
133          * @throws \Exception
134          */
135         public static function guessTypeByExtension(string $filename)
136         {
137                 $ext = pathinfo(parse_url($filename, PHP_URL_PATH), PATHINFO_EXTENSION);
138                 $types = self::supportedTypes();
139                 $type = 'image/jpeg';
140                 foreach ($types as $m => $e) {
141                         if ($ext == $e) {
142                                 $type = $m;
143                         }
144                 }
145
146                 Logger::info('Mime type guessed via extension', ['filename' => $filename, 'type' => $type]);
147                 return $type;
148         }
149
150         /**
151          * @param string $url
152          * @return array
153          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
154          */
155         public static function getInfoFromURLCached($url)
156         {
157                 $data = [];
158
159                 if (empty($url)) {
160                         return $data;
161                 }
162
163                 $data = DI::cache()->get($url);
164
165                 if (empty($data) || !is_array($data)) {
166                         $data = self::getInfoFromURL($url);
167
168                         DI::cache()->set($url, $data);
169                 }
170
171                 return $data;
172         }
173
174         /**
175          * @param string $url
176          * @return array
177          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
178          */
179         public static function getInfoFromURL($url)
180         {
181                 $data = [];
182
183                 if (empty($url)) {
184                         return $data;
185                 }
186
187                 if (Network::isLocalLink($url) && ($data = Photo::getResourceData($url))) {
188                         $photo = Photo::selectFirst([], ['resource-id' => $data['guid'], 'scale' => $data['scale']]);
189                         if (!empty($photo)) {
190                                 $img_str = Photo::getImageDataForPhoto($photo);
191                         }
192                 }
193
194                 if (empty($img_str)) {
195                         $img_str = DI::httpRequest()->fetch($url, 4);
196                 }
197
198                 if (!$img_str) {
199                         return [];
200                 }
201
202                 $filesize = strlen($img_str);
203
204                 try {
205                         $data = @getimagesizefromstring($img_str);
206                 } catch (\Exception $e) {
207                         return [];
208                 }
209
210                 if ($data) {
211                         $data['size'] = $filesize;
212                 }
213
214                 return $data;
215         }
216
217         /**
218          * @param integer $width
219          * @param integer $height
220          * @param integer $max
221          * @return array
222          */
223         public static function getScalingDimensions($width, $height, $max)
224         {
225                 if ((!$width) || (!$height)) {
226                         return ['width' => 0, 'height' => 0];
227                 }
228
229                 if ($width > $max && $height > $max) {
230                         // very tall image (greater than 16:9)
231                         // constrain the width - let the height float.
232
233                         if ((($height * 9) / 16) > $width) {
234                                 $dest_width = $max;
235                                 $dest_height = intval(($height * $max) / $width);
236                         } elseif ($width > $height) {
237                                 // else constrain both dimensions
238                                 $dest_width = $max;
239                                 $dest_height = intval(($height * $max) / $width);
240                         } else {
241                                 $dest_width = intval(($width * $max) / $height);
242                                 $dest_height = $max;
243                         }
244                 } else {
245                         if ($width > $max) {
246                                 $dest_width = $max;
247                                 $dest_height = intval(($height * $max) / $width);
248                         } else {
249                                 if ($height > $max) {
250                                         // very tall image (greater than 16:9)
251                                         // but width is OK - don't do anything
252
253                                         if ((($height * 9) / 16) > $width) {
254                                                 $dest_width = $width;
255                                                 $dest_height = $height;
256                                         } else {
257                                                 $dest_width = intval(($width * $max) / $height);
258                                                 $dest_height = $max;
259                                         }
260                                 } else {
261                                         $dest_width = $width;
262                                         $dest_height = $height;
263                                 }
264                         }
265                 }
266
267                 return ['width' => $dest_width, 'height' => $dest_height];
268         }
269 }