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