2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-08-08 16:28:50 -04:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Oxbow\Http\Requests;
|
|
|
|
use Oxbow\Repos\BookRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
use Oxbow\Repos\PageRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class BookController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $bookRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
protected $pageRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BookController constructor.
|
|
|
|
* @param BookRepo $bookRepo
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param PageRepo $pageRepo
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function __construct(BookRepo $bookRepo, PageRepo $pageRepo)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the book.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$books = $this->bookRepo->getAll();
|
|
|
|
return view('books/index', ['books' => $books]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new book.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
return view('books/create');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created book in storage.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255',
|
|
|
|
'description' => 'string|max:1000'
|
|
|
|
]);
|
|
|
|
$book = $this->bookRepo->newFromInput($request->all());
|
|
|
|
$slug = Str::slug($book->name);
|
|
|
|
while($this->bookRepo->countBySlug($slug) > 0) {
|
2015-07-12 16:31:15 -04:00
|
|
|
$slug .= '1';
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
$book->slug = $slug;
|
2015-08-08 16:28:50 -04:00
|
|
|
$book->created_by = Auth::user()->id;
|
|
|
|
$book->updated_by = Auth::user()->id;
|
2015-07-12 15:01:42 -04:00
|
|
|
$book->save();
|
|
|
|
return redirect('/books');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified book.
|
|
|
|
*
|
|
|
|
* @param $slug
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function show($slug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
2015-07-28 15:57:13 -04:00
|
|
|
return view('books/show', ['book' => $book]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified book.
|
|
|
|
*
|
|
|
|
* @param $slug
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function edit($slug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
|
|
|
return view('books/edit', ['book' => $book]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified book in storage.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param $slug
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function update(Request $request, $slug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255',
|
|
|
|
'description' => 'string|max:1000'
|
|
|
|
]);
|
2015-07-15 17:55:49 -04:00
|
|
|
$book->fill($request->all());
|
2015-07-12 15:01:42 -04:00
|
|
|
$slug = Str::slug($book->name);
|
|
|
|
while($this->bookRepo->countBySlug($slug) > 0 && $book->slug != $slug) {
|
|
|
|
$slug += '1';
|
|
|
|
}
|
|
|
|
$book->slug = $slug;
|
2015-08-08 16:28:50 -04:00
|
|
|
$book->updated_by = Auth::user()->id;
|
2015-07-12 15:01:42 -04:00
|
|
|
$book->save();
|
2015-07-15 17:55:49 -04:00
|
|
|
return redirect($book->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2015-07-28 15:57:13 -04:00
|
|
|
/**
|
|
|
|
* Shows the page to confirm deletion
|
|
|
|
* @param $bookSlug
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function showDelete($bookSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
return view('books/delete', ['book' => $book]);
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* Remove the specified book from storage.
|
|
|
|
*
|
2015-07-28 15:57:13 -04:00
|
|
|
* @param $bookSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function destroy($bookSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-28 15:57:13 -04:00
|
|
|
$this->bookRepo->destroyBySlug($bookSlug);
|
2015-07-12 15:01:42 -04:00
|
|
|
return redirect('/books');
|
|
|
|
}
|
|
|
|
}
|