2018-09-25 12:30:50 +01:00
< ? php namespace BookStack\Entities ;
2015-07-27 20:17:08 +01:00
2019-09-20 00:18:28 +01:00
use Illuminate\Database\Eloquent\Relations\BelongsTo ;
class Chapter extends BookChild
2015-07-27 20:17:08 +01:00
{
2018-03-24 18:46:31 +00:00
public $searchFactor = 1.3 ;
2015-07-27 20:17:08 +01:00
protected $fillable = [ 'name' , 'description' , 'priority' , 'book_id' ];
2018-09-25 12:30:50 +01:00
/**
* Get the morph class for this model .
* @ return string
*/
public function getMorphClass ()
{
return 'BookStack\\Chapter' ;
}
2016-05-01 21:20:50 +01:00
/**
* Get the pages that this chapter contains .
2017-01-02 11:07:27 +00:00
* @ param string $dir
2016-05-01 21:20:50 +01:00
* @ return mixed
*/
2017-01-02 11:07:27 +00:00
public function pages ( $dir = 'ASC' )
2015-07-27 20:17:08 +01:00
{
2017-01-02 11:07:27 +00:00
return $this -> hasMany ( Page :: class ) -> orderBy ( 'priority' , $dir );
2015-07-27 20:17:08 +01:00
}
2016-05-01 21:20:50 +01:00
/**
* Get the url of this chapter .
2016-08-14 12:29:35 +01:00
* @ param string | bool $path
2016-05-01 21:20:50 +01:00
* @ return string
*/
2016-08-14 12:29:35 +01:00
public function getUrl ( $path = false )
2015-07-27 20:17:08 +01:00
{
2015-11-29 17:33:25 +00:00
$bookSlug = $this -> getAttribute ( 'bookSlug' ) ? $this -> getAttribute ( 'bookSlug' ) : $this -> book -> slug ;
2019-08-04 14:26:39 +01:00
$fullPath = '/books/' . urlencode ( $bookSlug ) . '/chapter/' . urlencode ( $this -> slug );
2016-08-14 12:29:35 +01:00
if ( $path !== false ) {
2019-08-04 14:26:39 +01:00
$fullPath .= '/' . trim ( $path , '/' );
2016-08-14 12:29:35 +01:00
}
2019-08-04 14:26:39 +01:00
return url ( $fullPath );
2015-07-27 20:17:08 +01:00
}
2016-05-01 21:20:50 +01:00
/**
* Get an excerpt of this chapter ' s description to the specified length or less .
* @ param int $length
* @ return string
*/
2019-03-17 15:07:03 +00:00
public function getExcerpt ( int $length = 100 )
2015-07-30 22:27:35 +01:00
{
2019-03-17 15:07:03 +00:00
$description = $this -> text ? ? $this -> description ;
2019-05-25 16:14:57 +01:00
return mb_strlen ( $description ) > $length ? mb_substr ( $description , 0 , $length - 3 ) . '...' : $description ;
2015-07-30 22:27:35 +01:00
}
2017-03-19 12:48:44 +00:00
/**
* Return a generalised , common raw query that can be 'unioned' across entities .
* @ return string
*/
public function entityRawQuery ()
{
return " 'BookStack \\ \\ Chapter' as entity_type, id, id as entity_id, slug, name, { $this -> textField } as text, '' as html, book_id, priority, '0' as chapter_id, '0' as draft, created_by, updated_by, updated_at, created_at " ;
}
2019-03-17 15:07:03 +00:00
/**
* Check if this chapter has any child pages .
* @ return bool
*/
public function hasChildren ()
{
return count ( $this -> pages ) > 0 ;
}
2015-07-27 20:17:08 +01:00
}