2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Repos;
|
2018-10-13 06:27:55 -04:00
|
|
|
|
2020-11-07 17:37:27 -05:00
|
|
|
use BookStack\Actions\ActivityType;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Entity;
|
2021-06-26 11:23:15 -04:00
|
|
|
use BookStack\Entities\Models\Page;
|
|
|
|
use BookStack\Entities\Models\PageRevision;
|
2020-11-21 18:20:54 -05:00
|
|
|
use BookStack\Entities\Tools\BookContents;
|
|
|
|
use BookStack\Entities\Tools\PageContent;
|
2022-04-23 18:20:46 -04:00
|
|
|
use BookStack\Entities\Tools\PageEditorData;
|
2020-11-21 18:20:54 -05:00
|
|
|
use BookStack\Entities\Tools\TrashCan;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Exceptions\MoveOperationException;
|
|
|
|
use BookStack\Exceptions\NotFoundException;
|
|
|
|
use BookStack\Exceptions\PermissionsException;
|
2020-11-07 17:37:27 -05:00
|
|
|
use BookStack\Facades\Activity;
|
2020-09-27 18:24:33 -04:00
|
|
|
use Exception;
|
2019-10-05 07:55:01 -04:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Pagination\LengthAwarePaginator;
|
|
|
|
|
|
|
|
class PageRepo
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
protected $baseRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PageRepo constructor.
|
|
|
|
*/
|
|
|
|
public function __construct(BaseRepo $baseRepo)
|
|
|
|
{
|
|
|
|
$this->baseRepo = $baseRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a page by ID.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2020-11-22 09:56:19 -05:00
|
|
|
public function getById(int $id, array $relations = ['book']): Page
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
2020-11-22 09:56:19 -05:00
|
|
|
$page = Page::visible()->with($relations)->find($id);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
if (!$page) {
|
|
|
|
throw new NotFoundException(trans('errors.page_not_found'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Get a page its book and own slug.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function getBySlug(string $bookSlug, string $pageSlug): Page
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = Page::visible()->whereSlugs($bookSlug, $pageSlug)->first();
|
|
|
|
|
|
|
|
if (!$page) {
|
|
|
|
throw new NotFoundException(trans('errors.page_not_found'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $page;
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Get a page by its old slug but checking the revisions table
|
|
|
|
* for the last revision that matched the given page and book slug.
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function getByOldSlug(string $bookSlug, string $pageSlug): ?Page
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2021-11-22 18:33:55 -05:00
|
|
|
/** @var ?PageRevision $revision */
|
2019-10-05 07:55:01 -04:00
|
|
|
$revision = PageRevision::query()
|
|
|
|
->whereHas('page', function (Builder $query) {
|
2021-11-22 18:33:55 -05:00
|
|
|
$query->scopes('visible');
|
2018-10-13 06:27:55 -04:00
|
|
|
})
|
2019-10-05 07:55:01 -04:00
|
|
|
->where('slug', '=', $pageSlug)
|
2018-10-13 06:27:55 -04:00
|
|
|
->where('type', '=', 'version')
|
|
|
|
->where('book_slug', '=', $bookSlug)
|
|
|
|
->orderBy('created_at', 'desc')
|
2019-10-05 07:55:01 -04:00
|
|
|
->with('page')
|
|
|
|
->first();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-11-22 18:33:55 -05:00
|
|
|
return $revision->page ?? null;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get pages that have been marked as a template.
|
|
|
|
*/
|
|
|
|
public function getTemplates(int $count = 10, int $page = 1, string $search = ''): LengthAwarePaginator
|
|
|
|
{
|
|
|
|
$query = Page::visible()
|
|
|
|
->where('template', '=', true)
|
|
|
|
->orderBy('name', 'asc')
|
|
|
|
->skip(($page - 1) * $count)
|
|
|
|
->take($count);
|
|
|
|
|
|
|
|
if ($search) {
|
|
|
|
$query->where('name', 'like', '%' . $search . '%');
|
|
|
|
}
|
|
|
|
|
|
|
|
$paginator = $query->paginate($count, ['*'], 'page', $page);
|
|
|
|
$paginator->withPath('/templates');
|
|
|
|
|
|
|
|
return $paginator;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a parent item via slugs.
|
|
|
|
*/
|
|
|
|
public function getParentFromSlugs(string $bookSlug, string $chapterSlug = null): Entity
|
|
|
|
{
|
|
|
|
if ($chapterSlug !== null) {
|
|
|
|
return $chapter = Chapter::visible()->whereSlugs($bookSlug, $chapterSlug)->firstOrFail();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Book::visible()->where('slug', '=', $bookSlug)->firstOrFail();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the draft copy of the given page for the current user.
|
|
|
|
*/
|
|
|
|
public function getUserDraft(Page $page): ?PageRevision
|
|
|
|
{
|
|
|
|
$revision = $this->getUserDraftQuery($page)->first();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a new draft page belonging to the given parent entity.
|
|
|
|
*/
|
|
|
|
public function getNewDraftPage(Entity $parent)
|
|
|
|
{
|
|
|
|
$page = (new Page())->forceFill([
|
2021-06-26 11:23:15 -04:00
|
|
|
'name' => trans('entities.pages_initial_name'),
|
2019-10-05 07:55:01 -04:00
|
|
|
'created_by' => user()->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'owned_by' => user()->id,
|
2019-10-05 07:55:01 -04:00
|
|
|
'updated_by' => user()->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'draft' => true,
|
2019-10-05 07:55:01 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
if ($parent instanceof Chapter) {
|
|
|
|
$page->chapter_id = $parent->id;
|
|
|
|
$page->book_id = $parent->book_id;
|
|
|
|
} else {
|
|
|
|
$page->book_id = $parent->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$page->save();
|
|
|
|
$page->refresh()->rebuildPermissions();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $page;
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Publish a draft page to make it a live, non-draft page.
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function publishDraft(Page $draft, array $input): Page
|
|
|
|
{
|
2020-11-22 09:56:19 -05:00
|
|
|
$this->updateTemplateStatusAndContentFromInput($draft, $input);
|
2021-11-12 08:47:23 -05:00
|
|
|
$this->baseRepo->update($draft, $input);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
$draft->draft = false;
|
|
|
|
$draft->revision_count = 1;
|
|
|
|
$draft->priority = $this->getNewPriority($draft);
|
|
|
|
$draft->refreshSlug();
|
|
|
|
$draft->save();
|
|
|
|
|
|
|
|
$this->savePageRevision($draft, trans('entities.pages_initial_revision'));
|
|
|
|
$draft->indexForSearch();
|
2020-11-07 17:37:27 -05:00
|
|
|
$draft->refresh();
|
|
|
|
|
2021-12-11 12:29:33 -05:00
|
|
|
Activity::add(ActivityType::PAGE_CREATE, $draft);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-11-07 17:37:27 -05:00
|
|
|
return $draft;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update a page in the system.
|
|
|
|
*/
|
|
|
|
public function update(Page $page, array $input): Page
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
|
|
|
// Hold the old details to compare later
|
|
|
|
$oldHtml = $page->html;
|
|
|
|
$oldName = $page->name;
|
2021-02-06 08:51:05 -05:00
|
|
|
$oldMarkdown = $page->markdown;
|
2018-10-13 06:27:55 -04:00
|
|
|
|
2020-11-22 09:56:19 -05:00
|
|
|
$this->updateTemplateStatusAndContentFromInput($page, $input);
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->baseRepo->update($page, $input);
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
// Update with new details
|
2019-09-19 19:18:28 -04:00
|
|
|
$page->revision_count++;
|
2018-10-13 06:27:55 -04:00
|
|
|
$page->save();
|
|
|
|
|
|
|
|
// Remove all update drafts for this user & page.
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->getUserDraftQuery($page)->delete();
|
2018-10-13 06:27:55 -04:00
|
|
|
|
|
|
|
// Save a revision after updating
|
2021-06-26 11:23:15 -04:00
|
|
|
$summary = trim($input['summary'] ?? '');
|
2021-02-06 08:51:05 -05:00
|
|
|
$htmlChanged = isset($input['html']) && $input['html'] !== $oldHtml;
|
|
|
|
$nameChanged = isset($input['name']) && $input['name'] !== $oldName;
|
|
|
|
$markdownChanged = isset($input['markdown']) && $input['markdown'] !== $oldMarkdown;
|
2021-02-06 18:09:49 -05:00
|
|
|
if ($htmlChanged || $nameChanged || $markdownChanged || $summary) {
|
2019-07-07 08:45:46 -04:00
|
|
|
$this->savePageRevision($page, $summary);
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
2021-12-11 12:29:33 -05:00
|
|
|
Activity::add(ActivityType::PAGE_UPDATE, $page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:56:19 -05:00
|
|
|
protected function updateTemplateStatusAndContentFromInput(Page $page, array $input)
|
|
|
|
{
|
|
|
|
if (isset($input['template']) && userCan('templates-manage')) {
|
|
|
|
$page->template = ($input['template'] === 'true');
|
|
|
|
}
|
|
|
|
|
|
|
|
$pageContent = new PageContent($page);
|
2022-04-23 18:20:46 -04:00
|
|
|
$currentEditor = $page->editor ?: PageEditorData::getSystemDefaultEditor();
|
|
|
|
$newEditor = $currentEditor;
|
|
|
|
|
|
|
|
$haveInput = isset($input['markdown']) || isset($input['html']);
|
|
|
|
$inputEmpty = empty($input['markdown']) && empty($input['html']);
|
|
|
|
|
|
|
|
if ($haveInput && $inputEmpty) {
|
|
|
|
$pageContent->setNewHTML('');
|
|
|
|
} elseif (!empty($input['markdown']) && is_string($input['markdown'])) {
|
|
|
|
$newEditor = 'markdown';
|
2020-11-22 09:56:19 -05:00
|
|
|
$pageContent->setNewMarkdown($input['markdown']);
|
2021-08-24 16:23:55 -04:00
|
|
|
} elseif (isset($input['html'])) {
|
2022-04-23 18:20:46 -04:00
|
|
|
$newEditor = 'wysiwyg';
|
2021-08-21 13:54:38 -04:00
|
|
|
$pageContent->setNewHTML($input['html']);
|
2020-11-22 09:56:19 -05:00
|
|
|
}
|
2022-04-23 18:20:46 -04:00
|
|
|
|
|
|
|
if ($newEditor !== $currentEditor && userCan('editor-change')) {
|
|
|
|
$page->editor = $newEditor;
|
|
|
|
}
|
2020-11-22 09:56:19 -05:00
|
|
|
}
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
/**
|
|
|
|
* Saves a page revision into the system.
|
|
|
|
*/
|
2021-01-02 11:42:05 -05:00
|
|
|
protected function savePageRevision(Page $page, string $summary = null): PageRevision
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2022-04-23 18:20:46 -04:00
|
|
|
$revision = new PageRevision();
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2022-04-23 18:20:46 -04:00
|
|
|
$revision->name = $page->name;
|
|
|
|
$revision->html = $page->html;
|
|
|
|
$revision->markdown = $page->markdown;
|
|
|
|
$revision->text = $page->text;
|
2018-10-13 06:27:55 -04:00
|
|
|
$revision->page_id = $page->id;
|
|
|
|
$revision->slug = $page->slug;
|
|
|
|
$revision->book_slug = $page->book->slug;
|
|
|
|
$revision->created_by = user()->id;
|
|
|
|
$revision->created_at = $page->updated_at;
|
|
|
|
$revision->type = 'version';
|
|
|
|
$revision->summary = $summary;
|
|
|
|
$revision->revision_number = $page->revision_count;
|
|
|
|
$revision->save();
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->deleteOldRevisions($page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
return $revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save a page update draft.
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function updatePageDraft(Page $page, array $input)
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
|
|
|
// If the page itself is a draft simply update that
|
|
|
|
if ($page->draft) {
|
2021-11-14 07:17:22 -05:00
|
|
|
$this->updateTemplateStatusAndContentFromInput($page, $input);
|
2020-11-22 09:56:19 -05:00
|
|
|
$page->fill($input);
|
2018-10-13 06:27:55 -04:00
|
|
|
$page->save();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
2022-04-18 12:39:28 -04:00
|
|
|
// Otherwise, save the data to a revision
|
2019-10-05 07:55:01 -04:00
|
|
|
$draft = $this->getPageRevisionToUpdate($page);
|
|
|
|
$draft->fill($input);
|
2022-04-18 12:39:28 -04:00
|
|
|
|
|
|
|
if (!empty($input['markdown'])) {
|
|
|
|
$draft->markdown = $input['markdown'];
|
|
|
|
$draft->html = '';
|
|
|
|
} else {
|
|
|
|
$draft->html = $input['html'];
|
2018-10-13 06:27:55 -04:00
|
|
|
$draft->markdown = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$draft->save();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
return $draft;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Destroy a page from the system.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-09-27 18:24:33 -04:00
|
|
|
* @throws Exception
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function destroy(Page $page)
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$trashCan = new TrashCan();
|
2020-09-27 18:24:33 -04:00
|
|
|
$trashCan->softDestroyPage($page);
|
2021-12-11 12:29:33 -05:00
|
|
|
Activity::add(ActivityType::PAGE_DELETE, $page);
|
2020-11-07 08:58:23 -05:00
|
|
|
$trashCan->autoClearOld();
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Restores a revision's content back into a page.
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function restoreRevision(Page $page, int $revisionId): Page
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page->revision_count++;
|
2021-11-20 09:03:56 -05:00
|
|
|
|
|
|
|
/** @var PageRevision $revision */
|
2019-10-05 07:55:01 -04:00
|
|
|
$revision = $page->revisions()->where('id', '=', $revisionId)->first();
|
2020-11-03 20:46:47 -05:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$page->fill($revision->toArray());
|
|
|
|
$content = new PageContent($page);
|
2021-02-06 09:14:38 -05:00
|
|
|
|
|
|
|
if (!empty($revision->markdown)) {
|
|
|
|
$content->setNewMarkdown($revision->markdown);
|
|
|
|
} else {
|
|
|
|
$content->setNewHTML($revision->html);
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$page->updated_by = user()->id;
|
|
|
|
$page->refreshSlug();
|
|
|
|
$page->save();
|
|
|
|
$page->indexForSearch();
|
2021-01-02 11:42:05 -05:00
|
|
|
|
|
|
|
$summary = trans('entities.pages_revision_restored_from', ['id' => strval($revisionId), 'summary' => $revision->summary]);
|
|
|
|
$this->savePageRevision($page, $summary);
|
|
|
|
|
2021-12-11 12:29:33 -05:00
|
|
|
Activity::add(ActivityType::PAGE_RESTORE, $page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $page;
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Move the given page into a new parent book or chapter.
|
|
|
|
* The $parentIdentifier must be a string of the following format:
|
2021-06-26 11:23:15 -04:00
|
|
|
* 'book:<id>' (book:5).
|
|
|
|
*
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws MoveOperationException
|
|
|
|
* @throws PermissionsException
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2020-11-07 17:37:27 -05:00
|
|
|
public function move(Page $page, string $parentIdentifier): Entity
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$parent = $this->findParentByIdentifier($parentIdentifier);
|
2022-01-05 11:11:11 -05:00
|
|
|
if (is_null($parent)) {
|
2019-10-05 07:55:01 -04:00
|
|
|
throw new MoveOperationException('Book or chapter to move page into not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!userCan('page-create', $parent)) {
|
|
|
|
throw new PermissionsException('User does not have permission to create a page within the new parent');
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2019-10-29 18:33:09 -04:00
|
|
|
$page->chapter_id = ($parent instanceof Chapter) ? $parent->id : null;
|
2021-11-20 09:03:56 -05:00
|
|
|
$newBookId = ($parent instanceof Chapter) ? $parent->book->id : $parent->id;
|
|
|
|
$page->changeBook($newBookId);
|
2019-10-05 07:55:01 -04:00
|
|
|
$page->rebuildPermissions();
|
2019-10-28 11:53:48 -04:00
|
|
|
|
2021-12-11 12:29:33 -05:00
|
|
|
Activity::add(ActivityType::PAGE_MOVE, $page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-11-07 17:37:27 -05:00
|
|
|
return $parent;
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-12-19 10:40:52 -05:00
|
|
|
* Find a page parent entity via an identifier string in the format:
|
2019-10-05 07:55:01 -04:00
|
|
|
* {type}:{id}
|
2021-06-26 11:23:15 -04:00
|
|
|
* Example: (book:5).
|
|
|
|
*
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws MoveOperationException
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2021-12-19 07:56:27 -05:00
|
|
|
public function findParentByIdentifier(string $identifier): ?Entity
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$stringExploded = explode(':', $identifier);
|
|
|
|
$entityType = $stringExploded[0];
|
|
|
|
$entityId = intval($stringExploded[1]);
|
|
|
|
|
|
|
|
if ($entityType !== 'book' && $entityType !== 'chapter') {
|
|
|
|
throw new MoveOperationException('Pages can only be in books or chapters');
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$parentClass = $entityType === 'book' ? Book::class : Chapter::class;
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $parentClass::visible()->where('id', '=', $entityId)->first();
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Get a page revision to update for the given page.
|
|
|
|
* Checks for an existing revisions before providing a fresh one.
|
2018-10-13 06:27:55 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
protected function getPageRevisionToUpdate(Page $page): PageRevision
|
2018-10-13 06:27:55 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$drafts = $this->getUserDraftQuery($page)->get();
|
|
|
|
if ($drafts->count() > 0) {
|
|
|
|
return $drafts->first();
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$draft = new PageRevision();
|
|
|
|
$draft->page_id = $page->id;
|
|
|
|
$draft->slug = $page->slug;
|
|
|
|
$draft->book_slug = $page->book->slug;
|
|
|
|
$draft->created_by = user()->id;
|
|
|
|
$draft->type = 'update_draft';
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $draft;
|
|
|
|
}
|
2018-10-13 06:27:55 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
/**
|
|
|
|
* Delete old revisions, for the given page, from the system.
|
|
|
|
*/
|
|
|
|
protected function deleteOldRevisions(Page $page)
|
|
|
|
{
|
|
|
|
$revisionLimit = config('app.revision_limit');
|
|
|
|
if ($revisionLimit === false) {
|
|
|
|
return;
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$revisionsToDelete = PageRevision::query()
|
|
|
|
->where('page_id', '=', $page->id)
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->skip(intval($revisionLimit))
|
|
|
|
->take(10)
|
|
|
|
->get(['id']);
|
|
|
|
if ($revisionsToDelete->count() > 0) {
|
|
|
|
PageRevision::query()->whereIn('id', $revisionsToDelete->pluck('id'))->delete();
|
|
|
|
}
|
2018-10-13 06:27:55 -04:00
|
|
|
}
|
2019-08-11 15:04:43 -04:00
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Get a new priority for a page.
|
2019-08-11 15:04:43 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
protected function getNewPriority(Page $page): int
|
2019-08-11 15:04:43 -04:00
|
|
|
{
|
2020-11-02 17:47:48 -05:00
|
|
|
$parent = $page->getParent();
|
|
|
|
if ($parent instanceof Chapter) {
|
2021-11-20 09:03:56 -05:00
|
|
|
/** @var ?Page $lastPage */
|
2020-11-02 17:47:48 -05:00
|
|
|
$lastPage = $parent->pages('desc')->first();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return $lastPage ? $lastPage->priority + 1 : 0;
|
2019-08-11 15:04:43 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
return (new BookContents($page->book))->getLastPriority() + 1;
|
|
|
|
}
|
2019-08-11 15:04:43 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
/**
|
|
|
|
* Get the query to find the user's draft copies of the given page.
|
|
|
|
*/
|
|
|
|
protected function getUserDraftQuery(Page $page)
|
|
|
|
{
|
|
|
|
return PageRevision::query()->where('created_by', '=', user()->id)
|
|
|
|
->where('type', 'update_draft')
|
|
|
|
->where('page_id', '=', $page->id)
|
|
|
|
->orderBy('created_at', 'desc');
|
2019-08-11 15:04:43 -04:00
|
|
|
}
|
2019-01-27 05:29:23 -05:00
|
|
|
}
|