| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2017-04-30 05:01:43 +08:00
										 |  |  | use BookStack\Book; | 
					
						
							| 
									
										
										
										
											2017-01-02 00:05:44 +08:00
										 |  |  | use BookStack\Repos\EntityRepo; | 
					
						
							| 
									
										
										
										
											2016-02-28 18:49:41 +08:00
										 |  |  | use BookStack\Repos\UserRepo; | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  | use BookStack\Services\ExportService; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * BookController constructor. | 
					
						
							| 
									
										
										
										
											2017-01-02 05:21:11 +08:00
										 |  |  |      * @param EntityRepo $entityRepo | 
					
						
							| 
									
										
										
										
											2016-02-28 18:49:41 +08:00
										 |  |  |      * @param UserRepo $userRepo | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |      * @param ExportService $exportService | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-02-26 21:26:51 +08:00
										 |  |  |     public function __construct(EntityRepo $entityRepo, UserRepo $userRepo, ExportService $exportService) | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +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; | 
					
						
							| 
									
										
										
										
											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-02-11 19:36:51 +08:00
										 |  |  |         $books = $this->entityRepo->getAllPaginated('book', 18); | 
					
						
							| 
									
										
										
										
											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-02-04 19:36:58 +08:00
										 |  |  |         $booksViewType = setting()->getUser($this->currentUser, 'books_view_type', config('app.views.books', 'list')); | 
					
						
							| 
									
										
										
										
											2017-12-07 00:34:26 +08:00
										 |  |  |         $this->setPageTitle(trans('entities.books')); | 
					
						
							| 
									
										
										
										
											2017-08-26 20:24:55 +08:00
										 |  |  |         return view('books/index', [ | 
					
						
							|  |  |  |             'books' => $books, | 
					
						
							|  |  |  |             'recents' => $recents, | 
					
						
							|  |  |  |             'popular' => $popular, | 
					
						
							| 
									
										
										
										
											2017-12-26 15:08:16 +08:00
										 |  |  |             'new' => $new, | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |             'booksViewType' => $booksViewType | 
					
						
							| 
									
										
										
										
											2017-08-26 20:24:55 +08:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the form for creating a new book. | 
					
						
							|  |  |  |      * @return Response | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function create() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											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')); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         return view('books/create'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Store a newly created book in storage. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2015-08-29 22:03:42 +08:00
										 |  |  |      * @param  Request $request | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |      * @return Response | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function store(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											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', | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |             'description' => 'string|max:1000' | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2017-01-02 19:07:27 +08:00
										 |  |  |         $book = $this->entityRepo->createFromInput('book', $request->all()); | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  |         Activity::add($book, 'book_create', $book->id); | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      * @return Response | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function show($slug) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2017-01-02 19:07:27 +08:00
										 |  |  |         $bookChildren = $this->entityRepo->getBookChildren($book); | 
					
						
							| 
									
										
										
										
											2015-12-05 22:41:51 +08:00
										 |  |  |         Views::add($book); | 
					
						
							|  |  |  |         $this->setPageTitle($book->getShortName()); | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |         return view('books/show', [ | 
					
						
							|  |  |  |             'book' => $book, | 
					
						
							|  |  |  |             'current' => $book, | 
					
						
							|  |  |  |             'bookChildren' => $bookChildren, | 
					
						
							|  |  |  |             'activity' => Activity::entityActivity($book, 20, 0) | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											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()])); | 
					
						
							| 
									
										
										
										
											2015-08-16 21:51:45 +08:00
										 |  |  |         return view('books/edit', ['book' => $book, 'current' => $book]); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Update the specified book in storage. | 
					
						
							|  |  |  |      * @param  Request $request | 
					
						
							| 
									
										
										
										
											2015-08-29 22:03:42 +08:00
										 |  |  |      * @param          $slug | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |      * @return Response | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function update(Request $request, $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); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2016-02-28 03:24:42 +08:00
										 |  |  |             'name' => 'required|string|max:255', | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |             'description' => 'string|max:1000' | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2017-07-12 14:10:50 +08:00
										 |  |  |          $book = $this->entityRepo->updateFromInput('book', $book, $request->all()); | 
					
						
							|  |  |  |          Activity::add($book, 'book_update', $book->id); | 
					
						
							|  |  |  |          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()])); | 
					
						
							| 
									
										
										
										
											2015-08-16 21:51:45 +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 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     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); | 
					
						
							| 
									
										
										
										
											2017-01-02 19:07:27 +08:00
										 |  |  |         $bookChildren = $this->entityRepo->getBookChildren($book, true); | 
					
						
							| 
									
										
										
										
											2017-12-31 19:14:46 +08:00
										 |  |  |         $books = $this->entityRepo->getAll('book', false, 'update'); | 
					
						
							| 
									
										
										
										
											2016-12-05 00:51:39 +08:00
										 |  |  |         $this->setPageTitle(trans('entities.books_sort_named', ['bookName'=>$book->getShortName()])); | 
					
						
							| 
									
										
										
										
											2015-11-30 01:33:25 +08:00
										 |  |  |         return view('books/sort', ['book' => $book, 'current' => $book, 'books' => $books, '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); | 
					
						
							| 
									
										
										
										
											2015-11-30 01:33:25 +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(); | 
					
						
							|  |  |  |         $booksInvolved = $this->entityRepo->book->newQuery()->whereIn('id', $bookIdsInvolved)->get(); | 
					
						
							|  |  |  |         // 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); | 
					
						
							| 
									
										
										
										
											2017-01-02 19:07:27 +08:00
										 |  |  |         $this->entityRepo->destroyBook($book); | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function showRestrict($bookSlug) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							|  |  |  |         return view('books/restrictions', [ | 
					
						
							|  |  |  |             'book' => $book, | 
					
						
							|  |  |  |             'roles' => $roles | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Set the restrictions for this book. | 
					
						
							|  |  |  |      * @param $bookSlug | 
					
						
							|  |  |  |      * @param $bookSlug | 
					
						
							|  |  |  |      * @param Request $request | 
					
						
							|  |  |  |      * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function restrict($bookSlug, Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | } |