Total Complexity | 70 |
Total Lines | 548 |
Duplicated Lines | 0 % |
Changes | 10 | ||
Bugs | 0 | Features | 0 |
Complex classes like Extension 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 Extension, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
31 | class Extension extends SlugifyExtension |
||
32 | { |
||
33 | /** @var Builder */ |
||
34 | protected $builder; |
||
35 | /** @var Config */ |
||
36 | protected $config; |
||
37 | /** @var Slugify */ |
||
38 | private static $slugifier; |
||
39 | |||
40 | /** |
||
41 | * @param Builder $builder |
||
42 | */ |
||
43 | public function __construct(Builder $builder) |
||
44 | { |
||
45 | if (!self::$slugifier instanceof Slugify) { |
||
46 | self::$slugifier = Slugify::create(['regexp' => Page::SLUGIFY_PATTERN]); |
||
47 | } |
||
48 | |||
49 | parent::__construct(self::$slugifier); |
||
50 | |||
51 | $this->builder = $builder; |
||
52 | $this->config = $this->builder->getConfig(); |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function getName() |
||
59 | { |
||
60 | return 'cecil'; |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function getFilters() |
||
67 | { |
||
68 | return [ |
||
69 | new \Twig\TwigFilter('filterBySection', [$this, 'filterBySection']), |
||
70 | new \Twig\TwigFilter('filterBy', [$this, 'filterBy']), |
||
71 | new \Twig\TwigFilter('sortByTitle', [$this, 'sortByTitle']), |
||
72 | new \Twig\TwigFilter('sortByWeight', [$this, 'sortByWeight']), |
||
73 | new \Twig\TwigFilter('sortByDate', [$this, 'sortByDate']), |
||
74 | new \Twig\TwigFilter('urlize', [$this, 'slugifyFilter']), |
||
75 | new \Twig\TwigFilter('url', [$this, 'createUrl']), |
||
76 | new \Twig\TwigFilter('minify', [$this, 'minify']), |
||
77 | new \Twig\TwigFilter('minifyCSS', [$this, 'minifyCss']), |
||
78 | new \Twig\TwigFilter('minifyJS', [$this, 'minifyJs']), |
||
79 | new \Twig\TwigFilter('SCSStoCSS', [$this, 'scssToCss']), |
||
80 | new \Twig\TwigFilter('excerpt', [$this, 'excerpt']), |
||
81 | new \Twig\TwigFilter('excerptHtml', [$this, 'excerptHtml']), |
||
82 | new \Twig\TwigFilter('resize', [$this, 'resize']), |
||
83 | ]; |
||
84 | } |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | public function getFunctions() |
||
90 | { |
||
91 | return [ |
||
92 | new \Twig\TwigFunction('url', [$this, 'createUrl']), |
||
93 | new \Twig\TwigFunction('minify', [$this, 'minify']), |
||
94 | new \Twig\TwigFunction('readtime', [$this, 'readtime']), |
||
95 | new \Twig\TwigFunction('toCSS', [$this, 'toCss']), |
||
96 | new \Twig\TwigFunction('hash', [$this, 'hashFile']), |
||
97 | new \Twig\TwigFunction('getenv', [$this, 'getEnv']), |
||
98 | new \Twig\TwigFunction('asset', [$this, 'asset']), |
||
99 | ]; |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * Filters by Section. |
||
104 | * |
||
105 | * Alias of `filterBy('section', $value)`. |
||
106 | * |
||
107 | * @param PagesCollection $pages |
||
108 | * @param string $section |
||
109 | * |
||
110 | * @return CollectionInterface |
||
111 | */ |
||
112 | public function filterBySection(PagesCollection $pages, string $section): CollectionInterface |
||
113 | { |
||
114 | return $this->filterBy($pages, 'section', $section); |
||
115 | } |
||
116 | |||
117 | /** |
||
118 | * Filters by variable's name/value. |
||
119 | * |
||
120 | * @param PagesCollection $pages |
||
121 | * @param string $variable |
||
122 | * @param string $value |
||
123 | * |
||
124 | * @return CollectionInterface |
||
125 | */ |
||
126 | public function filterBy(PagesCollection $pages, string $variable, string $value): CollectionInterface |
||
127 | { |
||
128 | $filteredPages = $pages->filter(function (Page $page) use ($variable, $value) { |
||
129 | $notVirtual = false; |
||
130 | if (!$page->isVirtual()) { |
||
131 | $notVirtual = true; |
||
132 | } |
||
133 | // is a dedicated getter exists? |
||
134 | $method = 'get'.ucfirst($variable); |
||
135 | if (method_exists($page, $method) && $page->$method() == $value) { |
||
136 | return $notVirtual && true; |
||
137 | } |
||
138 | if ($page->getVariable($variable) == $value) { |
||
139 | return $notVirtual && true; |
||
140 | } |
||
141 | }); |
||
142 | |||
143 | return $filteredPages; |
||
144 | } |
||
145 | |||
146 | /** |
||
147 | * Sorts by title. |
||
148 | * |
||
149 | * @param \Traversable $collection |
||
150 | * |
||
151 | * @return array |
||
152 | */ |
||
153 | public function sortByTitle(\Traversable $collection): array |
||
154 | { |
||
155 | $collection = iterator_to_array($collection); |
||
156 | array_multisort(array_keys($collection), SORT_NATURAL | SORT_FLAG_CASE, $collection); |
||
1 ignored issue
–
show
|
|||
157 | |||
158 | return $collection; |
||
159 | } |
||
160 | |||
161 | /** |
||
162 | * Sorts by weight. |
||
163 | * |
||
164 | * @param \Traversable $collection |
||
165 | * |
||
166 | * @return array |
||
167 | */ |
||
168 | public function sortByWeight(\Traversable $collection): array |
||
169 | { |
||
170 | $callback = function ($a, $b) { |
||
171 | if (!isset($a['weight'])) { |
||
172 | return 1; |
||
173 | } |
||
174 | if (!isset($b['weight'])) { |
||
175 | return -1; |
||
176 | } |
||
177 | if ($a['weight'] == $b['weight']) { |
||
178 | return 0; |
||
179 | } |
||
180 | |||
181 | return ($a['weight'] < $b['weight']) ? -1 : 1; |
||
182 | }; |
||
183 | |||
184 | $collection = iterator_to_array($collection); |
||
185 | usort($collection, $callback); |
||
186 | |||
187 | return $collection; |
||
188 | } |
||
189 | |||
190 | /** |
||
191 | * Sorts by date. |
||
192 | * |
||
193 | * @param \Traversable $collection |
||
194 | * |
||
195 | * @return array |
||
196 | */ |
||
197 | public function sortByDate(\Traversable $collection): array |
||
217 | } |
||
218 | |||
219 | /** |
||
220 | * Creates an URL. |
||
221 | * |
||
222 | * $options[ |
||
223 | * 'canonical' => null, |
||
224 | * 'addhash' => true, |
||
225 | * 'format' => 'json', |
||
226 | * ]; |
||
227 | * |
||
228 | * @param Page|string|null $value |
||
229 | * @param array|bool|null $options |
||
230 | * |
||
231 | * @return string|null |
||
232 | */ |
||
233 | public function createUrl($value = null, $options = null): ?string |
||
316 | } |
||
317 | |||
318 | /** |
||
319 | * Manages assets (CSS, JS and images). |
||
320 | * |
||
321 | * @param string $path File path (relative from static/ dir). |
||
322 | * @param array|null $options |
||
323 | * |
||
324 | * @return Asset |
||
325 | */ |
||
326 | public function asset(string $path, array $options = null): Asset |
||
329 | } |
||
330 | |||
331 | /** |
||
332 | * Minifying an asset (CSS or JS). |
||
333 | * ie: minify('css/style.css'). |
||
334 | * |
||
335 | * @param string|Asset $asset |
||
336 | * |
||
337 | * @throws Exception |
||
338 | * |
||
339 | * @return Asset |
||
340 | */ |
||
341 | public function minify($asset): Asset |
||
378 | } |
||
379 | |||
380 | /** |
||
381 | * Compiles a SCSS asset. |
||
382 | * |
||
383 | * @param string|Asset $path |
||
384 | * |
||
385 | * @throws Exception |
||
386 | * |
||
387 | * @return Asset |
||
388 | */ |
||
389 | public function toCss($asset): Asset |
||
435 | } |
||
436 | |||
437 | /** |
||
438 | * Resizes an image. |
||
439 | * |
||
440 | * @param string $path Image path (relative from static/ dir or external). |
||
441 | * @param int $size Image new size (width). |
||
442 | * |
||
443 | * @return string |
||
444 | */ |
||
445 | public function resize(string $path, int $size): string |
||
446 | { |
||
447 | return (new Image($this->builder))->resize($path, $size); |
||
448 | } |
||
449 | |||
450 | /** |
||
451 | * Hashing an asset with sha384. |
||
452 | * Useful for SRI (Subresource Integrity). |
||
453 | * |
||
454 | * @see https://developer.mozilla.org/fr/docs/Web/Security/Subresource_Integrity |
||
455 | * |
||
456 | * @param string|Asset $path |
||
457 | * |
||
458 | * @return string|null |
||
459 | */ |
||
460 | public function hashFile($asset): ?string |
||
461 | { |
||
462 | if (!$asset instanceof Asset) { |
||
463 | $asset = new Asset($this->builder, $asset); |
||
464 | } |
||
465 | |||
466 | return sprintf('sha384-%s', base64_encode(hash('sha384', $asset['content'], true))); |
||
467 | } |
||
468 | |||
469 | /** |
||
470 | * Minifying a CSS string. |
||
471 | * |
||
472 | * @param string $value |
||
473 | * |
||
474 | * @return string |
||
475 | */ |
||
476 | public function minifyCss(string $value): string |
||
477 | { |
||
478 | $minifier = new Minify\CSS($value); |
||
479 | |||
480 | return $minifier->minify(); |
||
481 | } |
||
482 | |||
483 | /** |
||
484 | * Minifying a JavaScript string. |
||
485 | * |
||
486 | * @param string $value |
||
487 | * |
||
488 | * @return string |
||
489 | */ |
||
490 | public function minifyJs(string $value): string |
||
491 | { |
||
492 | $minifier = new Minify\JS($value); |
||
493 | |||
494 | return $minifier->minify(); |
||
495 | } |
||
496 | |||
497 | /** |
||
498 | * Compiles a SCSS string. |
||
499 | * |
||
500 | * @param string $value |
||
501 | * |
||
502 | * @return string |
||
503 | */ |
||
504 | public function scssToCss(string $value): string |
||
505 | { |
||
506 | $scss = new Compiler(); |
||
507 | |||
508 | return $scss->compile($value); |
||
509 | } |
||
510 | |||
511 | /** |
||
512 | * Reads $length first characters of a string and adds a suffix. |
||
513 | * |
||
514 | * @param string|null $string |
||
515 | * @param int $length |
||
516 | * @param string $suffix |
||
517 | * |
||
518 | * @return string|null |
||
519 | */ |
||
520 | public function excerpt(string $string = null, int $length = 450, string $suffix = ' …'): ?string |
||
521 | { |
||
522 | $string = str_replace('</p>', '<br /><br />', $string); |
||
523 | $string = trim(strip_tags($string, '<br>'), '<br />'); |
||
524 | if (mb_strlen($string) > $length) { |
||
525 | $string = mb_substr($string, 0, $length); |
||
526 | $string .= $suffix; |
||
527 | } |
||
528 | |||
529 | return $string; |
||
530 | } |
||
531 | |||
532 | /** |
||
533 | * Reads characters before '<!-- excerpt|break -->'. |
||
534 | * |
||
535 | * @param string|null $string |
||
536 | * |
||
537 | * @return string|null |
||
538 | */ |
||
539 | public function excerptHtml(string $string = null): ?string |
||
540 | { |
||
541 | // https://regex101.com/r/Xl7d5I/3 |
||
542 | $pattern = '(.*)(<!--[[:blank:]]?(excerpt|break)[[:blank:]]?-->)(.*)'; |
||
543 | preg_match('/'.$pattern.'/is', $string, $matches); |
||
544 | if (empty($matches)) { |
||
545 | return $string; |
||
546 | } |
||
547 | |||
548 | return trim($matches[1]); |
||
549 | } |
||
550 | |||
551 | /** |
||
552 | * Calculates estimated time to read a text. |
||
553 | * |
||
554 | * @param string|null $text |
||
555 | * |
||
556 | * @return string |
||
557 | */ |
||
558 | public function readtime(string $text = null): string |
||
559 | { |
||
560 | $words = str_word_count(strip_tags($text)); |
||
561 | $min = floor($words / 200); |
||
562 | if ($min === 0) { |
||
563 | return '1'; |
||
564 | } |
||
565 | |||
566 | return (string) $min; |
||
567 | } |
||
568 | |||
569 | /** |
||
570 | * Gets the value of an environment variable. |
||
571 | * |
||
572 | * @param string $var |
||
573 | * |
||
574 | * @return string|null |
||
575 | */ |
||
576 | public function getEnv(string $var): ?string |
||
579 | } |
||
580 | } |
||
581 |