2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Models;
|
2015-07-28 03:17:08 +08:00
|
|
|
|
2024-01-02 04:58:49 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2021-10-31 04:29:59 +08:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2021-11-06 08:32:01 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2019-10-05 19:55:01 +08:00
|
|
|
use Illuminate\Support\Collection;
|
2019-09-20 07:18:28 +08:00
|
|
|
|
2019-10-05 19:55:01 +08:00
|
|
|
/**
|
2021-06-26 23:23:15 +08:00
|
|
|
* Class Chapter.
|
|
|
|
*
|
2019-10-05 19:55:01 +08:00
|
|
|
* @property Collection<Page> $pages
|
2024-01-02 04:58:49 +08:00
|
|
|
* @property ?int $default_template_id
|
|
|
|
* @property ?Page $defaultTemplate
|
2019-10-05 19:55:01 +08:00
|
|
|
*/
|
2019-09-20 07:18:28 +08:00
|
|
|
class Chapter extends BookChild
|
2015-07-28 03:17:08 +08:00
|
|
|
{
|
2021-10-31 04:29:59 +08:00
|
|
|
use HasFactory;
|
2023-12-17 23:02:15 +08:00
|
|
|
use HasHtmlDescription;
|
2021-10-31 04:29:59 +08:00
|
|
|
|
2023-12-19 00:23:40 +08:00
|
|
|
public float $searchFactor = 1.2;
|
2018-03-25 02:46:31 +08:00
|
|
|
|
2021-12-19 23:40:52 +08:00
|
|
|
protected $fillable = ['name', 'description', 'priority'];
|
2023-12-21 21:23:52 +08:00
|
|
|
protected $hidden = ['pivot', 'deleted_at', 'description_html'];
|
2015-07-28 03:17:08 +08:00
|
|
|
|
2016-05-02 04:20:50 +08:00
|
|
|
/**
|
|
|
|
* Get the pages that this chapter contains.
|
2021-11-24 04:41:12 +08:00
|
|
|
*
|
2021-11-23 07:33:55 +08:00
|
|
|
* @return HasMany<Page>
|
2016-05-02 04:20:50 +08:00
|
|
|
*/
|
2021-11-06 08:32:01 +08:00
|
|
|
public function pages(string $dir = 'ASC'): HasMany
|
2015-07-28 03:17:08 +08:00
|
|
|
{
|
2017-01-02 19:07:27 +08:00
|
|
|
return $this->hasMany(Page::class)->orderBy('priority', $dir);
|
2015-07-28 03:17:08 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 04:20:50 +08:00
|
|
|
/**
|
|
|
|
* Get the url of this chapter.
|
|
|
|
*/
|
2021-11-06 08:32:01 +08:00
|
|
|
public function getUrl(string $path = ''): string
|
2015-07-28 03:17:08 +08:00
|
|
|
{
|
2020-11-22 09:20:38 +08:00
|
|
|
$parts = [
|
|
|
|
'books',
|
2021-08-22 02:58:19 +08:00
|
|
|
urlencode($this->book_slug ?? $this->book->slug),
|
2020-11-22 09:20:38 +08:00
|
|
|
'chapter',
|
|
|
|
urlencode($this->slug),
|
|
|
|
trim($path, '/'),
|
|
|
|
];
|
|
|
|
|
|
|
|
return url('/' . implode('/', $parts));
|
2015-07-31 05:27:35 +08:00
|
|
|
}
|
|
|
|
|
2024-01-02 04:58:49 +08:00
|
|
|
/**
|
|
|
|
* Get the Page that is used as default template for newly created pages within this Chapter.
|
|
|
|
*/
|
|
|
|
public function defaultTemplate(): BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Page::class, 'default_template_id');
|
|
|
|
}
|
|
|
|
|
2019-03-17 23:07:03 +08:00
|
|
|
/**
|
2019-10-05 19:55:01 +08:00
|
|
|
* Get the visible pages in this chapter.
|
2019-03-17 23:07:03 +08:00
|
|
|
*/
|
2019-10-05 19:55:01 +08:00
|
|
|
public function getVisiblePages(): Collection
|
2019-03-17 23:07:03 +08:00
|
|
|
{
|
2021-11-23 07:33:55 +08:00
|
|
|
return $this->pages()
|
|
|
|
->scopes('visible')
|
2019-10-05 19:55:01 +08:00
|
|
|
->orderBy('draft', 'desc')
|
|
|
|
->orderBy('priority', 'asc')
|
|
|
|
->get();
|
2019-03-17 23:07:03 +08:00
|
|
|
}
|
2022-10-09 23:36:03 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a visible chapter by its book and page slugs.
|
|
|
|
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
|
|
|
|
*/
|
|
|
|
public static function getBySlugs(string $bookSlug, string $chapterSlug): self
|
|
|
|
{
|
|
|
|
return static::visible()->whereSlugs($bookSlug, $chapterSlug)->firstOrFail();
|
|
|
|
}
|
2015-07-28 03:17:08 +08:00
|
|
|
}
|