2015-07-27 15:17:08 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
use Activity;
|
2015-07-27 15:17:08 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-08-08 16:28:50 -04:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Http\Controllers\Controller;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Repos\ChapterRepo;
|
2015-11-21 12:22:14 -05:00
|
|
|
use Views;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
|
|
|
class ChapterController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $bookRepo;
|
|
|
|
protected $chapterRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ChapterController constructor.
|
|
|
|
* @param $bookRepo
|
|
|
|
* @param $chapterRepo
|
|
|
|
*/
|
2015-08-29 10:03:42 -04:00
|
|
|
public function __construct(BookRepo $bookRepo, ChapterRepo $chapterRepo)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
$this->chapterRepo = $chapterRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
2015-08-29 10:03:42 -04:00
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Show the form for creating a new chapter.
|
2015-07-27 15:17:08 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function create($bookSlug)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-create');
|
2015-07-27 15:17:08 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Create New Chapter');
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/create', ['book' => $book, 'current' => $book]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Store a newly created chapter in storage.
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store($bookSlug, Request $request)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-create');
|
2015-07-27 15:17:08 -04:00
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->newFromInput($request->all());
|
|
|
|
$chapter->slug = $this->chapterRepo->findSuitableSlug($chapter->name, $book->id);
|
2015-07-28 15:57:13 -04:00
|
|
|
$chapter->priority = $this->bookRepo->getNewPriority($book);
|
2015-11-29 12:33:25 -05:00
|
|
|
$chapter->created_by = auth()->user()->id;
|
|
|
|
$chapter->updated_by = auth()->user()->id;
|
2015-07-27 15:17:08 -04:00
|
|
|
$book->chapters()->save($chapter);
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($chapter, 'chapter_create', $book->id);
|
2015-09-02 13:26:33 -04:00
|
|
|
return redirect($chapter->getUrl());
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Display the specified chapter.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function show($bookSlug, $chapterSlug)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
2015-11-26 18:45:04 -05:00
|
|
|
$sidebarTree = $this->bookRepo->getChildren($book);
|
2015-11-21 12:22:14 -05:00
|
|
|
Views::add($chapter);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle($chapter->getShortName());
|
2015-11-26 18:45:04 -05:00
|
|
|
return view('chapters/show', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter, 'sidebarTree' => $sidebarTree]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Show the form for editing the specified chapter.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function edit($bookSlug, $chapterSlug)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-update');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Edit Chapter' . $chapter->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/edit', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Update the specified chapter in storage.
|
|
|
|
* @param Request $request
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function update(Request $request, $bookSlug, $chapterSlug)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-update');
|
2015-07-28 15:57:13 -04:00
|
|
|
$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);
|
2015-11-29 12:33:25 -05:00
|
|
|
$chapter->updated_by = auth()->user()->id;
|
2015-07-28 15:57:13 -04:00
|
|
|
$chapter->save();
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($chapter, 'chapter_update', $book->id);
|
2015-07-28 15:57:13 -04:00
|
|
|
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)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-delete');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Delete Chapter' . $chapter->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/delete', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Remove the specified chapter from storage.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function destroy($bookSlug, $chapterSlug)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('chapter-delete');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
2015-08-23 09:20:34 -04:00
|
|
|
Activity::addMessage('chapter_delete', $book->id, $chapter->name);
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->chapterRepo->destroy($chapter);
|
2015-07-28 15:57:13 -04:00
|
|
|
return redirect($book->getUrl());
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
}
|