2015-07-12 20:01:42 +01:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 19:31:09 +01:00
|
|
|
namespace BookStack;
|
2015-07-12 20:01:42 +01:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2015-08-16 14:51:45 +01:00
|
|
|
class Page extends Entity
|
2015-07-12 20:01:42 +01:00
|
|
|
{
|
2015-07-12 21:31:15 +01:00
|
|
|
protected $fillable = ['name', 'html', 'priority'];
|
|
|
|
|
2015-07-20 22:05:26 +01:00
|
|
|
protected $simpleAttributes = ['name', 'id', 'slug'];
|
|
|
|
|
|
|
|
public function toSimpleArray()
|
|
|
|
{
|
|
|
|
$array = array_intersect_key($this->toArray(), array_flip($this->simpleAttributes));
|
|
|
|
$array['url'] = $this->getUrl();
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2015-07-12 21:31:15 +01:00
|
|
|
public function book()
|
|
|
|
{
|
2015-09-10 19:31:09 +01:00
|
|
|
return $this->belongsTo('BookStack\Book');
|
2015-07-12 21:31:15 +01:00
|
|
|
}
|
|
|
|
|
2015-07-30 22:27:35 +01:00
|
|
|
public function chapter()
|
|
|
|
{
|
2015-09-10 19:31:09 +01:00
|
|
|
return $this->belongsTo('BookStack\Chapter');
|
2015-07-30 22:27:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function hasChapter()
|
|
|
|
{
|
|
|
|
return $this->chapter()->count() > 0;
|
|
|
|
}
|
|
|
|
|
2015-08-09 12:06:52 +01:00
|
|
|
public function revisions()
|
|
|
|
{
|
2016-03-09 22:32:07 +00:00
|
|
|
return $this->hasMany('BookStack\PageRevision')->where('type', '=', 'version')->orderBy('created_at', 'desc');
|
2015-08-09 12:06:52 +01:00
|
|
|
}
|
|
|
|
|
2015-07-12 21:31:15 +01:00
|
|
|
public function getUrl()
|
|
|
|
{
|
2015-11-26 23:45:04 +00:00
|
|
|
$bookSlug = $this->getAttribute('bookSlug') ? $this->getAttribute('bookSlug') : $this->book->slug;
|
2016-03-13 12:04:08 +00:00
|
|
|
$midText = $this->draft ? '/draft/' : '/page/';
|
|
|
|
$idComponent = $this->draft ? $this->id : $this->slug;
|
|
|
|
return '/books/' . $bookSlug . $midText . $idComponent;
|
2015-07-12 21:31:15 +01:00
|
|
|
}
|
2015-07-20 22:05:26 +01:00
|
|
|
|
2015-07-30 22:27:35 +01:00
|
|
|
public function getExcerpt($length = 100)
|
|
|
|
{
|
2016-02-21 13:15:46 +00:00
|
|
|
$text = strlen($this->text) > $length ? substr($this->text, 0, $length-3) . '...' : $this->text;
|
|
|
|
return mb_convert_encoding($text, 'UTF-8');
|
2015-07-30 22:27:35 +01:00
|
|
|
}
|
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|