X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/b9df3c647a05227d0bbcf774ae7d05034308c4db..refs/pull/59/head:/app/Http/Controllers/ChapterController.php diff --git a/app/Http/Controllers/ChapterController.php b/app/Http/Controllers/ChapterController.php index e7d1f1799..fc13e8b58 100644 --- a/app/Http/Controllers/ChapterController.php +++ b/app/Http/Controllers/ChapterController.php @@ -1,13 +1,16 @@ bookRepo = $bookRepo; $this->chapterRepo = $chapterRepo; + parent::__construct(); } /** - * Display a listing of the resource. - * - * @return Response - */ - public function index() - { - // - } - - /** - * Show the form for creating a new resource. - * + * Show the form for creating a new chapter. * @param $bookSlug * @return Response */ public function create($bookSlug) { + $this->checkPermission('chapter-create'); $book = $this->bookRepo->getBySlug($bookSlug); - return view('chapters/create', ['book' => $book]); + $this->setPageTitle('Create New Chapter'); + return view('chapters/create', ['book' => $book, 'current' => $book]); } /** - * Store a newly created resource in storage. - * - * @param $bookSlug + * Store a newly created chapter in storage. + * @param $bookSlug * @param Request $request * @return Response */ public function store($bookSlug, Request $request) { + $this->checkPermission('chapter-create'); $this->validate($request, [ 'name' => 'required|string|max:255' ]); @@ -65,52 +60,93 @@ class ChapterController extends Controller $book = $this->bookRepo->getBySlug($bookSlug); $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 resource. - * - * @param int $id + * Display the specified chapter. + * @param $bookSlug + * @param $chapterSlug * @return Response */ - public function show($id) + public function show($bookSlug, $chapterSlug) { - // + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $sidebarTree = $this->bookRepo->getChildren($book); + Views::add($chapter); + $this->setPageTitle($chapter->getShortName()); + return view('chapters/show', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter, 'sidebarTree' => $sidebarTree]); } /** - * Show the form for editing the specified resource. - * - * @param int $id + * Show the form for editing the specified chapter. + * @param $bookSlug + * @param $chapterSlug * @return Response */ - public function edit($id) + public function edit($bookSlug, $chapterSlug) { - // + $this->checkPermission('chapter-update'); + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $this->setPageTitle('Edit Chapter' . $chapter->getShortName()); + return view('chapters/edit', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]); } /** - * Update the specified resource in storage. - * - * @param Request $request - * @param int $id + * Update the specified chapter in storage. + * @param Request $request + * @param $bookSlug + * @param $chapterSlug * @return Response */ - public function update(Request $request, $id) + public function update(Request $request, $bookSlug, $chapterSlug) + { + $this->checkPermission('chapter-update'); + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $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()); + } + + /** + * Shows the page to confirm deletion of this chapter. + * @param $bookSlug + * @param $chapterSlug + * @return \Illuminate\View\View + */ + public function showDelete($bookSlug, $chapterSlug) { - // + $this->checkPermission('chapter-delete'); + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + $this->setPageTitle('Delete Chapter' . $chapter->getShortName()); + return view('chapters/delete', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]); } /** - * Remove the specified resource from storage. - * - * @param int $id + * Remove the specified chapter from storage. + * @param $bookSlug + * @param $chapterSlug * @return Response */ - public function destroy($id) + public function destroy($bookSlug, $chapterSlug) { - // + $this->checkPermission('chapter-delete'); + $book = $this->bookRepo->getBySlug($bookSlug); + $chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id); + Activity::addMessage('chapter_delete', $book->id, $chapter->name); + $this->chapterRepo->destroy($chapter); + return redirect($book->getUrl()); } }