2016-04-30 12:16:06 -04:00
|
|
|
<?php namespace BookStack;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
|
2015-08-16 09:51:45 -04:00
|
|
|
class Page extends Entity
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2016-03-25 10:41:15 -04:00
|
|
|
protected $fillable = ['name', 'html', 'priority', 'markdown'];
|
2015-07-12 16:31:15 -04:00
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
protected $simpleAttributes = ['name', 'id', 'slug'];
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Converts this page into a simplified array.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-07-20 17:05:26 -04:00
|
|
|
public function toSimpleArray()
|
|
|
|
{
|
|
|
|
$array = array_intersect_key($this->toArray(), array_flip($this->simpleAttributes));
|
|
|
|
$array['url'] = $this->getUrl();
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Get the book this page sits in.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function book()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(Book::class);
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Get the chapter that this page is in, If applicable.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function chapter()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(Chapter::class);
|
2015-07-30 17:27:35 -04:00
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Check if this page has a chapter.
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function hasChapter()
|
|
|
|
{
|
|
|
|
return $this->chapter()->count() > 0;
|
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Get the associated page revisions, ordered by created date.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function revisions()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->hasMany(PageRevision::class)->where('type', '=', 'version')->orderBy('created_at', 'desc');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Get the url for this page.
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function getUrl()
|
|
|
|
{
|
2015-11-26 18:45:04 -05:00
|
|
|
$bookSlug = $this->getAttribute('bookSlug') ? $this->getAttribute('bookSlug') : $this->book->slug;
|
2016-03-13 08:04:08 -04:00
|
|
|
$midText = $this->draft ? '/draft/' : '/page/';
|
|
|
|
$idComponent = $this->draft ? $this->id : $this->slug;
|
|
|
|
return '/books/' . $bookSlug . $midText . $idComponent;
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
|
|
|
* Get an excerpt of this page's content to the specified length.
|
|
|
|
* @param int $length
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function getExcerpt($length = 100)
|
|
|
|
{
|
2016-02-21 08:15:46 -05:00
|
|
|
$text = strlen($this->text) > $length ? substr($this->text, 0, $length-3) . '...' : $this->text;
|
|
|
|
return mb_convert_encoding($text, 'UTF-8');
|
2015-07-30 17:27:35 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|