2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
use Activity;
|
2016-01-20 17:13:13 -05:00
|
|
|
use BookStack\Services\ExportService;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-08-08 16:28:50 -04:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Repos\ChapterRepo;
|
|
|
|
use BookStack\Repos\PageRepo;
|
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
|
|
|
|
|
|
|
protected $pageRepo;
|
|
|
|
protected $bookRepo;
|
2015-07-30 17:27:35 -04:00
|
|
|
protected $chapterRepo;
|
2016-01-20 17:13:13 -05:00
|
|
|
protected $exportService;
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageController constructor.
|
2016-01-20 17:13:13 -05:00
|
|
|
* @param PageRepo $pageRepo
|
|
|
|
* @param BookRepo $bookRepo
|
|
|
|
* @param ChapterRepo $chapterRepo
|
|
|
|
* @param ExportService $exportService
|
2015-07-12 16:31:15 -04:00
|
|
|
*/
|
2016-01-20 17:13:13 -05:00
|
|
|
public function __construct(PageRepo $pageRepo, BookRepo $bookRepo, ChapterRepo $chapterRepo, ExportService $exportService)
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
|
|
|
$this->pageRepo = $pageRepo;
|
|
|
|
$this->bookRepo = $bookRepo;
|
2015-07-30 17:27:35 -04:00
|
|
|
$this->chapterRepo = $chapterRepo;
|
2016-01-20 17:13:13 -05:00
|
|
|
$this->exportService = $exportService;
|
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.
|
2015-07-12 15:01:42 -04:00
|
|
|
*
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
2015-07-30 17:27:35 -04:00
|
|
|
* @param bool $chapterSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
2015-07-30 17:27:35 -04:00
|
|
|
* @internal param bool $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function create($bookSlug, $chapterSlug = false)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-create');
|
2015-07-12 16:31:15 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
2015-07-30 17:27:35 -04:00
|
|
|
$chapter = $chapterSlug ? $this->chapterRepo->getBySlug($chapterSlug, $book->id) : false;
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Create New Page');
|
2015-07-30 17:27:35 -04:00
|
|
|
return view('pages/create', ['book' => $book, 'chapter' => $chapter]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Store a newly created page in storage.
|
2015-07-12 15:01:42 -04:00
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function store(Request $request, $bookSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-create');
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->validate($request, [
|
2015-12-28 10:58:13 -05: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();
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapterId = ($request->has('chapter') && $this->chapterRepo->idExists($request->get('chapter'))) ? $request->get('chapter') : null;
|
|
|
|
$input['priority'] = $this->bookRepo->getNewPriority($book);
|
2015-07-20 17:05:26 -04:00
|
|
|
|
2015-10-10 13:57:52 -04:00
|
|
|
$page = $this->pageRepo->saveNew($input, $book, $chapterId);
|
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.
|
2015-07-12 15:01:42 -04:00
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function show($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-15 17:55:49 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-11-26 18:45:04 -05:00
|
|
|
$sidebarTree = $this->bookRepo->getChildren($book);
|
2015-11-21 12:22:14 -05:00
|
|
|
Views::add($page);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle($page->getShortName());
|
2015-11-26 18:45:04 -05:00
|
|
|
return view('pages/show', ['page' => $page, 'book' => $book, 'current' => $page, 'sidebarTree' => $sidebarTree]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Show the form for editing the specified page.
|
2015-07-12 15:01:42 -04:00
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function edit($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-update');
|
2015-07-15 17:55:49 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Editing Page ' . $page->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('pages/edit', ['page' => $page, 'book' => $book, 'current' => $page]);
|
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 15:01:42 -04:00
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $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-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-update');
|
2015-12-28 10:58:13 -05:00
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255'
|
|
|
|
]);
|
2015-07-12 16:31:15 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
2015-07-15 17:55:49 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-08-09 07:06:52 -04:00
|
|
|
$this->pageRepo->updatePage($page, $book->id, $request->all());
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($page, 'page_update', $book->id);
|
2015-07-12 16:31:15 -04:00
|
|
|
return redirect($page->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2015-07-21 15:13:29 -04:00
|
|
|
/**
|
|
|
|
* Redirect from a special link url which
|
|
|
|
* uses the page id rather than the name.
|
|
|
|
* @param $pageId
|
|
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
|
|
*/
|
2015-07-16 14:15:22 -04:00
|
|
|
public function redirectFromLink($pageId)
|
|
|
|
{
|
|
|
|
$page = $this->pageRepo->getById($pageId);
|
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
/**
|
|
|
|
* Show the deletion page for the specified page.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function showDelete($bookSlug, $pageSlug)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-delete');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Delete Page ' . $page->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('pages/delete', ['book' => $book, 'page' => $page, 'current' => $page]);
|
2015-07-28 15:57:13 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
2015-08-09 07:06:52 -04:00
|
|
|
* Remove the specified page from storage.
|
2015-07-12 15:01:42 -04:00
|
|
|
*
|
2015-07-28 15:57:13 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $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
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-delete');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::addMessage('page_delete', $book->id, $page->name);
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->pageRepo->destroy($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.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function showRevisions($bookSlug, $pageSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Revisions For ' . $page->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('pages/revisions', ['page' => $page, 'book' => $book, 'current' => $page]);
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows a preview of a single revision
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @param $revisionId
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function showRevision($bookSlug, $pageSlug, $revisionId)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
|
|
|
$revision = $this->pageRepo->getRevisionById($revisionId);
|
|
|
|
$page->fill($revision->toArray());
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Page Revision For ' . $page->getShortName());
|
2015-08-09 07:06:52 -04:00
|
|
|
return view('pages/revision', ['page' => $page, 'book' => $book]);
|
|
|
|
}
|
|
|
|
|
2015-10-18 14:40:33 -04:00
|
|
|
/**
|
|
|
|
* Restores a page using the content of the specified revision.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @param $revisionId
|
|
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function restoreRevision($bookSlug, $pageSlug, $revisionId)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('page-update');
|
2015-08-09 07:06:52 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2015-10-18 14:40:33 -04:00
|
|
|
$page = $this->pageRepo->restoreRevision($page, $book, $revisionId);
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($page, 'page_restore', $book->id);
|
2015-08-09 07:06:52 -04:00
|
|
|
return redirect($page->getUrl());
|
|
|
|
}
|
2016-01-20 17:13:13 -05:00
|
|
|
|
2016-01-31 12:53:30 -05:00
|
|
|
/**
|
|
|
|
* Exports a page to pdf format using barryvdh/laravel-dompdf wrapper.
|
|
|
|
* https://github.com/barryvdh/laravel-dompdf
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2016-01-20 17:13:13 -05:00
|
|
|
public function exportPdf($bookSlug, $pageSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
2016-01-31 12:53:30 -05:00
|
|
|
$pdfContent = $this->exportService->pageToPdf($page);
|
|
|
|
return response()->make($pdfContent, 200, [
|
|
|
|
'Content-Type' => 'application/octet-stream',
|
|
|
|
'Content-Disposition' => 'attachment; filename="'.$pageSlug.'.pdf'
|
|
|
|
]);
|
2016-01-20 17:13:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page to a self-contained HTML file.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function exportHtml($bookSlug, $pageSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
|
|
|
$containedHtml = $this->exportService->pageToContainedHtml($page);
|
|
|
|
return response()->make($containedHtml, 200, [
|
|
|
|
'Content-Type' => 'application/octet-stream',
|
|
|
|
'Content-Disposition' => 'attachment; filename="'.$pageSlug.'.html'
|
|
|
|
]);
|
|
|
|
}
|
2016-01-31 12:53:30 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page to a simple plaintext .txt file.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function exportPlainText($bookSlug, $pageSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug, $book->id);
|
|
|
|
$containedHtml = $this->exportService->pageToPlainText($page);
|
|
|
|
return response()->make($containedHtml, 200, [
|
|
|
|
'Content-Type' => 'application/octet-stream',
|
|
|
|
'Content-Disposition' => 'attachment; filename="'.$pageSlug.'.txt'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|