X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/pull/2902/head:/app/Entities/Repos/PageRepo.php diff --git a/app/Entities/Repos/PageRepo.php b/app/Entities/Repos/PageRepo.php index 4c59db468..ffa06d459 100644 --- a/app/Entities/Repos/PageRepo.php +++ b/app/Entities/Repos/PageRepo.php @@ -1,14 +1,16 @@ -orderBy('created_at', 'desc') ->with('page') ->first(); + return $revision ? $revision->page : null; } @@ -119,6 +122,7 @@ class PageRepo public function getUserDraft(Page $page): ?PageRevision { $revision = $this->getUserDraftQuery($page)->first(); + return $revision; } @@ -128,11 +132,11 @@ class PageRepo public function getNewDraftPage(Entity $parent) { $page = (new Page())->forceFill([ - 'name' => trans('entities.pages_initial_name'), + 'name' => trans('entities.pages_initial_name'), 'created_by' => user()->id, - 'owned_by' => user()->id, + 'owned_by' => user()->id, 'updated_by' => user()->id, - 'draft' => true, + 'draft' => true, ]); if ($parent instanceof Chapter) { @@ -144,6 +148,7 @@ class PageRepo $page->save(); $page->refresh()->rebuildPermissions(); + return $page; } @@ -166,6 +171,7 @@ class PageRepo $draft->refresh(); Activity::addForEntity($draft, ActivityType::PAGE_CREATE); + return $draft; } @@ -177,29 +183,29 @@ class PageRepo // Hold the old details to compare later $oldHtml = $page->html; $oldName = $page->name; + $oldMarkdown = $page->markdown; $this->updateTemplateStatusAndContentFromInput($page, $input); $this->baseRepo->update($page, $input); // Update with new details $page->revision_count++; - - if (setting('app-editor') !== 'markdown') { - $page->markdown = ''; - } - $page->save(); // Remove all update drafts for this user & page. $this->getUserDraftQuery($page)->delete(); // Save a revision after updating - $summary = $input['summary'] ?? null; - if ($oldHtml !== $input['html'] || $oldName !== $input['name'] || $summary !== null) { + $summary = trim($input['summary'] ?? ''); + $htmlChanged = isset($input['html']) && $input['html'] !== $oldHtml; + $nameChanged = isset($input['name']) && $input['name'] !== $oldName; + $markdownChanged = isset($input['markdown']) && $input['markdown'] !== $oldMarkdown; + if ($htmlChanged || $nameChanged || $markdownChanged || $summary) { $this->savePageRevision($page, $summary); } Activity::addForEntity($page, ActivityType::PAGE_UPDATE); + return $page; } @@ -212,7 +218,7 @@ class PageRepo $pageContent = new PageContent($page); if (!empty($input['markdown'] ?? '')) { $pageContent->setNewMarkdown($input['markdown']); - } else { + } elseif (isset($input['html'])) { $pageContent->setNewHTML($input['html']); } } @@ -224,10 +230,6 @@ class PageRepo { $revision = new PageRevision($page->getAttributes()); - if (setting('app-editor') !== 'markdown') { - $revision->markdown = ''; - } - $revision->page_id = $page->id; $revision->slug = $page->slug; $revision->book_slug = $page->book->slug; @@ -239,6 +241,7 @@ class PageRepo $revision->save(); $this->deleteOldRevisions($page); + return $revision; } @@ -254,6 +257,7 @@ class PageRepo } $page->fill($input); $page->save(); + return $page; } @@ -265,11 +269,13 @@ class PageRepo } $draft->save(); + return $draft; } /** * Destroy a page from the system. + * * @throws Exception */ public function destroy(Page $page) @@ -290,7 +296,13 @@ class PageRepo $page->fill($revision->toArray()); $content = new PageContent($page); - $content->setNewHTML($revision->html); + + if (!empty($revision->markdown)) { + $content->setNewMarkdown($revision->markdown); + } else { + $content->setNewHTML($revision->html); + } + $page->updated_by = user()->id; $page->refreshSlug(); $page->save(); @@ -300,13 +312,15 @@ class PageRepo $this->savePageRevision($page, $summary); Activity::addForEntity($page, ActivityType::PAGE_RESTORE); + return $page; } /** * Move the given page into a new parent book or chapter. * The $parentIdentifier must be a string of the following format: - * 'book:' (book:5) + * 'book:' (book:5). + * * @throws MoveOperationException * @throws PermissionsException */ @@ -326,12 +340,14 @@ class PageRepo $page->rebuildPermissions(); Activity::addForEntity($page, ActivityType::PAGE_MOVE); + return $parent; } /** * Copy an existing page in the system. * Optionally providing a new parent via string identifier and a new name. + * * @throws MoveOperationException * @throws PermissionsException */ @@ -368,7 +384,8 @@ class PageRepo /** * Find a page parent entity via a identifier string in the format: * {type}:{id} - * Example: (book:5) + * Example: (book:5). + * * @throws MoveOperationException */ protected function findParentByIdentifier(string $identifier): ?Entity @@ -382,6 +399,7 @@ class PageRepo } $parentClass = $entityType === 'book' ? Book::class : Chapter::class; + return $parentClass::visible()->where('id', '=', $entityId)->first(); } @@ -419,6 +437,7 @@ class PageRepo $draft->book_slug = $page->book->slug; $draft->created_by = user()->id; $draft->type = 'update_draft'; + return $draft; } @@ -444,13 +463,14 @@ class PageRepo } /** - * Get a new priority for a page + * Get a new priority for a page. */ protected function getNewPriority(Page $page): int { $parent = $page->getParent(); if ($parent instanceof Chapter) { $lastPage = $parent->pages('desc')->first(); + return $lastPage ? $lastPage->priority + 1 : 0; }