BookStack/app/Http/Controllers/BookController.php

408 lines
13 KiB
PHP
Raw Normal View History

<?php namespace BookStack\Http\Controllers;
2015-07-12 19:01:42 +00:00
use Activity;
use BookStack\Auth\UserRepo;
use BookStack\Entities\Book;
use BookStack\Entities\EntityContextManager;
2019-09-15 22:28:23 +00:00
use BookStack\Entities\Repos\BookRepo;
use BookStack\Entities\Repos\EntityRepo;
use BookStack\Entities\ExportService;
2019-09-15 22:28:23 +00:00
use BookStack\Exceptions\ImageUploadException;
use BookStack\Exceptions\NotFoundException;
use BookStack\Exceptions\NotifyException;
use BookStack\Uploads\ImageRepo;
2019-09-15 22:28:23 +00:00
use Illuminate\Contracts\View\Factory;
use Illuminate\Http\RedirectResponse;
2015-07-12 19:01:42 +00:00
use Illuminate\Http\Request;
2016-12-04 16:51:39 +00:00
use Illuminate\Http\Response;
2019-09-15 22:28:23 +00:00
use Illuminate\Routing\Redirector;
use Illuminate\Validation\ValidationException;
use Illuminate\View\View;
use Throwable;
use Views;
2015-07-12 19:01:42 +00:00
class BookController extends Controller
{
2019-09-15 22:28:23 +00:00
protected $bookRepo;
protected $userRepo;
protected $entityContextManager;
protected $imageRepo;
2015-07-12 19:01:42 +00:00
/**
* BookController constructor.
2019-09-15 22:28:23 +00:00
* @param BookRepo $bookRepo
* @param UserRepo $userRepo
* @param EntityContextManager $entityContextManager
* @param ImageRepo $imageRepo
2015-07-12 19:01:42 +00:00
*/
public function __construct(
2019-09-15 22:28:23 +00:00
BookRepo $bookRepo,
UserRepo $userRepo,
EntityContextManager $entityContextManager,
ImageRepo $imageRepo
) {
2019-09-15 22:28:23 +00:00
$this->bookRepo = $bookRepo;
$this->userRepo = $userRepo;
$this->entityContextManager = $entityContextManager;
$this->imageRepo = $imageRepo;
2015-08-29 14:03:42 +00:00
parent::__construct();
2015-07-12 19:01:42 +00:00
}
/**
* Display a listing of the book.
* @return Response
*/
public function index()
{
$view = setting()->getUser($this->currentUser, 'books_view_type', config('app.views.books'));
$sort = setting()->getUser($this->currentUser, 'books_sort', 'name');
$order = setting()->getUser($this->currentUser, 'books_sort_order', 'asc');
2019-09-15 22:28:23 +00:00
$books = $this->bookRepo->getAllPaginated('book', 18, $sort, $order);
$recents = $this->signedIn ? $this->bookRepo->getRecentlyViewed('book', 4, 0) : false;
$popular = $this->bookRepo->getPopular('book', 4, 0);
$new = $this->bookRepo->getRecentlyCreated('book', 4, 0);
$this->entityContextManager->clearShelfContext();
$this->setPageTitle(trans('entities.books'));
return view('books.index', [
'books' => $books,
'recents' => $recents,
'popular' => $popular,
'new' => $new,
'view' => $view,
'sort' => $sort,
'order' => $order,
]);
2015-07-12 19:01:42 +00:00
}
/**
* Show the form for creating a new book.
* @param string $shelfSlug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws NotFoundException
2015-07-12 19:01:42 +00:00
*/
public function create(string $shelfSlug = null)
2015-07-12 19:01:42 +00:00
{
$bookshelf = null;
if ($shelfSlug !== null) {
2019-09-15 22:28:23 +00:00
$bookshelf = $this->bookRepo->getEntityBySlug('bookshelf', $shelfSlug);
$this->checkOwnablePermission('bookshelf-update', $bookshelf);
}
$this->checkPermission('book-create-all');
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.books_create'));
return view('books.create', [
'bookshelf' => $bookshelf
]);
2015-07-12 19:01:42 +00:00
}
/**
* Store a newly created book in storage.
*
* @param Request $request
* @param string $shelfSlug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws NotFoundException
* @throws ImageUploadException
* @throws ValidationException
* @throws Throwable
2015-07-12 19:01:42 +00:00
*/
public function store(Request $request, string $shelfSlug = null)
2015-07-12 19:01:42 +00:00
{
$this->checkPermission('book-create-all');
2015-07-12 19:01:42 +00:00
$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
'image' => $this->imageRepo->getImageValidationRules(),
2015-07-12 19:01:42 +00:00
]);
$bookshelf = null;
if ($shelfSlug !== null) {
2019-09-15 22:28:23 +00:00
$bookshelf = $this->bookRepo->getEntityBySlug('bookshelf', $shelfSlug);
$this->checkOwnablePermission('bookshelf-update', $bookshelf);
}
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->createFromInput('book', $request->all());
$this->bookUpdateActions($book, $request);
Activity::add($book, 'book_create', $book->id);
if ($bookshelf) {
2019-09-15 22:28:23 +00:00
$this->bookRepo->appendBookToShelf($bookshelf, $book);
Activity::add($bookshelf, 'bookshelf_update');
}
return redirect($book->getUrl());
2015-07-12 19:01:42 +00:00
}
/**
* Display the specified book.
* @param Request $request
* @param string $slug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws NotFoundException
2015-07-12 19:01:42 +00:00
*/
public function show(Request $request, string $slug)
2015-07-12 19:01:42 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($slug);
$this->checkOwnablePermission('book-view', $book);
2019-09-15 22:28:23 +00:00
$bookChildren = $this->bookRepo->getBookChildren($book);
Views::add($book);
if ($request->has('shelf')) {
$this->entityContextManager->setShelfContext(intval($request->get('shelf')));
}
$this->setPageTitle($book->getShortName());
return view('books.show', [
2017-08-20 12:57:25 +00:00
'book' => $book,
'current' => $book,
'bookChildren' => $bookChildren,
'activity' => Activity::entityActivity($book, 20, 1)
2017-08-20 12:57:25 +00:00
]);
2015-07-12 19:01:42 +00:00
}
/**
* Show the form for editing the specified book.
2019-09-15 22:28:23 +00:00
* @param string $slug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws NotFoundException
2015-07-12 19:01:42 +00:00
*/
2019-09-15 22:28:23 +00:00
public function edit(string $slug)
2015-07-12 19:01:42 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($slug);
$this->checkOwnablePermission('book-update', $book);
$this->setPageTitle(trans('entities.books_edit_named', ['bookName'=>$book->getShortName()]));
return view('books.edit', ['book' => $book, 'current' => $book]);
2015-07-12 19:01:42 +00:00
}
/**
* Update the specified book in storage.
* @param Request $request
2019-09-15 22:28:23 +00:00
* @param string $slug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws ImageUploadException
* @throws NotFoundException
* @throws ValidationException
* @throws Throwable
2015-07-12 19:01:42 +00:00
*/
public function update(Request $request, string $slug)
2015-07-12 19:01:42 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($slug);
$this->checkOwnablePermission('book-update', $book);
2015-07-12 19:01:42 +00:00
$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
'image' => $this->imageRepo->getImageValidationRules(),
2015-07-12 19:01:42 +00:00
]);
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->updateFromInput('book', $book, $request->all());
$this->bookUpdateActions($book, $request);
2017-07-12 06:10:50 +00:00
Activity::add($book, 'book_update', $book->id);
2017-07-12 06:10:50 +00:00
return redirect($book->getUrl());
2015-07-12 19:01:42 +00:00
}
/**
* Shows the page to confirm deletion
2019-09-15 22:28:23 +00:00
* @param string $bookSlug
* @return View
* @throws NotFoundException
*/
2019-09-15 22:28:23 +00:00
public function showDelete(string $bookSlug)
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-delete', $book);
2019-09-15 22:28:23 +00:00
$this->setPageTitle(trans('entities.books_delete_named', ['bookName' => $book->getShortName()]));
return view('books.delete', ['book' => $book, 'current' => $book]);
}
2015-09-06 13:35:53 +00:00
/**
* Shows the view which allows pages to be re-ordered and sorted.
* @param string $bookSlug
2019-09-15 22:28:23 +00:00
* @return View
* @throws NotFoundException
2015-09-06 13:35:53 +00:00
*/
2019-09-15 22:28:23 +00:00
public function sort(string $bookSlug)
2015-09-06 13:35:53 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-update', $book);
2019-09-15 22:28:23 +00:00
$bookChildren = $this->bookRepo->getBookChildren($book, true);
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.books_sort_named', ['bookName'=>$book->getShortName()]));
return view('books.sort', ['book' => $book, 'current' => $book, 'bookChildren' => $bookChildren]);
2015-09-06 13:35:53 +00:00
}
/**
* Shows the sort box for a single book.
* Used via AJAX when loading in extra books to a sort.
2019-09-15 22:28:23 +00:00
* @param string $bookSlug
* @return Factory|View
* @throws NotFoundException
*/
2019-09-15 22:28:23 +00:00
public function getSortItem(string $bookSlug)
2015-09-06 13:35:53 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$bookChildren = $this->bookRepo->getBookChildren($book);
return view('books.sort-box', ['book' => $book, 'bookChildren' => $bookChildren]);
2015-09-06 13:35:53 +00:00
}
/**
* Saves an array of sort mapping to pages and chapters.
* @param Request $request
* @param string $bookSlug
2019-09-15 22:28:23 +00:00
* @return RedirectResponse|Redirector
* @throws NotFoundException
2015-09-06 13:35:53 +00:00
*/
public function saveSort(Request $request, string $bookSlug)
2015-09-06 13:35:53 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-update', $book);
2015-09-06 13:35:53 +00:00
// Return if no map sent
2017-11-19 15:56:06 +00:00
if (!$request->filled('sort-tree')) {
2015-09-06 13:35:53 +00:00
return redirect($book->getUrl());
}
// Sort pages and chapters
2018-01-13 16:44:47 +00:00
$sortMap = collect(json_decode($request->get('sort-tree')));
$bookIdsInvolved = collect([$book->id]);
// Load models into map
$sortMap->each(function ($mapItem) use ($bookIdsInvolved) {
2018-01-13 16:44:47 +00:00
$mapItem->type = ($mapItem->type === 'page' ? 'page' : 'chapter');
2019-09-15 22:28:23 +00:00
$mapItem->model = $this->bookRepo->getById($mapItem->type, $mapItem->id);
2018-01-13 16:44:47 +00:00
// Store source and target books
$bookIdsInvolved->push(intval($mapItem->model->book_id));
$bookIdsInvolved->push(intval($mapItem->book));
});
// Get the books involved in the sort
$bookIdsInvolved = $bookIdsInvolved->unique()->toArray();
2019-09-15 22:28:23 +00:00
$booksInvolved = $this->bookRepo->getManyById('book', $bookIdsInvolved, false, true);
2018-01-13 16:44:47 +00:00
// Throw permission error if invalid ids or inaccessible books given.
if (count($bookIdsInvolved) !== count($booksInvolved)) {
$this->showPermissionError();
}
2018-01-13 16:44:47 +00:00
// Check permissions of involved books
$booksInvolved->each(function (Book $book) {
2018-01-13 16:44:47 +00:00
$this->checkOwnablePermission('book-update', $book);
});
2018-01-13 16:44:47 +00:00
// Perform the sort
$sortMap->each(function ($mapItem) {
2018-01-13 16:44:47 +00:00
$model = $mapItem->model;
2018-01-13 16:44:47 +00:00
$priorityChanged = intval($model->priority) !== intval($mapItem->sort);
$bookChanged = intval($model->book_id) !== intval($mapItem->book);
$chapterChanged = ($mapItem->type === 'page') && intval($model->chapter_id) !== $mapItem->parentChapter;
2018-01-13 16:44:47 +00:00
if ($bookChanged) {
2019-09-15 22:28:23 +00:00
$this->bookRepo->changeBook($mapItem->type, $mapItem->book, $model);
2018-01-13 16:44:47 +00:00
}
if ($chapterChanged) {
$model->chapter_id = intval($mapItem->parentChapter);
$model->save();
2015-09-06 13:35:53 +00:00
}
2018-01-13 16:44:47 +00:00
if ($priorityChanged) {
$model->priority = intval($mapItem->sort);
$model->save();
2015-09-06 13:35:53 +00:00
}
2018-01-13 16:44:47 +00:00
});
2015-09-06 13:35:53 +00:00
2018-01-13 16:44:47 +00:00
// Rebuild permissions and add activity for involved books.
$booksInvolved->each(function (Book $book) {
2019-09-15 22:28:23 +00:00
$this->bookRepo->buildJointPermissionsForBook($book);
2018-01-13 16:44:47 +00:00
Activity::add($book, 'book_sort', $book->id);
});
2015-09-06 13:35:53 +00:00
return redirect($book->getUrl());
}
2015-07-12 19:01:42 +00:00
/**
* Remove the specified book from storage.
2019-09-15 22:28:23 +00:00
* @param string $bookSlug
2015-07-12 19:01:42 +00:00
* @return Response
2019-09-15 22:28:23 +00:00
* @throws NotFoundException
* @throws Throwable
* @throws NotifyException
2015-07-12 19:01:42 +00:00
*/
2019-09-15 22:28:23 +00:00
public function destroy(string $bookSlug)
2015-07-12 19:01:42 +00:00
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-delete', $book);
Activity::addMessage('book_delete', $book->name);
if ($book->cover) {
$this->imageRepo->destroyImage($book->cover);
}
2019-09-15 22:28:23 +00:00
$this->bookRepo->destroyBook($book);
2015-07-12 19:01:42 +00:00
return redirect('/books');
}
/**
* Show the Restrictions view.
2019-09-15 22:28:23 +00:00
* @param string $bookSlug
* @return Factory|View
* @throws NotFoundException
*/
2019-09-15 22:28:23 +00:00
public function showPermissions(string $bookSlug)
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('restrictions-manage', $book);
$roles = $this->userRepo->getRestrictableRoles();
2019-01-31 20:37:12 +00:00
return view('books.permissions', [
'book' => $book,
'roles' => $roles
]);
}
/**
* Set the restrictions for this book.
* @param Request $request
* @param string $bookSlug
2019-09-15 22:28:23 +00:00
* @return RedirectResponse|Redirector
* @throws NotFoundException
* @throws Throwable
*/
public function permissions(Request $request, string $bookSlug)
{
2019-09-15 22:28:23 +00:00
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('restrictions-manage', $book);
2019-09-15 22:28:23 +00:00
$this->bookRepo->updateEntityPermissionsFromRequest($request, $book);
$this->showSuccessNotification(trans('entities.books_permissions_updated'));
return redirect($book->getUrl());
}
/**
* Common actions to run on book update.
* Handles updating the cover image.
* @param Book $book
* @param Request $request
2019-09-15 22:28:23 +00:00
* @throws ImageUploadException
*/
protected function bookUpdateActions(Book $book, Request $request)
{
// Update the cover image if in request
if ($request->has('image')) {
$this->imageRepo->destroyImage($book->cover);
$newImage = $request->file('image');
$image = $this->imageRepo->saveNew($newImage, 'cover_book', $book->id, 512, 512, true);
$book->image_id = $image->id;
$book->save();
}
if ($request->has('image_reset')) {
$this->imageRepo->destroyImage($book->cover);
$book->image_id = 0;
$book->save();
}
}
2015-07-12 19:01:42 +00:00
}