Skip to content

Commit 46f4aa1

Browse files
committed
Try and handle conflict on update: it's a plan
1 parent 786a434 commit 46f4aa1

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

app/Entities/Controllers/PageController.php

+17
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,23 @@ public function update(Request $request, string $bookSlug, string $pageSlug)
222222
$page = $this->queries->findVisibleBySlugsOrFail($bookSlug, $pageSlug);
223223
$this->checkOwnablePermission('page-update', $page);
224224

225+
$editorRevision = $request->get("revision");
226+
// TODO This query is repeated at app/Entities/Tools/PageEditorData.php:73
227+
// Should probably be extracted, also we could fetch other information like the user
228+
// that created the newer revision and when it happened
229+
$currentRevisionId = $page->currentRevision()?->get(['id'])->first()->id;
230+
231+
if ($editorRevision != $currentRevisionId) {
232+
// TODO This is probably all kinds of wrong
233+
// We need to send the user back to their copy of the page so they
234+
// can save it or restart from the current revision
235+
$this->showWarningNotification(trans("errors.page_update_conflict", [
236+
"editorRevision" => $editorRevision,
237+
"currentRevision" => $currentRevisionId
238+
]));
239+
return $this->edit($request, $bookSlug, $pageSlug);
240+
}
241+
225242
$this->pageRepo->update($page, $request->all());
226243

227244
return redirect($page->getUrl());

app/Entities/Tools/PageEditorData.php

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ protected function build(): array
7070
'draftsEnabled' => $draftsEnabled,
7171
'templates' => $templates,
7272
'editor' => $editorType,
73+
'revision' => $page->currentRevision()->get(['id'])?->first()?->id,
7374
'comments' => new CommentTree($page),
7475
];
7576
}

lang/en/errors.php

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
'page_draft_autosave_fail' => 'Failed to save draft. Ensure you have internet connection before saving this page',
6565
'page_draft_delete_fail' => 'Failed to delete page draft and fetch current page saved content',
6666
'page_custom_home_deletion' => 'Cannot delete a page while it is set as a homepage',
67+
'page_update_conflict' => 'The page was edited between your revision (:editorRevision) and now (:currentRevision)',
6768

6869
// Entities
6970
'entity_not_found' => 'Entity not found',

resources/views/pages/parts/form.blade.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
{{--Editors--}}
3434
<div class="edit-area flex-fill flex">
3535
<input type="hidden" name="editor" value="{{ $editor->value }}">
36+
<input type="hidden" name="revision" value="{{ $revision }}">
3637

3738
@if($editor === \BookStack\Entities\Tools\PageEditorType::WysiwygLexical)
3839
@include('pages.parts.wysiwyg-editor', ['model' => $model])

0 commit comments

Comments
 (0)