2015-04-22 18:24:10 +02:00
|
|
|
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
|
2017-06-06 23:16:45 +02:00
|
|
|
use RuntimeException;
|
2016-07-28 00:14:26 +02:00
|
|
|
use Webuni\FrontMatter\FrontMatter;
|
|
|
|
|
2016-07-29 22:38:03 +02:00
|
|
|
class Content extends ContentAbstract
|
2015-04-23 00:32:30 +02:00
|
|
|
{
|
2015-11-11 00:09:47 +01:00
|
|
|
/** @var string */
|
2015-07-17 23:38:06 +02:00
|
|
|
protected $content;
|
2015-04-22 18:24:10 +02:00
|
|
|
|
2015-11-11 00:09:47 +01:00
|
|
|
/** @var Content */
|
2015-10-28 00:18:29 +01:00
|
|
|
protected $previous;
|
|
|
|
|
2015-11-11 00:09:47 +01:00
|
|
|
/** @var Content */
|
2015-10-28 00:18:29 +01:00
|
|
|
protected $next;
|
|
|
|
|
2015-11-11 00:09:47 +01:00
|
|
|
/** @var array */
|
|
|
|
protected $attributes;
|
|
|
|
|
2016-04-28 23:33:26 +02:00
|
|
|
/** @var bool */
|
|
|
|
protected $manuallySetContent = false;
|
|
|
|
|
2017-06-06 23:16:45 +02:00
|
|
|
protected function getFrontMatter()
|
2015-07-17 23:38:06 +02:00
|
|
|
{
|
2017-06-06 23:16:45 +02:00
|
|
|
if ($this->manuallySetContent) {
|
|
|
|
$content = $this->content;
|
|
|
|
} else if (!$this->getPath()) {
|
|
|
|
throw new RuntimeException("Empty content");
|
|
|
|
} else {
|
|
|
|
$content = file_get_contents($this->getPath());
|
2015-07-17 23:38:06 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:16:45 +02:00
|
|
|
$frontMatter = new FrontMatter();
|
|
|
|
|
|
|
|
if (substr($content, 0, 3) == "\xef\xbb\xbf") {
|
|
|
|
$content = substr($content, 3);
|
2015-11-11 00:09:47 +01:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:16:45 +02:00
|
|
|
return $frontMatter->parse($content);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getContent()
|
|
|
|
{
|
|
|
|
return $this->getFrontMatter()->getContent();
|
2015-07-17 23:38:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $content
|
|
|
|
*/
|
|
|
|
public function setContent($content)
|
|
|
|
{
|
2016-04-28 23:33:26 +02:00
|
|
|
$this->manuallySetContent = true;
|
2015-07-17 23:38:06 +02:00
|
|
|
$this->content = $content;
|
|
|
|
}
|
2015-10-28 00:18:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Content
|
|
|
|
*/
|
|
|
|
public function getPrevious()
|
|
|
|
{
|
|
|
|
return $this->previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Content $previous
|
|
|
|
*/
|
|
|
|
public function setPrevious($previous)
|
|
|
|
{
|
|
|
|
$this->previous = $previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Content
|
|
|
|
*/
|
|
|
|
public function getNext()
|
|
|
|
{
|
|
|
|
return $this->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Content $next
|
|
|
|
*/
|
|
|
|
public function setNext($next)
|
|
|
|
{
|
|
|
|
$this->next = $next;
|
|
|
|
}
|
|
|
|
|
2015-11-06 22:44:34 +01:00
|
|
|
public function isIndex()
|
|
|
|
{
|
2016-01-31 11:59:35 +01:00
|
|
|
// At some point, it was recommended that
|
|
|
|
// an index page starts with an underscore.
|
|
|
|
// This is not mandatory anymore, both with
|
|
|
|
// and without underscore are supported.
|
2015-11-06 22:44:34 +01:00
|
|
|
return $this->name == 'index' || $this->name == '_index';
|
|
|
|
}
|
|
|
|
|
2015-11-11 00:09:47 +01:00
|
|
|
public function getTitle()
|
|
|
|
{
|
|
|
|
if ($title = $this->getAttribute('title')) {
|
|
|
|
return $title;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function parseAttributes()
|
|
|
|
{
|
|
|
|
// We set an empty array first to
|
|
|
|
// avoid a loop when "parseAttributes"
|
|
|
|
// is called in "getContent"
|
|
|
|
$this->attributes = [];
|
|
|
|
|
2017-06-06 23:16:45 +02:00
|
|
|
$document = $this->getFrontMatter();
|
2016-07-28 00:14:26 +02:00
|
|
|
$this->attributes = array_replace_recursive($this->attributes, $document->getData());
|
2015-11-11 00:09:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setAttributes(array $attributes)
|
|
|
|
{
|
|
|
|
$this->attributes = $attributes;
|
|
|
|
}
|
|
|
|
|
2017-06-07 23:40:12 +02:00
|
|
|
/**
|
|
|
|
* Get one or all attributes for the content
|
|
|
|
*
|
|
|
|
* @param string|null $key
|
|
|
|
* @return array|mixed|null
|
|
|
|
*/
|
2015-11-11 00:09:47 +01:00
|
|
|
public function getAttribute($key = null)
|
|
|
|
{
|
|
|
|
if ($this->attributes === null) {
|
|
|
|
$this->parseAttributes();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($key)) {
|
|
|
|
return $this->attributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!array_key_exists($key, $this->attributes)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->attributes[$key];
|
|
|
|
}
|
|
|
|
|
2015-10-28 00:18:29 +01:00
|
|
|
public function dump()
|
|
|
|
{
|
|
|
|
$dump = parent::dump();
|
|
|
|
|
|
|
|
$dump['prev'] = $this->getPrevious() ? $this->getPrevious()->getUrl() : '';
|
|
|
|
$dump['next'] = $this->getNext() ? $this->getNext()->getUrl() : '';
|
|
|
|
|
|
|
|
return $dump;
|
|
|
|
}
|
2015-04-22 18:24:10 +02:00
|
|
|
}
|