Completed
Push — master ( ae6351...007584 )
by Jonathan
11:34 queued 09:33
created

Server::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1.0046

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 5
cts 6
cp 0.8333
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 3
crap 1.0046
1
<?php
2
3
namespace League\Glide;
4
5
use InvalidArgumentException;
6
use League\Flysystem\FileExistsException;
7
use League\Flysystem\FilesystemInterface;
8
use League\Glide\Api\ApiInterface;
9
use League\Glide\Filesystem\FileNotFoundException;
10
use League\Glide\Filesystem\FilesystemException;
11
use League\Glide\Responses\ResponseFactoryInterface;
12
13
class Server
14
{
15
    /**
16
     * Source file system.
17
     * @var FilesystemInterface
18
     */
19
    protected $source;
20
21
    /**
22
     * Source path prefix.
23
     * @var string
24
     */
25
    protected $sourcePathPrefix;
26
27
    /**
28
     * Cache file system.
29
     * @var FilesystemInterface
30
     */
31
    protected $cache;
32
33
    /**
34
     * Cache path prefix.
35
     * @var string
36
     */
37
    protected $cachePathPrefix;
38
39
    /**
40
     * Whether to group cache in folders.
41
     * @var bool
42
     */
43
    protected $groupCacheInFolders = true;
44
45
    /**
46
     * Whether to cache with file extensions.
47
     * @var bool
48
     */
49
    protected $cacheWithFileExtensions = false;
50
51
    /**
52
     * Image manipulation API.
53
     * @var ApiInterface
54
     */
55
    protected $api;
56
57
    /**
58
     * Response factory.
59
     * @var ResponseFactoryInterface|null
60
     */
61
    protected $responseFactory;
62
63
    /**
64
     * Base URL.
65
     * @var string
66
     */
67
    protected $baseUrl;
68
69
    /**
70
     * Default image manipulations.
71
     * @var array
72
     */
73
    protected $defaults = [];
74
75
    /**
76
     * Preset image manipulations.
77
     * @var array
78
     */
79
    protected $presets = [];
80
81
    /**
82
     * Create Server instance.
83
     * @param FilesystemInterface $source Source file system.
84
     * @param FilesystemInterface $cache  Cache file system.
85
     * @param ApiInterface        $api    Image manipulation API.
86
     */
87 108
    public function __construct(FilesystemInterface $source, FilesystemInterface $cache, ApiInterface $api)
88
    {
89 108
        $this->setSource($source);
90 108
        $this->setCache($cache);
91 108
        $this->setApi($api);
92 108
    }
93
94
    /**
95
     * Set source file system.
96
     * @param FilesystemInterface $source Source file system.
97
     */
98 108
    public function setSource(FilesystemInterface $source)
99
    {
100 108
        $this->source = $source;
101 108
    }
102
103
    /**
104
     * Get source file system.
105
     * @return FilesystemInterface Source file system.
106
     */
107 4
    public function getSource()
108
    {
109 4
        return $this->source;
110
    }
111
112
    /**
113
     * Set source path prefix.
114
     * @param string $sourcePathPrefix Source path prefix.
115
     */
116 10
    public function setSourcePathPrefix($sourcePathPrefix)
117
    {
118 10
        $this->sourcePathPrefix = trim($sourcePathPrefix, '/');
119 10
    }
120
121
    /**
122
     * Get source path prefix.
123
     * @return string Source path prefix.
124
     */
125 4
    public function getSourcePathPrefix()
126
    {
127 4
        return $this->sourcePathPrefix;
128
    }
129
130
    /**
131
     * Get source path.
132
     * @param  string                $path Image path.
133
     * @return string                The source path.
134
     * @throws FileNotFoundException
135
     */
136 52
    public function getSourcePath($path)
137
    {
138 52
        $path = trim($path, '/');
139
        
140 52
        $baseUrl = $this->baseUrl.'/';
141
142 52
        if (substr($path, 0, strlen($baseUrl)) === $baseUrl) {
143 2
            $path = trim(substr($path, strlen($baseUrl)), '/');
144 2
        }
145
146 52
        if ($path === '') {
147 2
            throw new FileNotFoundException('Image path missing.');
148
        }
149
150 50
        if ($this->sourcePathPrefix) {
151 4
            $path = $this->sourcePathPrefix.'/'.$path;
152 4
        }
153
154 50
        return rawurldecode($path);
155
    }
156
157
    /**
158
     * Check if a source file exists.
159
     * @param  string $path Image path.
160
     * @return bool   Whether the source file exists.
161
     */
162 12
    public function sourceFileExists($path)
163
    {
164 12
        return $this->source->has($this->getSourcePath($path));
165
    }
166
167
    /**
168
     * Set base URL.
169
     * @param string $baseUrl Base URL.
170
     */
171 8
    public function setBaseUrl($baseUrl)
172
    {
173 8
        $this->baseUrl = trim($baseUrl, '/');
174 8
    }
175
176
    /**
177
     * Get base URL.
178
     * @return string Base URL.
179
     */
180 4
    public function getBaseUrl()
181
    {
182 4
        return $this->baseUrl;
183
    }
184
185
    /**
186
     * Set cache file system.
187
     * @param FilesystemInterface $cache Cache file system.
188
     */
189 108
    public function setCache(FilesystemInterface $cache)
190
    {
191 108
        $this->cache = $cache;
192 108
    }
193
194
    /**
195
     * Get cache file system.
196
     * @return FilesystemInterface Cache file system.
197
     */
198 4
    public function getCache()
199
    {
200 4
        return $this->cache;
201
    }
202
203
    /**
204
     * Set cache path prefix.
205
     * @param string $cachePathPrefix Cache path prefix.
206
     */
207 8
    public function setCachePathPrefix($cachePathPrefix)
208
    {
209 8
        $this->cachePathPrefix = trim($cachePathPrefix, '/');
210 8
    }
211
212
    /**
213
     * Get cache path prefix.
214
     * @return string Cache path prefix.
215
     */
216 4
    public function getCachePathPrefix()
217
    {
218 4
        return $this->cachePathPrefix;
219
    }
220
221
    /**
222
     * Set the group cache in folders setting.
223
     * @param bool $groupCacheInFolders Whether to group cache in folders.
224
     */
225 10
    public function setGroupCacheInFolders($groupCacheInFolders)
226
    {
227 10
        $this->groupCacheInFolders = $groupCacheInFolders;
228 10
    }
229
230
    /**
231
     * Get the group cache in folders setting.
232
     * @return bool Whether to group cache in folders.
233
     */
234 4
    public function getGroupCacheInFolders()
235
    {
236 4
        return $this->groupCacheInFolders;
237
    }
238
239
    /**
240
     * Set the cache with file extensions setting.
241
     * @param bool $cacheWithFileExtensions Whether to cache with file extensions.
242
     */
243 14
    public function setCacheWithFileExtensions($cacheWithFileExtensions)
244
    {
245 14
        $this->cacheWithFileExtensions = $cacheWithFileExtensions;
246 14
    }
247
248
    /**
249
     * Get the cache with file extensions setting.
250
     * @return bool Whether to cache with file extensions.
251
     */
252 4
    public function getCacheWithFileExtensions()
253
    {
254 4
        return $this->cacheWithFileExtensions;
255
    }
256
257
    /**
258
     * Get cache path.
259
     * @param  string $path   Image path.
260
     * @param  array  $params Image manipulation params.
261
     * @return string Cache path.
262
     */
263 40
    public function getCachePath($path, array $params = [])
264
    {
265 40
        $sourcePath = $this->getSourcePath($path);
266
267 40
        if ($this->sourcePathPrefix) {
268 2
            $sourcePath = substr($sourcePath, strlen($this->sourcePathPrefix) + 1);
269 2
        }
270
271 40
        $params = $this->getAllParams($params);
272 40
        unset($params['s'], $params['p']);
273 40
        ksort($params);
274
275 40
        $md5 = md5($sourcePath.'?'.http_build_query($params));
276
277 40
        $cachedPath = $this->groupCacheInFolders ? $sourcePath.'/'.$md5 : $md5;
278
279 40
        if ($this->cachePathPrefix) {
280 2
            $cachedPath = $this->cachePathPrefix.'/'.$cachedPath;
281 2
        }
282
        
283 40
        if ($this->cacheWithFileExtensions) {
284 8
            $cachedPath .= '.'.(isset($params['fm']) ? $params['fm'] : pathinfo($path)['extension']);
285 8
        }
286
287 40
        return $cachedPath;
288
    }
289
290
    /**
291
     * Check if a cache file exists.
292
     * @param  string $path   Image path.
293
     * @param  array  $params Image manipulation params.
294
     * @return bool   Whether the cache file exists.
295
     */
296 22
    public function cacheFileExists($path, array $params)
297
    {
298 22
        return $this->cache->has(
299 22
            $this->getCachePath($path, $params)
300 22
        );
301
    }
302
303
    /**
304
     * Delete cached manipulations for an image.
305
     * @param  string $path Image path.
306
     * @return bool   Whether the delete succeeded.
307
     */
308 4
    public function deleteCache($path)
309
    {
310 4
        if (!$this->groupCacheInFolders) {
311 2
            throw new InvalidArgumentException(
312
                'Deleting cached image manipulations is not possible when grouping cache into folders is disabled.'
313 2
            );
314
        }
315
316 2
        return $this->cache->deleteDir(
317 2
            dirname($this->getCachePath($path))
318 2
        );
319
    }
320
321
    /**
322
     * Set image manipulation API.
323
     * @param ApiInterface $api Image manipulation API.
324
     */
325 108
    public function setApi(ApiInterface $api)
326
    {
327 108
        $this->api = $api;
328 108
    }
329
330
    /**
331
     * Get image manipulation API.
332
     * @return ApiInterface Image manipulation API.
333
     */
334 4
    public function getApi()
335
    {
336 4
        return $this->api;
337
    }
338
339
    /**
340
     * Set default image manipulations.
341
     * @param array $defaults Default image manipulations.
342
     */
343 12
    public function setDefaults(array $defaults)
344
    {
345 12
        $this->defaults = $defaults;
346 12
    }
347
348
    /**
349
     * Get default image manipulations.
350
     * @return array Default image manipulations.
351
     */
352 4
    public function getDefaults()
353
    {
354 4
        return $this->defaults;
355
    }
356
357
    /**
358
     * Set preset image manipulations.
359
     * @param array $presets Preset image manipulations.
360
     */
361 12
    public function setPresets(array $presets)
362
    {
363 12
        $this->presets = $presets;
364 12
    }
365
366
    /**
367
     * Get preset image manipulations.
368
     * @return array Preset image manipulations.
369
     */
370 4
    public function getPresets()
371
    {
372 4
        return $this->presets;
373
    }
374
375
    /**
376
     * Get all image manipulations params, including defaults and presets.
377
     * @param  array $params Image manipulation params.
378
     * @return array All image manipulation params.
379
     */
380 42
    public function getAllParams(array $params)
381
    {
382 42
        $all = $this->defaults;
383
384 42
        if (isset($params['p'])) {
385 4
            foreach (explode(',', $params['p']) as $preset) {
386 4
                if (isset($this->presets[$preset])) {
387 4
                    $all = array_merge($all, $this->presets[$preset]);
388 4
                }
389 4
            }
390 4
        }
391
392 42
        return array_merge($all, $params);
393
    }
394
395
    /**
396
     * Set response factory.
397
     * @param ResponseFactoryInterface|null $responseFactory Response factory.
398
     */
399 10
    public function setResponseFactory(ResponseFactoryInterface $responseFactory = null)
400
    {
401 10
        $this->responseFactory = $responseFactory;
402 10
    }
403
404
    /**
405
     * Get response factory.
406
     * @return ResponseFactoryInterface Response factory.
407
     */
408 4
    public function getResponseFactory()
409
    {
410 4
        return $this->responseFactory;
411
    }
412
413
    /**
414
     * Generate and return image response.
415
     * @param  string                   $path   Image path.
416
     * @param  array                    $params Image manipulation params.
417
     * @return mixed                    Image response.
418
     * @throws InvalidArgumentException
419
     */
420 4
    public function getImageResponse($path, array $params)
421
    {
422 4
        if (is_null($this->responseFactory)) {
423 2
            throw new InvalidArgumentException(
424
                'Unable to get image response, no response factory defined.'
425 2
            );
426
        }
427
428 2
        $path = $this->makeImage($path, $params);
429
430 2
        return $this->responseFactory->create($this->cache, $path);
431
    }
432
433
    /**
434
     * Generate and return Base64 encoded image.
435
     * @param  string              $path   Image path.
436
     * @param  array               $params Image manipulation params.
437
     * @return string              Base64 encoded image.
438
     * @throws FilesystemException
439
     */
440 4
    public function getImageAsBase64($path, array $params)
441
    {
442 4
        $path = $this->makeImage($path, $params);
443
444 4
        $source = $this->cache->read($path);
445
446 4
        if ($source === false) {
447 2
            throw new FilesystemException(
448 2
                'Could not read the image `'.$path.'`.'
449 2
            );
450
        }
451
452 2
        return 'data:'.$this->cache->getMimetype($path).';base64,'.base64_encode($source);
453
    }
454
455
    /**
456
     * Generate and output image.
457
     * @param  string                   $path   Image path.
458
     * @param  array                    $params Image manipulation params.
459
     * @throws InvalidArgumentException
460
     */
461 2
    public function outputImage($path, array $params)
462
    {
463 2
        $path = $this->makeImage($path, $params);
464
465 2
        header('Content-Type:'.$this->cache->getMimetype($path));
466 2
        header('Content-Length:'.$this->cache->getSize($path));
467 2
        header('Cache-Control:'.'max-age=31536000, public');
468 2
        header('Expires:'.date_create('+1 years')->format('D, d M Y H:i:s').' GMT');
469
470 2
        $stream = $this->cache->readStream($path);
471
472 2
        if (ftell($stream) !== 0) {
473 2
            rewind($stream);
474 2
        }
475 2
        fpassthru($stream);
476 2
        fclose($stream);
477 2
    }
478
479
    /**
480
     * Generate manipulated image.
481
     * @param  string                $path   Image path.
482
     * @param  array                 $params Image manipulation params.
483
     * @return string                Cache path.
484
     * @throws FileNotFoundException
485
     * @throws FilesystemException
486
     */
487 20
    public function makeImage($path, array $params)
488
    {
489 20
        $sourcePath = $this->getSourcePath($path);
490 20
        $cachedPath = $this->getCachePath($path, $params);
491
492 20
        if ($this->cacheFileExists($path, $params) === true) {
493 10
            return $cachedPath;
494
        }
495
496 10
        if ($this->sourceFileExists($path) === false) {
497 2
            throw new FileNotFoundException(
498 2
                'Could not find the image `'.$sourcePath.'`.'
499 2
            );
500
        }
501
502 8
        $source = $this->source->read(
503
            $sourcePath
504 8
        );
505
506 8
        if ($source === false) {
507 2
            throw new FilesystemException(
508 2
                'Could not read the image `'.$sourcePath.'`.'
509 2
            );
510
        }
511
512
        // We need to write the image to the local disk before
513
        // doing any manipulations. This is because EXIF data
514
        // can only be read from an actual file.
515 6
        $tmp = tempnam(sys_get_temp_dir(), 'Glide');
516
517 6
        if (file_put_contents($tmp, $source) === false) {
518
            throw new FilesystemException(
519
                'Unable to write temp file for `'.$sourcePath.'`.'
520
            );
521
        }
522
523
        try {
524 6
            $write = $this->cache->write(
525 6
                $cachedPath,
526 6
                $this->api->run($tmp, $this->getAllParams($params))
527 6
            );
528
529 4
            if ($write === false) {
530 2
                throw new FilesystemException(
531 2
                    'Could not write the image `'.$cachedPath.'`.'
532 2
                );
533
            }
534 6
        } catch (FileExistsException $exception) {
535
            // This edge case occurs when the target already exists
536
            // because it's currently be written to disk in another
537
            // request. It's best to just fail silently.
538
        }
539
540 4
        unlink($tmp);
541
542 4
        return $cachedPath;
543
    }
544
}
545