Passed
Pull Request — master (#2244)
by Arnaud
08:24 queued 03:42
created

Core::htmlImage()   F

Complexity

Conditions 23
Paths 16280

Size

Total Lines 70
Code Lines 44

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 26
CRAP Score 52.257

Importance

Changes 4
Bugs 1 Features 0
Metric Value
cc 23
eloc 44
c 4
b 1
f 0
nc 16280
nop 4
dl 0
loc 70
ccs 26
cts 42
cp 0.619
crap 52.257
rs 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * This file is part of Cecil.
5
 *
6
 * (c) Arnaud Ligny <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Cecil\Renderer\Extension;
15
16
use Cecil\Asset;
17
use Cecil\Asset\Image;
18
use Cecil\Builder;
19
use Cecil\Cache;
20
use Cecil\Collection\CollectionInterface;
21
use Cecil\Collection\Page\Collection as PagesCollection;
22
use Cecil\Collection\Page\Page;
23
use Cecil\Collection\Page\Type;
24
use Cecil\Config;
25
use Cecil\Converter\Parsedown;
26
use Cecil\Exception\ConfigException;
27
use Cecil\Exception\RuntimeException;
28
use Cecil\Url;
29
use Cocur\Slugify\Bridge\Twig\SlugifyExtension;
30
use Cocur\Slugify\Slugify;
31
use Highlight\Highlighter;
32
use MatthiasMullie\Minify;
33
use ScssPhp\ScssPhp\Compiler;
34
use ScssPhp\ScssPhp\OutputStyle;
35
use Symfony\Component\VarDumper\Cloner\VarCloner;
36
use Symfony\Component\VarDumper\Dumper\HtmlDumper;
37
use Symfony\Component\Yaml\Exception\ParseException;
38
use Symfony\Component\Yaml\Yaml;
39
use Twig\DeprecatedCallableInfo;
40
41
/**
42
 * Core Twig extension.
43
 *
44
 * This extension provides various utility functions and filters for use in Twig templates,
45
 * including URL generation, asset management, content processing, and more.
46
 */
47
class Core extends SlugifyExtension
48
{
49
    /** @var Builder */
50
    protected $builder;
51
52
    /** @var Config */
53
    protected $config;
54
55
    /** @var Slugify */
56
    private static $slugifier;
57
58 1
    public function __construct(Builder $builder)
59
    {
60 1
        if (!self::$slugifier instanceof Slugify) {
61 1
            self::$slugifier = Slugify::create(['regexp' => Page::SLUGIFY_PATTERN]);
62
        }
63
64 1
        parent::__construct(self::$slugifier);
65
66 1
        $this->builder = $builder;
67 1
        $this->config = $builder->getConfig();
68
    }
69
70
    /**
71
     * {@inheritdoc}
72
     */
73
    public function getName(): string
74
    {
75
        return 'CoreExtension';
76
    }
77
78
    /**
79
     * {@inheritdoc}
80
     */
81 1
    public function getFunctions()
82
    {
83 1
        return [
84 1
            new \Twig\TwigFunction('url', [$this, 'url'], ['needs_context' => true]),
85
            // assets
86 1
            new \Twig\TwigFunction('asset', [$this, 'asset']),
87 1
            new \Twig\TwigFunction('html', [$this, 'html'], ['needs_context' => true]),
88 1
            new \Twig\TwigFunction('integrity', [$this, 'integrity']),
89 1
            new \Twig\TwigFunction('image_srcset', [$this, 'imageSrcset']),
90 1
            new \Twig\TwigFunction('image_sizes', [$this, 'imageSizes']),
91
            // content
92 1
            new \Twig\TwigFunction('readtime', [$this, 'readtime']),
93 1
            new \Twig\TwigFunction('hash', [$this, 'hash']),
94
            // others
95 1
            new \Twig\TwigFunction('getenv', [$this, 'getEnv']),
96 1
            new \Twig\TwigFunction('d', [$this, 'varDump'], ['needs_context' => true, 'needs_environment' => true]),
97
            // deprecated
98 1
            new \Twig\TwigFunction(
99 1
                'minify',
100 1
                [$this, 'minify'],
101 1
                ['deprecation_info' => new DeprecatedCallableInfo('', '', 'minify filter')]
102 1
            ),
103 1
            new \Twig\TwigFunction(
104 1
                'toCSS',
105 1
                [$this, 'toCss'],
106 1
                ['deprecation_info' => new DeprecatedCallableInfo('', '', 'to_css filter')]
107 1
            ),
108 1
        ];
109
    }
110
111
    /**
112
     * {@inheritdoc}
113
     */
114 1
    public function getFilters(): array
115
    {
116 1
        return [
117 1
            new \Twig\TwigFilter('url', [$this, 'url'], ['needs_context' => true]),
118
            // collections
119 1
            new \Twig\TwigFilter('sort_by_title', [$this, 'sortByTitle']),
120 1
            new \Twig\TwigFilter('sort_by_weight', [$this, 'sortByWeight']),
121 1
            new \Twig\TwigFilter('sort_by_date', [$this, 'sortByDate']),
122 1
            new \Twig\TwigFilter('filter_by', [$this, 'filterBy']),
123
            // assets
124 1
            new \Twig\TwigFilter('inline', [$this, 'inline']),
125 1
            new \Twig\TwigFilter('fingerprint', [$this, 'fingerprint']),
126 1
            new \Twig\TwigFilter('to_css', [$this, 'toCss']),
127 1
            new \Twig\TwigFilter('minify', [$this, 'minify']),
128 1
            new \Twig\TwigFilter('minify_css', [$this, 'minifyCss']),
129 1
            new \Twig\TwigFilter('minify_js', [$this, 'minifyJs']),
130 1
            new \Twig\TwigFilter('scss_to_css', [$this, 'scssToCss']),
131 1
            new \Twig\TwigFilter('sass_to_css', [$this, 'scssToCss']),
132 1
            new \Twig\TwigFilter('resize', [$this, 'resize']),
133 1
            new \Twig\TwigFilter('cover', [$this, 'cover']),
134 1
            new \Twig\TwigFilter('maskable', [$this, 'maskable']),
135 1
            new \Twig\TwigFilter('dataurl', [$this, 'dataurl']),
136 1
            new \Twig\TwigFilter('dominant_color', [$this, 'dominantColor']),
137 1
            new \Twig\TwigFilter('lqip', [$this, 'lqip']),
138 1
            new \Twig\TwigFilter('webp', [$this, 'webp']),
139 1
            new \Twig\TwigFilter('avif', [$this, 'avif']),
140
            // content
141 1
            new \Twig\TwigFilter('slugify', [$this, 'slugifyFilter']),
142 1
            new \Twig\TwigFilter('excerpt', [$this, 'excerpt']),
143 1
            new \Twig\TwigFilter('excerpt_html', [$this, 'excerptHtml']),
144 1
            new \Twig\TwigFilter('markdown_to_html', [$this, 'markdownToHtml']),
145 1
            new \Twig\TwigFilter('toc', [$this, 'markdownToToc']),
146 1
            new \Twig\TwigFilter('json_decode', [$this, 'jsonDecode']),
147 1
            new \Twig\TwigFilter('yaml_parse', [$this, 'yamlParse']),
148 1
            new \Twig\TwigFilter('preg_split', [$this, 'pregSplit']),
149 1
            new \Twig\TwigFilter('preg_match_all', [$this, 'pregMatchAll']),
150 1
            new \Twig\TwigFilter('hex_to_rgb', [$this, 'hexToRgb']),
151 1
            new \Twig\TwigFilter('splitline', [$this, 'splitLine']),
152 1
            new \Twig\TwigFilter('iterable', [$this, 'iterable']),
153 1
            new \Twig\TwigFilter('highlight', [$this, 'highlight']),
154 1
            new \Twig\TwigFilter('unique', [$this, 'unique']),
155
            // date
156 1
            new \Twig\TwigFilter('duration_to_iso8601', ['\Cecil\Util\Date', 'durationToIso8601']),
157
            // deprecated
158 1
            new \Twig\TwigFilter(
159 1
                'html',
160 1
                [$this, 'html'],
161 1
                [
162 1
                    'needs_context' => true,
163 1
                    'deprecation_info' => new DeprecatedCallableInfo('', '', 'html function')
164 1
                ]
165 1
            ),
166 1
        ];
167
    }
168
169
    /**
170
     * {@inheritdoc}
171
     */
172 1
    public function getTests()
173
    {
174 1
        return [
175 1
            new \Twig\TwigTest('asset', [$this, 'isAsset']),
176 1
            new \Twig\TwigTest('image_large', [$this, 'isImageLarge']),
177 1
            new \Twig\TwigTest('image_square', [$this, 'isImageSquare']),
178 1
        ];
179
    }
180
181
    /**
182
     * Filters by Section.
183
     */
184
    public function filterBySection(PagesCollection $pages, string $section): CollectionInterface
185
    {
186
        return $this->filterBy($pages, 'section', $section);
187
    }
188
189
    /**
190
     * Filters a pages collection by variable's name/value.
191
     */
192 1
    public function filterBy(PagesCollection $pages, string $variable, string $value): CollectionInterface
193
    {
194 1
        $filteredPages = $pages->filter(function (Page $page) use ($variable, $value) {
195
            // is a dedicated getter exists?
196 1
            $method = 'get' . ucfirst($variable);
197 1
            if (method_exists($page, $method) && $page->$method() == $value) {
198
                return $page->getType() == Type::PAGE->value && !$page->isVirtual() && true;
199
            }
200
            // or a classic variable
201 1
            if ($page->getVariable($variable) == $value) {
202 1
                return $page->getType() == Type::PAGE->value && !$page->isVirtual() && true;
203
            }
204 1
        });
205
206 1
        return $filteredPages;
207
    }
208
209
    /**
210
     * Sorts a collection by title.
211
     */
212 1
    public function sortByTitle(\Traversable $collection): array
213
    {
214 1
        $sort = \SORT_ASC;
215
216 1
        $collection = iterator_to_array($collection);
217 1
        array_multisort(array_keys(/** @scrutinizer ignore-type */ $collection), $sort, \SORT_NATURAL | \SORT_FLAG_CASE, $collection);
0 ignored issues
show
Bug introduced by
array_keys($collection) cannot be passed to array_multisort() as the parameter $array expects a reference. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

217
        array_multisort(/** @scrutinizer ignore-type */ array_keys(/** @scrutinizer ignore-type */ $collection), $sort, \SORT_NATURAL | \SORT_FLAG_CASE, $collection);
Loading history...
Bug introduced by
SORT_NATURAL | SORT_FLAG_CASE cannot be passed to array_multisort() as the parameter $rest expects a reference. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

217
        array_multisort(array_keys(/** @scrutinizer ignore-type */ $collection), $sort, /** @scrutinizer ignore-type */ \SORT_NATURAL | \SORT_FLAG_CASE, $collection);
Loading history...
218
219 1
        return $collection;
220
    }
221
222
    /**
223
     * Sorts a collection by weight.
224
     *
225
     * @param \Traversable|array $collection
226
     */
227 1
    public function sortByWeight($collection): array
228
    {
229 1
        $callback = function ($a, $b) {
230 1
            if (!isset($a['weight'])) {
231 1
                $a['weight'] = 0;
232
            }
233 1
            if (!isset($b['weight'])) {
234
                $a['weight'] = 0;
235
            }
236 1
            if ($a['weight'] == $b['weight']) {
237 1
                return 0;
238
            }
239
240 1
            return $a['weight'] < $b['weight'] ? -1 : 1;
241 1
        };
242
243 1
        if (!\is_array($collection)) {
244 1
            $collection = iterator_to_array($collection);
245
        }
246 1
        usort(/** @scrutinizer ignore-type */ $collection, $callback);
247
248 1
        return $collection;
249
    }
250
251
    /**
252
     * Sorts by creation date (or 'updated' date): the most recent first.
253
     */
254 1
    public function sortByDate(\Traversable $collection, string $variable = 'date', bool $descTitle = false): array
255
    {
256 1
        $callback = function ($a, $b) use ($variable, $descTitle) {
257 1
            if ($a[$variable] == $b[$variable]) {
258
                // if dates are equal and "descTitle" is true
259 1
                if ($descTitle && (isset($a['title']) && isset($b['title']))) {
260
                    return strnatcmp($b['title'], $a['title']);
261
                }
262
263 1
                return 0;
264
            }
265
266 1
            return $a[$variable] > $b[$variable] ? -1 : 1;
267 1
        };
268
269 1
        $collection = iterator_to_array($collection);
270 1
        usort(/** @scrutinizer ignore-type */ $collection, $callback);
271
272 1
        return $collection;
273
    }
274
275
    /**
276
     * Creates an URL.
277
     *
278
     * $options[
279
     *     'canonical' => false,
280
     *     'format'    => 'html',
281
     *     'language'  => null,
282
     * ];
283
     *
284
     * @param array                  $context
285
     * @param Page|Asset|string|null $value
286
     * @param array|null             $options
287
     */
288 1
    public function url(array $context, $value = null, ?array $options = null): string
289
    {
290 1
        $optionsLang = [];
291 1
        $optionsLang['language'] = (string) $context['site']['language'];
292 1
        $options = array_merge($optionsLang, $options ?? []);
293
294 1
        return (new Url($this->builder, $value, $options))->getUrl();
295
    }
296
297
    /**
298
     * Creates an Asset (CSS, JS, images, etc.) from a path or an array of paths.
299
     *
300
     * @param string|array $path    File path or array of files path (relative from `assets/` or `static/` dir).
301
     * @param array|null   $options
302
     *
303
     * @return Asset
304
     */
305 1
    public function asset($path, array|null $options = null): Asset
306
    {
307 1
        if (!\is_string($path) && !\is_array($path)) {
308
            throw new RuntimeException(\sprintf('Argument of "%s()" must a string or an array.', \Cecil\Util::formatMethodName(__METHOD__)));
309
        }
310
311 1
        return new Asset($this->builder, $path, $options);
312
    }
313
314
    /**
315
     * Compiles a SCSS asset.
316
     *
317
     * @param string|Asset $asset
318
     *
319
     * @return Asset
320
     */
321 1
    public function toCss($asset): Asset
322
    {
323 1
        if (!$asset instanceof Asset) {
324
            $asset = new Asset($this->builder, $asset);
325
        }
326
327 1
        return $asset->compile();
328
    }
329
330
    /**
331
     * Minifying an asset (CSS or JS).
332
     *
333
     * @param string|Asset $asset
334
     *
335
     * @return Asset
336
     */
337 1
    public function minify($asset): Asset
338
    {
339 1
        if (!$asset instanceof Asset) {
340
            $asset = new Asset($this->builder, $asset);
341
        }
342
343 1
        return $asset->minify();
344
    }
345
346
    /**
347
     * Fingerprinting an asset.
348
     *
349
     * @param string|Asset $asset
350
     *
351
     * @return Asset
352
     */
353 1
    public function fingerprint($asset): Asset
354
    {
355 1
        if (!$asset instanceof Asset) {
356
            $asset = new Asset($this->builder, $asset);
357
        }
358
359 1
        return $asset->fingerprint();
360
    }
361
362
    /**
363
     * Resizes an image.
364
     *
365
     * @param string|Asset $asset
366
     *
367
     * @return Asset
368
     */
369 1
    public function resize($asset, int $size): Asset
370
    {
371 1
        if (!$asset instanceof Asset) {
372
            $asset = new Asset($this->builder, $asset);
373
        }
374
375 1
        return $asset->resize($size);
376
    }
377
378
    /**
379
     * Crops an image Asset to the given width and height, keeping the aspect ratio.
380
     *
381
     * @param string|Asset $asset
382
     *
383
     * @return Asset
384
     */
385 1
    public function cover($asset, int $width, int $height): Asset
386
    {
387 1
        if (!$asset instanceof Asset) {
388
            $asset = new Asset($this->builder, $asset);
389
        }
390
391 1
        return $asset->cover($width, $height);
392
    }
393
394
    /**
395
     * Creates a maskable icon from an image asset.
396
     * The maskable icon is used for Progressive Web Apps (PWAs).
397
     *
398
     * @param string|Asset $asset
399
     *
400
     * @return Asset
401
     */
402
    public function maskable($asset, ?int $padding = null): Asset
403
    {
404
        if (!$asset instanceof Asset) {
405
            $asset = new Asset($this->builder, $asset);
406
        }
407
408
        return $asset->maskable($padding);
409
    }
410
411
    /**
412
     * Returns the data URL of an image.
413
     *
414
     * @param string|Asset $asset
415
     *
416
     * @return string
417
     */
418 1
    public function dataurl($asset): string
419
    {
420 1
        if (!$asset instanceof Asset) {
421
            $asset = new Asset($this->builder, $asset);
422
        }
423
424 1
        return $asset->dataurl();
425
    }
426
427
    /**
428
     * Hashing an asset with algo (sha384 by default).
429
     *
430
     * @param string|Asset $asset
431
     * @param string       $algo
432
     *
433
     * @return string
434
     */
435 1
    public function integrity($asset, string $algo = 'sha384'): string
436
    {
437 1
        if (!$asset instanceof Asset) {
438 1
            $asset = new Asset($this->builder, $asset);
439
        }
440
441 1
        return $asset->getIntegrity($algo);
442
    }
443
444
    /**
445
     * Minifying a CSS string.
446
     */
447 1
    public function minifyCss(?string $value): string
448
    {
449 1
        $value = $value ?? '';
450
451 1
        if ($this->builder->isDebug()) {
452 1
            return $value;
453
        }
454
455
        $cache = new Cache($this->builder, 'assets');
456
        $cacheKey = $cache->createKeyFromValue(null, $value);
457
        if (!$cache->has($cacheKey)) {
458
            $minifier = new Minify\CSS($value);
459
            $value = $minifier->minify();
460
            $cache->set($cacheKey, $value, $this->config->get('cache.assets.ttl'));
461
        }
462
463
        return $cache->get($cacheKey, $value);
464
    }
465
466
    /**
467
     * Minifying a JavaScript string.
468
     */
469 1
    public function minifyJs(?string $value): string
470
    {
471 1
        $value = $value ?? '';
472
473 1
        if ($this->builder->isDebug()) {
474 1
            return $value;
475
        }
476
477
        $cache = new Cache($this->builder, 'assets');
478
        $cacheKey = $cache->createKeyFromValue(null, $value);
479
        if (!$cache->has($cacheKey)) {
480
            $minifier = new Minify\JS($value);
481
            $value = $minifier->minify();
482
            $cache->set($cacheKey, $value, $this->config->get('cache.assets.ttl'));
483
        }
484
485
        return $cache->get($cacheKey, $value);
486
    }
487
488
    /**
489
     * Compiles a SCSS string.
490
     *
491
     * @throws RuntimeException
492
     */
493 1
    public function scssToCss(?string $value): string
494
    {
495 1
        $value = $value ?? '';
496
497 1
        $cache = new Cache($this->builder, 'assets');
498 1
        $cacheKey = $cache->createKeyFromValue(null, $value);
499 1
        if (!$cache->has($cacheKey)) {
500 1
            $scssPhp = new Compiler();
501 1
            $outputStyles = ['expanded', 'compressed'];
502 1
            $outputStyle = strtolower((string) $this->config->get('assets.compile.style'));
503 1
            if (!\in_array($outputStyle, $outputStyles)) {
504
                throw new ConfigException(\sprintf('"%s" value must be "%s".', 'assets.compile.style', implode('" or "', $outputStyles)));
505
            }
506 1
            $scssPhp->setOutputStyle($outputStyle == 'compressed' ? OutputStyle::COMPRESSED : OutputStyle::EXPANDED);
507 1
            $variables = $this->config->get('assets.compile.variables');
508 1
            if (!empty($variables)) {
509 1
                $variables = array_map('ScssPhp\ScssPhp\ValueConverter::parseValue', $variables);
510 1
                $scssPhp->replaceVariables($variables);
511
            }
512 1
            $value = $scssPhp->compileString($value)->getCss();
513 1
            $cache->set($cacheKey, $value, $this->config->get('cache.assets.ttl'));
514
        }
515
516 1
        return $cache->get($cacheKey, $value);
517
    }
518
519
    /**
520
     * Creates the HTML element of an asset.
521
     *
522
     * @param array                                                                $context    Twig context
523
     * @param Asset|array<int,array{asset:Asset,attributes:?array<string,string>}> $assets     Asset or array of assets + attributes
524
     * @param array                                                                $attributes HTML attributes to add to the element
525
     * @param array                                                                $options    Options:
526
     * [
527
     *     'preload'    => false,
528
     *     'responsive' => false,
529
     *     'formats'    => [],
530
     * ];
531
     *
532
     * @return string HTML element
533
     *
534
     * @throws RuntimeException
535
     */
536 1
    public function html(array $context, Asset|array $assets, array $attributes = [], array $options = []): string
537
    {
538 1
        $html = array();
539 1
        if (!\is_array($assets)) {
0 ignored issues
show
introduced by
The condition is_array($assets) is always true.
Loading history...
540 1
            $assets = [['asset' => $assets, 'attributes' => null]];
541
        }
542 1
        foreach ($assets as $assetData) {
543 1
            $asset = $assetData['asset'];
544 1
            if (!$asset instanceof Asset) {
545
                $asset = new Asset($this->builder, $asset);
546
            }
547 1
            $attr = $attributes;
548
            // specific attributes
549 1
            if ($assetData['attributes'] !== null) {
550 1
                $attr = $attributes + $assetData['attributes'];
551
            }
552
            // be sure Asset file is saved
553 1
            $asset->save();
554
            // CSS or JavaScript
555 1
            switch ($asset['ext']) {
556 1
                case 'css':
557 1
                    $html[] = $this->htmlCss($context, $asset, $attr, $options);
558 1
                    break;
559 1
                case 'js':
560 1
                    $html[] = $this->htmlJs($context, $asset, $attr, $options);
561
            }
562
            // image
563 1
            if ($asset['type'] == 'image') {
564 1
                $html[] = $this->htmlImage($context, $asset, $attr, $options);
565
            }
566 1
            unset($attr);
567
        }
568 1
        if (empty($html)) {
569
            throw new RuntimeException(\sprintf('%s is available for CSS, JavaScript and image files only.', '"html" filter'));
570
        }
571
572 1
        return implode(PHP_EOL, $html);
573
    }
574
575
    /**
576
     * Builds the HTML link element of a CSS Asset.
577
     */
578 1
    public function htmlCss(array $context, Asset $asset, array $attributes = [], array $options = []): string
579
    {
580 1
        $htmlAttributes = self::htmlAttributes($attributes);
581 1
        $preload = $options['preload'] ?? false;
582 1
        if ($preload) {
583
            return \sprintf(
584
                '<link href="%s" rel="preload" as="style" onload="this.onload=null;this.rel=\'stylesheet\'"%s><noscript><link rel="stylesheet" href="%1$s"%2$s></noscript>',
585
                $this->url($context, $asset, $options),
586
                $htmlAttributes
587
            );
588
        }
589
590 1
        return \sprintf('<link rel="stylesheet" href="%s"%s>', $this->url($context, $asset, $options), $htmlAttributes);
591
    }
592
593
    /**
594
     * Builds the HTML script element of a JS Asset.
595
     */
596 1
    public function htmlJs(array $context, Asset $asset, array $attributes = [], array $options = []): string
597
    {
598 1
        $htmlAttributes = self::htmlAttributes($attributes);
599
600 1
        return \sprintf('<script src="%s"%s></script>', $this->url($context, $asset, $options), $htmlAttributes);
601
    }
602
603
    /**
604
     * Builds the HTML img element of an image Asset.
605
     */
606 1
    public function htmlImage(array $context, Asset $asset, array $attributes = [], array $options = []): string
607
    {
608 1
        $htmlAttributes = self::htmlAttributes($attributes);
609 1
        if (!isset($attributes['alt'])) {
610 1
            $htmlAttributes .= ' alt=""';
611
        }
612 1
        $responsive = $options['responsive'] ?? $this->config->get('layouts.images.responsive');
613
614
        // build responsive attributes
615
        try {
616 1
            if ($responsive === true || $responsive == 'width') {
617 1
                $srcset = Image::buildHtmlSrcsetW($asset, $this->config->getAssetsImagesWidths());
618 1
                $htmlAttributes .= \sprintf(' srcset="%s" sizes="%s"', $srcset, Image::getHtmlSizes($attributes['class'] ?? '', $this->config->getAssetsImagesSizes()));
619
                // prevent oversized images
620 1
                if ($asset['width'] > max($this->config->getAssetsImagesWidths())) {
621
                    $asset = $asset->resize(max($this->config->getAssetsImagesWidths()));
622
                }
623
            }
624 1
            if ($responsive == 'density') {
625 1
                $width1x = isset($attributes['width']) && $attributes['width'] > 0 ? (int) $attributes['width'] : $asset['width'];
626 1
                $srcset = Image::buildHtmlSrcsetX($asset, $width1x, $this->config->getAssetsImagesDensities());
1 ignored issue
show
Bug introduced by
It seems like $width1x can also be of type null; however, parameter $width1x of Cecil\Asset\Image::buildHtmlSrcsetX() does only seem to accept integer, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

626
                $srcset = Image::buildHtmlSrcsetX($asset, /** @scrutinizer ignore-type */ $width1x, $this->config->getAssetsImagesDensities());
Loading history...
627 1
                $htmlAttributes .= \sprintf(' srcset="%s"', $srcset);
628
            }
629
        } catch (\Exception $e) {
630
            $this->builder->getLogger()->warning($e->getMessage());
631
        }
632
633
        // create alternative formats (`<source>`)
634
        try {
635 1
            $formats = $options['formats'] ?? (array) $this->config->get('layouts.images.formats');
636 1
            if (\count($formats) > 0) {
637 1
                $source = '';
638 1
                foreach ($formats as $format) {
639
                    try {
640 1
                        $assetConverted = $asset->convert($format);
641
                        // responsive
642
                        if ($responsive === true || $responsive == 'width') {
643
                            $srcset = Image::buildHtmlSrcsetW($assetConverted, $this->config->getAssetsImagesWidths());
644
                            $source .= \sprintf("\n  <source type=\"image/$format\" srcset=\"%s\" sizes=\"%s\">", $srcset, Image::getHtmlSizes($attributes['class'] ?? '', $this->config->getAssetsImagesSizes()));
645
                            continue;
646
                        }
647
                        if ($responsive == 'density') {
648
                            $width1x = isset($attributes['width']) && $attributes['width'] > 0 ? (int) $attributes['width'] : $asset['width'];
649
                            $srcset = Image::buildHtmlSrcsetX($assetConverted, $width1x, $this->config->getAssetsImagesDensities());
650
                            $source .= \sprintf("\n  <source type=\"image/$format\" srcset=\"%s\">", $srcset);
651
                            continue;
652
                        }
653
                        $source .= \sprintf("\n  <source type=\"image/$format\" srcset=\"%s\">", $assetConverted);
654 1
                    } catch (\Exception $e) {
655 1
                        $this->builder->getLogger()->warning($e->getMessage());
656 1
                        continue;
657
                    }
658
                }
659
            }
660
        } catch (\Exception $e) {
661
            $this->builder->getLogger()->warning($e->getMessage());
662
        }
663
664
        // create `<img>` element
665 1
        if (isset($attributes['width']) && $attributes['width'] > 0) {
666 1
            $asset = $asset->resize((int) $attributes['width']);
667
        }
668 1
        $img = \sprintf('<img src="%s" width="' . ($asset['width'] ?: '') . '" height="' . ($asset['height'] ?: '') . '"%s>', $this->url($context, $asset, $options), $htmlAttributes);
669
670
        // put `<source>` elements in `<picture>` if exists
671 1
        if (!empty($source)) {
672
            return \sprintf("<picture>%s\n  %s\n</picture>", $source, $img);
673
        }
674
675 1
        return $img;
676
    }
677
678
    /**
679
     * Builds the HTML img `srcset` (responsive) attribute of an image Asset, based on configured widths.
680
     *
681
     * @throws RuntimeException
682
     */
683 1
    public function imageSrcset(Asset $asset): string
684
    {
685 1
        return Image::buildHtmlSrcsetW($asset, $this->config->getAssetsImagesWidths(), true);
686
    }
687
688
    /**
689
     * Returns the HTML img `sizes` attribute based on a CSS class name.
690
     */
691 1
    public function imageSizes(string $class): string
692
    {
693 1
        return Image::getHtmlSizes($class, $this->config->getAssetsImagesSizes());
694
    }
695
696
    /**
697
     * Converts an image Asset to WebP format.
698
     */
699
    public function webp(Asset $asset, ?int $quality = null): Asset
700
    {
701
        return $this->convert($asset, 'webp', $quality);
702
    }
703
704
    /**
705
     * Converts an image Asset to AVIF format.
706
     */
707
    public function avif(Asset $asset, ?int $quality = null): Asset
708
    {
709
        return $this->convert($asset, 'avif', $quality);
710
    }
711
712
    /**
713
     * Converts an image Asset to the given format.
714
     *
715
     * @throws RuntimeException
716
     */
717
    private function convert(Asset $asset, string $format, ?int $quality = null): Asset
718
    {
719
        if ($asset['subtype'] == "image/$format") {
720
            return $asset;
721
        }
722
        if (Image::isAnimatedGif($asset)) {
723
            throw new RuntimeException(\sprintf('Unable to convert the animated GIF "%s" to %s.', $asset['path'], $format));
724
        }
725
726
        try {
727
            return $asset->$format($quality);
728
        } catch (\Exception $e) {
729
            throw new RuntimeException(\sprintf('Unable to convert "%s" to %s (%s).', $asset['path'], $format, $e->getMessage()));
730
        }
731
    }
732
733
    /**
734
     * Returns the content of an asset.
735
     */
736 1
    public function inline(Asset $asset): string
737
    {
738 1
        return $asset['content'];
739
    }
740
741
    /**
742
     * Reads $length first characters of a string and adds a suffix.
743
     */
744 1
    public function excerpt(?string $string, int $length = 450, string $suffix = ' …'): string
745
    {
746 1
        $string = $string ?? '';
747
748 1
        $string = str_replace('</p>', '<br><br>', $string);
749 1
        $string = trim(strip_tags($string, '<br>'));
750 1
        if (mb_strlen($string) > $length) {
751 1
            $string = mb_substr($string, 0, $length);
752 1
            $string .= $suffix;
753
        }
754
755 1
        return $string;
756
    }
757
758
    /**
759
     * Reads characters before or after '<!-- separator -->'.
760
     * Options:
761
     *  - separator: string to use as separator (`excerpt|break` by default)
762
     *  - capture: part to capture, `before` or `after` the separator (`before` by default).
763
     */
764 1
    public function excerptHtml(?string $string, array $options = []): string
765
    {
766 1
        $string = $string ?? '';
767
768 1
        $separator = (string) $this->config->get('pages.body.excerpt.separator');
769 1
        $capture = (string) $this->config->get('pages.body.excerpt.capture');
770 1
        extract($options, EXTR_IF_EXISTS);
771
772
        // https://regex101.com/r/n9TWHF/1
773 1
        $pattern = '(.*)<!--[[:blank:]]?(' . $separator . ')[[:blank:]]?-->(.*)';
774 1
        preg_match('/' . $pattern . '/is', $string, $matches);
775
776 1
        if (empty($matches)) {
777
            return $string;
778
        }
779 1
        $result = trim($matches[1]);
780 1
        if ($capture == 'after') {
781 1
            $result = trim($matches[3]);
782
        }
783
        // removes footnotes and returns result
784 1
        return preg_replace('/<sup[^>]*>[^u]*<\/sup>/', '', $result);
785
    }
786
787
    /**
788
     * Converts a Markdown string to HTML.
789
     *
790
     * @throws RuntimeException
791
     */
792 1
    public function markdownToHtml(?string $markdown): ?string
793
    {
794 1
        $markdown = $markdown ?? '';
795
796
        try {
797 1
            $parsedown = new Parsedown($this->builder);
798 1
            $html = $parsedown->text($markdown);
799
        } catch (\Exception $e) {
800
            throw new RuntimeException(
801
                '"markdown_to_html" filter can not convert supplied Markdown.',
802
                previous: $e
803
            );
804
        }
805
806 1
        return $html;
807
    }
808
809
    /**
810
     * Extract table of content of a Markdown string,
811
     * in the given format ("html" or "json", "html" by default).
812
     *
813
     * @throws RuntimeException
814
     */
815 1
    public function markdownToToc(?string $markdown, $format = 'html', ?array $selectors = null, string $url = ''): ?string
816
    {
817 1
        $markdown = $markdown ?? '';
818 1
        $selectors = $selectors ?? (array) $this->config->get('pages.body.toc');
819
820
        try {
821 1
            $parsedown = new Parsedown($this->builder, ['selectors' => $selectors, 'url' => $url]);
822 1
            $parsedown->body($markdown);
823 1
            $return = $parsedown->contentsList($format);
824
        } catch (\Exception) {
825
            throw new RuntimeException('"toc" filter can not convert supplied Markdown.');
826
        }
827
828 1
        return $return;
829
    }
830
831
    /**
832
     * Converts a JSON string to an array.
833
     *
834
     * @throws RuntimeException
835
     */
836 1
    public function jsonDecode(?string $json): ?array
837
    {
838 1
        $json = $json ?? '';
839
840
        try {
841 1
            $array = json_decode($json, true);
842 1
            if ($array === null && json_last_error() !== JSON_ERROR_NONE) {
843 1
                throw new \Exception('JSON error.');
844
            }
845
        } catch (\Exception) {
846
            throw new RuntimeException('"json_decode" filter can not parse supplied JSON.');
847
        }
848
849 1
        return $array;
850
    }
851
852
    /**
853
     * Converts a YAML string to an array.
854
     *
855
     * @throws RuntimeException
856
     */
857 1
    public function yamlParse(?string $yaml): ?array
858
    {
859 1
        $yaml = $yaml ?? '';
860
861
        try {
862 1
            $array = Yaml::parse($yaml, Yaml::PARSE_DATETIME);
863 1
            if (!\is_array($array)) {
864 1
                throw new ParseException('YAML error.');
865
            }
866
        } catch (ParseException $e) {
867
            throw new RuntimeException(\sprintf('"yaml_parse" filter can not parse supplied YAML: %s', $e->getMessage()));
868
        }
869
870 1
        return $array;
871
    }
872
873
    /**
874
     * Split a string into an array using a regular expression.
875
     *
876
     * @throws RuntimeException
877
     */
878
    public function pregSplit(?string $value, string $pattern, int $limit = 0): ?array
879
    {
880
        $value = $value ?? '';
881
882
        try {
883
            $array = preg_split($pattern, $value, $limit);
884
            if ($array === false) {
885
                throw new RuntimeException('PREG split error.');
886
            }
887
        } catch (\Exception) {
888
            throw new RuntimeException('"preg_split" filter can not split supplied string.');
889
        }
890
891
        return $array;
892
    }
893
894
    /**
895
     * Perform a regular expression match and return the group for all matches.
896
     *
897
     * @throws RuntimeException
898
     */
899
    public function pregMatchAll(?string $value, string $pattern, int $group = 0): ?array
900
    {
901
        $value = $value ?? '';
902
903
        try {
904
            $array = preg_match_all($pattern, $value, $matches, PREG_PATTERN_ORDER);
905
            if ($array === false) {
906
                throw new RuntimeException('PREG match all error.');
907
            }
908
        } catch (\Exception) {
909
            throw new RuntimeException('"preg_match_all" filter can not match in supplied string.');
910
        }
911
912
        return $matches[$group];
913
    }
914
915
    /**
916
     * Calculates estimated time to read a text.
917
     */
918 1
    public function readtime(?string $text): string
919
    {
920 1
        $text = $text ?? '';
921
922 1
        $words = str_word_count(strip_tags($text));
923 1
        $min = floor($words / 200);
924 1
        if ($min === 0) {
925
            return '1';
926
        }
927
928 1
        return (string) $min;
929
    }
930
931
    /**
932
     * Gets the value of an environment variable.
933
     */
934 1
    public function getEnv(?string $var): ?string
935
    {
936 1
        $var = $var ?? '';
937
938 1
        return getenv($var) ?: null;
939
    }
940
941
    /**
942
     * Dump variable (or Twig context).
943
     */
944 1
    public function varDump(\Twig\Environment $env, array $context, $var = null, ?array $options = null): void
945
    {
946 1
        if (!$env->isDebug()) {
947
            return;
948
        }
949
950 1
        if ($var === null) {
951
            $var = array();
952
            foreach ($context as $key => $value) {
953
                if (!$value instanceof \Twig\Template && !$value instanceof \Twig\TemplateWrapper) {
954
                    $var[$key] = $value;
955
                }
956
            }
957
        }
958
959 1
        $cloner = new VarCloner();
960 1
        $cloner->setMinDepth(3);
961 1
        $dumper = new HtmlDumper();
962 1
        $dumper->setTheme($options['theme'] ?? 'light');
963
964 1
        $data = $cloner->cloneVar($var)->withMaxDepth(3);
965 1
        $dumper->dump($data, null, ['maxDepth' => 3]);
966
    }
967
968
    /**
969
     * Tests if a variable is an Asset.
970
     */
971 1
    public function isAsset($variable): bool
972
    {
973 1
        return $variable instanceof Asset;
974
    }
975
976
    /**
977
     * Tests if an image Asset is large enough to be used as a cover image.
978
     * A large image is defined as having a width >= 600px and height >= 315px.
979
     */
980 1
    public function isImageLarge(Asset $asset): bool
981
    {
982 1
        return $asset['type'] == 'image' && $asset['width'] > $asset['height'] && $asset['width'] >= 600 && $asset['height'] >= 315;
983
    }
984
985
    /**
986
     * Tests if an image Asset is square.
987
     * A square image is defined as having the same width and height.
988
     */
989 1
    public function isImageSquare(Asset $asset): bool
990
    {
991 1
        return $asset['type'] == 'image' && $asset['width'] == $asset['height'];
992
    }
993
994
    /**
995
     * Returns the dominant hex color of an image asset.
996
     *
997
     * @param string|Asset $asset
998
     *
999
     * @return string
1000
     */
1001 1
    public function dominantColor($asset): string
1002
    {
1003 1
        if (!$asset instanceof Asset) {
1004
            $asset = new Asset($this->builder, $asset);
1005
        }
1006
1007 1
        return Image::getDominantColor($asset);
1008
    }
1009
1010
    /**
1011
     * Returns a Low Quality Image Placeholder (LQIP) as data URL.
1012
     *
1013
     * @param string|Asset $asset
1014
     *
1015
     * @return string
1016
     */
1017 1
    public function lqip($asset): string
1018
    {
1019 1
        if (!$asset instanceof Asset) {
1020
            $asset = new Asset($this->builder, $asset);
1021
        }
1022
1023 1
        return Image::getLqip($asset);
1024
    }
1025
1026
    /**
1027
     * Converts an hexadecimal color to RGB.
1028
     *
1029
     * @throws RuntimeException
1030
     */
1031 1
    public function hexToRgb(?string $variable): array
1032
    {
1033 1
        $variable = $variable ?? '';
1034
1035 1
        if (!self::isHex($variable)) {
1036
            throw new RuntimeException(\sprintf('"%s" is not a valid hexadecimal value.', $variable));
1037
        }
1038 1
        $hex = ltrim($variable, '#');
1039 1
        if (\strlen($hex) == 3) {
1040
            $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2];
1041
        }
1042 1
        $c = hexdec($hex);
1043
1044 1
        return [
1045 1
            'red'   => $c >> 16 & 0xFF,
1046 1
            'green' => $c >> 8 & 0xFF,
1047 1
            'blue'  => $c & 0xFF,
1048 1
        ];
1049
    }
1050
1051
    /**
1052
     * Split a string in multiple lines.
1053
     */
1054 1
    public function splitLine(?string $variable, int $max = 18): array
1055
    {
1056 1
        $variable = $variable ?? '';
1057
1058 1
        return preg_split("/.{0,{$max}}\K(\s+|$)/", $variable, 0, PREG_SPLIT_NO_EMPTY);
1059
    }
1060
1061
    /**
1062
     * Hashing an object, an array or a string (with algo, md5 by default).
1063
     */
1064 1
    public function hash(object|array|string $data, $algo = 'md5'): string
1065
    {
1066 1
        switch (\gettype($data)) {
1067 1
            case 'object':
1068 1
                return spl_object_hash($data);
1069
            case 'array':
1070
                return hash($algo, serialize($data));
1071
        }
1072
1073
        return hash($algo, $data);
1074
    }
1075
1076
    /**
1077
     * Converts a variable to an iterable (array).
1078
     */
1079 1
    public function iterable($value): array
1080
    {
1081 1
        if (\is_array($value)) {
1082 1
            return $value;
1083
        }
1084
        if (\is_string($value)) {
1085
            return [$value];
1086
        }
1087
        if ($value instanceof \Traversable) {
1088
            return iterator_to_array($value);
1089
        }
1090
        if ($value instanceof \stdClass) {
1091
            return (array) $value;
1092
        }
1093
        if (\is_object($value)) {
1094
            return [$value];
1095
        }
1096
        if (\is_int($value) || \is_float($value)) {
1097
            return [$value];
1098
        }
1099
        return [$value];
1100
    }
1101
1102
    /**
1103
     * Highlights a code snippet.
1104
     */
1105
    public function highlight(string $code, string $language): string
1106
    {
1107
        return (new Highlighter())->highlight($language, $code)->value;
1108
    }
1109
1110
    /**
1111
     * Returns an array with unique values.
1112
     */
1113 1
    public function unique(array $array): array
1114
    {
1115 1
        return array_intersect_key($array, array_unique(array_map('strtolower', $array), SORT_STRING));
1116
    }
1117
1118
    /**
1119
     * Is a hexadecimal color is valid?
1120
     */
1121 1
    private static function isHex(string $hex): bool
1122
    {
1123 1
        $valid = \is_string($hex);
1124 1
        $hex = ltrim($hex, '#');
1125 1
        $length = \strlen($hex);
1126 1
        $valid = $valid && ($length === 3 || $length === 6);
1127 1
        $valid = $valid && ctype_xdigit($hex);
1128
1129 1
        return $valid;
1130
    }
1131
1132
    /**
1133
     * Builds the HTML attributes string from an array.
1134
     */
1135 1
    private static function htmlAttributes(array $attributes): string
1136
    {
1137 1
        $htmlAttributes = '';
1138 1
        foreach ($attributes as $name => $value) {
1139 1
            $attribute = \sprintf(' %s="%s"', $name, $value);
1140 1
            if (!isset($value)) {
1141
                $attribute = \sprintf(' %s', $name);
1142
            }
1143 1
            $htmlAttributes .= $attribute;
1144
        }
1145
1146 1
        return $htmlAttributes;
1147
    }
1148
}
1149