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