2021-06-26 15:23:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Models;
|
2018-09-25 12:30:50 +01:00
|
|
|
|
2020-11-28 15:21:54 +00:00
|
|
|
use BookStack\Entities\Tools\PageContent;
|
2023-05-17 17:56:55 +01:00
|
|
|
use BookStack\Permissions\PermissionApplicator;
|
2018-09-25 12:30:50 +01:00
|
|
|
use BookStack\Uploads\Attachment;
|
2019-10-05 12:55:01 +01:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2021-10-30 21:29:59 +01:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2019-10-05 12:55:01 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2022-03-26 16:44:34 +00:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
2019-10-05 12:55:01 +01:00
|
|
|
|
|
|
|
/**
|
2021-06-26 15:23:15 +00:00
|
|
|
* Class Page.
|
|
|
|
*
|
2022-03-26 16:44:34 +00:00
|
|
|
* @property int $chapter_id
|
|
|
|
* @property string $html
|
|
|
|
* @property string $markdown
|
|
|
|
* @property string $text
|
|
|
|
* @property bool $template
|
|
|
|
* @property bool $draft
|
|
|
|
* @property int $revision_count
|
2022-04-23 23:20:46 +01:00
|
|
|
* @property string $editor
|
2022-03-26 16:44:34 +00:00
|
|
|
* @property Chapter $chapter
|
|
|
|
* @property Collection $attachments
|
|
|
|
* @property Collection $revisions
|
|
|
|
* @property PageRevision $currentRevision
|
2019-10-05 12:55:01 +01:00
|
|
|
*/
|
2019-09-20 00:18:28 +01:00
|
|
|
class Page extends BookChild
|
2015-07-12 20:01:42 +01:00
|
|
|
{
|
2021-10-30 21:29:59 +01:00
|
|
|
use HasFactory;
|
|
|
|
|
2021-09-01 20:29:39 +01:00
|
|
|
public static $listAttributes = ['name', 'id', 'slug', 'book_id', 'chapter_id', 'draft', 'template', 'text', 'created_at', 'updated_at', 'priority'];
|
|
|
|
public static $contentAttributes = ['name', 'id', 'slug', 'book_id', 'chapter_id', 'draft', 'template', 'html', 'text', 'created_at', 'updated_at', 'priority'];
|
2015-07-12 21:31:15 +01:00
|
|
|
|
2021-10-18 11:42:50 +01:00
|
|
|
protected $fillable = ['name', 'priority'];
|
2015-07-20 22:05:26 +01:00
|
|
|
|
2017-03-27 11:57:33 +01:00
|
|
|
public $textField = 'text';
|
2017-01-01 16:57:47 +00:00
|
|
|
|
2022-10-10 16:58:26 +01:00
|
|
|
protected $hidden = ['html', 'markdown', 'text', 'pivot', 'deleted_at'];
|
2020-05-23 00:28:41 +01:00
|
|
|
|
2020-11-22 14:56:19 +00:00
|
|
|
protected $casts = [
|
2021-06-26 15:23:15 +00:00
|
|
|
'draft' => 'boolean',
|
2020-11-22 14:56:19 +00:00
|
|
|
'template' => 'boolean',
|
|
|
|
];
|
|
|
|
|
2018-09-25 12:30:50 +01:00
|
|
|
/**
|
2019-10-05 12:55:01 +01:00
|
|
|
* Get the entities that are visible to the current user.
|
2018-09-25 12:30:50 +01:00
|
|
|
*/
|
2020-11-22 01:20:38 +00:00
|
|
|
public function scopeVisible(Builder $query): Builder
|
2018-09-25 12:30:50 +01:00
|
|
|
{
|
2022-07-16 19:54:25 +01:00
|
|
|
$query = app()->make(PermissionApplicator::class)->restrictDraftsOnPageQuery($query);
|
2021-06-26 15:23:15 +00:00
|
|
|
|
2019-10-05 12:55:01 +01:00
|
|
|
return parent::scopeVisible($query);
|
2018-09-25 12:30:50 +01:00
|
|
|
}
|
|
|
|
|
2016-05-01 21:20:50 +01:00
|
|
|
/**
|
|
|
|
* Get the chapter that this page is in, If applicable.
|
2021-06-26 15:23:15 +00:00
|
|
|
*
|
2019-10-05 12:55:01 +01:00
|
|
|
* @return BelongsTo
|
2016-05-01 21:20:50 +01:00
|
|
|
*/
|
2015-07-30 22:27:35 +01:00
|
|
|
public function chapter()
|
|
|
|
{
|
2016-05-01 21:20:50 +01:00
|
|
|
return $this->belongsTo(Chapter::class);
|
2015-07-30 22:27:35 +01:00
|
|
|
}
|
|
|
|
|
2016-05-01 21:20:50 +01:00
|
|
|
/**
|
|
|
|
* Check if this page has a chapter.
|
|
|
|
*/
|
2021-11-12 13:47:23 +00:00
|
|
|
public function hasChapter(): bool
|
2015-07-30 22:27:35 +01:00
|
|
|
{
|
|
|
|
return $this->chapter()->count() > 0;
|
|
|
|
}
|
|
|
|
|
2016-05-01 21:20:50 +01:00
|
|
|
/**
|
|
|
|
* Get the associated page revisions, ordered by created date.
|
2021-05-26 16:40:56 +01:00
|
|
|
* Only provides actual saved page revision instances, Not drafts.
|
|
|
|
*/
|
|
|
|
public function revisions(): HasMany
|
|
|
|
{
|
|
|
|
return $this->allRevisions()
|
|
|
|
->where('type', '=', 'version')
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->orderBy('id', 'desc');
|
|
|
|
}
|
|
|
|
|
2022-03-26 16:44:34 +00:00
|
|
|
/**
|
|
|
|
* Get the current revision for the page if existing.
|
|
|
|
*/
|
|
|
|
public function currentRevision(): HasOne
|
|
|
|
{
|
|
|
|
return $this->hasOne(PageRevision::class)
|
|
|
|
->where('type', '=', 'version')
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->orderBy('id', 'desc');
|
|
|
|
}
|
|
|
|
|
2021-05-26 16:40:56 +01:00
|
|
|
/**
|
|
|
|
* Get all revision instances assigned to this page.
|
|
|
|
* Includes all types of revisions.
|
2016-05-01 21:20:50 +01:00
|
|
|
*/
|
2021-05-26 16:40:56 +01:00
|
|
|
public function allRevisions(): HasMany
|
2015-08-09 12:06:52 +01:00
|
|
|
{
|
2021-05-26 16:40:56 +01:00
|
|
|
return $this->hasMany(PageRevision::class);
|
2015-08-09 12:06:52 +01:00
|
|
|
}
|
|
|
|
|
2016-10-09 18:58:22 +01:00
|
|
|
/**
|
2016-11-12 14:12:26 +00:00
|
|
|
* Get the attachments assigned to this page.
|
2021-06-26 15:23:15 +00:00
|
|
|
*
|
2019-10-05 12:55:01 +01:00
|
|
|
* @return HasMany
|
2016-10-09 18:58:22 +01:00
|
|
|
*/
|
2016-11-12 14:12:26 +00:00
|
|
|
public function attachments()
|
2016-10-09 18:58:22 +01:00
|
|
|
{
|
2016-11-12 14:12:26 +00:00
|
|
|
return $this->hasMany(Attachment::class, 'uploaded_to')->orderBy('order', 'asc');
|
2016-10-09 18:58:22 +01:00
|
|
|
}
|
|
|
|
|
2016-05-01 21:20:50 +01:00
|
|
|
/**
|
2020-11-22 01:20:38 +00:00
|
|
|
* Get the url of this page.
|
2016-05-01 21:20:50 +01:00
|
|
|
*/
|
2021-11-06 00:32:01 +00:00
|
|
|
public function getUrl(string $path = ''): string
|
2015-07-12 21:31:15 +01:00
|
|
|
{
|
2020-11-22 01:20:38 +00:00
|
|
|
$parts = [
|
|
|
|
'books',
|
2021-08-21 19:58:19 +01:00
|
|
|
urlencode($this->book_slug ?? $this->book->slug),
|
2020-11-22 01:20:38 +00:00
|
|
|
$this->draft ? 'draft' : 'page',
|
|
|
|
$this->draft ? $this->id : urlencode($this->slug),
|
|
|
|
trim($path, '/'),
|
|
|
|
];
|
2016-08-14 12:29:35 +01:00
|
|
|
|
2020-11-22 01:20:38 +00:00
|
|
|
return url('/' . implode('/', $parts));
|
2017-03-19 12:48:44 +00:00
|
|
|
}
|
2018-09-16 01:12:36 +05:30
|
|
|
|
2020-11-28 15:21:54 +00:00
|
|
|
/**
|
|
|
|
* Get this page for JSON display.
|
|
|
|
*/
|
2021-10-26 22:04:18 +01:00
|
|
|
public function forJsonDisplay(): self
|
2020-11-28 15:21:54 +00:00
|
|
|
{
|
2021-01-03 22:29:58 +00:00
|
|
|
$refreshed = $this->refresh()->unsetRelations()->load(['tags', 'createdBy', 'updatedBy', 'ownedBy']);
|
2020-11-28 15:21:54 +00:00
|
|
|
$refreshed->setHidden(array_diff($refreshed->getHidden(), ['html', 'markdown']));
|
|
|
|
$refreshed->html = (new PageContent($refreshed))->render();
|
2021-06-26 15:23:15 +00:00
|
|
|
|
2020-11-28 15:21:54 +00:00
|
|
|
return $refreshed;
|
|
|
|
}
|
2022-10-09 16:36:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a visible page by its book and page slugs.
|
|
|
|
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
|
|
|
|
*/
|
|
|
|
public static function getBySlugs(string $bookSlug, string $pageSlug): self
|
|
|
|
{
|
|
|
|
return static::visible()->whereSlugs($bookSlug, $pageSlug)->firstOrFail();
|
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|