2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2021-05-16 11:49:37 +02:00
|
|
|
use BookStack\Actions\View;
|
2021-06-26 17:23:15 +02:00
|
|
|
use BookStack\Entities\Models\Page;
|
|
|
|
use BookStack\Entities\Repos\PageRepo;
|
2020-11-22 00:20:54 +01:00
|
|
|
use BookStack\Entities\Tools\BookContents;
|
2021-12-19 13:56:27 +01:00
|
|
|
use BookStack\Entities\Tools\Cloner;
|
2021-05-29 13:39:41 +02:00
|
|
|
use BookStack\Entities\Tools\NextPreviousContentLocator;
|
2020-11-22 00:20:54 +01:00
|
|
|
use BookStack\Entities\Tools\PageContent;
|
|
|
|
use BookStack\Entities\Tools\PageEditActivity;
|
2022-04-18 00:01:14 +02:00
|
|
|
use BookStack\Entities\Tools\PageEditorData;
|
2021-01-01 18:49:48 +01:00
|
|
|
use BookStack\Entities\Tools\PermissionsUpdater;
|
2018-09-25 17:58:03 +02:00
|
|
|
use BookStack\Exceptions\NotFoundException;
|
2019-10-05 13:55:01 +02:00
|
|
|
use BookStack\Exceptions\PermissionsException;
|
2022-08-20 13:07:38 +02:00
|
|
|
use BookStack\References\ReferenceFetcher;
|
2019-09-15 23:33:27 +02:00
|
|
|
use Exception;
|
2022-01-24 22:21:30 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2015-07-12 21:01:42 +02:00
|
|
|
use Illuminate\Http\Request;
|
2019-10-05 13:55:01 +02:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2019-09-15 23:33:27 +02:00
|
|
|
use Throwable;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
class PageController extends Controller
|
|
|
|
{
|
2022-04-18 00:01:14 +02:00
|
|
|
protected PageRepo $pageRepo;
|
2022-08-20 13:07:38 +02:00
|
|
|
protected ReferenceFetcher $referenceFetcher;
|
2015-07-12 22:31:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageController constructor.
|
|
|
|
*/
|
2022-08-20 13:07:38 +02:00
|
|
|
public function __construct(PageRepo $pageRepo, ReferenceFetcher $referenceFetcher)
|
2015-07-12 22:31:15 +02:00
|
|
|
{
|
2018-10-13 12:27:55 +02:00
|
|
|
$this->pageRepo = $pageRepo;
|
2022-08-20 13:07:38 +02:00
|
|
|
$this->referenceFetcher = $referenceFetcher;
|
2015-07-12 22:31:15 +02:00
|
|
|
}
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
/**
|
2015-08-09 13:06:52 +02:00
|
|
|
* Show the form for creating a new page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws Throwable
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function create(string $bookSlug, string $chapterSlug = null)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$parent = $this->pageRepo->getParentFromSlugs($bookSlug, $chapterSlug);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
2016-09-29 16:56:57 +02:00
|
|
|
|
|
|
|
// Redirect to draft edit screen if signed in
|
2019-09-20 01:18:28 +02:00
|
|
|
if ($this->isSignedIn()) {
|
2019-10-05 13:55:01 +02:00
|
|
|
$draft = $this->pageRepo->getNewDraftPage($parent);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
return redirect($draft->getUrl());
|
|
|
|
}
|
|
|
|
|
2018-07-14 15:12:29 +02:00
|
|
|
// Otherwise show the edit view if they're a guest
|
2016-12-04 17:51:39 +01:00
|
|
|
$this->setPageTitle(trans('entities.pages_new'));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
return view('pages.guest-create', ['parent' => $parent]);
|
2016-09-29 16:56:57 +02:00
|
|
|
}
|
2016-03-13 13:04:08 +01:00
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
/**
|
|
|
|
* Create a new page as a guest user.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws ValidationException
|
2016-09-29 16:56:57 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function createAsGuest(Request $request, string $bookSlug, string $chapterSlug = null)
|
2016-09-29 16:56:57 +02:00
|
|
|
{
|
|
|
|
$this->validate($request, [
|
2021-11-05 01:26:55 +01:00
|
|
|
'name' => ['required', 'string', 'max:255'],
|
2016-09-29 16:56:57 +02:00
|
|
|
]);
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$parent = $this->pageRepo->getParentFromSlugs($bookSlug, $chapterSlug);
|
2016-09-29 16:56:57 +02:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getNewDraftPage($parent);
|
|
|
|
$this->pageRepo->publishDraft($page, [
|
2016-09-29 16:56:57 +02:00
|
|
|
'name' => $request->get('name'),
|
2021-06-26 17:23:15 +02:00
|
|
|
'html' => '',
|
2016-09-29 16:56:57 +02:00
|
|
|
]);
|
2019-10-05 13:55:01 +02:00
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
return redirect($page->getUrl('/edit'));
|
2016-03-13 13:04:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show form to continue editing a draft page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
2016-03-13 13:04:08 +01:00
|
|
|
*/
|
2022-04-18 18:39:28 +02:00
|
|
|
public function editDraft(Request $request, string $bookSlug, int $pageId)
|
2016-03-13 13:04:08 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$draft = $this->pageRepo->getById($pageId);
|
2020-11-02 23:47:48 +01:00
|
|
|
$this->checkOwnablePermission('page-create', $draft->getParent());
|
2016-03-13 13:04:08 +01:00
|
|
|
|
2022-04-18 18:39:28 +02:00
|
|
|
$editorData = new PageEditorData($draft, $this->pageRepo, $request->query('editor', ''));
|
2022-04-18 00:01:14 +02:00
|
|
|
$this->setPageTitle(trans('entities.pages_edit_draft'));
|
2019-08-11 21:04:43 +02:00
|
|
|
|
2022-04-18 00:01:14 +02:00
|
|
|
return view('pages.edit', $editorData->getViewData());
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-13 13:04:08 +01:00
|
|
|
* Store a new page by changing a draft into a page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
|
|
|
* @throws ValidationException
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function store(Request $request, string $bookSlug, int $pageId)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2015-07-12 22:31:15 +02:00
|
|
|
$this->validate($request, [
|
2021-11-05 01:26:55 +01:00
|
|
|
'name' => ['required', 'string', 'max:255'],
|
2015-07-12 22:31:15 +02:00
|
|
|
]);
|
2019-10-05 13:55:01 +02:00
|
|
|
$draftPage = $this->pageRepo->getById($pageId);
|
2020-11-02 23:47:48 +01:00
|
|
|
$this->checkOwnablePermission('page-create', $draftPage->getParent());
|
2015-07-30 23:27:35 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->publishDraft($draftPage, $request->all());
|
2015-07-20 23:05:26 +02:00
|
|
|
|
2015-07-12 22:31:15 +02:00
|
|
|
return redirect($page->getUrl());
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 13:06:52 +02:00
|
|
|
* Display the specified page.
|
2017-01-01 17:05:44 +01:00
|
|
|
* If the page is not found via the slug the revisions are searched for a match.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2017-12-28 14:19:02 +01:00
|
|
|
* @throws NotFoundException
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function show(string $bookSlug, string $pageSlug)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2016-02-25 21:01:59 +01:00
|
|
|
try {
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-03-05 19:09:21 +01:00
|
|
|
} catch (NotFoundException $e) {
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getByOldSlug($bookSlug, $pageSlug);
|
|
|
|
|
2018-01-28 17:58:52 +01:00
|
|
|
if ($page === null) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2019-10-05 13:55:01 +02:00
|
|
|
|
2016-02-25 21:01:59 +01:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2016-04-09 13:40:07 +02:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$pageContent = (new PageContent($page));
|
|
|
|
$page->html = $pageContent->render();
|
|
|
|
$sidebarTree = (new BookContents($page->book))->getTree();
|
|
|
|
$pageNav = $pageContent->getNavigation($page->html);
|
2017-11-15 19:35:24 +01:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
// Check if page comments are enabled
|
2017-12-07 20:19:25 +01:00
|
|
|
$commentsEnabled = !setting('app-disable-comments');
|
|
|
|
if ($commentsEnabled) {
|
|
|
|
$page->load(['comments.createdBy']);
|
2017-11-15 19:35:24 +01:00
|
|
|
}
|
2017-06-04 07:47:14 +02:00
|
|
|
|
2021-05-29 13:39:41 +02:00
|
|
|
$nextPreviousLocator = new NextPreviousContentLocator($page, $sidebarTree);
|
2021-01-27 05:35:55 +01:00
|
|
|
|
2021-05-16 11:49:37 +02:00
|
|
|
View::incrementFor($page);
|
2015-12-05 15:41:51 +01:00
|
|
|
$this->setPageTitle($page->getShortName());
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
return view('pages.show', [
|
2021-06-26 17:23:15 +02:00
|
|
|
'page' => $page,
|
|
|
|
'book' => $page->book,
|
|
|
|
'current' => $page,
|
|
|
|
'sidebarTree' => $sidebarTree,
|
2017-12-07 20:19:25 +01:00
|
|
|
'commentsEnabled' => $commentsEnabled,
|
2021-06-26 17:23:15 +02:00
|
|
|
'pageNav' => $pageNav,
|
|
|
|
'next' => $nextPreviousLocator->getNext(),
|
|
|
|
'previous' => $nextPreviousLocator->getPrevious(),
|
2022-08-20 13:07:38 +02:00
|
|
|
'referenceCount' => $this->referenceFetcher->getPageReferenceCountToEntity($page),
|
2017-12-07 20:19:25 +01:00
|
|
|
]);
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
2016-03-12 16:52:19 +01:00
|
|
|
/**
|
|
|
|
* Get page from an ajax request.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
2016-03-12 16:52:19 +01:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function getPageAjax(int $pageId)
|
2016-03-12 16:52:19 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2020-07-05 22:18:17 +02:00
|
|
|
$page->setHidden(array_diff($page->getHidden(), ['html', 'markdown']));
|
2021-10-26 23:04:18 +02:00
|
|
|
$page->makeHidden(['book']);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-03-12 16:52:19 +01:00
|
|
|
return response()->json($page);
|
|
|
|
}
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
/**
|
2015-08-09 13:06:52 +02:00
|
|
|
* Show the form for editing the specified page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2018-10-13 12:27:55 +02:00
|
|
|
* @throws NotFoundException
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2022-04-18 18:39:28 +02:00
|
|
|
public function edit(Request $request, string $bookSlug, string $pageSlug)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-10-05 13:55:01 +02:00
|
|
|
|
2022-04-18 18:39:28 +02:00
|
|
|
$editorData = new PageEditorData($page, $this->pageRepo, $request->query('editor', ''));
|
2022-04-18 00:01:14 +02:00
|
|
|
if ($editorData->getWarnings()) {
|
|
|
|
$this->showWarningNotification(implode("\n", $editorData->getWarnings()));
|
2016-03-12 16:52:19 +01:00
|
|
|
}
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->setPageTitle(trans('entities.pages_editing_named', ['pageName' => $page->getShortName()]));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2022-04-18 00:01:14 +02:00
|
|
|
return view('pages.edit', $editorData->getViewData());
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 13:06:52 +02:00
|
|
|
* Update the specified page in storage.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws ValidationException
|
|
|
|
* @throws NotFoundException
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function update(Request $request, string $bookSlug, string $pageSlug)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2015-12-28 16:58:13 +01:00
|
|
|
$this->validate($request, [
|
2021-11-05 01:26:55 +01:00
|
|
|
'name' => ['required', 'string', 'max:255'],
|
2015-12-28 16:58:13 +01:00
|
|
|
]);
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-10-05 13:55:01 +02:00
|
|
|
|
|
|
|
$this->pageRepo->update($page, $request->all());
|
|
|
|
|
2015-07-12 22:31:15 +02:00
|
|
|
return redirect($page->getUrl());
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:32:07 +01:00
|
|
|
/**
|
|
|
|
* Save a draft update as a revision.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
2016-03-09 23:32:07 +01:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function saveDraft(Request $request, int $pageId)
|
2016-03-09 23:32:07 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2016-03-09 23:32:07 +01:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2016-09-29 16:56:57 +02:00
|
|
|
|
2019-09-20 01:18:28 +02:00
|
|
|
if (!$this->isSignedIn()) {
|
2019-10-05 13:55:01 +02:00
|
|
|
return $this->jsonError(trans('errors.guests_cannot_save_drafts'), 500);
|
2016-09-29 16:56:57 +02:00
|
|
|
}
|
|
|
|
|
2018-10-13 12:27:55 +02:00
|
|
|
$draft = $this->pageRepo->updatePageDraft($page, $request->only(['name', 'html', 'markdown']));
|
2021-10-04 21:26:55 +02:00
|
|
|
$warnings = (new PageEditActivity($page))->getWarningMessagesForDraft($draft);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-04-09 14:36:32 +02:00
|
|
|
return response()->json([
|
2021-06-26 17:23:15 +02:00
|
|
|
'status' => 'success',
|
|
|
|
'message' => trans('entities.pages_edit_draft_save_at'),
|
2021-10-04 21:26:55 +02:00
|
|
|
'warning' => implode("\n", $warnings),
|
|
|
|
'timestamp' => $draft->updated_at->timestamp,
|
2016-04-09 14:36:32 +02:00
|
|
|
]);
|
2016-03-09 23:32:07 +01:00
|
|
|
}
|
|
|
|
|
2015-07-21 21:13:29 +02:00
|
|
|
/**
|
2019-10-05 13:55:01 +02:00
|
|
|
* Redirect from a special link url which uses the page id rather than the name.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
2015-07-21 21:13:29 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function redirectFromLink(int $pageId)
|
2015-07-16 20:15:22 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2015-07-16 20:15:22 +02:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2015-08-09 13:06:52 +02:00
|
|
|
/**
|
|
|
|
* Show the deletion page for the specified page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
2015-08-09 13:06:52 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function showDelete(string $bookSlug, string $pageSlug)
|
2015-07-28 21:57:13 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2021-05-29 13:39:41 +02:00
|
|
|
$this->setPageTitle(trans('entities.pages_delete_named', ['pageName' => $page->getShortName()]));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
return view('pages.delete', [
|
2021-06-26 17:23:15 +02:00
|
|
|
'book' => $page->book,
|
|
|
|
'page' => $page,
|
|
|
|
'current' => $page,
|
2019-10-05 13:55:01 +02:00
|
|
|
]);
|
2015-07-28 21:57:13 +02:00
|
|
|
}
|
|
|
|
|
2016-03-13 13:04:08 +01:00
|
|
|
/**
|
|
|
|
* Show the deletion page for the specified page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2016-03-13 13:04:08 +01:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function showDeleteDraft(string $bookSlug, int $pageId)
|
2016-03-13 13:04:08 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2016-03-13 13:04:08 +01:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2021-05-29 13:39:41 +02:00
|
|
|
$this->setPageTitle(trans('entities.pages_delete_draft_named', ['pageName' => $page->getShortName()]));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
return view('pages.delete', [
|
2021-06-26 17:23:15 +02:00
|
|
|
'book' => $page->book,
|
|
|
|
'page' => $page,
|
|
|
|
'current' => $page,
|
2019-10-05 13:55:01 +02:00
|
|
|
]);
|
2016-03-13 13:04:08 +01:00
|
|
|
}
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
/**
|
2015-08-09 13:06:52 +02:00
|
|
|
* Remove the specified page from storage.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws NotFoundException
|
|
|
|
* @throws Throwable
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function destroy(string $bookSlug, string $pageSlug)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2020-11-07 23:37:27 +01:00
|
|
|
$parent = $page->getParent();
|
2017-10-15 20:14:46 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->pageRepo->destroy($page);
|
|
|
|
|
2019-12-16 12:54:53 +01:00
|
|
|
return redirect($parent->getUrl());
|
2016-03-13 13:04:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified draft page from storage.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2016-03-13 13:04:08 +01:00
|
|
|
* @throws NotFoundException
|
2019-10-05 13:55:01 +02:00
|
|
|
* @throws Throwable
|
2016-03-13 13:04:08 +01:00
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function destroyDraft(string $bookSlug, int $pageId)
|
2016-03-13 13:04:08 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2017-01-01 17:05:44 +01:00
|
|
|
$book = $page->book;
|
2019-10-05 13:55:01 +02:00
|
|
|
$chapter = $page->chapter;
|
2016-03-13 13:04:08 +01:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2015-08-09 13:06:52 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->pageRepo->destroy($page);
|
2015-08-09 13:06:52 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_delete_draft_success'));
|
2016-07-07 19:42:21 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
if ($chapter && userCan('view', $chapter)) {
|
|
|
|
return redirect($chapter->getUrl());
|
2018-09-15 11:45:42 +02:00
|
|
|
}
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
return redirect($book->getUrl());
|
2018-09-15 11:45:42 +02:00
|
|
|
}
|
|
|
|
|
2016-02-20 19:51:01 +01:00
|
|
|
/**
|
2019-10-05 13:55:01 +02:00
|
|
|
* Show a listing of recently created pages.
|
2016-02-20 19:51:01 +01:00
|
|
|
*/
|
|
|
|
public function showRecentlyUpdated()
|
|
|
|
{
|
2022-01-24 22:21:30 +01:00
|
|
|
$visibleBelongsScope = function (BelongsTo $query) {
|
|
|
|
$query->scopes('visible');
|
|
|
|
};
|
|
|
|
|
|
|
|
$pages = Page::visible()->with(['updatedBy', 'book' => $visibleBelongsScope, 'chapter' => $visibleBelongsScope])
|
2022-01-18 22:08:01 +01:00
|
|
|
->orderBy('updated_at', 'desc')
|
2019-10-05 13:55:01 +02:00
|
|
|
->paginate(20)
|
|
|
|
->setPath(url('/pages/recently-updated'));
|
|
|
|
|
2022-01-04 14:33:24 +01:00
|
|
|
$this->setPageTitle(trans('entities.recently_updated_pages'));
|
|
|
|
|
2021-05-23 14:34:08 +02:00
|
|
|
return view('common.detailed-listing-paginated', [
|
2022-01-18 22:08:01 +01:00
|
|
|
'title' => trans('entities.recently_updated_pages'),
|
|
|
|
'entities' => $pages,
|
|
|
|
'showUpdatedBy' => true,
|
2022-01-24 22:21:30 +01:00
|
|
|
'showPath' => true,
|
2016-02-20 19:51:01 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-06-11 22:04:18 +02:00
|
|
|
/**
|
|
|
|
* Show the view to choose a new parent to move a page into.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2016-06-11 22:04:18 +02:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function showMove(string $bookSlug, string $pageSlug)
|
2016-06-11 22:04:18 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-06-11 22:04:18 +02:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-01-05 15:39:40 +01:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
return view('pages.move', [
|
2017-01-01 17:05:44 +01:00
|
|
|
'book' => $page->book,
|
2021-06-26 17:23:15 +02:00
|
|
|
'page' => $page,
|
2016-06-11 22:04:18 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-06-25 16:31:38 +02:00
|
|
|
/**
|
2019-10-05 13:55:01 +02:00
|
|
|
* Does the action of moving the location of a page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2016-06-25 16:31:38 +02:00
|
|
|
* @throws NotFoundException
|
2019-09-15 23:33:27 +02:00
|
|
|
* @throws Throwable
|
2016-06-25 16:31:38 +02:00
|
|
|
*/
|
2019-09-15 19:53:30 +02:00
|
|
|
public function move(Request $request, string $bookSlug, string $pageSlug)
|
2016-06-12 13:14:14 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-06-12 13:14:14 +02:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-01-05 15:39:40 +01:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2016-06-12 13:14:14 +02:00
|
|
|
|
|
|
|
$entitySelection = $request->get('entity_selection', null);
|
|
|
|
if ($entitySelection === null || $entitySelection === '') {
|
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2017-01-01 17:05:44 +01:00
|
|
|
try {
|
2019-10-05 13:55:01 +02:00
|
|
|
$parent = $this->pageRepo->move($page, $entitySelection);
|
2022-01-05 17:11:11 +01:00
|
|
|
} catch (PermissionsException $exception) {
|
|
|
|
$this->showPermissionError();
|
2019-10-05 13:55:01 +02:00
|
|
|
} catch (Exception $exception) {
|
|
|
|
$this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-06-12 13:14:14 +02:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_move_success', ['parentName' => $parent->name]));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-06-12 13:14:14 +02:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2018-04-14 19:00:16 +02:00
|
|
|
/**
|
|
|
|
* Show the view to copy a page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2018-04-14 19:00:16 +02:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function showCopy(string $bookSlug, string $pageSlug)
|
2018-04-14 19:00:16 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2018-12-31 07:01:49 +01:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
2018-04-14 19:00:16 +02:00
|
|
|
session()->flashInput(['name' => $page->name]);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
return view('pages.copy', [
|
2018-04-14 19:00:16 +02:00
|
|
|
'book' => $page->book,
|
2021-06-26 17:23:15 +02:00
|
|
|
'page' => $page,
|
2018-04-14 19:00:16 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a copy of a page within the requested target destination.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2018-04-14 19:00:16 +02:00
|
|
|
* @throws NotFoundException
|
2019-09-15 23:33:27 +02:00
|
|
|
* @throws Throwable
|
2018-04-14 19:00:16 +02:00
|
|
|
*/
|
2021-12-19 13:56:27 +01:00
|
|
|
public function copy(Request $request, Cloner $cloner, string $bookSlug, string $pageSlug)
|
2018-04-14 19:00:16 +02:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2018-12-31 07:01:49 +01:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
2018-04-14 19:00:16 +02:00
|
|
|
|
2021-12-19 13:56:27 +01:00
|
|
|
$entitySelection = $request->get('entity_selection') ?: null;
|
|
|
|
$newParent = $entitySelection ? $this->pageRepo->findParentByIdentifier($entitySelection) : $page->getParent();
|
2018-04-14 19:00:16 +02:00
|
|
|
|
2021-12-19 13:56:27 +01:00
|
|
|
if (is_null($newParent)) {
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
|
2021-12-20 18:40:27 +01:00
|
|
|
|
2019-10-05 13:55:01 +02:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
2018-04-14 19:00:16 +02:00
|
|
|
|
2021-12-19 13:56:27 +01:00
|
|
|
$this->checkOwnablePermission('page-create', $newParent);
|
|
|
|
|
|
|
|
$newName = $request->get('name') ?: $page->name;
|
|
|
|
$pageCopy = $cloner->clonePage($page, $newParent, $newName);
|
2019-10-05 13:55:01 +02:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_copy_success'));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2018-04-14 19:00:16 +02:00
|
|
|
return redirect($pageCopy->getUrl());
|
|
|
|
}
|
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
/**
|
|
|
|
* Show the Permissions view.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2019-02-02 12:41:41 +01:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 13:55:01 +02:00
|
|
|
public function showPermissions(string $bookSlug, string $pageSlug)
|
2019-02-02 12:41:41 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2019-02-02 12:41:41 +01:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2019-02-02 12:41:41 +01:00
|
|
|
return view('pages.permissions', [
|
2021-05-29 13:39:41 +02:00
|
|
|
'page' => $page,
|
2019-02-02 12:41:41 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-02-28 11:49:41 +01:00
|
|
|
/**
|
2016-05-01 22:20:50 +02:00
|
|
|
* Set the permissions for this page.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2018-04-14 19:00:16 +02:00
|
|
|
* @throws NotFoundException
|
2019-09-15 23:33:27 +02:00
|
|
|
* @throws Throwable
|
2016-02-28 11:49:41 +01:00
|
|
|
*/
|
2021-01-01 18:49:48 +01:00
|
|
|
public function permissions(Request $request, PermissionsUpdater $permissionsUpdater, string $bookSlug, string $pageSlug)
|
2016-02-28 11:49:41 +01:00
|
|
|
{
|
2019-10-05 13:55:01 +02:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-28 11:49:41 +01:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
2019-10-05 13:55:01 +02:00
|
|
|
|
2021-01-01 18:49:48 +01:00
|
|
|
$permissionsUpdater->updateFromPermissionsForm($page, $request);
|
2019-10-05 13:55:01 +02:00
|
|
|
|
|
|
|
$this->showSuccessNotification(trans('entities.pages_permissions_success'));
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2016-02-28 11:49:41 +01:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|