Passed
Push — master ( fda67a...b301ed )
by Arnaud
05:18
created

Page::getTerms()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
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\Collection\Page;
15
16
use Cecil\Collection\Item;
17
use Cecil\Exception\RuntimeException;
18
use Cecil\Util;
19
use Cocur\Slugify\Slugify;
20
use Symfony\Component\Finder\SplFileInfo;
21
22
/**
23
 * Class Page.
24
 */
25
class Page extends Item
26
{
27
    public const SLUGIFY_PATTERN = '/(^\/|[^._a-z0-9\/]|-)+/'; // should be '/^\/|[^_a-z0-9\/]+/'
28
29
    /** @var bool True if page is not created from a Markdown file. */
30
    protected $virtual;
31
32
    /** @var SplFileInfo */
33
    protected $file;
34
35
    /** @var string Homepage, Page, Section, etc. */
36
    protected $type;
37
38
    /** @var string */
39
    protected $folder;
40
41
    /** @var string */
42
    protected $slug;
43
44
    /** @var string folder + slug. */
45
    protected $path;
46
47
    /** @var string */
48
    protected $section;
49
50
    /** @var string */
51
    protected $frontmatter;
52
53
    /** @var array Front matter before conversion. */
54
    protected $fmVariables = [];
55
56
    /** @var string Body before conversion. */
57
    protected $body;
58
59
    /** @var string Body after Markdown conversion. */
60
    protected $html;
61
62
    /** @var array Output by format */
63
    protected $rendered = [];
64
65
    /** @var \Cecil\Collection\Page\Collection Subpages of a section */
66
    protected $subPages;
67
68
    /** @var array */
69
    protected $paginator = [];
70
71
    /** @var \Cecil\Collection\Taxonomy\Vocabulary Terms of a vocabulary */
72
    protected $terms;
73
74
    /** @var Slugify */
75
    private static $slugifier;
76
77 1
    public function __construct(string $id)
78
    {
79 1
        parent::__construct($id);
80 1
        $this->setVirtual(true);
81 1
        $this->setType(Type::PAGE);
82
        // default variables
83 1
        $this->setVariables([
84 1
            'title'            => 'Page Title',
85 1
            'date'             => new \DateTime(),
86 1
            'updated'          => new \DateTime(),
87 1
            'weight'           => null,
88 1
            'filepath'         => null,
89 1
            'published'        => true,
90 1
            'content_template' => 'page.content.twig',
91 1
        ]);
92
    }
93
94
    /**
95
     * Turns a path (string) into a slug (URI).
96
     */
97 1
    public static function slugify(string $path): string
98
    {
99 1
        if (!self::$slugifier instanceof Slugify) {
100 1
            self::$slugifier = Slugify::create(['regexp' => self::SLUGIFY_PATTERN]);
101
        }
102
103 1
        return self::$slugifier->slugify($path);
104
    }
105
106
    /**
107
     * Creates the ID from the file path.
108
     */
109 1
    public static function createIdFromFile(SplFileInfo $file): string
110
    {
111 1
        $relativePath = self::slugify(str_replace(DIRECTORY_SEPARATOR, '/', $file->getRelativePath()));
112 1
        $basename = self::slugify(PrefixSuffix::subPrefix($file->getBasename('.' . $file->getExtension())));
113
        // if file is "README.md", ID is "index"
114 1
        $basename = (string) str_ireplace('readme', 'index', $basename);
115
        // if file is section's index: "section/index.md", ID is "section"
116 1
        if (!empty($relativePath) && PrefixSuffix::sub($basename) == 'index') {
117
            // case of a localized section's index: "section/index.fr.md", ID is "fr/section"
118 1
            if (PrefixSuffix::hasSuffix($basename)) {
119 1
                return PrefixSuffix::getSuffix($basename) . '/' . $relativePath;
120
            }
121
122 1
            return $relativePath;
123
        }
124
        // localized page
125 1
        if (PrefixSuffix::hasSuffix($basename)) {
126 1
            return trim(Util::joinPath(PrefixSuffix::getSuffix($basename), $relativePath, PrefixSuffix::sub($basename)), '/');
127
        }
128
129 1
        return trim(Util::joinPath($relativePath, $basename), '/');
130
    }
131
132
    /**
133
     * Returns the ID of a page without language.
134
     */
135 1
    public function getIdWithoutLang(): string
136
    {
137 1
        $langPrefix = $this->getVariable('language') . '/';
138 1
        if ($this->hasVariable('language') && Util\Str::startsWith($this->getId(), $langPrefix)) {
139 1
            return substr($this->getId(), \strlen($langPrefix));
140
        }
141
142 1
        return $this->getId();
143
    }
144
145
    /**
146
     * Set file.
147
     */
148 1
    public function setFile(SplFileInfo $file): self
149
    {
150 1
        $this->setVirtual(false);
151 1
        $this->file = $file;
152
153
        /*
154
         * File path components
155
         */
156 1
        $fileRelativePath = str_replace(DIRECTORY_SEPARATOR, '/', $this->file->getRelativePath());
157 1
        $fileExtension = $this->file->getExtension();
158 1
        $fileName = $this->file->getBasename('.' . $fileExtension);
159
        // case of "README" -> "index"
160 1
        $fileName = (string) str_ireplace('readme', 'index', $fileName);
161
        // case of "index" = home page
162 1
        if (empty($this->file->getRelativePath()) && PrefixSuffix::sub($fileName) == 'index') {
163 1
            $this->setType(Type::HOMEPAGE);
164
        }
165
        /*
166
         * Set protected variables
167
         */
168 1
        $this->setFolder($fileRelativePath); // ie: "blog"
169 1
        $this->setSlug($fileName); // ie: "post-1"
170 1
        $this->setPath($this->getFolder() . '/' . $this->getSlug()); // ie: "blog/post-1"
171
        /*
172
         * Set default variables
173
         */
174 1
        $this->setVariables([
175 1
            'title'    => PrefixSuffix::sub($fileName),
176 1
            'date'     => (new \DateTime())->setTimestamp($this->file->getMTime()),
177 1
            'updated'  => (new \DateTime())->setTimestamp($this->file->getMTime()),
178 1
            'filepath' => $this->file->getRelativePathname(),
179 1
        ]);
180
        /*
181
         * Set specific variables
182
         */
183
        // is file has a prefix?
184 1
        if (PrefixSuffix::hasPrefix($fileName)) {
185 1
            $prefix = PrefixSuffix::getPrefix($fileName);
186 1
            if ($prefix !== null) {
187
                // prefix is a valid date?
188 1
                if (Util\Date::isValid($prefix)) {
189 1
                    $this->setVariable('date', (string) $prefix);
190
                } else {
191
                    // prefix is an integer: used for sorting
192 1
                    $this->setVariable('weight', (int) $prefix);
193
                }
194
            }
195
        }
196
        // is file has a language suffix?
197 1
        if (PrefixSuffix::hasSuffix($fileName)) {
198 1
            $this->setVariable('language', PrefixSuffix::getSuffix($fileName));
199
        }
200
        // set reference between page's translations, even if it exist in only one language
201 1
        $this->setVariable('langref', $this->getPath());
202
203 1
        return $this;
204
    }
205
206
    /**
207
     * Returns file real path.
208
     */
209 1
    public function getFilePath(): ?string
210
    {
211 1
        if ($this->file === null) {
212
            return null;
213
        }
214
215 1
        return $this->file->getRealPath() === false ? null : $this->file->getRealPath();
216
    }
217
218
    /**
219
     * Parse file content.
220
     */
221 1
    public function parse(): self
222
    {
223 1
        $parser = new Parser($this->file);
224 1
        $parsed = $parser->parse();
225 1
        $this->frontmatter = $parsed->getFrontmatter();
226 1
        $this->body = $parsed->getBody();
227
228 1
        return $this;
229
    }
230
231
    /**
232
     * Get front matter.
233
     */
234 1
    public function getFrontmatter(): ?string
235
    {
236 1
        return $this->frontmatter;
237
    }
238
239
    /**
240
     * Get body as raw.
241
     */
242 1
    public function getBody(): ?string
243
    {
244 1
        return $this->body;
245
    }
246
247
    /**
248
     * Set virtual status.
249
     */
250 1
    public function setVirtual(bool $virtual): self
251
    {
252 1
        $this->virtual = $virtual;
253
254 1
        return $this;
255
    }
256
257
    /**
258
     * Is current page is virtual?
259
     */
260 1
    public function isVirtual(): bool
261
    {
262 1
        return $this->virtual;
263
    }
264
265
    /**
266
     * Set page type.
267
     */
268 1
    public function setType(string $type): self
269
    {
270 1
        $this->type = new Type($type);
271
272 1
        return $this;
273
    }
274
275
    /**
276
     * Get page type.
277
     */
278 1
    public function getType(): string
279
    {
280 1
        return (string) $this->type;
281
    }
282
283
    /**
284
     * Set path without slug.
285
     */
286 1
    public function setFolder(string $folder): self
287
    {
288 1
        $this->folder = self::slugify($folder);
289
290 1
        return $this;
291
    }
292
293
    /**
294
     * Get path without slug.
295
     */
296 1
    public function getFolder(): ?string
297
    {
298 1
        return $this->folder;
299
    }
300
301
    /**
302
     * Set slug.
303
     */
304 1
    public function setSlug(string $slug): self
305
    {
306 1
        if (!$this->slug) {
307 1
            $slug = self::slugify(PrefixSuffix::sub($slug));
308
        }
309
        // force slug and update path
310 1
        if ($this->slug && $this->slug != $slug) {
311 1
            $this->setPath($this->getFolder() . '/' . $slug);
312
        }
313 1
        $this->slug = $slug;
314
315 1
        return $this;
316
    }
317
318
    /**
319
     * Get slug.
320
     */
321 1
    public function getSlug(): string
322
    {
323 1
        return $this->slug;
324
    }
325
326
    /**
327
     * Set path.
328
     */
329 1
    public function setPath(string $path): self
330
    {
331
        // case of homepage
332 1
        if ($path == 'index') {
333
            $this->path = '';
334
335
            return $this;
336
        }
337
338
        // case of custom sections' index (ie: content/section/index.md)
339 1
        if (substr($path, -6) == '/index') {
340 1
            $path = substr($path, 0, \strlen($path) - 6);
341
        }
342 1
        $this->path = $path;
343
344
        // case of root pages
345 1
        $lastslash = strrpos($this->path, '/');
346 1
        if ($lastslash === false) {
347 1
            $this->slug = $this->path;
348
349 1
            return $this;
350
        }
351
352 1
        if (!$this->virtual && $this->getSection() === null) {
353 1
            $this->section = explode('/', $this->path)[0];
354
        }
355 1
        $this->folder = substr($this->path, 0, $lastslash);
356 1
        $this->slug = substr($this->path, -(\strlen($this->path) - $lastslash - 1));
357
358 1
        return $this;
359
    }
360
361
    /**
362
     * Get path.
363
     */
364 1
    public function getPath(): ?string
365
    {
366 1
        return $this->path;
367
    }
368
369
    /**
370
     * @see getPath()
371
     */
372
    public function getPathname(): ?string
373
    {
374
        return $this->getPath();
375
    }
376
377
    /**
378
     * Set section.
379
     */
380 1
    public function setSection(string $section): self
381
    {
382 1
        $this->section = $section;
383
384 1
        return $this;
385
    }
386
387
    /**
388
     * Get section.
389
     */
390 1
    public function getSection(): ?string
391
    {
392 1
        return !empty($this->section) ? $this->section : null;
393
    }
394
395
    /**
396
     * Unset section.
397
     */
398
    public function unSection(): self
399
    {
400
        $this->section = null;
401
402
        return $this;
403
    }
404
405
    /**
406
     * Set body as HTML.
407
     */
408 1
    public function setBodyHtml(string $html): self
409
    {
410 1
        $this->html = $html;
411
412 1
        return $this;
413
    }
414
415
    /**
416
     * Get body as HTML.
417
     */
418 1
    public function getBodyHtml(): ?string
419
    {
420 1
        return $this->html;
421
    }
422
423
    /**
424
     * @see getBodyHtml()
425
     */
426 1
    public function getContent(): ?string
427
    {
428 1
        return $this->getBodyHtml();
429
    }
430
431
    /**
432
     * Add rendered.
433
     */
434 1
    public function addRendered(array $rendered): self
435
    {
436 1
        $this->rendered += $rendered;
437
438 1
        return $this;
439
    }
440
441
    /**
442
     * Get rendered.
443
     */
444 1
    public function getRendered(): array
445
    {
446 1
        return $this->rendered;
447
    }
448
449
    /**
450
     * Set Subpages.
451
     */
452 1
    public function setPages(\Cecil\Collection\Page\Collection $subPages): self
453
    {
454 1
        $this->subPages = $subPages;
455
456 1
        return $this;
457
    }
458
459
    /**
460
     * Get Subpages.
461
     */
462 1
    public function getPages(): ?\Cecil\Collection\Page\Collection
463
    {
464 1
        return $this->subPages;
465
    }
466
467
    /**
468
     * Set paginator.
469
     */
470 1
    public function setPaginator(array $paginator): self
471
    {
472 1
        $this->paginator = $paginator;
473
474 1
        return $this;
475
    }
476
477
    /**
478
     * Get paginator.
479
     */
480 1
    public function getPaginator(): array
481
    {
482 1
        return $this->paginator;
483
    }
484
485
    /**
486
     * Paginator backward compatibility.
487
     */
488
    public function getPagination(): array
489
    {
490
        return $this->getPaginator();
491
    }
492
493
    /**
494
     * Set vocabulary terms.
495
     */
496 1
    public function setTerms(\Cecil\Collection\Taxonomy\Vocabulary $terms): self
497
    {
498 1
        $this->terms = $terms;
499
500 1
        return $this;
501
    }
502
503
    /**
504
     * Get vocabulary terms.
505
     */
506 1
    public function getTerms(): \Cecil\Collection\Taxonomy\Vocabulary
507
    {
508 1
        return $this->terms;
509
    }
510
511
    /*
512
     * Helpers to set and get variables.
513
     */
514
515
    /**
516
     * Set an array as variables.
517
     *
518
     * @throws RuntimeException
519
     */
520 1
    public function setVariables(array $variables): self
521
    {
522 1
        foreach ($variables as $key => $value) {
523 1
            $this->setVariable($key, $value);
524
        }
525
526 1
        return $this;
527
    }
528
529
    /**
530
     * Get all variables.
531
     */
532 1
    public function getVariables(): array
533
    {
534 1
        return $this->properties;
535
    }
536
537
    /**
538
     * Set a variable.
539
     *
540
     * @param string $name  Name of the variable
541
     * @param mixed  $value Value of the variable
542
     *
543
     * @throws RuntimeException
544
     */
545 1
    public function setVariable(string $name, $value): self
546
    {
547 1
        $this->filterBool($value);
548
        switch ($name) {
549 1
            case 'date':
550 1
            case 'updated':
551 1
            case 'lastmod':
552
                try {
553 1
                    $date = Util\Date::toDatetime($value);
554
                } catch (\Exception $e) {
555
                    throw new \Exception(sprintf('Expected date format for variable "%s" must be "YYYY-MM-DD" instead of "%s".', $name, (string) $value));
556
                }
557 1
                $this->offsetSet($name == 'lastmod' ? 'updated' : $name, $date);
558 1
                break;
559
560 1
            case 'schedule':
561
                /*
562
                 * publish: 2012-10-08
563
                 * expiry: 2012-10-09
564
                 */
565 1
                $this->offsetSet('published', false);
566 1
                if (\is_array($value)) {
567 1
                    if (\array_key_exists('publish', $value) && Util\Date::toDatetime($value['publish']) <= Util\Date::toDatetime('now')) {
568 1
                        $this->offsetSet('published', true);
569
                    }
570 1
                    if (\array_key_exists('expiry', $value) && Util\Date::toDatetime($value['expiry']) >= Util\Date::toDatetime('now')) {
571
                        $this->offsetSet('published', true);
572
                    }
573
                }
574 1
                break;
575 1
            case 'draft':
576
                // draft: true = published: false
577 1
                if ($value === true) {
578 1
                    $this->offsetSet('published', false);
579
                }
580 1
                break;
581 1
            case 'path':
582 1
            case 'slug':
583 1
                $slugify = self::slugify((string) $value);
584 1
                if ($value != $slugify) {
585
                    throw new RuntimeException(sprintf('"%s" variable should be "%s" (not "%s") in "%s".', $name, $slugify, (string) $value, $this->getId()));
586
                }
587 1
                $method = 'set' . ucfirst($name);
588 1
                $this->$method($value);
589 1
                break;
590
            default:
591 1
                $this->offsetSet($name, $value);
592
        }
593
594 1
        return $this;
595
    }
596
597
    /**
598
     * Is variable exists?
599
     *
600
     * @param string $name Name of the variable
601
     */
602 1
    public function hasVariable(string $name): bool
603
    {
604 1
        return $this->offsetExists($name);
605
    }
606
607
    /**
608
     * Get a variable.
609
     *
610
     * @param string     $name    Name of the variable
611
     * @param mixed|null $default Default value
612
     *
613
     * @return mixed|null
614
     */
615 1
    public function getVariable(string $name, $default = null)
616
    {
617 1
        if ($this->offsetExists($name)) {
618 1
            return $this->offsetGet($name);
619
        }
620
621 1
        return $default;
622
    }
623
624
    /**
625
     * Unset a variable.
626
     *
627
     * @param string $name Name of the variable
628
     */
629 1
    public function unVariable(string $name): self
630
    {
631 1
        if ($this->offsetExists($name)) {
632 1
            $this->offsetUnset($name);
633
        }
634
635 1
        return $this;
636
    }
637
638
    /**
639
     * Set front matter (only) variables.
640
     */
641 1
    public function setFmVariables(array $variables): self
642
    {
643 1
        $this->fmVariables = $variables;
644
645 1
        return $this;
646
    }
647
648
    /**
649
     * Get front matter variables.
650
     */
651 1
    public function getFmVariables(): array
652
    {
653 1
        return $this->fmVariables;
654
    }
655
656
    /**
657
     * Cast "boolean" string (or array of strings) to boolean.
658
     *
659
     * @param mixed $value Value to filter
660
     *
661
     * @return bool|mixed
662
     *
663
     * @see strToBool()
664
     */
665 1
    private function filterBool(&$value)
666
    {
667 1
        \Cecil\Util\Str::strToBool($value);
668 1
        if (\is_array($value)) {
669 1
            array_walk_recursive($value, '\Cecil\Util\Str::strToBool');
670
        }
671
    }
672
673
    /**
674
     * {@inheritdoc}
675
     */
676 1
    public function setId(string $id): self
677
    {
678 1
        return parent::setId($id);
679
    }
680
}
681