| Total Complexity | 150 |
| Total Lines | 1030 |
| Duplicated Lines | 0 % |
| Changes | 13 | ||
| Bugs | 2 | Features | 1 |
Complex classes like Core often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Core, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 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 | public function __construct(Builder $builder) |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * {@inheritdoc} |
||
| 72 | */ |
||
| 73 | public function getName(): string |
||
| 74 | { |
||
| 75 | return 'CoreExtension'; |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * {@inheritdoc} |
||
| 80 | */ |
||
| 81 | public function getFunctions() |
||
| 82 | { |
||
| 83 | return [ |
||
| 84 | new \Twig\TwigFunction('url', [$this, 'url'], ['needs_context' => true]), |
||
| 85 | // assets |
||
| 86 | new \Twig\TwigFunction('asset', [$this, 'asset']), |
||
| 87 | new \Twig\TwigFunction('html', [$this, 'html'], ['needs_context' => true]), |
||
| 88 | new \Twig\TwigFunction('integrity', [$this, 'integrity']), |
||
| 89 | new \Twig\TwigFunction('image_srcset', [$this, 'imageSrcset']), |
||
| 90 | new \Twig\TwigFunction('image_sizes', [$this, 'imageSizes']), |
||
| 91 | // content |
||
| 92 | new \Twig\TwigFunction('readtime', [$this, 'readtime']), |
||
| 93 | new \Twig\TwigFunction('hash', [$this, 'hash']), |
||
| 94 | // others |
||
| 95 | new \Twig\TwigFunction('getenv', [$this, 'getEnv']), |
||
| 96 | new \Twig\TwigFunction('d', [$this, 'varDump'], ['needs_context' => true, 'needs_environment' => true]), |
||
| 97 | // deprecated |
||
| 98 | new \Twig\TwigFunction( |
||
| 99 | 'minify', |
||
| 100 | [$this, 'minify'], |
||
| 101 | ['deprecation_info' => new DeprecatedCallableInfo('', '', 'minify filter')] |
||
| 102 | ), |
||
| 103 | new \Twig\TwigFunction( |
||
| 104 | 'toCSS', |
||
| 105 | [$this, 'toCss'], |
||
| 106 | ['deprecation_info' => new DeprecatedCallableInfo('', '', 'to_css filter')] |
||
| 107 | ), |
||
| 108 | ]; |
||
| 109 | } |
||
| 110 | |||
| 111 | /** |
||
| 112 | * {@inheritdoc} |
||
| 113 | */ |
||
| 114 | public function getFilters(): array |
||
| 164 | ] |
||
| 165 | ), |
||
| 166 | ]; |
||
| 167 | } |
||
| 168 | |||
| 169 | /** |
||
| 170 | * {@inheritdoc} |
||
| 171 | */ |
||
| 172 | public function getTests() |
||
| 173 | { |
||
| 174 | return [ |
||
| 175 | new \Twig\TwigTest('asset', [$this, 'isAsset']), |
||
| 176 | new \Twig\TwigTest('image_large', [$this, 'isImageLarge']), |
||
| 177 | new \Twig\TwigTest('image_square', [$this, 'isImageSquare']), |
||
| 178 | ]; |
||
| 179 | } |
||
| 180 | |||
| 181 | /** |
||
| 182 | * Filters by Section. |
||
| 183 | */ |
||
| 184 | public function filterBySection(PagesCollection $pages, string $section): CollectionInterface |
||
| 187 | } |
||
| 188 | |||
| 189 | /** |
||
| 190 | * Filters a pages collection by variable's name/value. |
||
| 191 | */ |
||
| 192 | public function filterBy(PagesCollection $pages, string $variable, string $value): CollectionInterface |
||
| 193 | { |
||
| 194 | $filteredPages = $pages->filter(function (Page $page) use ($variable, $value) { |
||
| 195 | // is a dedicated getter exists? |
||
| 196 | $method = 'get' . ucfirst($variable); |
||
| 197 | 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 | if ($page->getVariable($variable) == $value) { |
||
| 202 | return $page->getType() == Type::PAGE->value && !$page->isVirtual() && true; |
||
| 203 | } |
||
| 204 | }); |
||
| 205 | |||
| 206 | return $filteredPages; |
||
| 207 | } |
||
| 208 | |||
| 209 | /** |
||
| 210 | * Sorts a collection by title. |
||
| 211 | */ |
||
| 212 | public function sortByTitle(\Traversable $collection): array |
||
| 213 | { |
||
| 214 | $sort = \SORT_ASC; |
||
| 215 | |||
| 216 | $collection = iterator_to_array($collection); |
||
| 217 | array_multisort(array_keys(/** @scrutinizer ignore-type */ $collection), $sort, \SORT_NATURAL | \SORT_FLAG_CASE, $collection); |
||
| 218 | |||
| 219 | return $collection; |
||
| 220 | } |
||
| 221 | |||
| 222 | /** |
||
| 223 | * Sorts a collection by weight. |
||
| 224 | * |
||
| 225 | * @param \Traversable|array $collection |
||
| 226 | */ |
||
| 227 | public function sortByWeight($collection): array |
||
| 228 | { |
||
| 229 | $callback = function ($a, $b) { |
||
| 230 | if (!isset($a['weight'])) { |
||
| 231 | $a['weight'] = 0; |
||
| 232 | } |
||
| 233 | if (!isset($b['weight'])) { |
||
| 234 | $a['weight'] = 0; |
||
| 235 | } |
||
| 236 | if ($a['weight'] == $b['weight']) { |
||
| 237 | return 0; |
||
| 238 | } |
||
| 239 | |||
| 240 | return $a['weight'] < $b['weight'] ? -1 : 1; |
||
| 241 | }; |
||
| 242 | |||
| 243 | if (!\is_array($collection)) { |
||
| 244 | $collection = iterator_to_array($collection); |
||
| 245 | } |
||
| 246 | usort(/** @scrutinizer ignore-type */ $collection, $callback); |
||
| 247 | |||
| 248 | return $collection; |
||
| 249 | } |
||
| 250 | |||
| 251 | /** |
||
| 252 | * Sorts by creation date (or 'updated' date): the most recent first. |
||
| 253 | */ |
||
| 254 | public function sortByDate(\Traversable $collection, string $variable = 'date', bool $descTitle = false): array |
||
| 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 | public function url(array $context, $value = null, ?array $options = null): string |
||
| 289 | { |
||
| 290 | $optionsLang = []; |
||
| 291 | $optionsLang['language'] = (string) $context['site']['language']; |
||
| 292 | $options = array_merge($optionsLang, $options ?? []); |
||
| 293 | |||
| 294 | 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 | public function asset($path, array|null $options = null): Asset |
||
| 306 | { |
||
| 307 | 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 | 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 | public function toCss($asset): Asset |
||
| 322 | { |
||
| 323 | if (!$asset instanceof Asset) { |
||
| 324 | $asset = new Asset($this->builder, $asset); |
||
| 325 | } |
||
| 326 | |||
| 327 | 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 | public function minify($asset): Asset |
||
| 338 | { |
||
| 339 | if (!$asset instanceof Asset) { |
||
| 340 | $asset = new Asset($this->builder, $asset); |
||
| 341 | } |
||
| 342 | |||
| 343 | return $asset->minify(); |
||
| 344 | } |
||
| 345 | |||
| 346 | /** |
||
| 347 | * Fingerprinting an asset. |
||
| 348 | * |
||
| 349 | * @param string|Asset $asset |
||
| 350 | * |
||
| 351 | * @return Asset |
||
| 352 | */ |
||
| 353 | public function fingerprint($asset): Asset |
||
| 354 | { |
||
| 355 | if (!$asset instanceof Asset) { |
||
| 356 | $asset = new Asset($this->builder, $asset); |
||
| 357 | } |
||
| 358 | |||
| 359 | return $asset->fingerprint(); |
||
| 360 | } |
||
| 361 | |||
| 362 | /** |
||
| 363 | * Resizes an image. |
||
| 364 | * |
||
| 365 | * @param string|Asset $asset |
||
| 366 | * |
||
| 367 | * @return Asset |
||
| 368 | */ |
||
| 369 | public function resize($asset, int $size): Asset |
||
| 370 | { |
||
| 371 | if (!$asset instanceof Asset) { |
||
| 372 | $asset = new Asset($this->builder, $asset); |
||
| 373 | } |
||
| 374 | |||
| 375 | 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 | public function cover($asset, int $width, int $height): Asset |
||
| 386 | { |
||
| 387 | if (!$asset instanceof Asset) { |
||
| 388 | $asset = new Asset($this->builder, $asset); |
||
| 389 | } |
||
| 390 | |||
| 391 | 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 | public function dataurl($asset): string |
||
| 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 | public function integrity($asset, string $algo = 'sha384'): string |
||
| 442 | } |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Minifying a CSS string. |
||
| 446 | */ |
||
| 447 | public function minifyCss(?string $value): string |
||
| 448 | { |
||
| 449 | $value = $value ?? ''; |
||
| 450 | |||
| 451 | if ($this->builder->isDebug()) { |
||
| 452 | 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 | public function minifyJs(?string $value): string |
||
| 470 | { |
||
| 471 | $value = $value ?? ''; |
||
| 472 | |||
| 473 | if ($this->builder->isDebug()) { |
||
| 474 | 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 | public function scssToCss(?string $value): string |
||
| 494 | { |
||
| 495 | $value = $value ?? ''; |
||
| 496 | |||
| 497 | $cache = new Cache($this->builder, 'assets'); |
||
| 498 | $cacheKey = $cache->createKeyFromValue(null, $value); |
||
| 499 | if (!$cache->has($cacheKey)) { |
||
| 500 | $scssPhp = new Compiler(); |
||
| 501 | $outputStyles = ['expanded', 'compressed']; |
||
| 502 | $outputStyle = strtolower((string) $this->config->get('assets.compile.style')); |
||
| 503 | if (!\in_array($outputStyle, $outputStyles)) { |
||
| 504 | throw new ConfigException(\sprintf('"%s" value must be "%s".', 'assets.compile.style', implode('" or "', $outputStyles))); |
||
| 505 | } |
||
| 506 | $scssPhp->setOutputStyle($outputStyle == 'compressed' ? OutputStyle::COMPRESSED : OutputStyle::EXPANDED); |
||
| 507 | $variables = $this->config->get('assets.compile.variables'); |
||
| 508 | if (!empty($variables)) { |
||
| 509 | $variables = array_map('ScssPhp\ScssPhp\ValueConverter::parseValue', $variables); |
||
| 510 | $scssPhp->replaceVariables($variables); |
||
| 511 | } |
||
| 512 | $value = $scssPhp->compileString($value)->getCss(); |
||
| 513 | $cache->set($cacheKey, $value, $this->config->get('cache.assets.ttl')); |
||
| 514 | } |
||
| 515 | |||
| 516 | return $cache->get($cacheKey, $value); |
||
| 517 | } |
||
| 518 | |||
| 519 | /** |
||
| 520 | * Creates the HTML element of an asset. |
||
| 521 | * |
||
| 522 | * $options[ |
||
| 523 | * 'preload' => false, |
||
| 524 | * 'responsive' => false, |
||
| 525 | * 'formats' => [], |
||
| 526 | * ]; |
||
| 527 | * |
||
| 528 | * @throws RuntimeException |
||
| 529 | */ |
||
| 530 | public function html(array $context, Asset $asset, array $attributes = [], array $options = []): string |
||
| 531 | { |
||
| 532 | $htmlAttributes = ''; |
||
| 533 | $preload = false; |
||
| 534 | $responsive = $this->config->isEnabled('layouts.images.responsive'); |
||
| 535 | $formats = (array) $this->config->get('layouts.images.formats'); |
||
| 536 | extract($options, EXTR_IF_EXISTS); |
||
| 537 | |||
| 538 | // builds HTML attributes |
||
| 539 | foreach ($attributes as $name => $value) { |
||
| 540 | $attribute = \sprintf(' %s="%s"', $name, $value); |
||
| 541 | if (!isset($value)) { |
||
| 542 | $attribute = \sprintf(' %s', $name); |
||
| 543 | } |
||
| 544 | $htmlAttributes .= $attribute; |
||
| 545 | } |
||
| 546 | |||
| 547 | // be sure Asset file is saved |
||
| 548 | $asset->save(); |
||
| 549 | |||
| 550 | // CSS or JavaScript |
||
| 551 | switch ($asset['ext']) { |
||
| 552 | case 'css': |
||
| 553 | if ($preload) { |
||
| 554 | return \sprintf( |
||
| 555 | '<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>', |
||
| 556 | $this->url($context, $asset, $options), |
||
| 557 | $htmlAttributes |
||
| 558 | ); |
||
| 559 | } |
||
| 560 | |||
| 561 | return \sprintf('<link rel="stylesheet" href="%s"%s>', $this->url($context, $asset, $options), $htmlAttributes); |
||
| 562 | case 'js': |
||
| 563 | return \sprintf('<script src="%s"%s></script>', $this->url($context, $asset, $options), $htmlAttributes); |
||
| 564 | } |
||
| 565 | // image |
||
| 566 | if ($asset['type'] == 'image') { |
||
| 567 | // if responsive is enabled |
||
| 568 | $sizes = ''; |
||
| 569 | if ( |
||
| 570 | $responsive && $srcset = Image::buildHtmlSrcset( |
||
| 571 | $asset, |
||
| 572 | $this->config->getAssetsImagesWidths() |
||
| 573 | ) |
||
| 574 | ) { |
||
| 575 | $htmlAttributes .= \sprintf(' srcset="%s"', $srcset); |
||
| 576 | $sizes = Image::getHtmlSizes($attributes['class'] ?? '', $this->config->getAssetsImagesSizes()); |
||
| 577 | $htmlAttributes .= \sprintf(' sizes="%s"', $sizes); |
||
| 578 | if ($asset['width'] > max($this->config->getAssetsImagesWidths())) { |
||
| 579 | $asset = $asset->resize(max($this->config->getAssetsImagesWidths())); |
||
| 580 | } |
||
| 581 | } |
||
| 582 | |||
| 583 | // `<img>` element |
||
| 584 | $img = \sprintf( |
||
| 585 | '<img src="%s" width="' . ($asset['width'] ?: '') . '" height="' . ($asset['height'] ?: '') . '"%s>', |
||
| 586 | $this->url($context, $asset, $options), |
||
| 587 | $htmlAttributes |
||
| 588 | ); |
||
| 589 | |||
| 590 | // multiple formats (`<source>`)? |
||
| 591 | if (\count($formats) > 0) { |
||
| 592 | $source = ''; |
||
| 593 | foreach ($formats as $format) { |
||
| 594 | try { |
||
| 595 | $assetConverted = $asset->convert($format); |
||
| 596 | // if responsive is enabled |
||
| 597 | if ($responsive && $srcset = Image::buildHtmlSrcset($assetConverted, $this->config->getAssetsImagesWidths())) { |
||
| 598 | // `<source>` element |
||
| 599 | $source .= \sprintf( |
||
| 600 | "\n <source type=\"image/$format\" srcset=\"%s\" sizes=\"%s\">", |
||
| 601 | $srcset, |
||
| 602 | $sizes |
||
| 603 | ); |
||
| 604 | continue; |
||
| 605 | } |
||
| 606 | // `<source>` element |
||
| 607 | $source .= \sprintf("\n <source type=\"image/$format\" srcset=\"%s\">", $assetConverted); |
||
| 608 | } catch (\Exception $e) { |
||
| 609 | $this->builder->getLogger()->error($e->getMessage()); |
||
| 610 | continue; |
||
| 611 | } |
||
| 612 | } |
||
| 613 | // put `<source>` in `<picture>` |
||
| 614 | if (!empty($source)) { |
||
| 615 | return \sprintf("<picture>%s\n %s\n</picture>", $source, $img); |
||
| 616 | } |
||
| 617 | } |
||
| 618 | |||
| 619 | return $img; |
||
| 620 | } |
||
| 621 | |||
| 622 | throw new RuntimeException(\sprintf('%s is available for CSS, JavaScript and images files only.', '"html" filter')); |
||
| 623 | } |
||
| 624 | |||
| 625 | /** |
||
| 626 | * Builds the HTML img `srcset` (responsive) attribute of an image Asset. |
||
| 627 | * |
||
| 628 | * @throws RuntimeException |
||
| 629 | */ |
||
| 630 | public function imageSrcset(Asset $asset): string |
||
| 631 | { |
||
| 632 | return Image::buildHtmlSrcset($asset, $this->config->getAssetsImagesWidths(), true); |
||
| 633 | } |
||
| 634 | |||
| 635 | /** |
||
| 636 | * Returns the HTML img `sizes` attribute based on a CSS class name. |
||
| 637 | */ |
||
| 638 | public function imageSizes(string $class): string |
||
| 639 | { |
||
| 640 | return Image::getHtmlSizes($class, $this->config->getAssetsImagesSizes()); |
||
| 641 | } |
||
| 642 | |||
| 643 | /** |
||
| 644 | * Converts an image Asset to WebP format. |
||
| 645 | */ |
||
| 646 | public function webp(Asset $asset, ?int $quality = null): Asset |
||
| 647 | { |
||
| 648 | return $this->convert($asset, 'webp', $quality); |
||
| 649 | } |
||
| 650 | |||
| 651 | /** |
||
| 652 | * Converts an image Asset to AVIF format. |
||
| 653 | */ |
||
| 654 | public function avif(Asset $asset, ?int $quality = null): Asset |
||
| 655 | { |
||
| 656 | return $this->convert($asset, 'avif', $quality); |
||
| 657 | } |
||
| 658 | |||
| 659 | /** |
||
| 660 | * Converts an image Asset to the given format. |
||
| 661 | * |
||
| 662 | * @throws RuntimeException |
||
| 663 | */ |
||
| 664 | private function convert(Asset $asset, string $format, ?int $quality = null): Asset |
||
| 677 | } |
||
| 678 | } |
||
| 679 | |||
| 680 | /** |
||
| 681 | * Returns the content of an asset. |
||
| 682 | */ |
||
| 683 | public function inline(Asset $asset): string |
||
| 684 | { |
||
| 685 | return $asset['content']; |
||
| 686 | } |
||
| 687 | |||
| 688 | /** |
||
| 689 | * Reads $length first characters of a string and adds a suffix. |
||
| 690 | */ |
||
| 691 | public function excerpt(?string $string, int $length = 450, string $suffix = ' …'): string |
||
| 692 | { |
||
| 693 | $string = $string ?? ''; |
||
| 694 | |||
| 695 | $string = str_replace('</p>', '<br><br>', $string); |
||
| 696 | $string = trim(strip_tags($string, '<br>')); |
||
| 697 | if (mb_strlen($string) > $length) { |
||
| 698 | $string = mb_substr($string, 0, $length); |
||
| 699 | $string .= $suffix; |
||
| 700 | } |
||
| 701 | |||
| 702 | return $string; |
||
| 703 | } |
||
| 704 | |||
| 705 | /** |
||
| 706 | * Reads characters before or after '<!-- separator -->'. |
||
| 707 | * Options: |
||
| 708 | * - separator: string to use as separator (`excerpt|break` by default) |
||
| 709 | * - capture: part to capture, `before` or `after` the separator (`before` by default). |
||
| 710 | */ |
||
| 711 | public function excerptHtml(?string $string, array $options = []): string |
||
| 712 | { |
||
| 713 | $string = $string ?? ''; |
||
| 714 | |||
| 715 | $separator = (string) $this->config->get('pages.body.excerpt.separator'); |
||
| 716 | $capture = (string) $this->config->get('pages.body.excerpt.capture'); |
||
| 717 | extract($options, EXTR_IF_EXISTS); |
||
| 718 | |||
| 719 | // https://regex101.com/r/n9TWHF/1 |
||
| 720 | $pattern = '(.*)<!--[[:blank:]]?(' . $separator . ')[[:blank:]]?-->(.*)'; |
||
| 721 | preg_match('/' . $pattern . '/is', $string, $matches); |
||
| 722 | |||
| 723 | if (empty($matches)) { |
||
| 724 | return $string; |
||
| 725 | } |
||
| 726 | $result = trim($matches[1]); |
||
| 727 | if ($capture == 'after') { |
||
| 728 | $result = trim($matches[3]); |
||
| 729 | } |
||
| 730 | // removes footnotes and returns result |
||
| 731 | return preg_replace('/<sup[^>]*>[^u]*<\/sup>/', '', $result); |
||
| 732 | } |
||
| 733 | |||
| 734 | /** |
||
| 735 | * Converts a Markdown string to HTML. |
||
| 736 | * |
||
| 737 | * @throws RuntimeException |
||
| 738 | */ |
||
| 739 | public function markdownToHtml(?string $markdown): ?string |
||
| 740 | { |
||
| 741 | $markdown = $markdown ?? ''; |
||
| 742 | |||
| 743 | try { |
||
| 744 | $parsedown = new Parsedown($this->builder); |
||
| 745 | $html = $parsedown->text($markdown); |
||
| 746 | } catch (\Exception $e) { |
||
| 747 | throw new RuntimeException( |
||
| 748 | '"markdown_to_html" filter can not convert supplied Markdown.', |
||
| 749 | previous: $e |
||
| 750 | ); |
||
| 751 | } |
||
| 752 | |||
| 753 | return $html; |
||
| 754 | } |
||
| 755 | |||
| 756 | /** |
||
| 757 | * Extract table of content of a Markdown string, |
||
| 758 | * in the given format ("html" or "json", "html" by default). |
||
| 759 | * |
||
| 760 | * @throws RuntimeException |
||
| 761 | */ |
||
| 762 | public function markdownToToc(?string $markdown, $format = 'html', ?array $selectors = null, string $url = ''): ?string |
||
| 763 | { |
||
| 764 | $markdown = $markdown ?? ''; |
||
| 765 | $selectors = $selectors ?? (array) $this->config->get('pages.body.toc'); |
||
| 766 | |||
| 767 | try { |
||
| 768 | $parsedown = new Parsedown($this->builder, ['selectors' => $selectors, 'url' => $url]); |
||
| 769 | $parsedown->body($markdown); |
||
| 770 | $return = $parsedown->contentsList($format); |
||
| 771 | } catch (\Exception) { |
||
| 772 | throw new RuntimeException('"toc" filter can not convert supplied Markdown.'); |
||
| 773 | } |
||
| 774 | |||
| 775 | return $return; |
||
| 776 | } |
||
| 777 | |||
| 778 | /** |
||
| 779 | * Converts a JSON string to an array. |
||
| 780 | * |
||
| 781 | * @throws RuntimeException |
||
| 782 | */ |
||
| 783 | public function jsonDecode(?string $json): ?array |
||
| 784 | { |
||
| 785 | $json = $json ?? ''; |
||
| 786 | |||
| 787 | try { |
||
| 788 | $array = json_decode($json, true); |
||
| 789 | if ($array === null && json_last_error() !== JSON_ERROR_NONE) { |
||
| 790 | throw new \Exception('JSON error.'); |
||
| 791 | } |
||
| 792 | } catch (\Exception) { |
||
| 793 | throw new RuntimeException('"json_decode" filter can not parse supplied JSON.'); |
||
| 794 | } |
||
| 795 | |||
| 796 | return $array; |
||
| 797 | } |
||
| 798 | |||
| 799 | /** |
||
| 800 | * Converts a YAML string to an array. |
||
| 801 | * |
||
| 802 | * @throws RuntimeException |
||
| 803 | */ |
||
| 804 | public function yamlParse(?string $yaml): ?array |
||
| 805 | { |
||
| 806 | $yaml = $yaml ?? ''; |
||
| 807 | |||
| 808 | try { |
||
| 809 | $array = Yaml::parse($yaml, Yaml::PARSE_DATETIME); |
||
| 810 | if (!\is_array($array)) { |
||
| 811 | throw new ParseException('YAML error.'); |
||
| 812 | } |
||
| 813 | } catch (ParseException $e) { |
||
| 814 | throw new RuntimeException(\sprintf('"yaml_parse" filter can not parse supplied YAML: %s', $e->getMessage())); |
||
| 815 | } |
||
| 816 | |||
| 817 | return $array; |
||
| 818 | } |
||
| 819 | |||
| 820 | /** |
||
| 821 | * Split a string into an array using a regular expression. |
||
| 822 | * |
||
| 823 | * @throws RuntimeException |
||
| 824 | */ |
||
| 825 | public function pregSplit(?string $value, string $pattern, int $limit = 0): ?array |
||
| 826 | { |
||
| 827 | $value = $value ?? ''; |
||
| 828 | |||
| 829 | try { |
||
| 830 | $array = preg_split($pattern, $value, $limit); |
||
| 831 | if ($array === false) { |
||
| 832 | throw new RuntimeException('PREG split error.'); |
||
| 833 | } |
||
| 834 | } catch (\Exception) { |
||
| 835 | throw new RuntimeException('"preg_split" filter can not split supplied string.'); |
||
| 836 | } |
||
| 837 | |||
| 838 | return $array; |
||
| 839 | } |
||
| 840 | |||
| 841 | /** |
||
| 842 | * Perform a regular expression match and return the group for all matches. |
||
| 843 | * |
||
| 844 | * @throws RuntimeException |
||
| 845 | */ |
||
| 846 | public function pregMatchAll(?string $value, string $pattern, int $group = 0): ?array |
||
| 847 | { |
||
| 848 | $value = $value ?? ''; |
||
| 849 | |||
| 850 | try { |
||
| 851 | $array = preg_match_all($pattern, $value, $matches, PREG_PATTERN_ORDER); |
||
| 852 | if ($array === false) { |
||
| 853 | throw new RuntimeException('PREG match all error.'); |
||
| 854 | } |
||
| 855 | } catch (\Exception) { |
||
| 856 | throw new RuntimeException('"preg_match_all" filter can not match in supplied string.'); |
||
| 857 | } |
||
| 858 | |||
| 859 | return $matches[$group]; |
||
| 860 | } |
||
| 861 | |||
| 862 | /** |
||
| 863 | * Calculates estimated time to read a text. |
||
| 864 | */ |
||
| 865 | public function readtime(?string $text): string |
||
| 866 | { |
||
| 867 | $text = $text ?? ''; |
||
| 868 | |||
| 869 | $words = str_word_count(strip_tags($text)); |
||
| 870 | $min = floor($words / 200); |
||
| 871 | if ($min === 0) { |
||
| 872 | return '1'; |
||
| 873 | } |
||
| 874 | |||
| 875 | return (string) $min; |
||
| 876 | } |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Gets the value of an environment variable. |
||
| 880 | */ |
||
| 881 | public function getEnv(?string $var): ?string |
||
| 882 | { |
||
| 883 | $var = $var ?? ''; |
||
| 884 | |||
| 885 | return getenv($var) ?: null; |
||
| 886 | } |
||
| 887 | |||
| 888 | /** |
||
| 889 | * Dump variable (or Twig context). |
||
| 890 | */ |
||
| 891 | public function varDump(\Twig\Environment $env, array $context, $var = null, ?array $options = null): void |
||
| 892 | { |
||
| 893 | if (!$env->isDebug()) { |
||
| 894 | return; |
||
| 895 | } |
||
| 896 | |||
| 897 | if ($var === null) { |
||
| 898 | $var = array(); |
||
| 899 | foreach ($context as $key => $value) { |
||
| 900 | if (!$value instanceof \Twig\Template && !$value instanceof \Twig\TemplateWrapper) { |
||
| 901 | $var[$key] = $value; |
||
| 902 | } |
||
| 903 | } |
||
| 904 | } |
||
| 905 | |||
| 906 | $cloner = new VarCloner(); |
||
| 907 | $cloner->setMinDepth(3); |
||
| 908 | $dumper = new HtmlDumper(); |
||
| 909 | $dumper->setTheme($options['theme'] ?? 'light'); |
||
| 910 | |||
| 911 | $data = $cloner->cloneVar($var)->withMaxDepth(3); |
||
| 912 | $dumper->dump($data, null, ['maxDepth' => 3]); |
||
| 913 | } |
||
| 914 | |||
| 915 | /** |
||
| 916 | * Tests if a variable is an Asset. |
||
| 917 | */ |
||
| 918 | public function isAsset($variable): bool |
||
| 919 | { |
||
| 920 | return $variable instanceof Asset; |
||
| 921 | } |
||
| 922 | |||
| 923 | /** |
||
| 924 | * Tests if an image Asset is large enough to be used as a cover image. |
||
| 925 | * A large image is defined as having a width >= 600px and height >= 315px. |
||
| 926 | */ |
||
| 927 | public function isImageLarge(Asset $asset): bool |
||
| 928 | { |
||
| 929 | return $asset['type'] == 'image' && $asset['width'] > $asset['height'] && $asset['width'] >= 600 && $asset['height'] >= 315; |
||
| 930 | } |
||
| 931 | |||
| 932 | /** |
||
| 933 | * Tests if an image Asset is square. |
||
| 934 | * A square image is defined as having the same width and height. |
||
| 935 | */ |
||
| 936 | public function isImageSquare(Asset $asset): bool |
||
| 937 | { |
||
| 938 | return $asset['type'] == 'image' && $asset['width'] == $asset['height']; |
||
| 939 | } |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Returns the dominant hex color of an image asset. |
||
| 943 | * |
||
| 944 | * @param string|Asset $asset |
||
| 945 | * |
||
| 946 | * @return string |
||
| 947 | */ |
||
| 948 | public function dominantColor($asset): string |
||
| 949 | { |
||
| 950 | if (!$asset instanceof Asset) { |
||
| 951 | $asset = new Asset($this->builder, $asset); |
||
| 952 | } |
||
| 953 | |||
| 954 | return Image::getDominantColor($asset); |
||
| 955 | } |
||
| 956 | |||
| 957 | /** |
||
| 958 | * Returns a Low Quality Image Placeholder (LQIP) as data URL. |
||
| 959 | * |
||
| 960 | * @param string|Asset $asset |
||
| 961 | * |
||
| 962 | * @return string |
||
| 963 | */ |
||
| 964 | public function lqip($asset): string |
||
| 965 | { |
||
| 966 | if (!$asset instanceof Asset) { |
||
| 967 | $asset = new Asset($this->builder, $asset); |
||
| 968 | } |
||
| 969 | |||
| 970 | return Image::getLqip($asset); |
||
| 971 | } |
||
| 972 | |||
| 973 | /** |
||
| 974 | * Converts an hexadecimal color to RGB. |
||
| 975 | * |
||
| 976 | * @throws RuntimeException |
||
| 977 | */ |
||
| 978 | public function hexToRgb(?string $variable): array |
||
| 979 | { |
||
| 980 | $variable = $variable ?? ''; |
||
| 981 | |||
| 982 | if (!self::isHex($variable)) { |
||
| 983 | throw new RuntimeException(\sprintf('"%s" is not a valid hexadecimal value.', $variable)); |
||
| 984 | } |
||
| 985 | $hex = ltrim($variable, '#'); |
||
| 986 | if (\strlen($hex) == 3) { |
||
| 987 | $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
||
| 988 | } |
||
| 989 | $c = hexdec($hex); |
||
| 990 | |||
| 991 | return [ |
||
| 992 | 'red' => $c >> 16 & 0xFF, |
||
| 993 | 'green' => $c >> 8 & 0xFF, |
||
| 994 | 'blue' => $c & 0xFF, |
||
| 995 | ]; |
||
| 996 | } |
||
| 997 | |||
| 998 | /** |
||
| 999 | * Split a string in multiple lines. |
||
| 1000 | */ |
||
| 1001 | public function splitLine(?string $variable, int $max = 18): array |
||
| 1002 | { |
||
| 1003 | $variable = $variable ?? ''; |
||
| 1004 | |||
| 1005 | return preg_split("/.{0,{$max}}\K(\s+|$)/", $variable, 0, PREG_SPLIT_NO_EMPTY); |
||
| 1006 | } |
||
| 1007 | |||
| 1008 | /** |
||
| 1009 | * Hashing an object, an array or a string (with algo, md5 by default). |
||
| 1010 | */ |
||
| 1011 | public function hash(object|array|string $data, $algo = 'md5'): string |
||
| 1012 | { |
||
| 1013 | switch (\gettype($data)) { |
||
| 1014 | case 'object': |
||
| 1015 | return spl_object_hash($data); |
||
| 1016 | case 'array': |
||
| 1017 | return hash($algo, serialize($data)); |
||
| 1018 | } |
||
| 1019 | |||
| 1020 | return hash($algo, $data); |
||
| 1021 | } |
||
| 1022 | |||
| 1023 | /** |
||
| 1024 | * Converts a variable to an iterable (array). |
||
| 1025 | */ |
||
| 1026 | public function iterable($value): array |
||
| 1027 | { |
||
| 1028 | if (\is_array($value)) { |
||
| 1029 | return $value; |
||
| 1030 | } |
||
| 1031 | if (\is_string($value)) { |
||
| 1032 | return [$value]; |
||
| 1033 | } |
||
| 1034 | if ($value instanceof \Traversable) { |
||
| 1035 | return iterator_to_array($value); |
||
| 1036 | } |
||
| 1037 | if ($value instanceof \stdClass) { |
||
| 1038 | return (array) $value; |
||
| 1039 | } |
||
| 1040 | if (\is_object($value)) { |
||
| 1041 | return [$value]; |
||
| 1042 | } |
||
| 1043 | if (\is_int($value) || \is_float($value)) { |
||
| 1044 | return [$value]; |
||
| 1045 | } |
||
| 1046 | return [$value]; |
||
| 1047 | } |
||
| 1048 | |||
| 1049 | /** |
||
| 1050 | * Highlights a code snippet. |
||
| 1051 | */ |
||
| 1052 | public function highlight(string $code, string $language): string |
||
| 1055 | } |
||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * Returns an array with unique values. |
||
| 1059 | */ |
||
| 1060 | public function unique(array $array): array |
||
| 1061 | { |
||
| 1062 | return array_intersect_key($array, array_unique(array_map('strtolower', $array), SORT_STRING)); |
||
| 1063 | } |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * Is a hexadecimal color is valid? |
||
| 1067 | */ |
||
| 1068 | private static function isHex(string $hex): bool |
||
| 1069 | { |
||
| 1070 | $valid = \is_string($hex); |
||
| 1071 | $hex = ltrim($hex, '#'); |
||
| 1072 | $length = \strlen($hex); |
||
| 1073 | $valid = $valid && ($length === 3 || $length === 6); |
||
| 1074 | $valid = $valid && ctype_xdigit($hex); |
||
| 1075 | |||
| 1076 | return $valid; |
||
| 1077 | } |
||
| 1078 | } |
||
| 1079 |