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
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2026 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\Services\PhpService;
use Fisharebest\Webtrees\Webtrees;
use Imagick;
use Intervention\Gif\Exceptions\NotReadableException;
use Intervention\Image\Drivers\Gd\Driver as GdDriver;
use Intervention\Image\Drivers\Imagick\Driver as ImagickDriver;
use Intervention\Image\ImageManager;
use Intervention\Image\Interfaces\ImageInterface;
use InvalidArgumentException;
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 get_class;
use function implode;
use function pathinfo;
use function response;
use function str_contains;
use function view;
use const PATHINFO_EXTENSION;
class ImageFactory implements ImageFactoryInterface
{
// Imagick can detect the quality setting for images. GD cannot.
protected const int GD_DEFAULT_IMAGE_QUALITY = 90;
protected const int GD_DEFAULT_THUMBNAIL_QUALITY = 70;
protected const string WATERMARK_FILE = 'resources/img/watermark.png';
protected const int THUMBNAIL_CACHE_TTL = 8640000;
public const array SUPPORTED_FORMATS = [
'image/jpeg' => 'jpg',
'image/png' => 'png',
'image/gif' => 'gif',
'image/tiff' => 'tif',
'image/bmp' => 'bmp',
'image/webp' => 'webp',
];
public function __construct(private PhpService $php_service)
{
}
public function fileResponse(FilesystemOperator $filesystem, string $path, bool $download): ResponseInterface
{
try {
try {
$mime_type = $filesystem->mimeType(path: $path);
} catch (UnableToRetrieveMetadata) {
$mime_type = Mime::DEFAULT_TYPE;
}
$filename = $download ? addcslashes(string: basename(path: $path), characters: '"') : '';
return $this->imageResponse(data: $filesystem->read(location: $path), mime_type: $mime_type, filename: $filename);
} catch (UnableToReadFile | FilesystemException $ex) {
return $this->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
}
}
public function thumbnailResponse(
FilesystemOperator $filesystem,
string $path,
int $width,
int $height,
string $fit
): ResponseInterface {
try {
$mime_type = $filesystem->mimeType(path: $path);
$image = $this->imageManager()->read(input: $filesystem->readStream($path));
$image = $this->resizeImage(image: $image, width: $width, height: $height, fit: $fit);
$quality = $this->extractImageQuality(image: $image, default: static::GD_DEFAULT_THUMBNAIL_QUALITY);
$data = $image->encodeByMediaType(type: $mime_type, quality: $quality)->toString();
return $this->imageResponse(data: $data, mime_type: $mime_type, filename: '');
} catch (FilesystemException | UnableToReadFile $ex) {
return $this
->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
} catch (RuntimeException $ex) {
return $this
->replacementImageResponse(text: '.' . pathinfo(path: $path, flags: PATHINFO_EXTENSION))
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this
->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
}
}
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: $filesystem, path: $path, download: $download);
}
try {
$mime_type = $media_file->mimeType();
$image = $this->imageManager()->read(input: $filesystem->readStream($path));
$watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: $media_file);
$image = $this->addWatermark(image: $image, watermark: $watermark);
$filename = $download ? basename(path: $path) : '';
$quality = $this->extractImageQuality(image: $image, default: static::GD_DEFAULT_IMAGE_QUALITY);
$data = $image->encodeByMediaType(type: $mime_type, quality: $quality)->toString();
return $this->imageResponse(data: $data, mime_type: $mime_type, filename: $filename);
} catch (NotReadableException $ex) {
return $this->replacementImageResponse(text: pathinfo(path: $path, flags: PATHINFO_EXTENSION))
->withHeader('x-image-exception', $ex->getMessage());
} catch (FilesystemException | UnableToReadFile $ex) {
return $this->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-image-exception', $ex->getMessage());
}
}
public function mediaFileThumbnail(
MediaFile $media_file,
int $width,
int $height,
string $fit,
bool $add_watermark
): string {
// Where are the images stored.
$filesystem = $media_file->media()->tree()->mediaFilesystem();
// Where is the image stored in the filesystem.
$path = $media_file->filename();
$key = implode(separator: ':', array: [
$media_file->media()->tree()->name(),
$path,
$filesystem->lastModified(path: $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()->read(input: $filesystem->readStream($path));
$image = $this->resizeImage(image: $image, width: $width, height: $height, fit: $fit);
if ($add_watermark) {
$watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: $media_file);
$image = $this->addWatermark(image: $image, watermark: $watermark);
}
$quality = $this->extractImageQuality(image: $image, default: static::GD_DEFAULT_THUMBNAIL_QUALITY);
return $image->encodeByMediaType(type: $media_file->mimeType(), quality: $quality)->toString();
};
return Registry::cache()->file()->remember(key: $key, closure: $closure, ttl: static::THUMBNAIL_CACHE_TTL);
}
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: $path);
$data = $this->mediaFileThumbnail($media_file, $width, $height, $fit, $add_watermark);
return $this->imageResponse(data: $data, mime_type: $mime_type, filename: '');
} catch (NotReadableException $ex) {
return $this
->replacementImageResponse(text: '.' . pathinfo(path: $path, flags: PATHINFO_EXTENSION))
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
} catch (FilesystemException | UnableToReadFile $ex) {
return $this
->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_NOT_FOUND)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
} catch (Throwable $ex) {
return $this
->replacementImageResponse(text: (string) StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR)
->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
}
}
public function fileNeedsWatermark(MediaFile $media_file, UserInterface $user): bool
{
$tree = $media_file->media()->tree();
return Auth::accessLevel(tree: $tree, user: $user) > (int) $tree->getPreference(setting_name: 'SHOW_NO_WATERMARK');
}
public function thumbnailNeedsWatermark(MediaFile $media_file, UserInterface $user): bool
{
return $this->fileNeedsWatermark(media_file: $media_file, user: $user);
}
public function createWatermark(int $width, int $height, MediaFile $media_file): ImageInterface
{
return $this->imageManager()
->read(input: Webtrees::ROOT_DIR . static::WATERMARK_FILE)
->scale(width: $width, height: $height);
}
public function addWatermark(ImageInterface $image, ImageInterface $watermark): ImageInterface
{
return $image->place(element: $watermark, position: 'center');
}
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(name: 'errors/image-svg', data: ['status' => $text]);
// We can't send the actual status code, as browsers won't show images with 4xx/5xx.
return response(content: $svg)
->withHeader('content-type', 'image/svg+xml')
->withHeader('content-security-policy', 'default-src none');
}
protected function imageResponse(string $data, string $mime_type, string $filename): ResponseInterface
{
if ($mime_type === 'image/svg+xml' && str_contains(haystack: $data, needle: '<script')) {
return $this->replacementImageResponse(text: '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', 'default-src none');
if ($filename === '') {
return $response;
}
return $response
->withHeader('content-disposition', 'attachment; filename="' . addcslashes(string: basename(path: $filename), characters: '"'));
}
protected function imageManager(): ImageManager
{
if ($this->php_service->extensionLoaded(extension: 'imagick')) {
return new ImageManager(driver: new ImagickDriver());
}
if ($this->php_service->extensionLoaded(extension: 'gd')) {
return new ImageManager(driver: new GdDriver());
}
throw new RuntimeException(message: 'No PHP graphics library is installed. Need Imagick or GD');
}
protected function resizeImage(ImageInterface $image, int $width, int $height, string $fit): ImageInterface
{
return match ($fit) {
'crop' => $image->cover(width: $width, height: $height),
'contain' => $image->scale(width: $width, height: $height),
default => throw new InvalidArgumentException(message: 'Unknown fit type: ' . $fit),
};
}
protected function extractImageQuality(ImageInterface $image, int $default): int
{
$native = $image->core()->native();
if ($native instanceof Imagick) {
return $native->getImageCompressionQuality();
}
return $default;
}
}
|