2015-07-27 15:17:08 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
use Oxbow\Http\Requests;
|
|
|
|
use Oxbow\Http\Controllers\Controller;
|
|
|
|
use Oxbow\Repos\BookRepo;
|
|
|
|
use Oxbow\Repos\ChapterRepo;
|
|
|
|
|
|
|
|
class ChapterController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $bookRepo;
|
|
|
|
protected $chapterRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ChapterController constructor.
|
|
|
|
* @param $bookRepo
|
|
|
|
* @param $chapterRepo
|
|
|
|
*/
|
|
|
|
public function __construct(BookRepo $bookRepo,ChapterRepo $chapterRepo)
|
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
$this->chapterRepo = $chapterRepo;
|
|
|
|
}
|
2015-07-28 15:57:13 -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)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
return view('chapters/create', ['book' => $book]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Store a newly created chapter in storage.
|
2015-07-27 15:17:08 -04:00
|
|
|
*
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store($bookSlug, Request $request)
|
|
|
|
{
|
|
|
|
$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-07-27 15:17:08 -04:00
|
|
|
$book->chapters()->save($chapter);
|
|
|
|
return redirect($book->getUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Display the specified chapter.
|
2015-07-27 15:17:08 -04:00
|
|
|
*
|
2015-07-28 15:57:13 -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 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);
|
|
|
|
return view('chapters/show', ['book' => $book, 'chapter' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Show the form for editing the specified chapter.
|
2015-07-27 15:17:08 -04:00
|
|
|
*
|
2015-07-28 15:57:13 -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 edit($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);
|
|
|
|
return view('chapters/edit', ['book' => $book, 'chapter' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Update the specified chapter in storage.
|
2015-07-27 15:17:08 -04:00
|
|
|
*
|
2015-07-28 15:57:13 -04:00
|
|
|
* @param Request $request
|
|
|
|
* @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)
|
|
|
|
{
|
|
|
|
$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->save();
|
|
|
|
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-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
|
|
|
return view('chapters/delete', ['book' => $book, 'chapter' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Remove the specified chapter from storage.
|
2015-07-27 15:17:08 -04:00
|
|
|
*
|
2015-07-28 15:57:13 -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 destroy($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);
|
|
|
|
if(count($chapter->pages) > 0) {
|
|
|
|
foreach($chapter->pages as $page) {
|
|
|
|
$page->chapter_id = 0;
|
|
|
|
$page->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$chapter->delete();
|
|
|
|
return redirect($book->getUrl());
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
}
|