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