BookStack/app/Http/Controllers/BookController.php

152 lines
3.9 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace Oxbow\Http\Controllers;
use Activity;
2015-07-12 19:01:42 +00:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
2015-07-12 19:01:42 +00:00
use Illuminate\Support\Str;
use Oxbow\Http\Requests;
use Oxbow\Repos\BookRepo;
2015-07-12 20:31:15 +00:00
use Oxbow\Repos\PageRepo;
2015-07-12 19:01:42 +00:00
class BookController extends Controller
{
protected $bookRepo;
2015-07-12 20:31:15 +00:00
protected $pageRepo;
2015-07-12 19:01:42 +00:00
/**
* BookController constructor.
* @param BookRepo $bookRepo
2015-07-12 20:31:15 +00:00
* @param PageRepo $pageRepo
2015-07-12 19:01:42 +00:00
*/
2015-07-12 20:31:15 +00:00
public function __construct(BookRepo $bookRepo, PageRepo $pageRepo)
2015-07-12 19:01:42 +00:00
{
$this->bookRepo = $bookRepo;
2015-07-12 20:31:15 +00:00
$this->pageRepo = $pageRepo;
2015-08-29 14:03:42 +00:00
parent::__construct();
2015-07-12 19:01:42 +00: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()
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-create');
2015-07-12 19:01:42 +00:00
return view('books/create');
}
/**
* Store a newly created book in storage.
*
2015-08-29 14:03:42 +00:00
* @param Request $request
2015-07-12 19:01:42 +00:00
* @return Response
*/
public function store(Request $request)
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-create');
2015-07-12 19:01:42 +00:00
$this->validate($request, [
2015-08-29 14:03:42 +00:00
'name' => 'required|string|max:255',
2015-07-12 19:01:42 +00:00
'description' => 'string|max:1000'
]);
$book = $this->bookRepo->newFromInput($request->all());
$book->slug = $this->bookRepo->findSuitableSlug($book->name);
$book->created_by = Auth::user()->id;
$book->updated_by = Auth::user()->id;
2015-07-12 19:01:42 +00:00
$book->save();
Activity::add($book, 'book_create', $book->id);
return redirect($book->getUrl());
2015-07-12 19:01:42 +00:00
}
/**
* Display the specified book.
*
* @param $slug
* @return Response
*/
public function show($slug)
{
$book = $this->bookRepo->getBySlug($slug);
return view('books/show', ['book' => $book, 'current' => $book]);
2015-07-12 19:01:42 +00:00
}
/**
* Show the form for editing the specified book.
*
* @param $slug
* @return Response
*/
public function edit($slug)
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-update');
2015-07-12 19:01:42 +00:00
$book = $this->bookRepo->getBySlug($slug);
return view('books/edit', ['book' => $book, 'current' => $book]);
2015-07-12 19:01:42 +00:00
}
/**
* Update the specified book in storage.
*
* @param Request $request
2015-08-29 14:03:42 +00:00
* @param $slug
2015-07-12 19:01:42 +00:00
* @return Response
*/
public function update(Request $request, $slug)
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-update');
2015-07-12 19:01:42 +00:00
$book = $this->bookRepo->getBySlug($slug);
$this->validate($request, [
2015-08-29 14:03:42 +00:00
'name' => 'required|string|max:255',
2015-07-12 19:01:42 +00:00
'description' => 'string|max:1000'
]);
2015-07-15 21:55:49 +00:00
$book->fill($request->all());
$book->slug = $this->bookRepo->findSuitableSlug($book->name, $book->id);
$book->updated_by = Auth::user()->id;
2015-07-12 19:01:42 +00:00
$book->save();
Activity::add($book, 'book_update', $book->id);
2015-07-15 21:55:49 +00:00
return redirect($book->getUrl());
2015-07-12 19:01:42 +00:00
}
/**
* Shows the page to confirm deletion
* @param $bookSlug
* @return \Illuminate\View\View
*/
public function showDelete($bookSlug)
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-delete');
$book = $this->bookRepo->getBySlug($bookSlug);
return view('books/delete', ['book' => $book, 'current' => $book]);
}
2015-07-12 19:01:42 +00:00
/**
* Remove the specified book from storage.
*
* @param $bookSlug
2015-07-12 19:01:42 +00:00
* @return Response
*/
public function destroy($bookSlug)
2015-07-12 19:01:42 +00:00
{
2015-08-29 14:03:42 +00:00
$this->checkPermission('book-delete');
$book = $this->bookRepo->getBySlug($bookSlug);
Activity::addMessage('book_delete', 0, $book->name);
Activity::removeEntity($book);
$this->bookRepo->destroyBySlug($bookSlug);
2015-07-12 19:01:42 +00:00
return redirect('/books');
}
}