| 
									
										
										
										
											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() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-01-02 00:05:44 +08:00
										 |  |  |         $books = $this->entityRepo->getAllPaginated('book', 10); | 
					
						
							|  |  |  |         $recents = $this->signedIn ? $this->entityRepo->getRecentlyViewed('book', 4, 0) : false; | 
					
						
							|  |  |  |         $popular = $this->entityRepo->getPopular('book', 4, 0); | 
					
						
							| 
									
										
										
										
											2015-12-05 22:41:51 +08:00
										 |  |  |         $this->setPageTitle('Books'); | 
					
						
							| 
									
										
										
										
											2015-12-03 04:22:41 +08:00
										 |  |  |         return view('books/index', ['books' => $books, 'recents' => $recents, 'popular' => $popular]); | 
					
						
							| 
									
										
										
										
											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()); | 
					
						
							| 
									
										
										
										
											2015-11-27 07:45:04 +08:00
										 |  |  |         return view('books/show', ['book' => $book, 'current' => $book, 'bookChildren' => $bookChildren]); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2016-12-05 00:51:39 +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-01-02 19:07:27 +08:00
										 |  |  |         $book = $this->entityRepo->updateFromInput('book', $book, $request->all()); | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  |         Activity::add($book, 'book_update', $book->id); | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +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()])); | 
					
						
							| 
									
										
										
										
											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-01-02 00:05:44 +08:00
										 |  |  |         $books = $this->entityRepo->getAll('book', false); | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |         if (!$request->has('sort-tree')) { | 
					
						
							|  |  |  |             return redirect($book->getUrl()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Sort pages and chapters
 | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  |         $sortedBooks = []; | 
					
						
							|  |  |  |         $updatedModels = collect(); | 
					
						
							| 
									
										
										
										
											2015-09-06 21:35:53 +08:00
										 |  |  |         $sortMap = json_decode($request->get('sort-tree')); | 
					
						
							|  |  |  |         $defaultBookId = $book->id; | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Loop through contents of provided map and update entities accordingly
 | 
					
						
							|  |  |  |         foreach ($sortMap as $bookChild) { | 
					
						
							|  |  |  |             $priority = $bookChild->sort; | 
					
						
							|  |  |  |             $id = intval($bookChild->id); | 
					
						
							| 
									
										
										
										
											2015-09-06 21:35:53 +08:00
										 |  |  |             $isPage = $bookChild->type == 'page'; | 
					
						
							| 
									
										
										
										
											2017-01-02 00:05:44 +08:00
										 |  |  |             $bookId = $this->entityRepo->exists('book', $bookChild->book) ? intval($bookChild->book) : $defaultBookId; | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  |             $chapterId = ($isPage && $bookChild->parentChapter === false) ? 0 : intval($bookChild->parentChapter); | 
					
						
							| 
									
										
										
										
											2017-01-02 00:05:44 +08:00
										 |  |  |             $model = $this->entityRepo->getById($isPage?'page':'chapter', $id); | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Update models only if there's a change in parent chain or ordering.
 | 
					
						
							|  |  |  |             if ($model->priority !== $priority || $model->book_id !== $bookId || ($isPage && $model->chapter_id !== $chapterId)) { | 
					
						
							| 
									
										
										
										
											2017-01-02 19:07:27 +08:00
										 |  |  |                 $this->entityRepo->changeBook($isPage?'page':'chapter', $bookId, $model); | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  |                 $model->priority = $priority; | 
					
						
							|  |  |  |                 if ($isPage) $model->chapter_id = $chapterId; | 
					
						
							|  |  |  |                 $model->save(); | 
					
						
							|  |  |  |                 $updatedModels->push($model); | 
					
						
							| 
									
										
										
										
											2015-09-06 21:35:53 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-08-27 03:20:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Store involved books to be sorted later
 | 
					
						
							| 
									
										
										
										
											2015-09-06 21:35:53 +08:00
										 |  |  |             if (!in_array($bookId, $sortedBooks)) { | 
					
						
							|  |  |  |                 $sortedBooks[] = $bookId; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Add activity for books
 | 
					
						
							|  |  |  |         foreach ($sortedBooks as $bookId) { | 
					
						
							| 
									
										
										
										
											2017-04-30 05:01:43 +08:00
										 |  |  |             /** @var Book $updatedBook */ | 
					
						
							| 
									
										
										
										
											2017-01-02 00:05:44 +08:00
										 |  |  |             $updatedBook = $this->entityRepo->getById('book', $bookId); | 
					
						
							| 
									
										
										
										
											2017-04-30 05:01:43 +08:00
										 |  |  |             $this->entityRepo->buildJointPermissionsForBook($updatedBook); | 
					
						
							| 
									
										
										
										
											2015-09-06 21:35:53 +08:00
										 |  |  |             Activity::add($updatedBook, 'book_sort', $updatedBook->id); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         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); | 
					
						
							|  |  |  |         return response()->make($pdfContent, 200, [ | 
					
						
							|  |  |  |             'Content-Type'        => 'application/octet-stream', | 
					
						
							|  |  |  |             'Content-Disposition' => 'attachment; filename="' . $bookSlug . '.pdf' | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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); | 
					
						
							|  |  |  |         return response()->make($htmlContent, 200, [ | 
					
						
							|  |  |  |             'Content-Type'        => 'application/octet-stream', | 
					
						
							|  |  |  |             'Content-Disposition' => 'attachment; filename="' . $bookSlug . '.html' | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a book as a plain text file. | 
					
						
							|  |  |  |      * @param $bookSlug | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportPlainText($bookSlug) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $book = $this->entityRepo->getBySlug('book', $bookSlug); | 
					
						
							|  |  |  |         $htmlContent = $this->exportService->bookToPlainText($book); | 
					
						
							|  |  |  |         return response()->make($htmlContent, 200, [ | 
					
						
							|  |  |  |             'Content-Type'        => 'application/octet-stream', | 
					
						
							|  |  |  |             'Content-Disposition' => 'attachment; filename="' . $bookSlug . '.txt' | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | } |