X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/c7a2d568bf693add30c8402d68d1f46f09a44c5b..refs/pull/2522/head:/app/Entities/Repos/PageRepo.php diff --git a/app/Entities/Repos/PageRepo.php b/app/Entities/Repos/PageRepo.php index 7ea79efe6..4c59db468 100644 --- a/app/Entities/Repos/PageRepo.php +++ b/app/Entities/Repos/PageRepo.php @@ -1,14 +1,14 @@ with(['book'])->find($id); + $page = Page::visible()->with($relations)->find($id); if (!$page) { throw new NotFoundException(trans('errors.page_not_found')); @@ -130,6 +130,7 @@ class PageRepo $page = (new Page())->forceFill([ 'name' => trans('entities.pages_initial_name'), 'created_by' => user()->id, + 'owned_by' => user()->id, 'updated_by' => user()->id, 'draft' => true, ]); @@ -152,12 +153,8 @@ class PageRepo public function publishDraft(Page $draft, array $input): Page { $this->baseRepo->update($draft, $input); - if (isset($input['template']) && userCan('templates-manage')) { - $draft->template = ($input['template'] === 'true'); - } + $this->updateTemplateStatusAndContentFromInput($draft, $input); - $pageContent = new PageContent($draft); - $pageContent->setNewHTML($input['html']); $draft->draft = false; $draft->revision_count = 1; $draft->priority = $this->getNewPriority($draft); @@ -181,12 +178,7 @@ class PageRepo $oldHtml = $page->html; $oldName = $page->name; - if (isset($input['template']) && userCan('templates-manage')) { - $page->template = ($input['template'] === 'true'); - } - - $pageContent = new PageContent($page); - $pageContent->setNewHTML($input['html']); + $this->updateTemplateStatusAndContentFromInput($page, $input); $this->baseRepo->update($page, $input); // Update with new details @@ -211,10 +203,24 @@ class PageRepo return $page; } + protected function updateTemplateStatusAndContentFromInput(Page $page, array $input) + { + if (isset($input['template']) && userCan('templates-manage')) { + $page->template = ($input['template'] === 'true'); + } + + $pageContent = new PageContent($page); + if (!empty($input['markdown'] ?? '')) { + $pageContent->setNewMarkdown($input['markdown']); + } else { + $pageContent->setNewHTML($input['html']); + } + } + /** * Saves a page revision into the system. */ - protected function savePageRevision(Page $page, string $summary = null) + protected function savePageRevision(Page $page, string $summary = null): PageRevision { $revision = new PageRevision($page->getAttributes()); @@ -243,11 +249,10 @@ class PageRepo { // If the page itself is a draft simply update that if ($page->draft) { - $page->fill($input); if (isset($input['html'])) { - $content = new PageContent($page); - $content->setNewHTML($input['html']); + (new PageContent($page))->setNewHTML($input['html']); } + $page->fill($input); $page->save(); return $page; } @@ -281,17 +286,19 @@ class PageRepo public function restoreRevision(Page $page, int $revisionId): Page { $page->revision_count++; - $this->savePageRevision($page); - $revision = $page->revisions()->where('id', '=', $revisionId)->first(); + $page->fill($revision->toArray()); $content = new PageContent($page); $content->setNewHTML($revision->html); $page->updated_by = user()->id; $page->refreshSlug(); $page->save(); - $page->indexForSearch(); + + $summary = trans('entities.pages_revision_restored_from', ['id' => strval($revisionId), 'summary' => $revision->summary]); + $this->savePageRevision($page, $summary); + Activity::addForEntity($page, ActivityType::PAGE_RESTORE); return $page; } @@ -378,14 +385,6 @@ class PageRepo return $parentClass::visible()->where('id', '=', $entityId)->first(); } - /** - * Update the permissions of a page. - */ - public function updatePermissions(Page $page, bool $restricted, Collection $permissions = null) - { - $this->baseRepo->updatePermissions($page, $restricted, $permissions); - } - /** * Change the page's parent to the given entity. */