]> BookStack Code Mirror - bookstack/blob - app/Entities/Repos/PageRepo.php
Permissions: Cleanup after review of enum implementation PR
[bookstack] / app / Entities / Repos / PageRepo.php
1 <?php
2
3 namespace BookStack\Entities\Repos;
4
5 use BookStack\Activity\ActivityType;
6 use BookStack\Entities\Models\Book;
7 use BookStack\Entities\Models\Chapter;
8 use BookStack\Entities\Models\Entity;
9 use BookStack\Entities\Models\Page;
10 use BookStack\Entities\Models\PageRevision;
11 use BookStack\Entities\Queries\EntityQueries;
12 use BookStack\Entities\Tools\BookContents;
13 use BookStack\Entities\Tools\PageContent;
14 use BookStack\Entities\Tools\PageEditorType;
15 use BookStack\Entities\Tools\TrashCan;
16 use BookStack\Exceptions\MoveOperationException;
17 use BookStack\Exceptions\PermissionsException;
18 use BookStack\Facades\Activity;
19 use BookStack\Permissions\Permission;
20 use BookStack\References\ReferenceStore;
21 use BookStack\References\ReferenceUpdater;
22 use BookStack\Util\DatabaseTransaction;
23 use Exception;
24
25 class PageRepo
26 {
27     public function __construct(
28         protected BaseRepo $baseRepo,
29         protected RevisionRepo $revisionRepo,
30         protected EntityQueries $entityQueries,
31         protected ReferenceStore $referenceStore,
32         protected ReferenceUpdater $referenceUpdater,
33         protected TrashCan $trashCan,
34     ) {
35     }
36
37     /**
38      * Get a new draft page belonging to the given parent entity.
39      */
40     public function getNewDraftPage(Entity $parent)
41     {
42         $page = (new Page())->forceFill([
43             'name'       => trans('entities.pages_initial_name'),
44             'created_by' => user()->id,
45             'owned_by'   => user()->id,
46             'updated_by' => user()->id,
47             'draft'      => true,
48             'editor'     => PageEditorType::getSystemDefault()->value,
49         ]);
50
51         if ($parent instanceof Chapter) {
52             $page->chapter_id = $parent->id;
53             $page->book_id = $parent->book_id;
54         } else {
55             $page->book_id = $parent->id;
56         }
57
58         $defaultTemplate = $page->chapter->defaultTemplate ?? $page->book->defaultTemplate;
59         if ($defaultTemplate && userCan(Permission::PageView, $defaultTemplate)) {
60             $page->forceFill([
61                 'html'  => $defaultTemplate->html,
62                 'markdown' => $defaultTemplate->markdown,
63             ]);
64         }
65
66         (new DatabaseTransaction(function () use ($page) {
67             $page->save();
68             $page->refresh()->rebuildPermissions();
69         }))->run();
70
71         return $page;
72     }
73
74     /**
75      * Publish a draft page to make it a live, non-draft page.
76      */
77     public function publishDraft(Page $draft, array $input): Page
78     {
79         return (new DatabaseTransaction(function () use ($draft, $input) {
80             $draft->draft = false;
81             $draft->revision_count = 1;
82             $draft->priority = $this->getNewPriority($draft);
83             $this->updateTemplateStatusAndContentFromInput($draft, $input);
84             $this->baseRepo->update($draft, $input);
85             $draft->rebuildPermissions();
86
87             $summary = trim($input['summary'] ?? '') ?: trans('entities.pages_initial_revision');
88             $this->revisionRepo->storeNewForPage($draft, $summary);
89             $draft->refresh();
90
91             Activity::add(ActivityType::PAGE_CREATE, $draft);
92             $this->baseRepo->sortParent($draft);
93
94             return $draft;
95         }))->run();
96     }
97
98     /**
99      * Directly update the content for the given page from the provided input.
100      * Used for direct content access in a way that performs required changes
101      * (Search index and reference regen) without performing an official update.
102      */
103     public function setContentFromInput(Page $page, array $input): void
104     {
105         $this->updateTemplateStatusAndContentFromInput($page, $input);
106         $this->baseRepo->update($page, []);
107     }
108
109     /**
110      * Update a page in the system.
111      */
112     public function update(Page $page, array $input): Page
113     {
114         // Hold the old details to compare later
115         $oldHtml = $page->html;
116         $oldName = $page->name;
117         $oldMarkdown = $page->markdown;
118
119         $this->updateTemplateStatusAndContentFromInput($page, $input);
120         $this->baseRepo->update($page, $input);
121
122         // Update with new details
123         $page->revision_count++;
124         $page->save();
125
126         // Remove all update drafts for this user and page.
127         $this->revisionRepo->deleteDraftsForCurrentUser($page);
128
129         // Save a revision after updating
130         $summary = trim($input['summary'] ?? '');
131         $htmlChanged = isset($input['html']) && $input['html'] !== $oldHtml;
132         $nameChanged = isset($input['name']) && $input['name'] !== $oldName;
133         $markdownChanged = isset($input['markdown']) && $input['markdown'] !== $oldMarkdown;
134         if ($htmlChanged || $nameChanged || $markdownChanged || $summary) {
135             $this->revisionRepo->storeNewForPage($page, $summary);
136         }
137
138         Activity::add(ActivityType::PAGE_UPDATE, $page);
139         $this->baseRepo->sortParent($page);
140
141         return $page;
142     }
143
144     protected function updateTemplateStatusAndContentFromInput(Page $page, array $input): void
145     {
146         if (isset($input['template']) && userCan(Permission::TemplatesManage)) {
147             $page->template = ($input['template'] === 'true');
148         }
149
150         $pageContent = new PageContent($page);
151         $defaultEditor = PageEditorType::getSystemDefault();
152         $currentEditor = PageEditorType::forPage($page) ?: $defaultEditor;
153         $inputEditor = PageEditorType::fromRequestValue($input['editor'] ?? '') ?? $currentEditor;
154         $newEditor = $currentEditor;
155
156         $haveInput = isset($input['markdown']) || isset($input['html']);
157         $inputEmpty = empty($input['markdown']) && empty($input['html']);
158
159         if ($haveInput && $inputEmpty) {
160             $pageContent->setNewHTML('', user());
161         } elseif (!empty($input['markdown']) && is_string($input['markdown'])) {
162             $newEditor = PageEditorType::Markdown;
163             $pageContent->setNewMarkdown($input['markdown'], user());
164         } elseif (isset($input['html'])) {
165             $newEditor = ($inputEditor->isHtmlBased() ? $inputEditor : null) ?? ($defaultEditor->isHtmlBased() ? $defaultEditor : null) ?? PageEditorType::WysiwygTinymce;
166             $pageContent->setNewHTML($input['html'], user());
167         }
168
169         if (($newEditor !== $currentEditor || empty($page->editor)) && userCan(Permission::EditorChange)) {
170             $page->editor = $newEditor->value;
171         } elseif (empty($page->editor)) {
172             $page->editor = $defaultEditor->value;
173         }
174     }
175
176     /**
177      * Save a page update draft.
178      */
179     public function updatePageDraft(Page $page, array $input)
180     {
181         // If the page itself is a draft simply update that
182         if ($page->draft) {
183             $this->updateTemplateStatusAndContentFromInput($page, $input);
184             $page->fill($input);
185             $page->save();
186
187             return $page;
188         }
189
190         // Otherwise, save the data to a revision
191         $draft = $this->revisionRepo->getNewDraftForCurrentUser($page);
192         $draft->fill($input);
193
194         if (!empty($input['markdown'])) {
195             $draft->markdown = $input['markdown'];
196             $draft->html = '';
197         } else {
198             $draft->html = $input['html'];
199             $draft->markdown = '';
200         }
201
202         $draft->save();
203
204         return $draft;
205     }
206
207     /**
208      * Destroy a page from the system.
209      *
210      * @throws Exception
211      */
212     public function destroy(Page $page)
213     {
214         $this->trashCan->softDestroyPage($page);
215         Activity::add(ActivityType::PAGE_DELETE, $page);
216         $this->trashCan->autoClearOld();
217     }
218
219     /**
220      * Restores a revision's content back into a page.
221      */
222     public function restoreRevision(Page $page, int $revisionId): Page
223     {
224         $oldUrl = $page->getUrl();
225         $page->revision_count++;
226
227         /** @var PageRevision $revision */
228         $revision = $page->revisions()->where('id', '=', $revisionId)->first();
229
230         $page->fill($revision->toArray());
231         $content = new PageContent($page);
232
233         if (!empty($revision->markdown)) {
234             $content->setNewMarkdown($revision->markdown, user());
235         } else {
236             $content->setNewHTML($revision->html, user());
237         }
238
239         $page->updated_by = user()->id;
240         $page->refreshSlug();
241         $page->save();
242         $page->indexForSearch();
243         $this->referenceStore->updateForEntity($page);
244
245         $summary = trans('entities.pages_revision_restored_from', ['id' => strval($revisionId), 'summary' => $revision->summary]);
246         $this->revisionRepo->storeNewForPage($page, $summary);
247
248         if ($oldUrl !== $page->getUrl()) {
249             $this->referenceUpdater->updateEntityReferences($page, $oldUrl);
250         }
251
252         Activity::add(ActivityType::PAGE_RESTORE, $page);
253         Activity::add(ActivityType::REVISION_RESTORE, $revision);
254
255         $this->baseRepo->sortParent($page);
256
257         return $page;
258     }
259
260     /**
261      * Move the given page into a new parent book or chapter.
262      * The $parentIdentifier must be a string of the following format:
263      * 'book:<id>' (book:5).
264      *
265      * @throws MoveOperationException
266      * @throws PermissionsException
267      */
268     public function move(Page $page, string $parentIdentifier): Entity
269     {
270         $parent = $this->entityQueries->findVisibleByStringIdentifier($parentIdentifier);
271         if (!$parent instanceof Chapter && !$parent instanceof Book) {
272             throw new MoveOperationException('Book or chapter to move page into not found');
273         }
274
275         if (!userCan(Permission::PageCreate, $parent)) {
276             throw new PermissionsException('User does not have permission to create a page within the new parent');
277         }
278
279         return (new DatabaseTransaction(function () use ($page, $parent) {
280             $page->chapter_id = ($parent instanceof Chapter) ? $parent->id : null;
281             $newBookId = ($parent instanceof Chapter) ? $parent->book->id : $parent->id;
282             $page->changeBook($newBookId);
283             $page->rebuildPermissions();
284
285             Activity::add(ActivityType::PAGE_MOVE, $page);
286
287             $this->baseRepo->sortParent($page);
288
289             return $parent;
290         }))->run();
291     }
292
293     /**
294      * Get a new priority for a page.
295      */
296     protected function getNewPriority(Page $page): int
297     {
298         $parent = $page->getParent();
299         if ($parent instanceof Chapter) {
300             /** @var ?Page $lastPage */
301             $lastPage = $parent->pages('desc')->first();
302
303             return $lastPage ? $lastPage->priority + 1 : 0;
304         }
305
306         return (new BookContents($page->book))->getLastPriority() + 1;
307     }
308 }