BookStack/app/Http/Controllers/BookController.php

228 lines
6.9 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace BookStack\Http\Controllers;
2015-07-12 19:01:42 +00:00
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 BookStack\Http\Requests;
use BookStack\Repos\BookRepo;
use BookStack\Repos\ChapterRepo;
use BookStack\Repos\PageRepo;
use Views;
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-09-06 13:35:53 +00:00
protected $chapterRepo;
2015-07-12 19:01:42 +00:00
/**
* BookController constructor.
2015-09-06 13:35:53 +00:00
* @param BookRepo $bookRepo
* @param PageRepo $pageRepo
* @param ChapterRepo $chapterRepo
2015-07-12 19:01:42 +00:00
*/
2015-09-06 13:35:53 +00:00
public function __construct(BookRepo $bookRepo, PageRepo $pageRepo, ChapterRepo $chapterRepo)
2015-07-12 19:01:42 +00:00
{
$this->bookRepo = $bookRepo;
2015-07-12 20:31:15 +00:00
$this->pageRepo = $pageRepo;
2015-09-06 13:35:53 +00:00
$this->chapterRepo = $chapterRepo;
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()
{
2015-11-09 19:46:04 +00:00
$books = $this->bookRepo->getAllPaginated(10);
$recents = $this->signedIn ? $this->bookRepo->getRecentlyViewed(4, 0) : false;
$popular = $this->bookRepo->getPopular(4, 0);
return view('books/index', ['books' => $books, 'recents' => $recents, 'popular' => $popular]);
2015-07-12 19:01:42 +00:00
}
/**
* 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);
Views::add($book);
$bookChildren = $this->bookRepo->getChildren($book);
return view('books/show', ['book' => $book, 'current' => $book, 'bookChildren' => $bookChildren]);
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-09-06 13:35:53 +00:00
/**
* Shows the view which allows pages to be re-ordered and sorted.
* @param string $bookSlug
* @return \Illuminate\View\View
*/
public function sort($bookSlug)
{
$this->checkPermission('book-update');
$book = $this->bookRepo->getBySlug($bookSlug);
$bookChildren = $this->bookRepo->getChildren($book);
2015-09-06 13:35:53 +00:00
$books = $this->bookRepo->getAll();
return view('books/sort', ['book' => $book, 'current' => $book, 'books' => $books, 'bookChildren' => $bookChildren]);
2015-09-06 13:35:53 +00:00
}
public function getSortItem($bookSlug)
{
$book = $this->bookRepo->getBySlug($bookSlug);
$bookChildren = $this->bookRepo->getChildren($book);
return view('books/sort-box', ['book' => $book, 'bookChildren' => $bookChildren]);
2015-09-06 13:35:53 +00:00
}
/**
* Saves an array of sort mapping to pages and chapters.
*
* @param string $bookSlug
* @param Request $request
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
*/
public function saveSort($bookSlug, Request $request)
{
$this->checkPermission('book-update');
$book = $this->bookRepo->getBySlug($bookSlug);
// Return if no map sent
if (!$request->has('sort-tree')) {
return redirect($book->getUrl());
}
$sortedBooks = [];
// Sort pages and chapters
$sortMap = json_decode($request->get('sort-tree'));
$defaultBookId = $book->id;
foreach ($sortMap as $index => $bookChild) {
$id = $bookChild->id;
$isPage = $bookChild->type == 'page';
$bookId = $this->bookRepo->exists($bookChild->book) ? $bookChild->book : $defaultBookId;
$model = $isPage ? $this->pageRepo->getById($id) : $this->chapterRepo->getById($id);
2015-11-21 18:11:46 +00:00
$isPage ? $this->pageRepo->changeBook($bookId, $model) : $this->chapterRepo->changeBook($bookId, $model);
2015-09-06 13:35:53 +00:00
$model->priority = $index;
if ($isPage) {
$model->chapter_id = ($bookChild->parentChapter === false) ? 0 : $bookChild->parentChapter;
}
$model->save();
if (!in_array($bookId, $sortedBooks)) {
$sortedBooks[] = $bookId;
}
}
// Add activity for books
foreach ($sortedBooks as $bookId) {
$updatedBook = $this->bookRepo->getById($bookId);
Activity::add($updatedBook, 'book_sort', $updatedBook->id);
}
return redirect($book->getUrl());
}
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');
}
}