Passed
Push — analysis-b0m7na ( 631964 )
by Arnaud
16:06 queued 11:14
created

Asset::isSVG()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 1
nc 2
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of Cecil.
7
 *
8
 * Copyright (c) Arnaud Ligny <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Cecil\Assets;
15
16
use Cecil\Assets\Image\Optimizer;
17
use Cecil\Builder;
18
use Cecil\Collection\Page\Page;
19
use Cecil\Config;
20
use Cecil\Exception\ConfigException;
21
use Cecil\Exception\RuntimeException;
22
use Cecil\Util;
23
use Intervention\Image\ImageManagerStatic as ImageManager;
24
use MatthiasMullie\Minify;
25
use ScssPhp\ScssPhp\Compiler;
26
use wapmorgan\Mp3Info\Mp3Info;
27
28
class Asset implements \ArrayAccess
29
{
30
    /** @var Builder */
31
    protected $builder;
32
33
    /** @var Config */
34
    protected $config;
35
36
    /** @var array */
37
    protected $data = [];
38
39
    /** @var bool */
40
    protected $fingerprinted = false;
41
42
    /** @var bool */
43
    protected $compiled = false;
44
45
    /** @var bool */
46
    protected $minified = false;
47
48
    /** @var bool */
49
    protected $optimize = false;
50
51
    /** @var bool */
52
    protected $ignore_missing = false;
53
54
    /**
55
     * Creates an Asset from a file path, an array of files path or an URL.
56
     *
57
     * @param Builder      $builder
58
     * @param string|array $paths
59
     * @param array|null   $options e.g.: ['fingerprint' => true, 'minify' => true, 'filename' => '', 'ignore_missing' => false]
60
     *
61
     * @throws RuntimeException
62
     */
63
    public function __construct(Builder $builder, string|array $paths, array|null $options = null)
64
    {
65
        $this->builder = $builder;
66
        $this->config = $builder->getConfig();
67
        $paths = \is_array($paths) ? $paths : [$paths];
68
        array_walk($paths, function ($path) {
69
            if (!\is_string($path)) {
70
                throw new RuntimeException(sprintf('The path of an asset must be a string ("%s" given).', \gettype($path)));
71
            }
72
            if (empty($path)) {
73
                throw new RuntimeException('The path of an asset can\'t be empty.');
74
            }
75
            if (substr($path, 0, 2) == '..') {
76
                throw new RuntimeException(sprintf('The path of asset "%s" is wrong: it must be directly relative to "assets" or "static" directory, or a remote URL.', $path));
77
            }
78
        });
79
        $this->data = [
80
            'file'           => '',    // absolute file path
81
            'files'          => [],    // array of files path (if bundle)
82
            'filename'       => '',    // filename
83
            'path_source'    => '',    // public path to the file, before transformations
84
            'path'           => '',    // public path to the file, after transformations
85
            'url'            => null,  // URL of a remote image
86
            'missing'        => false, // if file not found, but missing ollowed 'missing' is true
87
            'ext'            => '',    // file extension
88
            'type'           => '',    // file type (e.g.: image, audio, video, etc.)
89
            'subtype'        => '',    // file media type (e.g.: image/png, audio/mp3, etc.)
90
            'size'           => 0,     // file size (in bytes)
91
            'content_source' => '',    // file content, before transformations
92
            'content'        => '',    // file content, after transformations
93
            'width'          => 0,     // width (in pixels) in case of an image
94
            'height'         => 0,     // height (in pixels) in case of an image
95
            'exif'           => [],    // exif data
96
        ];
97
98
        // handles options
99
        $fingerprint = (bool) $this->config->get('assets.fingerprint.enabled');
100
        $minify = (bool) $this->config->get('assets.minify.enabled');
101
        $optimize = (bool) $this->config->get('assets.images.optimize.enabled');
102
        $filename = '';
103
        $ignore_missing = false;
104
        $remote_fallback = null;
105
        $force_slash = true;
106
        extract(\is_array($options) ? $options : [], EXTR_IF_EXISTS);
107
        $this->ignore_missing = $ignore_missing;
108
109
        // fill data array with file(s) informations
110
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
111
        $cacheKey = sprintf('%s__%s', $filename ?: implode('_', $paths), $this->builder->getVersion());
112
        if (!$cache->has($cacheKey)) {
113
            $pathsCount = \count($paths);
114
            $file = [];
115
            for ($i = 0; $i < $pathsCount; $i++) {
116
                // loads file(s)
117
                $file[$i] = $this->loadFile($paths[$i], $ignore_missing, $remote_fallback, $force_slash);
118
                // bundle: same type only
119
                if ($i > 0) {
120
                    if ($file[$i]['type'] != $file[$i - 1]['type']) {
121
                        throw new RuntimeException(sprintf('Asset bundle type error (%s != %s).', $file[$i]['type'], $file[$i - 1]['type']));
122
                    }
123
                }
124
                // missing allowed = empty path
125
                if ($file[$i]['missing']) {
126
                    $this->data['missing'] = true;
127
                    $this->data['path'] = $file[$i]['path'];
128
129
                    continue;
130
                }
131
                // set data
132
                $this->data['size'] += $file[$i]['size'];
133
                $this->data['content_source'] .= $file[$i]['content'];
134
                $this->data['content'] .= $file[$i]['content'];
135
                if ($i == 0) {
136
                    $this->data['file'] = $file[$i]['filepath'];
137
                    $this->data['filename'] = $file[$i]['path'];
138
                    $this->data['path_source'] = $file[$i]['path'];
139
                    $this->data['path'] = $file[$i]['path'];
140
                    $this->data['url'] = $file[$i]['url'];
141
                    $this->data['ext'] = $file[$i]['ext'];
142
                    $this->data['type'] = $file[$i]['type'];
143
                    $this->data['subtype'] = $file[$i]['subtype'];
144
                    if ($this->data['type'] == 'image') {
145
                        $this->data['width'] = $this->getWidth();
146
                        $this->data['height'] = $this->getHeight();
147
                        if ($this->data['subtype'] == 'image/jpeg') {
148
                            $this->data['exif'] = Util\File::readExif($file[$i]['filepath']);
149
                        }
150
                    }
151
                    // bundle: default filename
152
                    if ($pathsCount > 1 && empty($filename)) {
153
                        switch ($this->data['ext']) {
154
                            case 'scss':
155
                            case 'css':
156
                                $filename = '/styles.css';
157
                                break;
158
                            case 'js':
159
                                $filename = '/scripts.js';
160
                                break;
161
                            default:
162
                                throw new RuntimeException(sprintf('Asset bundle supports %s files only.', '.scss, .css and .js'));
163
                        }
164
                    }
165
                    // bundle: filename and path
166
                    if (!empty($filename)) {
167
                        $this->data['filename'] = $filename;
168
                        $this->data['path'] = '/' . ltrim($filename, '/');
169
                    }
170
                }
171
                // bundle: files path
172
                $this->data['files'][] = $file[$i]['filepath'];
173
            }
174
            $cache->set($cacheKey, $this->data);
175
        }
176
        $this->data = $cache->get($cacheKey);
177
178
        // fingerprinting
179
        if ($fingerprint) {
180
            $this->fingerprint();
181
        }
182
        // compiling (Sass files)
183
        if ((bool) $this->config->get('assets.compile.enabled')) {
184
            $this->compile();
185
        }
186
        // minifying (CSS and JavScript files)
187
        if ($minify) {
188
            $this->minify();
189
        }
190
        // optimizing (images files)
191
        if ($optimize) {
192
            $this->optimize = true;
193
        }
194
    }
195
196
    /**
197
     * Returns path.
198
     *
199
     * @throws RuntimeException
200
     */
201
    public function __toString(): string
202
    {
203
        try {
204
            $this->save();
205
        } catch (RuntimeException $e) {
206
            $this->builder->getLogger()->error($e->getMessage());
207
        }
208
209
        if ($this->isImageInCdn()) {
210
            return $this->buildImageCdnUrl();
211
        }
212
213
        if ($this->builder->getConfig()->get('canonicalurl')) {
214
            return (string) new Url($this->builder, $this->data['path'], ['canonical' => true]);
215
        }
216
217
        return $this->data['path'];
218
    }
219
220
    /**
221
     * Fingerprints a file.
222
     */
223
    public function fingerprint(): self
224
    {
225
        if ($this->fingerprinted) {
226
            return $this;
227
        }
228
229
        $fingerprint = hash('md5', $this->data['content_source']);
230
        $this->data['path'] = preg_replace(
231
            '/\.' . $this->data['ext'] . '$/m',
232
            ".$fingerprint." . $this->data['ext'],
233
            $this->data['path']
234
        );
235
236
        $this->fingerprinted = true;
237
238
        return $this;
239
    }
240
241
    /**
242
     * Compiles a SCSS.
243
     *
244
     * @throws RuntimeException
245
     */
246
    public function compile(): self
247
    {
248
        if ($this->compiled) {
249
            return $this;
250
        }
251
252
        if ($this->data['ext'] != 'scss') {
253
            return $this;
254
        }
255
256
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
257
        $cacheKey = $cache->createKeyFromAsset($this, ['compiled']);
258
        if (!$cache->has($cacheKey)) {
259
            $scssPhp = new Compiler();
260
            $importDir = [];
261
            $importDir[] = Util::joinPath($this->config->getStaticPath());
262
            $importDir[] = Util::joinPath($this->config->getAssetsPath());
263
            $scssDir = $this->config->get('assets.compile.import') ?? [];
264
            $themes = $this->config->getTheme() ?? [];
265
            foreach ($scssDir as $dir) {
266
                $importDir[] = Util::joinPath($this->config->getStaticPath(), $dir);
267
                $importDir[] = Util::joinPath($this->config->getAssetsPath(), $dir);
268
                $importDir[] = Util::joinPath(\dirname($this->data['file']), $dir);
269
                foreach ($themes as $theme) {
270
                    $importDir[] = Util::joinPath($this->config->getThemeDirPath($theme, "static/$dir"));
271
                    $importDir[] = Util::joinPath($this->config->getThemeDirPath($theme, "assets/$dir"));
272
                }
273
            }
274
            $scssPhp->setImportPaths(array_unique($importDir));
275
            // source map
276
            if ($this->builder->isDebug() && (bool) $this->config->get('assets.compile.sourcemap')) {
277
                $importDir = [];
278
                $assetDir = (string) $this->config->get('assets.dir');
279
                $assetDirPos = strrpos($this->data['file'], DIRECTORY_SEPARATOR . $assetDir . DIRECTORY_SEPARATOR);
280
                $fileRelPath = substr($this->data['file'], $assetDirPos + 8);
281
                $filePath = Util::joinFile($this->config->getOutputPath(), $fileRelPath);
282
                $importDir[] = \dirname($filePath);
283
                foreach ($scssDir as $dir) {
284
                    $importDir[] = Util::joinFile($this->config->getOutputPath(), $dir);
285
                }
286
                $scssPhp->setImportPaths(array_unique($importDir));
287
                $scssPhp->setSourceMap(Compiler::SOURCE_MAP_INLINE);
288
                $scssPhp->setSourceMapOptions([
289
                    'sourceMapBasepath' => Util::joinPath($this->config->getOutputPath()),
290
                    'sourceRoot'        => '/',
291
                ]);
292
            }
293
            // output style
294
            $outputStyles = ['expanded', 'compressed'];
295
            $outputStyle = strtolower((string) $this->config->get('assets.compile.style'));
296
            if (!\in_array($outputStyle, $outputStyles)) {
297
                throw new ConfigException(sprintf('"%s" value must be "%s".', 'assets.compile.style', implode('" or "', $outputStyles)));
298
            }
299
            $scssPhp->setOutputStyle($outputStyle);
300
            // variables
301
            $variables = $this->config->get('assets.compile.variables') ?? [];
302
            if (!empty($variables)) {
303
                $variables = array_map('ScssPhp\ScssPhp\ValueConverter::parseValue', $variables);
304
                $scssPhp->replaceVariables($variables);
305
            }
306
            // update data
307
            $this->data['path'] = preg_replace('/sass|scss/m', 'css', $this->data['path']);
308
            $this->data['ext'] = 'css';
309
            $this->data['type'] = 'text';
310
            $this->data['subtype'] = 'text/css';
311
            $this->data['content'] = $scssPhp->compileString($this->data['content'])->getCss();
312
            $this->data['size'] = \strlen($this->data['content']);
313
            $this->compiled = true;
314
            $cache->set($cacheKey, $this->data);
315
        }
316
        $this->data = $cache->get($cacheKey);
317
318
        return $this;
319
    }
320
321
    /**
322
     * Minifying a CSS or a JS.
323
     *
324
     * @throws RuntimeException
325
     */
326
    public function minify(): self
327
    {
328
        // disable minify to preserve inline source map
329
        if ($this->builder->isDebug() && (bool) $this->config->get('assets.compile.sourcemap')) {
330
            return $this;
331
        }
332
333
        if ($this->minified) {
334
            return $this;
335
        }
336
337
        if ($this->data['ext'] == 'scss') {
338
            $this->compile();
339
        }
340
341
        if ($this->data['ext'] != 'css' && $this->data['ext'] != 'js') {
342
            return $this;
343
        }
344
345
        if (substr($this->data['path'], -8) == '.min.css' || substr($this->data['path'], -7) == '.min.js') {
346
            $this->minified;
347
348
            return $this;
349
        }
350
351
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
352
        $cacheKey = $cache->createKeyFromAsset($this, ['minified']);
353
        if (!$cache->has($cacheKey)) {
354
            switch ($this->data['ext']) {
355
                case 'css':
356
                    $minifier = new Minify\CSS($this->data['content']);
357
                    break;
358
                case 'js':
359
                    $minifier = new Minify\JS($this->data['content']);
360
                    break;
361
                default:
362
                    throw new RuntimeException(sprintf('Not able to minify "%s".', $this->data['path']));
363
            }
364
            $this->data['path'] = preg_replace(
365
                '/\.' . $this->data['ext'] . '$/m',
366
                '.min.' . $this->data['ext'],
367
                $this->data['path']
368
            );
369
            $this->data['content'] = $minifier->minify();
370
            $this->data['size'] = \strlen($this->data['content']);
371
            $this->minified = true;
372
            $cache->set($cacheKey, $this->data);
373
        }
374
        $this->data = $cache->get($cacheKey);
375
376
        return $this;
377
    }
378
379
    /**
380
     * Optimizing an image.
381
     */
382
    public function optimize(string $filepath): self
383
    {
384
        if ($this->data['type'] != 'image') {
385
            return $this;
386
        }
387
388
        $quality = $this->config->get('assets.images.quality') ?? 75;
389
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
390
        $tags = ["q$quality", 'optimized'];
391
        if ($this->data['width']) {
392
            array_unshift($tags, "{$this->data['width']}x");
393
        }
394
        $cacheKey = $cache->createKeyFromAsset($this, $tags);
395
        if (!$cache->has($cacheKey)) {
396
            $message = $filepath;
397
            $sizeBefore = filesize($filepath);
398
            Optimizer::create($quality)->optimize($filepath);
399
            $sizeAfter = filesize($filepath);
400
            if ($sizeAfter < $sizeBefore) {
401
                $message = sprintf(
402
                    '%s (%s Ko -> %s Ko)',
403
                    $message,
404
                    ceil($sizeBefore / 1000),
405
                    ceil($sizeAfter / 1000)
406
                );
407
            }
408
            $this->data['content'] = Util\File::fileGetContents($filepath);
409
            $this->data['size'] = $sizeAfter;
410
            $cache->set($cacheKey, $this->data);
411
            $this->builder->getLogger()->debug(sprintf('Asset "%s" optimized', $message));
412
        }
413
        $this->data = $cache->get($cacheKey, $this->data);
414
415
        return $this;
416
    }
417
418
    /**
419
     * Resizes an image with a new $width.
420
     *
421
     * @throws RuntimeException
422
     */
423
    public function resize(int $width): self
424
    {
425
        if ($this->data['missing']) {
426
            throw new RuntimeException(sprintf('Not able to resize "%s": file not found.', $this->data['path']));
427
        }
428
        if ($this->data['type'] != 'image') {
429
            throw new RuntimeException(sprintf('Not able to resize "%s": not an image.', $this->data['path']));
430
        }
431
        if ($width >= $this->data['width']) {
432
            return $this;
433
        }
434
435
        $assetResized = clone $this;
436
        $assetResized->data['width'] = $width;
437
438
        if ($this->isImageInCdn()) {
439
            return $assetResized; // returns asset with the new width only: CDN do the rest of the job
440
        }
441
442
        $quality = $this->config->get('assets.images.quality') ?? 75;
443
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
444
        $cacheKey = $cache->createKeyFromAsset($assetResized, ["{$width}x", "q$quality"]);
445
        if (!$cache->has($cacheKey)) {
446
            $assetResized->data['content'] = Image::resize($assetResized, $width, $quality);
447
            $assetResized->data['path'] = '/' . Util::joinPath(
448
                (string) $this->config->get('assets.target'),
449
                (string) $this->config->get('assets.images.resize.dir'),
450
                (string) $width,
451
                $assetResized->data['path']
452
            );
453
            $assetResized->data['height'] = $assetResized->getHeight();
454
            $assetResized->data['size'] = \strlen($assetResized->data['content']);
455
456
            $cache->set($cacheKey, $assetResized->data);
457
        }
458
        $assetResized->data = $cache->get($cacheKey);
459
460
        return $assetResized;
461
    }
462
463
    /**
464
     * Converts an image asset to WebP format.
465
     *
466
     * @throws RuntimeException
467
     */
468
    public function webp(?int $quality = null): self
469
    {
470
        if ($this->data['type'] != 'image') {
471
            throw new RuntimeException(sprintf('Not able to convert "%s" (%s) to WebP: not an image.', $this->data['path'], $this->data['type']));
472
        }
473
474
        if ($quality === null) {
475
            $quality = (int) $this->config->get('assets.images.quality') ?? 75;
476
        }
477
478
        $assetWebp = clone $this;
479
        $format = 'webp';
480
        $assetWebp['ext'] = $format;
481
482
        if ($this->isImageInCdn()) {
483
            return $assetWebp; // returns the asset with the new extension only: CDN do the rest of the job
484
        }
485
486
        $cache = new Cache($this->builder, (string) $this->builder->getConfig()->get('cache.assets.dir'));
487
        $tags = ["q$quality"];
488
        if ($this->data['width']) {
489
            array_unshift($tags, "{$this->data['width']}x");
490
        }
491
        $cacheKey = $cache->createKeyFromAsset($assetWebp, $tags);
492
        if (!$cache->has($cacheKey)) {
493
            $assetWebp->data['content'] = Image::convert($assetWebp, $format, $quality);
494
            $assetWebp->data['path'] = preg_replace('/\.' . $this->data['ext'] . '$/m', ".$format", $this->data['path']);
495
            $assetWebp->data['subtype'] = "image/$format";
496
            $assetWebp->data['size'] = \strlen($assetWebp->data['content']);
497
498
            $cache->set($cacheKey, $assetWebp->data);
499
        }
500
        $assetWebp->data = $cache->get($cacheKey);
501
502
        return $assetWebp;
503
    }
504
505
    /**
506
     * Implements \ArrayAccess.
507
     */
508
    #[\ReturnTypeWillChange]
509
    public function offsetSet($offset, $value): void
510
    {
511
        if (!\is_null($offset)) {
512
            $this->data[$offset] = $value;
513
        }
514
    }
515
516
    /**
517
     * Implements \ArrayAccess.
518
     */
519
    #[\ReturnTypeWillChange]
520
    public function offsetExists($offset): bool
521
    {
522
        return isset($this->data[$offset]);
523
    }
524
525
    /**
526
     * Implements \ArrayAccess.
527
     */
528
    #[\ReturnTypeWillChange]
529
    public function offsetUnset($offset): void
530
    {
531
        unset($this->data[$offset]);
532
    }
533
534
    /**
535
     * Implements \ArrayAccess.
536
     */
537
    #[\ReturnTypeWillChange]
538
    public function offsetGet($offset)
539
    {
540
        return isset($this->data[$offset]) ? $this->data[$offset] : null;
541
    }
542
543
    /**
544
     * Hashing content of an asset with the specified algo, sha384 by default.
545
     * Used for SRI (Subresource Integrity).
546
     *
547
     * @see https://developer.mozilla.org/fr/docs/Web/Security/Subresource_Integrity
548
     */
549
    public function getIntegrity(string $algo = 'sha384'): string
550
    {
551
        return sprintf('%s-%s', $algo, base64_encode(hash($algo, $this->data['content'], true)));
552
    }
553
554
    /**
555
     * Returns MP3 file infos.
556
     *
557
     * @see https://github.com/wapmorgan/Mp3Info
558
     */
559
    public function getAudio(): Mp3Info
560
    {
561
        if ($this->data['type'] !== 'audio') {
562
            throw new RuntimeException(sprintf('Not able to get audio infos of "%s".', $this->data['path']));
563
        }
564
565
        return new Mp3Info($this->data['file']);
566
    }
567
568
    /**
569
     * Returns MP4 file infos.
570
     *
571
     * @see https://github.com/clwu88/php-read-mp4info
572
     */
573
    public function getVideo(): array
574
    {
575
        if ($this->data['type'] !== 'video') {
576
            throw new RuntimeException(sprintf('Not able to get video infos of "%s".', $this->data['path']));
577
        }
578
579
        return \Clwu\Mp4::getInfo($this->data['file']);
580
    }
581
582
    /**
583
     * Returns the Data URL (encoded in Base64).
584
     *
585
     * @throws RuntimeException
586
     */
587
    public function dataurl(): string
588
    {
589
        if ($this->data['type'] == 'image' && !Image::isSVG($this)) {
590
            return Image::getDataUrl($this, $this->config->get('assets.images.quality') ?? 75);
591
        }
592
593
        return sprintf('data:%s;base64,%s', $this->data['subtype'], base64_encode($this->data['content']));
594
    }
595
596
    /**
597
     * Saves file.
598
     * Note: a file from `static/` with the same name will NOT be overridden.
599
     *
600
     * @throws RuntimeException
601
     */
602
    public function save(): void
603
    {
604
        $filepath = Util::joinFile($this->config->getOutputPath(), $this->data['path']);
605
        if (!$this->builder->getBuildOptions()['dry-run'] && !Util\File::getFS()->exists($filepath)) {
606
            try {
607
                Util\File::getFS()->dumpFile($filepath, $this->data['content']);
608
                $this->builder->getLogger()->debug(sprintf('Asset "%s" saved', $filepath));
609
                if ($this->optimize) {
610
                    $this->optimize($filepath);
611
                }
612
            } catch (\Symfony\Component\Filesystem\Exception\IOException) {
613
                if (!$this->ignore_missing) {
614
                    throw new RuntimeException(sprintf('Can\'t save asset "%s".', $filepath));
615
                }
616
            }
617
        }
618
    }
619
620
    /**
621
     * Is Asset is an image in CDN.
622
     *
623
     * @return bool
624
     */
625
    public function isImageInCdn()
626
    {
627
        if ($this->data['type'] != 'image' || (bool) $this->config->get('assets.images.cdn.enabled') !== true || (Image::isSVG($this) && (bool) $this->config->get('assets.images.cdn.svg') !== true)) {
628
            return false;
629
        }
630
        // remote image?
631
        if ($this->data['url'] !== null && (bool) $this->config->get('assets.images.cdn.remote') !== true) {
632
            return false;
633
        }
634
635
        return true;
636
    }
637
638
    /**
639
     * Load file data.
640
     *
641
     * @throws RuntimeException
642
     */
643
    private function loadFile(string $path, bool $ignore_missing = false, ?string $remote_fallback = null, bool $force_slash = true): array
644
    {
645
        $file = [
646
            'url' => null,
647
        ];
648
649
        try {
650
            $filePath = $this->findFile($path, $remote_fallback);
651
        } catch (RuntimeException $e) {
652
            if ($ignore_missing) {
653
                $file['path'] = $path;
654
                $file['missing'] = true;
655
656
                return $file;
657
            }
658
659
            throw new RuntimeException(sprintf('Can\'t load asset file "%s" (%s).', $path, $e->getMessage()));
660
        }
661
662
        if (Util\Url::isUrl($path)) {
663
            $file['url'] = $path;
664
            $path = Util::joinPath(
665
                (string) $this->config->get('assets.target'),
666
                Util\File::getFS()->makePathRelative($filePath, $this->config->getCacheAssetsRemotePath())
667
            );
668
            // remote_fallback in assets/ ont in cache/assets/remote/
669
            if (substr(Util\File::getFS()->makePathRelative($filePath, $this->config->getCacheAssetsRemotePath()), 0, 2) == '..') {
670
                $path = Util::joinPath(
671
                    (string) $this->config->get('assets.target'),
672
                    Util\File::getFS()->makePathRelative($filePath, $this->config->getAssetsPath())
673
                );
674
            }
675
            $force_slash = true;
676
        }
677
        if ($force_slash) {
678
            $path = '/' . ltrim($path, '/');
679
        }
680
681
        list($type, $subtype) = Util\File::getMimeType($filePath);
682
        $content = Util\File::fileGetContents($filePath);
683
684
        $file['filepath'] = $filePath;
685
        $file['path'] = $path;
686
        $file['ext'] = pathinfo($path)['extension'] ?? '';
687
        $file['type'] = $type;
688
        $file['subtype'] = $subtype;
689
        $file['size'] = filesize($filePath);
690
        $file['content'] = $content;
691
        $file['missing'] = false;
692
693
        return $file;
694
    }
695
696
    /**
697
     * Try to find the file:
698
     *   1. remote (if $path is a valid URL)
699
     *   2. in static/
700
     *   3. in themes/<theme>/static/
701
     * Returns local file path or throw an exception.
702
     *
703
     * @throws RuntimeException
704
     */
705
    private function findFile(string $path, ?string $remote_fallback = null): string
706
    {
707
        // in case of remote file: save it and returns cached file path
708
        if (Util\Url::isUrl($path)) {
709
            $url = $path;
710
            $urlHost = parse_url($path, PHP_URL_HOST);
711
            $urlPath = parse_url($path, PHP_URL_PATH);
712
            $urlQuery = parse_url($path, PHP_URL_QUERY);
713
            $extension = pathinfo(parse_url($url, PHP_URL_PATH), PATHINFO_EXTENSION);
714
            // Google Fonts hack
715
            if (Util\Str::endsWith($urlPath, '/css') || Util\Str::endsWith($urlPath, '/css2')) {
716
                $extension = 'css';
717
            }
718
            $relativePath = Page::slugify(sprintf(
719
                '%s%s%s%s',
720
                $urlHost,
721
                $this->sanitize($urlPath),
722
                $urlQuery ? "-$urlQuery" : '',
723
                $urlQuery && $extension ? ".$extension" : ''
724
            ));
725
            $filePath = Util::joinFile($this->config->getCacheAssetsRemotePath(), $relativePath);
726
            // not already in cache
727
            if (!file_exists($filePath)) {
728
                try {
729
                    if (!Util\Url::isRemoteFileExists($url)) {
730
                        throw new RuntimeException(sprintf('File "%s" doesn\'t exists', $url));
731
                    }
732
                    if (false === $content = Util\File::fileGetContents($url, true)) {
733
                        throw new RuntimeException(sprintf('Can\'t get content of file "%s".', $url));
734
                    }
735
                    if (\strlen($content) <= 1) {
736
                        throw new RuntimeException(sprintf('File "%s" is empty.', $url));
737
                    }
738
                } catch (RuntimeException $e) {
739
                    // is there a fallback in assets/
740
                    if ($remote_fallback) {
741
                        $filePath = Util::joinFile($this->config->getAssetsPath(), $remote_fallback);
742
                        if (Util\File::getFS()->exists($filePath)) {
743
                            return $filePath;
744
                        }
745
                        throw new RuntimeException(sprintf('Fallback file "%s" doesn\'t exists.', $filePath));
746
                    }
747
748
                    throw new RuntimeException($e->getMessage());
749
                }
750
                if (false === $content = Util\File::fileGetContents($url, true)) {
751
                    throw new RuntimeException(sprintf('Can\'t get content of "%s"', $url));
752
                }
753
                if (\strlen($content) <= 1) {
754
                    throw new RuntimeException(sprintf('Asset at "%s" is empty', $url));
755
                }
756
                // put file in cache
757
                Util\File::getFS()->dumpFile($filePath, $content);
758
            }
759
760
            return $filePath;
761
        }
762
763
        // checks in assets/
764
        $filePath = Util::joinFile($this->config->getAssetsPath(), $path);
765
        if (Util\File::getFS()->exists($filePath)) {
766
            return $filePath;
767
        }
768
769
        // checks in each themes/<theme>/assets/
770
        foreach ($this->config->getTheme() as $theme) {
771
            $filePath = Util::joinFile($this->config->getThemeDirPath($theme, 'assets'), $path);
772
            if (Util\File::getFS()->exists($filePath)) {
773
                return $filePath;
774
            }
775
        }
776
777
        // checks in static/
778
        $filePath = Util::joinFile($this->config->getStaticTargetPath(), $path);
779
        if (Util\File::getFS()->exists($filePath)) {
780
            return $filePath;
781
        }
782
783
        // checks in each themes/<theme>/static/
784
        foreach ($this->config->getTheme() as $theme) {
785
            $filePath = Util::joinFile($this->config->getThemeDirPath($theme, 'static'), $path);
786
            if (Util\File::getFS()->exists($filePath)) {
787
                return $filePath;
788
            }
789
        }
790
791
        throw new RuntimeException(sprintf('Can\'t find file "%s".', $path));
792
    }
793
794
    /**
795
     * Returns the width of an image/SVG.
796
     *
797
     * @throws RuntimeException
798
     */
799
    private function getWidth(): int
800
    {
801
        if ($this->data['type'] != 'image') {
802
            return 0;
803
        }
804
        if (Image::isSVG($this) && false !== $svg = Image::getSvgAttributes($this)) {
805
            return (int) $svg->width;
806
        }
807
        if (false === $size = $this->getImageSize()) {
808
            throw new RuntimeException(sprintf('Not able to get width of "%s".', $this->data['path']));
809
        }
810
811
        return $size[0];
812
    }
813
814
    /**
815
     * Returns the height of an image/SVG.
816
     *
817
     * @throws RuntimeException
818
     */
819
    private function getHeight(): int
820
    {
821
        if ($this->data['type'] != 'image') {
822
            return 0;
823
        }
824
        if (Image::isSVG($this) && false !== $svg = Image::getSvgAttributes($this)) {
825
            return (int) $svg->height;
826
        }
827
        if (false === $size = $this->getImageSize()) {
828
            throw new RuntimeException(sprintf('Not able to get height of "%s".', $this->data['path']));
829
        }
830
831
        return $size[1];
832
    }
833
834
    /**
835
     * Returns image size informations.
836
     *
837
     * @see https://www.php.net/manual/function.getimagesize.php
838
     *
839
     * @return array|false
840
     */
841
    private function getImageSize()
842
    {
843
        if (!$this->data['type'] == 'image') {
844
            return false;
845
        }
846
847
        try {
848
            if (false === $size = getimagesizefromstring($this->data['content'])) {
849
                return false;
850
            }
851
        } catch (\Exception $e) {
852
            throw new RuntimeException(sprintf('Handling asset "%s" failed: "%s"', $this->data['path_source'], $e->getMessage()));
853
        }
854
855
        return $size;
856
    }
857
858
    /**
859
     * Replaces some characters by '_'.
860
     */
861
    private function sanitize(string $string): string
862
    {
863
        return str_replace(['<', '>', ':', '"', '\\', '|', '?', '*'], '_', $string);
864
    }
865
866
    /**
867
     * Builds CDN image URL.
868
     */
869
    private function buildImageCdnUrl(): string
870
    {
871
        return str_replace(
872
            [
873
                '%account%',
874
                '%image_url%',
875
                '%width%',
876
                '%quality%',
877
                '%format%',
878
            ],
879
            [
880
                $this->config->get('assets.images.cdn.account'),
881
                ltrim($this->data['url'] ?? (string) new Url($this->builder, $this->data['path'], ['canonical' => $this->config->get('assets.images.cdn.canonical') ?? true]), '/'),
882
                $this->data['width'],
883
                $this->config->get('assets.images.quality') ?? 75,
884
                $this->data['ext'],
885
            ],
886
            (string) $this->config->get('assets.images.cdn.url')
887
        );
888
    }
889
}
890