X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/fd1a0dceb25b9b2a2707df754e9ff56b96de34b6..refs/pull/84/head:/app/Http/Controllers/ChapterController.php diff --git a/app/Http/Controllers/ChapterController.php b/app/Http/Controllers/ChapterController.php index 42c511d95..6b8a2f18f 100644 --- a/app/Http/Controllers/ChapterController.php +++ b/app/Http/Controllers/ChapterController.php @@ -1,48 +1,50 @@ -bookRepo = $bookRepo; $this->chapterRepo = $chapterRepo; + $this->userRepo = $userRepo; + parent::__construct(); } - /** * Show the form for creating a new chapter. - * * @param $bookSlug * @return Response */ public function create($bookSlug) { $book = $this->bookRepo->getBySlug($bookSlug); - return view('chapters/create', ['book' => $book]); + $this->checkOwnablePermission('chapter-create', $book); + $this->setPageTitle('Create New Chapter'); + return view('chapters/create', ['book' => $book, 'current' => $book]); } /** * Store a newly created chapter in storage. - * - * @param $bookSlug + * @param $bookSlug * @param Request $request * @return Response */ @@ -53,16 +55,20 @@ class ChapterController extends Controller ]); $book = $this->bookRepo->getBySlug($bookSlug); + $this->checkOwnablePermission('chapter-create', $book); + $chapter = $this->chapterRepo->newFromInput($request->all()); $chapter->slug = $this->chapterRepo->findSuitableSlug($chapter->name, $book->id); $chapter->priority = $this->bookRepo->getNewPriority($book); + $chapter->created_by = auth()->user()->id; + $chapter->updated_by = auth()->user()->id; $book->chapters()->save($chapter); - return redirect($book->getUrl()); + Activity::add($chapter, 'chapter_create', $book->id); + return redirect($chapter->getUrl()); } /** * Display the specified chapter. - * * @param $bookSlug * @param $chapterSlug * @return Response @@ -71,12 +77,21 @@ class ChapterController extends Controller { $book = $this->bookRepo->getBySlug($bookSlug); $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); - return view('chapters/show', ['book' => $book, 'chapter' => $chapter]); + $sidebarTree = $this->bookRepo->getChildren($book); + Views::add($chapter); + $this->setPageTitle($chapter->getShortName()); + $pages = $this->chapterRepo->getChildren($chapter); + return view('chapters/show', [ + 'book' => $book, + 'chapter' => $chapter, + 'current' => $chapter, + 'sidebarTree' => $sidebarTree, + 'pages' => $pages + ]); } /** * Show the form for editing the specified chapter. - * * @param $bookSlug * @param $chapterSlug * @return Response @@ -85,24 +100,28 @@ class ChapterController extends Controller { $book = $this->bookRepo->getBySlug($bookSlug); $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); - return view('chapters/edit', ['book' => $book, 'chapter' => $chapter]); + $this->checkOwnablePermission('chapter-update', $chapter); + $this->setPageTitle('Edit Chapter' . $chapter->getShortName()); + return view('chapters/edit', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]); } /** * Update the specified chapter in storage. - * * @param Request $request - * @param $bookSlug - * @param $chapterSlug + * @param $bookSlug + * @param $chapterSlug * @return Response */ public function update(Request $request, $bookSlug, $chapterSlug) { $book = $this->bookRepo->getBySlug($bookSlug); $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $this->checkOwnablePermission('chapter-update', $chapter); $chapter->fill($request->all()); $chapter->slug = $this->chapterRepo->findSuitableSlug($chapter->name, $book->id, $chapter->id); + $chapter->updated_by = auth()->user()->id; $chapter->save(); + Activity::add($chapter, 'chapter_update', $book->id); return redirect($chapter->getUrl()); } @@ -116,12 +135,13 @@ class ChapterController extends Controller { $book = $this->bookRepo->getBySlug($bookSlug); $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); - return view('chapters/delete', ['book' => $book, 'chapter' => $chapter]); + $this->checkOwnablePermission('chapter-delete', $chapter); + $this->setPageTitle('Delete Chapter' . $chapter->getShortName()); + return view('chapters/delete', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]); } /** * Remove the specified chapter from storage. - * * @param $bookSlug * @param $chapterSlug * @return Response @@ -130,13 +150,44 @@ class ChapterController extends Controller { $book = $this->bookRepo->getBySlug($bookSlug); $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); - if(count($chapter->pages) > 0) { - foreach($chapter->pages as $page) { - $page->chapter_id = 0; - $page->save(); - } - } - $chapter->delete(); + $this->checkOwnablePermission('chapter-delete', $chapter); + Activity::addMessage('chapter_delete', $book->id, $chapter->name); + $this->chapterRepo->destroy($chapter); return redirect($book->getUrl()); } + + /** + * Show the Restrictions view. + * @param $bookSlug + * @param $chapterSlug + * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View + */ + public function showRestrict($bookSlug, $chapterSlug) + { + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $this->checkOwnablePermission('restrictions-manage', $chapter); + $roles = $this->userRepo->getRestrictableRoles(); + return view('chapters/restrictions', [ + 'chapter' => $chapter, + 'roles' => $roles + ]); + } + + /** + * Set the restrictions for this chapter. + * @param $bookSlug + * @param $chapterSlug + * @param Request $request + * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector + */ + public function restrict($bookSlug, $chapterSlug, Request $request) + { + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $this->checkOwnablePermission('restrictions-manage', $chapter); + $this->chapterRepo->updateRestrictionsFromRequest($request, $chapter); + session()->flash('success', 'Page Restrictions Updated'); + return redirect($chapter->getUrl()); + } }