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;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Auth\UserRepo;
|
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-09-15 17:33:27 -04:00
|
|
|
use Exception;
|
2018-09-25 11:58:03 -04:00
|
|
|
use GatherContent\Htmldiff\Htmldiff;
|
2019-09-15 17:33:27 -04:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
use Illuminate\Http\RedirectResponse;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Http\Request;
|
2016-12-04 11:51:39 -05:00
|
|
|
use Illuminate\Http\Response;
|
2019-09-15 17:33:27 -04:00
|
|
|
use Illuminate\Routing\Redirector;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
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;
|
2016-02-28 05:49:41 -05:00
|
|
|
protected $userRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageController constructor.
|
2019-09-15 17:33:27 -04:00
|
|
|
* @param PageRepo $pageRepo
|
2016-02-28 05:49:41 -05:00
|
|
|
* @param UserRepo $userRepo
|
2015-07-12 16:31:15 -04:00
|
|
|
*/
|
2019-09-15 17:33:27 -04:00
|
|
|
public function __construct(PageRepo $pageRepo, UserRepo $userRepo)
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo = $pageRepo;
|
2016-02-28 05:49:41 -05:00
|
|
|
$this->userRepo = $userRepo;
|
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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
2016-09-29 10:56:57 -04:00
|
|
|
* @param string $chapterSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
2015-07-30 17:27:35 -04:00
|
|
|
* @internal param bool $pageSlug
|
2018-07-14 09:12:29 -04:00
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2016-09-29 10:56:57 -04:00
|
|
|
public function create($bookSlug, $chapterSlug = null)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2018-07-14 09:12:29 -04:00
|
|
|
if ($chapterSlug !== null) {
|
2019-09-15 18:28:23 -04:00
|
|
|
$chapter = $this->pageRepo->getEntityBySlug('chapter', $chapterSlug, $bookSlug);
|
2018-07-14 09:12:29 -04:00
|
|
|
$book = $chapter->book;
|
|
|
|
} else {
|
|
|
|
$chapter = null;
|
2019-09-15 18:28:23 -04:00
|
|
|
$book = $this->pageRepo->getEntityBySlug('book', $bookSlug);
|
2018-07-14 09:12:29 -04:00
|
|
|
}
|
|
|
|
|
2016-02-27 14:24:42 -05:00
|
|
|
$parent = $chapter ? $chapter : $book;
|
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
2016-09-29 10:56:57 -04:00
|
|
|
|
|
|
|
// Redirect to draft edit screen if signed in
|
|
|
|
if ($this->signedIn) {
|
2018-10-13 06:27:55 -04:00
|
|
|
$draft = $this->pageRepo->getDraftPage($book, $chapter);
|
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.
|
|
|
|
* @param Request $request
|
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string|null $chapterSlug
|
|
|
|
* @return mixed
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function createAsGuest(Request $request, $bookSlug, $chapterSlug = null)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255'
|
|
|
|
]);
|
|
|
|
|
2018-07-14 09:12:29 -04:00
|
|
|
if ($chapterSlug !== null) {
|
2019-09-15 18:28:23 -04:00
|
|
|
$chapter = $this->pageRepo->getEntityBySlug('chapter', $chapterSlug, $bookSlug);
|
2018-07-14 09:12:29 -04:00
|
|
|
$book = $chapter->book;
|
|
|
|
} else {
|
|
|
|
$chapter = null;
|
2019-09-15 18:28:23 -04:00
|
|
|
$book = $this->pageRepo->getEntityBySlug('book', $bookSlug);
|
2018-07-14 09:12:29 -04:00
|
|
|
}
|
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
$parent = $chapter ? $chapter : $book;
|
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getDraftPage($book, $chapter);
|
|
|
|
$this->pageRepo->publishPageDraft($page, [
|
2016-09-29 10:56:57 -04:00
|
|
|
'name' => $request->get('name'),
|
|
|
|
'html' => ''
|
|
|
|
]);
|
|
|
|
return redirect($page->getUrl('/edit'));
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show form to continue editing a draft page.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param int $pageId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return Factory|View
|
2016-03-13 08:04:08 -04:00
|
|
|
*/
|
|
|
|
public function editDraft($bookSlug, $pageId)
|
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$draft = $this->pageRepo->getById('page', $pageId, true);
|
2018-07-14 09:12:29 -04:00
|
|
|
$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
|
|
|
|
2016-09-29 12:07:58 -04:00
|
|
|
$draftsEnabled = $this->signedIn;
|
2019-08-11 15:04:43 -04:00
|
|
|
$templates = $this->pageRepo->getPageTemplates(10);
|
|
|
|
|
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.
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
2016-03-13 08:04:08 -04:00
|
|
|
* @param string $bookSlug
|
2016-12-04 11:51:39 -05:00
|
|
|
* @param int $pageId
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2016-03-13 08:04:08 -04:00
|
|
|
public function store(Request $request, $bookSlug, $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
|
|
|
]);
|
2015-07-30 17:27:35 -04:00
|
|
|
|
2015-10-10 13:57:52 -04:00
|
|
|
$input = $request->all();
|
2018-10-13 06:27:55 -04:00
|
|
|
$draftPage = $this->pageRepo->getById('page', $pageId, true);
|
2018-07-14 09:12:29 -04:00
|
|
|
$book = $draftPage->book;
|
2016-03-13 08:04:08 -04:00
|
|
|
|
2018-07-14 09:12:29 -04:00
|
|
|
$parent = $draftPage->parent;
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2016-04-07 14:03:00 -04:00
|
|
|
if ($parent->isA('chapter')) {
|
2018-10-13 06:27:55 -04:00
|
|
|
$input['priority'] = $this->pageRepo->getNewChapterPriority($parent);
|
2016-04-07 14:03:00 -04:00
|
|
|
} else {
|
2018-10-13 06:27:55 -04:00
|
|
|
$input['priority'] = $this->pageRepo->getNewBookPriority($parent);
|
2016-04-07 14:03:00 -04:00
|
|
|
}
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->publishPageDraft($draftPage, $input);
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($page, 'page_create', $book->id);
|
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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
2017-12-28 08:19:02 -05:00
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function show($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2016-02-25 15:01:59 -05:00
|
|
|
try {
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-03-05 13:09:21 -05:00
|
|
|
} catch (NotFoundException $e) {
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getPageByOldSlug($pageSlug, $bookSlug);
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($page === null) {
|
|
|
|
throw $e;
|
|
|
|
}
|
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);
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$page->html = $this->pageRepo->renderPage($page);
|
|
|
|
$sidebarTree = $this->pageRepo->getBookChildren($page->book);
|
|
|
|
$pageNav = $this->pageRepo->getPageNav($page->html);
|
2017-11-15 13:35:24 -05:00
|
|
|
|
|
|
|
// check if the comment's 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', [
|
2017-01-16 16:24:48 -05: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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param int $pageId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return JsonResponse
|
2016-03-12 10:52:19 -05:00
|
|
|
*/
|
|
|
|
public function getPageAjax($pageId)
|
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getById('page', $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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
2018-10-13 06:27:55 -04:00
|
|
|
* @throws NotFoundException
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function edit($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_editing_named', ['pageName'=>$page->getShortName()]));
|
2016-03-12 10:52:19 -05:00
|
|
|
$page->isDraft = false;
|
|
|
|
|
2016-03-13 08:04:08 -04:00
|
|
|
// Check for active editing
|
2016-03-12 10:52:19 -05:00
|
|
|
$warnings = [];
|
2018-10-13 06:27:55 -04:00
|
|
|
if ($this->pageRepo->isPageEditingActive($page, 60)) {
|
|
|
|
$warnings[] = $this->pageRepo->getPageEditingActiveMessage($page, 60);
|
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
|
2018-10-13 06:27:55 -04:00
|
|
|
$userPageDraft = $this->pageRepo->getUserPageDraft($page, $this->currentUser->id);
|
|
|
|
if ($userPageDraft !== null) {
|
|
|
|
$page->name = $userPageDraft->name;
|
|
|
|
$page->html = $userPageDraft->html;
|
|
|
|
$page->markdown = $userPageDraft->markdown;
|
2016-03-12 10:52:19 -05:00
|
|
|
$page->isDraft = true;
|
2018-10-13 06:27:55 -04:00
|
|
|
$warnings [] = $this->pageRepo->getUserPageDraftMessage($userPageDraft);
|
2016-03-12 10:52:19 -05:00
|
|
|
}
|
|
|
|
|
2018-01-28 11:58:52 -05:00
|
|
|
if (count($warnings) > 0) {
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showWarningNotification( implode("\n", $warnings));
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|
2016-03-12 10:52:19 -05:00
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
$draftsEnabled = $this->signedIn;
|
2019-08-11 15:04:43 -04:00
|
|
|
$templates = $this->pageRepo->getPageTemplates(10);
|
|
|
|
|
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.
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function update(Request $request, $bookSlug, $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-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo->updatePage($page, $page->book->id, $request->all());
|
2017-01-01 11:05:44 -05:00
|
|
|
Activity::add($page, 'page_update', $page->book->id);
|
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.
|
|
|
|
* @param Request $request
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param int $pageId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return JsonResponse
|
2016-03-09 17:32:07 -05:00
|
|
|
*/
|
2016-03-13 08:04:08 -04:00
|
|
|
public function saveDraft(Request $request, $pageId)
|
2016-03-09 17:32:07 -05:00
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getById('page', $pageId, true);
|
2016-03-09 17:32:07 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2016-09-29 10:56:57 -04:00
|
|
|
|
|
|
|
if (!$this->signedIn) {
|
|
|
|
return response()->json([
|
|
|
|
'status' => 'error',
|
2016-12-04 11:51:39 -05:00
|
|
|
'message' => trans('errors.guests_cannot_save_drafts'),
|
2016-09-29 10:56:57 -04:00
|
|
|
], 500);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Redirect from a special link url which
|
|
|
|
* uses the page id rather than the name.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param int $pageId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return RedirectResponse|Redirector
|
2015-07-21 15:13:29 -04:00
|
|
|
*/
|
2015-07-16 14:15:22 -04:00
|
|
|
public function redirectFromLink($pageId)
|
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getById('page', $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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return View
|
2015-08-09 07:06:52 -04:00
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function showDelete($bookSlug, $pageSlug)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
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-02-02 06:41:41 -05: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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param int $pageId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return View
|
2016-03-13 08:04:08 -04:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function showDeleteDraft($bookSlug, $pageId)
|
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getById('page', $pageId, true);
|
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-02-02 06:41:41 -05: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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
2015-07-28 15:57:13 -04:00
|
|
|
* @internal param int $id
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function destroy($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2017-01-01 11:05:44 -05:00
|
|
|
$book = $page->book;
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo->destroyPage($page);
|
2017-10-15 14:14:46 -04:00
|
|
|
|
2019-09-19 13:03:17 -04:00
|
|
|
Activity::addMessage('page_delete', $page->name, $book->id);
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showSuccessNotification( trans('entities.pages_delete_success'));
|
2016-03-13 08:04:08 -04:00
|
|
|
return redirect($book->getUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified draft page from storage.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param int $pageId
|
2016-03-13 08:04:08 -04:00
|
|
|
* @return Response
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function destroyDraft($bookSlug, $pageId)
|
|
|
|
{
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->getById('page', $pageId, true);
|
2017-01-01 11:05:44 -05:00
|
|
|
$book = $page->book;
|
2016-03-13 08:04:08 -04:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showSuccessNotification( trans('entities.pages_delete_draft_success'));
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo->destroyPage($page);
|
2015-07-28 15:57:13 -04:00
|
|
|
return redirect($book->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2015-08-09 07:06:52 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the last revisions for this page.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return View
|
2019-02-02 06:41:41 -05:00
|
|
|
* @throws NotFoundException
|
2015-08-09 07:06:52 -04:00
|
|
|
*/
|
|
|
|
public function showRevisions($bookSlug, $pageSlug)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_revisions_named', ['pageName'=>$page->getShortName()]));
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.revisions', ['page' => $page, 'current' => $page]);
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows a preview of a single revision
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
|
|
|
* @param int $revisionId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return View
|
2015-08-09 07:06:52 -04:00
|
|
|
*/
|
|
|
|
public function showRevision($bookSlug, $pageSlug, $revisionId)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2017-02-25 07:29:01 -05:00
|
|
|
$revision = $page->revisions()->where('id', '=', $revisionId)->first();
|
|
|
|
if ($revision === null) {
|
|
|
|
abort(404);
|
|
|
|
}
|
2016-07-07 13:42:21 -04:00
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
$page->fill($revision->toArray());
|
2017-02-25 07:29:01 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_revision_named', ['pageName' => $page->getShortName()]));
|
2017-06-04 01:47:14 -04:00
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.revision', [
|
2016-09-29 05:10:46 -04:00
|
|
|
'page' => $page,
|
2017-01-01 11:05:44 -05:00
|
|
|
'book' => $page->book,
|
2019-02-02 06:41:41 -05:00
|
|
|
'diff' => null,
|
2017-08-26 10:41:33 -04:00
|
|
|
'revision' => $revision
|
2016-09-29 05:10:46 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the changes of a single revision
|
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
|
|
|
* @param int $revisionId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return View
|
2016-09-29 05:10:46 -04:00
|
|
|
*/
|
|
|
|
public function showRevisionChanges($bookSlug, $pageSlug, $revisionId)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2017-02-25 07:29:01 -05:00
|
|
|
$revision = $page->revisions()->where('id', '=', $revisionId)->first();
|
|
|
|
if ($revision === null) {
|
|
|
|
abort(404);
|
|
|
|
}
|
2016-09-29 05:10:46 -04:00
|
|
|
|
|
|
|
$prev = $revision->getPrevious();
|
|
|
|
$prevContent = ($prev === null) ? '' : $prev->html;
|
|
|
|
$diff = (new Htmldiff)->diff($prevContent, $revision->html);
|
|
|
|
|
|
|
|
$page->fill($revision->toArray());
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.pages_revision_named', ['pageName'=>$page->getShortName()]));
|
2016-09-29 05:10:46 -04:00
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
return view('pages.revision', [
|
2016-07-07 13:42:21 -04:00
|
|
|
'page' => $page,
|
2017-01-01 11:05:44 -05:00
|
|
|
'book' => $page->book,
|
2016-07-07 13:42:21 -04:00
|
|
|
'diff' => $diff,
|
2017-08-26 10:41:33 -04:00
|
|
|
'revision' => $revision
|
2016-07-07 13:42:21 -04:00
|
|
|
]);
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2015-10-18 14:40:33 -04:00
|
|
|
/**
|
|
|
|
* Restores a page using the content of the specified revision.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
|
|
|
* @param int $revisionId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return RedirectResponse|Redirector
|
2015-10-18 14:40:33 -04:00
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function restoreRevision($bookSlug, $pageSlug, $revisionId)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('page-update', $page);
|
2018-10-13 06:27:55 -04:00
|
|
|
$page = $this->pageRepo->restorePageRevision($page, $page->book, $revisionId);
|
2017-01-01 11:05:44 -05:00
|
|
|
Activity::add($page, 'page_restore', $page->book->id);
|
2015-08-09 07:06:52 -04:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
2016-01-20 17:13:13 -05:00
|
|
|
|
2018-09-15 05:45:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a revision using the id of the specified revision.
|
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2018-09-16 11:14:09 -04:00
|
|
|
* @param int $revId
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return RedirectResponse|Redirector
|
|
|
|
*@throws BadRequestException
|
2018-09-15 05:45:42 -04:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function destroyRevision($bookSlug, $pageSlug, $revId)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2018-09-16 11:14:09 -04:00
|
|
|
$this->checkOwnablePermission('page-delete', $page);
|
2018-09-15 05:45:42 -04:00
|
|
|
|
|
|
|
$revision = $page->revisions()->where('id', '=', $revId)->first();
|
|
|
|
if ($revision === null) {
|
|
|
|
throw new NotFoundException("Revision #{$revId} not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the current revision for the page
|
2018-09-15 15:42:36 -04:00
|
|
|
$currentRevision = $page->getCurrentRevision();
|
2018-09-15 05:45:42 -04:00
|
|
|
|
|
|
|
// Check if its the latest revision, cannot delete latest revision.
|
2018-09-15 15:42:36 -04:00
|
|
|
if (intval($currentRevision->id) === intval($revId)) {
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showErrorNotification( trans('entities.revision_cannot_delete_latest'));
|
2019-02-02 06:41:41 -05:00
|
|
|
return response()->view('pages.revisions', ['page' => $page, 'book' => $page->book, 'current' => $page], 400);
|
2018-09-15 05:45:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$revision->delete();
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showSuccessNotification( trans('entities.revision_delete_success'));
|
2019-08-24 13:26:28 -04:00
|
|
|
return redirect($page->getUrl('/revisions'));
|
2018-09-15 05:45:42 -04:00
|
|
|
}
|
|
|
|
|
2016-02-20 13:51:01 -05:00
|
|
|
/**
|
|
|
|
* Show a listing of recently created pages
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return Factory|View
|
2016-02-20 13:51:01 -05:00
|
|
|
*/
|
|
|
|
public function showRecentlyUpdated()
|
|
|
|
{
|
2019-02-02 06:41:41 -05:00
|
|
|
// TODO - Still exist?
|
2019-08-04 09:26:39 -04:00
|
|
|
$pages = $this->pageRepo->getRecentlyUpdatedPaginated('page', 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.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2016-06-11 16:04:18 -04:00
|
|
|
* @return mixed
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function showMove($bookSlug, $pageSlug)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
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
|
|
|
/**
|
|
|
|
* Does the action of moving the location of a page
|
2019-09-15 13:53:30 -04:00
|
|
|
* @param Request $request
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2016-06-25 10:31:38 -04:00
|
|
|
* @return mixed
|
|
|
|
* @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-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
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());
|
|
|
|
}
|
|
|
|
|
|
|
|
$stringExploded = explode(':', $entitySelection);
|
|
|
|
$entityType = $stringExploded[0];
|
|
|
|
$entityId = intval($stringExploded[1]);
|
|
|
|
|
|
|
|
|
2017-01-01 11:05:44 -05:00
|
|
|
try {
|
2018-10-13 06:27:55 -04:00
|
|
|
$parent = $this->pageRepo->getById($entityType, $entityId);
|
2019-09-15 17:33:27 -04:00
|
|
|
} catch (Exception $e) {
|
2016-12-04 11:51:39 -05:00
|
|
|
session()->flash(trans('entities.selected_book_chapter_not_found'));
|
2016-06-12 07:14:14 -04:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
2018-04-14 13:47:13 -04:00
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo->changePageParent($page, $parent);
|
2016-06-12 07:14:14 -04:00
|
|
|
Activity::add($page, 'page_move', $page->book->id);
|
2019-09-19 10:12:10 -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.
|
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
|
|
|
* @return mixed
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function showCopy($bookSlug, $pageSlug)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
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
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a copy of a page within the requested target destination.
|
2019-09-15 13:53:30 -04:00
|
|
|
* @param Request $request
|
2018-04-14 13:00:16 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
|
|
|
* @return mixed
|
|
|
|
* @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-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2018-12-31 01:01:49 -05:00
|
|
|
$this->checkOwnablePermission('page-view', $page);
|
2018-04-14 13:00:16 -04:00
|
|
|
|
|
|
|
$entitySelection = $request->get('entity_selection', null);
|
|
|
|
if ($entitySelection === null || $entitySelection === '') {
|
|
|
|
$parent = $page->chapter ? $page->chapter : $page->book;
|
|
|
|
} else {
|
|
|
|
$stringExploded = explode(':', $entitySelection);
|
|
|
|
$entityType = $stringExploded[0];
|
|
|
|
$entityId = intval($stringExploded[1]);
|
|
|
|
|
|
|
|
try {
|
2018-10-13 06:27:55 -04:00
|
|
|
$parent = $this->pageRepo->getById($entityType, $entityId);
|
2019-09-15 17:33:27 -04:00
|
|
|
} catch (Exception $e) {
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->showErrorNotification(trans('entities.selected_book_chapter_not_found'));
|
2018-04-14 13:00:16 -04:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->checkOwnablePermission('page-create', $parent);
|
|
|
|
|
2018-10-13 06:27:55 -04:00
|
|
|
$pageCopy = $this->pageRepo->copyPage($page, $parent, $request->get('name', ''));
|
2018-04-14 13:00:16 -04:00
|
|
|
|
|
|
|
Activity::add($pageCopy, 'page_create', $pageCopy->book->id);
|
2019-09-19 10:12:10 -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.
|
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return Factory|View
|
2019-02-02 06:41:41 -05:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function showPermissions($bookSlug, $pageSlug)
|
|
|
|
{
|
2019-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2019-02-02 06:41:41 -05:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
|
|
|
$roles = $this->userRepo->getRestrictableRoles();
|
|
|
|
return view('pages.permissions', [
|
|
|
|
'page' => $page,
|
|
|
|
'roles' => $roles
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-02-28 05:49:41 -05:00
|
|
|
/**
|
2016-05-01 16:20:50 -04:00
|
|
|
* Set the permissions for this page.
|
2016-09-18 09:49:36 -04:00
|
|
|
* @param string $bookSlug
|
|
|
|
* @param string $pageSlug
|
2016-02-28 05:49:41 -05:00
|
|
|
* @param Request $request
|
2019-09-15 17:33:27 -04:00
|
|
|
* @return RedirectResponse|Redirector
|
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-09-15 18:28:23 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $bookSlug);
|
2016-02-28 05:49:41 -05:00
|
|
|
$this->checkOwnablePermission('restrictions-manage', $page);
|
2018-10-13 06:27:55 -04:00
|
|
|
$this->pageRepo->updateEntityPermissionsFromRequest($request, $page);
|
2019-09-19 10:12:10 -04:00
|
|
|
$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
|
|
|
}
|