1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2023 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees\Factories;
use Fig\Http\Message\StatusCodeInterface;
use Fisharebest\Webtrees\Auth;
use Fisharebest\Webtrees\Contracts\ImageFactoryInterface;
use Fisharebest\Webtrees\Contracts\UserInterface;
use Fisharebest\Webtrees\MediaFile;
use Fisharebest\Webtrees\Mime;
use Fisharebest\Webtrees\Registry;
use Fisharebest\Webtrees\Webtrees;
use Imagick;
use Intervention\Image\Constraint;
use Intervention\Image\Exception\NotReadableException;
use Intervention\Image\Exception\NotSupportedException;
use Intervention\Image\Image;
use Intervention\Image\ImageManager;
use League\Flysystem\FilesystemException;
use League\Flysystem\FilesystemOperator;
use League\Flysystem\UnableToReadFile;
use League\Flysystem\UnableToRetrieveMetadata;
use Psr\Http\Message\ResponseInterface;
use RuntimeException;
use Throwable;
use function addcslashes;
use function basename;
use function extension_loaded;
use function get_class;
use function implode;
use function pathinfo;
use function response;
use function str_contains;
use function view;
use const PATHINFO_EXTENSION;
/**
* Make an image (from another image).
*/
class ImageFactory implements ImageFactoryInterface
{
// Imagick can detect the quality setting for images. GD cannot.
protected const GD_DEFAULT_IMAGE_QUALITY = 90;
protected const GD_DEFAULT_THUMBNAIL_QUALITY = 70;
protected const WATERMARK_FILE = 'resources/img/watermark.png';
protected const THUMBNAIL_CACHE_TTL = 8640000;
protected const INTERVENTION_DRIVERS = ['imagick', 'gd'];
public const SUPPORTED_FORMATS = [
'image/jpeg' => 'jpg',
'image/png' => 'png',
'image/gif' => 'gif',
'image/tiff' => 'tif',
'image/bmp' => 'bmp',
'image/webp' => 'webp',
];
/**
* Send the original file - either inline or as a download.
*
* @param FilesystemOperator $filesystem
* @param string $path
* @param bool $download
*
* @return ResponseInterface
*/
public function fileResponse(FilesystemOperator $filesystem, string $path, bool $download): ResponseInterface
{
try {
try {
$mime_type = $filesystem->mimeType($path);
} catch (UnableToRetrieveMetadata) {
$mime_type = Mime::DEFAULT_TYPE;
}
$filename = $download ? addcslashes(basename($path), '"') : '';
return $this->imageResponse($filesystem->read($path), $mime_type, $filename);
} catch (UnableToReadFile | FilesystemException $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
}
}
/**
* Send a thumbnail.
*
* @param FilesystemOperator $filesystem
* @param string $path
* @param int $width
* @param int $height
* @param string $fit
*
*
* @return ResponseInterface
*/
public function thumbnailResponse(
FilesystemOperator $filesystem,
string $path,
int $width,
int $height,
string $fit
): ResponseInterface {
try {
$image = $this->imageManager()->make($filesystem->readStream($path));
$image = $this->autorotateImage($image);
$image = $this->resizeImage($image, $width, $height, $fit);
$format = static::SUPPORTED_FORMATS[$image->mime()] ?? 'jpg';
$quality = $this->extractImageQuality($image, static::GD_DEFAULT_THUMBNAIL_QUALITY);
$data = (string) $image->encode($format, $quality);
return $this->imageResponse($data, $image->mime(), '');
} catch (NotReadableException $ex) {
return $this->replacementImageResponse('.' . pathinfo($path, PATHINFO_EXTENSION))
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
} catch (FilesystemException | UnableToReadFile $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
}
}
/**
* Create a full-size version of an image.
*
* @param MediaFile $media_file
* @param bool $add_watermark
* @param bool $download
*
* @return ResponseInterface
*/
public function mediaFileResponse(MediaFile $media_file, bool $add_watermark, bool $download): ResponseInterface
{
$filesystem = $media_file->media()->tree()->mediaFilesystem();
$path = $media_file->filename();
if (!$add_watermark || !$media_file->isImage()) {
return $this->fileResponse($filesystem, $path, $download);
}
try {
$image = $this->imageManager()->make($filesystem->readStream($path));
$image = $this->autorotateImage($image);
$watermark = $this->createWatermark($image->width(), $image->height(), $media_file);
$image = $this->addWatermark($image, $watermark);
$filename = $download ? basename($path) : '';
$format = static::SUPPORTED_FORMATS[$image->mime()] ?? 'jpg';
$quality = $this->extractImageQuality($image, static::GD_DEFAULT_IMAGE_QUALITY);
$data = (string) $image->encode($format, $quality);
return $this->imageResponse($data, $image->mime(), $filename);
} catch (NotReadableException $ex) {
return $this->replacementImageResponse(pathinfo($path, PATHINFO_EXTENSION))
->withHeader('x-image-exception', $ex->getMessage());
} catch (FilesystemException | UnableToReadFile $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-image-exception', $ex->getMessage());
}
}
/**
* Create a smaller version of an image.
*
* @param MediaFile $media_file
* @param int $width
* @param int $height
* @param string $fit
* @param bool $add_watermark
*
* @return ResponseInterface
*/
public function mediaFileThumbnailResponse(
MediaFile $media_file,
int $width,
int $height,
string $fit,
bool $add_watermark
): ResponseInterface {
// Where are the images stored.
$filesystem = $media_file->media()->tree()->mediaFilesystem();
// Where is the image stored in the filesystem.
$path = $media_file->filename();
try {
$mime_type = $filesystem->mimeType($path);
$key = implode(':', [
$media_file->media()->tree()->name(),
$path,
$filesystem->lastModified($path),
(string) $width,
(string) $height,
$fit,
(string) $add_watermark,
]);
$closure = function () use ($filesystem, $path, $width, $height, $fit, $add_watermark, $media_file): string {
$image = $this->imageManager()->make($filesystem->readStream($path));
$image = $this->autorotateImage($image);
$image = $this->resizeImage($image, $width, $height, $fit);
if ($add_watermark) {
$watermark = $this->createWatermark($image->width(), $image->height(), $media_file);
$image = $this->addWatermark($image, $watermark);
}
$format = static::SUPPORTED_FORMATS[$image->mime()] ?? 'jpg';
$quality = $this->extractImageQuality($image, static::GD_DEFAULT_THUMBNAIL_QUALITY);
return (string) $image->encode($format, $quality);
};
// Images and Responses both contain resources - which cannot be serialized.
// So cache the raw image data.
$data = Registry::cache()->file()->remember($key, $closure, static::THUMBNAIL_CACHE_TTL);
return $this->imageResponse($data, $mime_type, '');
} catch (NotReadableException $ex) {
return $this->replacementImageResponse('.' . pathinfo($path, PATHINFO_EXTENSION))
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
} catch (FilesystemException | UnableToReadFile $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this->replacementImageResponse((string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-thumbnail-exception', get_class($ex) . ': ' . $ex->getMessage());
}
}
/**
* Does a full-sized image need a watermark?
*
* @param MediaFile $media_file
* @param UserInterface $user
*
* @return bool
*/
public function fileNeedsWatermark(MediaFile $media_file, UserInterface $user): bool
{
$tree = $media_file->media()->tree();
return Auth::accessLevel($tree, $user) > (int) $tree->getPreference('SHOW_NO_WATERMARK');
}
/**
* Does a thumbnail image need a watermark?
*
* @param MediaFile $media_file
* @param UserInterface $user
*
* @return bool
*/
public function thumbnailNeedsWatermark(MediaFile $media_file, UserInterface $user): bool
{
return $this->fileNeedsWatermark($media_file, $user);
}
/**
* Create a watermark image, perhaps specific to a media-file.
*
* @param int $width
* @param int $height
* @param MediaFile $media_file
*
* @return Image
*/
public function createWatermark(int $width, int $height, MediaFile $media_file): Image
{
return $this->imageManager()
->make(Webtrees::ROOT_DIR . static::WATERMARK_FILE)
->resize($width, $height, static function (Constraint $constraint) {
$constraint->aspectRatio();
});
}
/**
* Add a watermark to an image.
*
* @param Image $image
* @param Image $watermark
*
* @return Image
*/
public function addWatermark(Image $image, Image $watermark): Image
{
return $image->insert($watermark, 'center');
}
/**
* Send a replacement image, to replace one that could not be found or created.
*
* @param string $text HTTP status code or file extension
*
* @return ResponseInterface
*/
public function replacementImageResponse(string $text): ResponseInterface
{
// We can't create a PNG/BMP/JPEG image, as the GD/IMAGICK libraries may be missing.
$svg = view('errors/image-svg', ['status' => $text]);
// We can't send the actual status code, as browsers won't show images with 4xx/5xx.
return response($svg, StatusCodeInterface::STATUS_OK, [
'content-type' => 'image/svg+xml',
]);
}
/**
* @param string $data
* @param string $mime_type
* @param string $filename
*
* @return ResponseInterface
*/
protected function imageResponse(string $data, string $mime_type, string $filename): ResponseInterface
{
if ($mime_type === 'image/svg+xml' && str_contains($data, '<script')) {
return $this->replacementImageResponse('XSS')
->withHeader('x-image-exception', 'SVG image blocked due to XSS.');
}
// HTML files may contain javascript and iframes, so use content-security-policy to disable them.
$response = response($data)
->withHeader('content-type', $mime_type)
->withHeader('content-security-policy', 'script-src none;frame-src none');
if ($filename === '') {
return $response;
}
return $response
->withHeader('content-disposition', 'attachment; filename="' . addcslashes(basename($filename), '"'));
}
/**
* @return ImageManager
* @throws RuntimeException
*/
protected function imageManager(): ImageManager
{
foreach (static::INTERVENTION_DRIVERS as $driver) {
if (extension_loaded($driver)) {
return new ImageManager(['driver' => $driver]);
}
}
throw new RuntimeException('No PHP graphics library is installed. Need Imagick or GD');
}
/**
* Apply EXIF rotation to an image.
*
* @param Image $image
*
* @return Image
*/
protected function autorotateImage(Image $image): Image
{
try {
// Auto-rotate using EXIF information.
return $image->orientate();
} catch (NotSupportedException) {
// If we can't auto-rotate the image, then don't.
return $image;
}
}
/**
* Resize an image.
*
* @param Image $image
* @param int $width
* @param int $height
* @param string $fit
*
* @return Image
*/
protected function resizeImage(Image $image, int $width, int $height, string $fit): Image
{
switch ($fit) {
case 'crop':
return $image->fit($width, $height);
case 'contain':
return $image->resize($width, $height, static function (Constraint $constraint) {
$constraint->aspectRatio();
$constraint->upsize();
});
}
return $image;
}
/**
* Extract the quality/compression parameter from an image.
*
* @param Image $image
* @param int $default
*
* @return int
*/
protected function extractImageQuality(Image $image, int $default): int
{
$core = $image->getCore();
if ($core instanceof Imagick) {
return $core->getImageCompressionQuality() ?: $default;
}
return $default;
}
}
|