2016-02-27 14:24:42 -05:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
use Activity;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Entities\Managers\BookContents;
|
|
|
|
use BookStack\Entities\Managers\PageContent;
|
|
|
|
use BookStack\Entities\Managers\PageEditActivity;
|
|
|
|
use BookStack\Entities\Page;
|
2018-10-13 06:27:55 -04:00
|
|
|
use BookStack\Entities\Repos\PageRepo;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Exceptions\NotFoundException;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Exceptions\NotifyException;
|
|
|
|
use BookStack\Exceptions\PermissionsException;
|
2019-09-15 17:33:27 -04:00
|
|
|
use Exception;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Http\Request;
|
2019-10-05 07:55:01 -04:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2019-09-15 17:33:27 -04:00
|
|
|
use Throwable;
|
2015-11-21 12:22:14 -05:00
|
|
|
use Views;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class PageController extends Controller
|
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
protected $pageRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageController constructor.
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function __construct(PageRepo $pageRepo)
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Show the form for creating a new page.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws Throwable
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function create(string $bookSlug, string $chapterSlug = null)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$parent = $this->pageRepo->getParentFromSlugs($bookSlug, $chapterSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
2016-09-29 10:56:57 -04:00
|
|
|
|
|
|
|
// Redirect to draft edit screen if signed in
|
2019-09-19 19:18:28 -04:00
|
|
|
if ($this->isSignedIn()) {
|
2019-10-05 07:55:01 -04:00
|
|
|
$draft = $this->pageRepo->getNewDraftPage($parent);
|
2016-09-29 10:56:57 -04:00
|
|
|
return redirect($draft->getUrl());
|
|
|
|
}
|
|
|
|
|
2018-07-14 09:12:29 -04:00
|
|
|
// Otherwise show the edit view if they're a guest
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_new'));
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.guest-create', ['parent' => $parent]);
|
2016-09-29 10:56:57 -04:00
|
|
|
}
|
2016-03-13 08:04:08 -04:00
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
/**
|
|
|
|
* Create a new page as a guest user.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws ValidationException
|
2016-09-29 10:56:57 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function createAsGuest(Request $request, string $bookSlug, string $chapterSlug = null)
|
2016-09-29 10:56:57 -04:00
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255'
|
|
|
|
]);
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$parent = $this->pageRepo->getParentFromSlugs($bookSlug, $chapterSlug);
|
2016-09-29 10:56:57 -04:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getNewDraftPage($parent);
|
|
|
|
$this->pageRepo->publishDraft($page, [
|
2016-09-29 10:56:57 -04:00
|
|
|
'name' => $request->get('name'),
|
|
|
|
'html' => ''
|
|
|
|
]);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
return redirect($page->getUrl('/edit'));
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show form to continue editing a draft page.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
2016-03-13 08:04:08 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function editDraft(string $bookSlug, int $pageId)
|
2016-03-13 08:04:08 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$draft = $this->pageRepo->getById($pageId);
|
|
|
|
$this->checkOwnablePermission('page-create', $draft->parent());
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_edit_draft'));
|
2016-03-13 08:04:08 -04:00
|
|
|
|
2019-09-19 19:18:28 -04:00
|
|
|
$draftsEnabled = $this->isSignedIn();
|
2019-10-05 07:55:01 -04:00
|
|
|
$templates = $this->pageRepo->getTemplates(10);
|
2019-08-11 15:04:43 -04:00
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.edit', [
|
2016-09-29 12:07:58 -04:00
|
|
|
'page' => $draft,
|
2017-01-01 11:05:44 -05:00
|
|
|
'book' => $draft->book,
|
2016-09-29 12:07:58 -04:00
|
|
|
'isDraft' => true,
|
2019-08-11 15:04:43 -04:00
|
|
|
'draftsEnabled' => $draftsEnabled,
|
|
|
|
'templates' => $templates,
|
2016-09-29 12:07:58 -04:00
|
|
|
]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-13 08:04:08 -04:00
|
|
|
* Store a new page by changing a draft into a page.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
|
|
|
* @throws ValidationException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function store(Request $request, string $bookSlug, int $pageId)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->validate($request, [
|
2016-03-13 08:04:08 -04:00
|
|
|
'name' => 'required|string|max:255'
|
2015-07-12 16:31:15 -04:00
|
|
|
]);
|
2019-10-05 07:55:01 -04:00
|
|
|
$draftPage = $this->pageRepo->getById($pageId);
|
|
|
|
$this->checkOwnablePermission('page-create', $draftPage->parent());
|
2015-07-30 17:27:35 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->publishDraft($draftPage, $request->all());
|
|
|
|
Activity::add($page, 'page_create', $draftPage->book->id);
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
return redirect($page->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Display the specified page.
|
2017-01-01 11:05:44 -05:00
|
|
|
* If the page is not found via the slug the revisions are searched for a match.
|
2017-12-28 08:19:02 -05:00
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function show(string $bookSlug, string $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2016-02-25 15:01:59 -05:00
|
|
|
try {
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-03-05 13:09:21 -05:00
|
|
|
} catch (NotFoundException $e) {
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getByOldSlug($bookSlug, $pageSlug);
|
|
|
|
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($page === null) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2016-02-25 15:01:59 -05:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2016-04-09 07:40:07 -04:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$pageContent = (new PageContent($page));
|
|
|
|
$page->html = $pageContent->render();
|
|
|
|
$sidebarTree = (new BookContents($page->book))->getTree();
|
|
|
|
$pageNav = $pageContent->getNavigation($page->html);
|
2017-11-15 13:35:24 -05:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
// Check if page comments are enabled
|
2017-12-07 14:19:25 -05:00
|
|
|
$commentsEnabled = !setting('app-disable-comments');
|
|
|
|
if ($commentsEnabled) {
|
|
|
|
$page->load(['comments.createdBy']);
|
2017-11-15 13:35:24 -05:00
|
|
|
}
|
2017-06-04 01:47:14 -04:00
|
|
|
|
2015-11-21 12:22:14 -05:00
|
|
|
Views::add($page);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle($page->getShortName());
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.show', [
|
2019-10-05 07:55:01 -04:00
|
|
|
'page' => $page,
|
|
|
|
'book' => $page->book,
|
2017-12-07 14:19:25 -05:00
|
|
|
'current' => $page,
|
|
|
|
'sidebarTree' => $sidebarTree,
|
|
|
|
'commentsEnabled' => $commentsEnabled,
|
|
|
|
'pageNav' => $pageNav
|
|
|
|
]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2016-03-12 10:52:19 -05:00
|
|
|
/**
|
|
|
|
* Get page from an ajax request.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
2016-03-12 10:52:19 -05:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function getPageAjax(int $pageId)
|
2016-03-12 10:52:19 -05:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2016-03-12 10:52:19 -05:00
|
|
|
return response()->json($page);
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Show the form for editing the specified page.
|
2018-10-13 06:27:55 -04:00
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function edit(string $bookSlug, string $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2016-03-12 10:52:19 -05:00
|
|
|
$page->isDraft = false;
|
2019-10-05 07:55:01 -04:00
|
|
|
$editActivity = new PageEditActivity($page);
|
2016-03-12 10:52:19 -05:00
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
// Check for active editing
|
2016-03-12 10:52:19 -05:00
|
|
|
$warnings = [];
|
2019-10-05 07:55:01 -04:00
|
|
|
if ($editActivity->hasActiveEditing()) {
|
|
|
|
$warnings[] = $editActivity->activeEditingMessage();
|
2016-03-12 10:52:19 -05:00
|
|
|
}
|
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
// Check for a current draft version for this user
|
2019-10-05 07:55:01 -04:00
|
|
|
$userDraft = $this->pageRepo->getUserDraft($page);
|
|
|
|
if ($userDraft !== null) {
|
|
|
|
$page->forceFill($userDraft->only(['name', 'html', 'markdown']));
|
2016-03-12 10:52:19 -05:00
|
|
|
$page->isDraft = true;
|
2019-10-05 07:55:01 -04:00
|
|
|
$warnings[] = $editActivity->getEditingActiveDraftMessage($userDraft);
|
2016-03-12 10:52:19 -05:00
|
|
|
}
|
|
|
|
|
2018-01-28 11:58:52 -05:00
|
|
|
if (count($warnings) > 0) {
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showWarningNotification(implode("\n", $warnings));
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|
2016-03-12 10:52:19 -05:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$templates = $this->pageRepo->getTemplates(10);
|
2019-09-19 19:18:28 -04:00
|
|
|
$draftsEnabled = $this->isSignedIn();
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->setPageTitle(trans('entities.pages_editing_named', ['pageName' => $page->getShortName()]));
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.edit', [
|
2016-09-29 10:56:57 -04:00
|
|
|
'page' => $page,
|
2017-01-01 11:05:44 -05:00
|
|
|
'book' => $page->book,
|
2016-09-29 10:56:57 -04:00
|
|
|
'current' => $page,
|
2019-08-11 15:04:43 -04:00
|
|
|
'draftsEnabled' => $draftsEnabled,
|
|
|
|
'templates' => $templates,
|
2016-09-29 10:56:57 -04:00
|
|
|
]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Update the specified page in storage.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws ValidationException
|
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function update(Request $request, string $bookSlug, string $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-12-28 10:58:13 -05:00
|
|
|
$this->validate($request, [
|
2016-03-13 08:04:08 -04:00
|
|
|
'name' => 'required|string|max:255'
|
2015-12-28 10:58:13 -05:00
|
|
|
]);
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
$this->pageRepo->update($page, $request->all());
|
2017-01-01 11:05:44 -05:00
|
|
|
Activity::add($page, 'page_update', $page->book->id);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
return redirect($page->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Save a draft update as a revision.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
2016-03-09 17:32:07 -05:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function saveDraft(Request $request, int $pageId)
|
2016-03-09 17:32:07 -05:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2016-03-09 17:32:07 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2016-09-29 10:56:57 -04:00
|
|
|
|
2019-09-19 19:18:28 -04:00
|
|
|
if (!$this->isSignedIn()) {
|
2019-10-05 07:55:01 -04:00
|
|
|
return $this->jsonError(trans('errors.guests_cannot_save_drafts'), 500);
|
2016-09-29 10:56:57 -04:00
|
|
|
}
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$draft = $this->pageRepo->updatePageDraft($page, $request->only(['name', 'html', 'markdown']));
|
2016-04-09 08:36:32 -04:00
|
|
|
|
|
|
|
$updateTime = $draft->updated_at->timestamp;
|
|
|
|
return response()->json([
|
2016-06-12 07:14:14 -04:00
|
|
|
'status' => 'success',
|
2016-12-04 11:51:39 -05:00
|
|
|
'message' => trans('entities.pages_edit_draft_save_at'),
|
2018-04-01 09:10:12 -04:00
|
|
|
'timestamp' => $updateTime
|
2016-04-09 08:36:32 -04:00
|
|
|
]);
|
2016-03-09 17:32:07 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 15:13:29 -04:00
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Redirect from a special link url which uses the page id rather than the name.
|
|
|
|
* @throws NotFoundException
|
2015-07-21 15:13:29 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function redirectFromLink(int $pageId)
|
2015-07-16 14:15:22 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2015-07-16 14:15:22 -04:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
/**
|
|
|
|
* Show the deletion page for the specified page.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
2015-08-09 07:06:52 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function showDelete(string $bookSlug, string $pageSlug)
|
2015-07-28 15:57:13 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_delete_named', ['pageName'=>$page->getShortName()]));
|
2019-10-05 07:55:01 -04:00
|
|
|
return view('pages.delete', [
|
|
|
|
'book' => $page->book,
|
|
|
|
'page' => $page,
|
|
|
|
'current' => $page
|
|
|
|
]);
|
2015-07-28 15:57:13 -04:00
|
|
|
}
|
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
/**
|
|
|
|
* Show the deletion page for the specified page.
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function showDeleteDraft(string $bookSlug, int $pageId)
|
2016-03-13 08:04:08 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_delete_draft_named', ['pageName'=>$page->getShortName()]));
|
2019-10-05 07:55:01 -04:00
|
|
|
return view('pages.delete', [
|
|
|
|
'book' => $page->book,
|
|
|
|
'page' => $page,
|
|
|
|
'current' => $page
|
|
|
|
]);
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Remove the specified page from storage.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotFoundException
|
|
|
|
* @throws Throwable
|
|
|
|
* @throws NotifyException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function destroy(string $bookSlug, string $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2017-10-15 14:14:46 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$book = $page->book;
|
2019-12-16 06:54:53 -05:00
|
|
|
$parent = $page->chapter ?? $book;
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->pageRepo->destroy($page);
|
2019-09-19 13:03:17 -04:00
|
|
|
Activity::addMessage('page_delete', $page->name, $book->id);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
$this->showSuccessNotification(trans('entities.pages_delete_success'));
|
2019-12-16 06:54:53 -05:00
|
|
|
return redirect($parent->getUrl());
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified draft page from storage.
|
|
|
|
* @throws NotFoundException
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws NotifyException
|
|
|
|
* @throws Throwable
|
2016-03-13 08:04:08 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function destroyDraft(string $bookSlug, int $pageId)
|
2016-03-13 08:04:08 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getById($pageId);
|
2017-01-01 11:05:44 -05:00
|
|
|
$book = $page->book;
|
2019-10-05 07:55:01 -04:00
|
|
|
$chapter = $page->chapter;
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2015-08-09 07:06:52 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->pageRepo->destroy($page);
|
2015-08-09 07:06:52 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_delete_draft_success'));
|
2016-07-07 13:42:21 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
if ($chapter && userCan('view', $chapter)) {
|
|
|
|
return redirect($chapter->getUrl());
|
2018-09-15 05:45:42 -04:00
|
|
|
}
|
2019-10-05 07:55:01 -04:00
|
|
|
return redirect($book->getUrl());
|
2018-09-15 05:45:42 -04:00
|
|
|
}
|
|
|
|
|
2016-02-20 13:51:01 -05:00
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Show a listing of recently created pages.
|
2016-02-20 13:51:01 -05:00
|
|
|
*/
|
|
|
|
public function showRecentlyUpdated()
|
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$pages = Page::visible()->orderBy('updated_at', 'desc')
|
|
|
|
->paginate(20)
|
|
|
|
->setPath(url('/pages/recently-updated'));
|
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.detailed-listing', [
|
2016-12-04 11:51:39 -05:00
|
|
|
'title' => trans('entities.recently_updated_pages'),
|
2016-02-20 13:51:01 -05:00
|
|
|
'pages' => $pages
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-06-11 16:04:18 -04:00
|
|
|
/**
|
|
|
|
* Show the view to choose a new parent to move a page into.
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function showMove(string $bookSlug, string $pageSlug)
|
2016-06-11 16:04:18 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-06-11 16:04:18 -04:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-01-05 09:39:40 -05:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.move', [
|
2017-01-01 11:05:44 -05:00
|
|
|
'book' => $page->book,
|
2016-06-11 16:04:18 -04:00
|
|
|
'page' => $page
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-06-25 10:31:38 -04:00
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Does the action of moving the location of a page.
|
2016-06-25 10:31:38 -04:00
|
|
|
* @throws NotFoundException
|
2019-09-15 17:33:27 -04:00
|
|
|
* @throws Throwable
|
2016-06-25 10:31:38 -04:00
|
|
|
*/
|
2019-09-15 13:53:30 -04:00
|
|
|
public function move(Request $request, string $bookSlug, string $pageSlug)
|
2016-06-12 07:14:14 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-06-12 07:14:14 -04:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-01-05 09:39:40 -05:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2016-06-12 07:14:14 -04:00
|
|
|
|
|
|
|
$entitySelection = $request->get('entity_selection', null);
|
|
|
|
if ($entitySelection === null || $entitySelection === '') {
|
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2017-01-01 11:05:44 -05:00
|
|
|
try {
|
2019-10-05 07:55:01 -04:00
|
|
|
$parent = $this->pageRepo->move($page, $entitySelection);
|
|
|
|
} catch (Exception $exception) {
|
|
|
|
if ($exception instanceof PermissionsException) {
|
|
|
|
$this->showPermissionError();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
|
2016-06-12 07:14:14 -04:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
|
|
|
Activity::add($page, 'page_move', $page->book->id);
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_move_success', ['parentName' => $parent->name]));
|
2016-06-12 07:14:14 -04:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2018-04-14 13:00:16 -04:00
|
|
|
/**
|
|
|
|
* Show the view to copy a page.
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function showCopy(string $bookSlug, string $pageSlug)
|
2018-04-14 13:00:16 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2018-12-31 01:01:49 -05:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
2018-04-14 13:00:16 -04:00
|
|
|
session()->flashInput(['name' => $page->name]);
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.copy', [
|
2018-04-14 13:00:16 -04:00
|
|
|
'book' => $page->book,
|
|
|
|
'page' => $page
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2018-04-14 13:00:16 -04:00
|
|
|
/**
|
|
|
|
* Create a copy of a page within the requested target destination.
|
|
|
|
* @throws NotFoundException
|
2019-09-15 17:33:27 -04:00
|
|
|
* @throws Throwable
|
2018-04-14 13:00:16 -04:00
|
|
|
*/
|
2019-09-15 13:53:30 -04:00
|
|
|
public function copy(Request $request, string $bookSlug, string $pageSlug)
|
2018-04-14 13:00:16 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2018-12-31 01:01:49 -05:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
2018-04-14 13:00:16 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$entitySelection = $request->get('entity_selection', null) ?? null;
|
|
|
|
$newName = $request->get('name', null);
|
2018-04-14 13:00:16 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
try {
|
|
|
|
$pageCopy = $this->pageRepo->copy($page, $entitySelection, $newName);
|
|
|
|
} catch (Exception $exception) {
|
|
|
|
if ($exception instanceof PermissionsException) {
|
|
|
|
$this->showPermissionError();
|
|
|
|
}
|
2018-04-14 13:00:16 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
2018-04-14 13:00:16 -04:00
|
|
|
|
|
|
|
Activity::add($pageCopy, 'page_create', $pageCopy->book->id);
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$this->showSuccessNotification(trans('entities.pages_copy_success'));
|
2018-04-14 13:00:16 -04:00
|
|
|
return redirect($pageCopy->getUrl());
|
|
|
|
}
|
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
/**
|
|
|
|
* Show the Permissions view.
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function showPermissions(string $bookSlug, string $pageSlug)
|
2019-02-02 06:41:41 -05:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2019-02-02 06:41:41 -05:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
|
|
|
return view('pages.permissions', [
|
|
|
|
'page' => $page,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-02-28 05:49:41 -05:00
|
|
|
/**
|
2016-05-01 16:20:50 -04:00
|
|
|
* Set the permissions for this page.
|
2018-04-14 13:00:16 -04:00
|
|
|
* @throws NotFoundException
|
2019-09-15 17:33:27 -04:00
|
|
|
* @throws Throwable
|
2016-02-28 05:49:41 -05:00
|
|
|
*/
|
2019-09-15 13:53:30 -04:00
|
|
|
public function permissions(Request $request, string $bookSlug, string $pageSlug)
|
2016-02-28 05:49:41 -05:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($bookSlug, $pageSlug);
|
2016-02-28 05:49:41 -05:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
$restricted = $request->get('restricted') === 'true';
|
|
|
|
$permissions = $request->filled('restrictions') ? collect($request->get('restrictions')) : null;
|
|
|
|
$this->pageRepo->updatePermissions($page, $restricted, $permissions);
|
|
|
|
|
|
|
|
$this->showSuccessNotification(trans('entities.pages_permissions_success'));
|
2016-02-28 05:49:41 -05:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|