2020-11-21 19:17:45 -05:00
|
|
|
<?php namespace BookStack\Entities\Models;
|
2018-09-25 07:30:50 -04:00
|
|
|
|
2020-11-28 10:21:54 -05:00
|
|
|
use BookStack\Entities\Tools\PageContent;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Uploads\Attachment;
|
2019-10-05 07:55:01 -04:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
use Permissions;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Page
|
|
|
|
* @property int $chapter_id
|
|
|
|
* @property string $html
|
|
|
|
* @property string $markdown
|
|
|
|
* @property string $text
|
|
|
|
* @property bool $template
|
|
|
|
* @property bool $draft
|
|
|
|
* @property int $revision_count
|
|
|
|
* @property Chapter $chapter
|
|
|
|
* @property Collection $attachments
|
|
|
|
*/
|
2019-09-19 19:18:28 -04:00
|
|
|
class Page extends BookChild
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2020-05-22 19:46:13 -04:00
|
|
|
protected $fillable = ['name', 'priority', 'markdown'];
|
2015-07-12 16:31:15 -04:00
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
protected $simpleAttributes = ['name', 'id', 'slug'];
|
|
|
|
|
2017-03-27 06:57:33 -04:00
|
|
|
public $textField = 'text';
|
2017-01-01 11:57:47 -05:00
|
|
|
|
2020-11-28 10:21:54 -05:00
|
|
|
protected $hidden = ['html', 'markdown', 'text', 'restricted', 'pivot', 'deleted_at'];
|
2020-05-22 19:28:41 -04:00
|
|
|
|
2020-11-22 09:56:19 -05:00
|
|
|
protected $casts = [
|
|
|
|
'draft' => 'boolean',
|
|
|
|
'template' => 'boolean',
|
|
|
|
];
|
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Get the entities that are visible to the current user.
|
2018-09-25 07:30:50 -04:00
|
|
|
*/
|
2020-11-21 20:20:38 -05:00
|
|
|
public function scopeVisible(Builder $query): Builder
|
2018-09-25 07:30:50 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$query = Permissions::enforceDraftVisiblityOnQuery($query);
|
|
|
|
return parent::scopeVisible($query);
|
2018-09-25 07:30:50 -04:00
|
|
|
}
|
|
|
|
|
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 chapter that this page is in, If applicable.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @return BelongsTo
|
2016-05-01 16:20:50 -04:00
|
|
|
*/
|
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()
|
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
return $this->hasMany(PageRevision::class)->where('type', '=', 'version')->orderBy('created_at', 'desc')->orderBy('id', 'desc');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-10-09 13:58:22 -04:00
|
|
|
/**
|
2016-11-12 09:12:26 -05:00
|
|
|
* Get the attachments assigned to this page.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @return HasMany
|
2016-10-09 13:58:22 -04:00
|
|
|
*/
|
2016-11-12 09:12:26 -05:00
|
|
|
public function attachments()
|
2016-10-09 13:58:22 -04:00
|
|
|
{
|
2016-11-12 09:12:26 -05:00
|
|
|
return $this->hasMany(Attachment::class, 'uploaded_to')->orderBy('order', 'asc');
|
2016-10-09 13:58:22 -04:00
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
/**
|
2020-11-21 20:20:38 -05:00
|
|
|
* Get the url of this page.
|
2016-05-01 16:20:50 -04:00
|
|
|
*/
|
2020-11-21 20:20:38 -05:00
|
|
|
public function getUrl($path = ''): string
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
2020-11-21 20:20:38 -05:00
|
|
|
$parts = [
|
|
|
|
'books',
|
|
|
|
urlencode($this->getAttribute('bookSlug') ?? $this->book->slug),
|
|
|
|
$this->draft ? 'draft' : 'page',
|
|
|
|
$this->draft ? $this->id : urlencode($this->slug),
|
|
|
|
trim($path, '/'),
|
|
|
|
];
|
2016-08-14 07:29:35 -04:00
|
|
|
|
2020-11-21 20:20:38 -05:00
|
|
|
return url('/' . implode('/', $parts));
|
2017-03-19 08:48:44 -04:00
|
|
|
}
|
2018-09-15 15:42:36 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current revision for the page if existing
|
2019-10-05 07:55:01 -04:00
|
|
|
* @return PageRevision|null
|
2018-09-15 15:42:36 -04:00
|
|
|
*/
|
|
|
|
public function getCurrentRevision()
|
|
|
|
{
|
2018-09-16 11:14:09 -04:00
|
|
|
return $this->revisions()->first();
|
2018-09-15 15:42:36 -04:00
|
|
|
}
|
2020-11-28 10:21:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get this page for JSON display.
|
|
|
|
*/
|
|
|
|
public function forJsonDisplay(): Page
|
|
|
|
{
|
2021-01-03 17:29:58 -05:00
|
|
|
$refreshed = $this->refresh()->unsetRelations()->load(['tags', 'createdBy', 'updatedBy', 'ownedBy']);
|
2020-11-28 10:21:54 -05:00
|
|
|
$refreshed->setHidden(array_diff($refreshed->getHidden(), ['html', 'markdown']));
|
|
|
|
$refreshed->html = (new PageContent($refreshed))->render();
|
|
|
|
return $refreshed;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|