2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
use Activity;
|
2015-07-12 15:01:42 -04:00
|
|
|
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;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Repos\ChapterRepo;
|
|
|
|
use BookStack\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-09-06 09:35:53 -04:00
|
|
|
protected $chapterRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BookController constructor.
|
2015-09-06 09:35:53 -04:00
|
|
|
* @param BookRepo $bookRepo
|
|
|
|
* @param PageRepo $pageRepo
|
|
|
|
* @param ChapterRepo $chapterRepo
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2015-09-06 09:35:53 -04:00
|
|
|
public function __construct(BookRepo $bookRepo, PageRepo $pageRepo, ChapterRepo $chapterRepo)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-09-06 09:35:53 -04:00
|
|
|
$this->chapterRepo = $chapterRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the book.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2015-11-09 14:46:04 -05:00
|
|
|
$books = $this->bookRepo->getAllPaginated(10);
|
2015-07-12 15:01:42 -04:00
|
|
|
return view('books/index', ['books' => $books]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new book.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-create');
|
2015-07-12 15:01:42 -04:00
|
|
|
return view('books/create');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created book in storage.
|
|
|
|
*
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param Request $request
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-create');
|
2015-07-12 15:01:42 -04:00
|
|
|
$this->validate($request, [
|
2015-08-29 10:03:42 -04:00
|
|
|
'name' => 'required|string|max:255',
|
2015-07-12 15:01:42 -04:00
|
|
|
'description' => 'string|max:1000'
|
|
|
|
]);
|
|
|
|
$book = $this->bookRepo->newFromInput($request->all());
|
2015-08-09 05:26:54 -04:00
|
|
|
$book->slug = $this->bookRepo->findSuitableSlug($book->name);
|
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();
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($book, 'book_create', $book->id);
|
2015-09-02 13:26:33 -04:00
|
|
|
return redirect($book->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified book.
|
|
|
|
*
|
|
|
|
* @param $slug
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function show($slug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('books/show', ['book' => $book, 'current' => $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)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-update');
|
2015-07-12 15:01:42 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('books/edit', ['book' => $book, 'current' => $book]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified book in storage.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $slug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function update(Request $request, $slug)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-update');
|
2015-07-12 15:01:42 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($slug);
|
|
|
|
$this->validate($request, [
|
2015-08-29 10:03:42 -04:00
|
|
|
'name' => 'required|string|max:255',
|
2015-07-12 15:01:42 -04:00
|
|
|
'description' => 'string|max:1000'
|
|
|
|
]);
|
2015-07-15 17:55:49 -04:00
|
|
|
$book->fill($request->all());
|
2015-08-09 05:26:54 -04:00
|
|
|
$book->slug = $this->bookRepo->findSuitableSlug($book->name, $book->id);
|
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-08-16 13:59:23 -04:00
|
|
|
Activity::add($book, 'book_update', $book->id);
|
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)
|
|
|
|
{
|
2015-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-delete');
|
2015-07-28 15:57:13 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('books/delete', ['book' => $book, 'current' => $book]);
|
2015-07-28 15:57:13 -04:00
|
|
|
}
|
|
|
|
|
2015-09-06 09:35:53 -04: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);
|
|
|
|
$books = $this->bookRepo->getAll();
|
|
|
|
return view('books/sort', ['book' => $book, 'current' => $book, 'books' => $books]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSortItem($bookSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
return view('books/sort-box', ['book' => $book]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
$isPage ? $this->pageRepo->setBookId($bookId, $model) : $this->chapterRepo->setBookId($bookId, $model);
|
|
|
|
$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 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-08-29 10:03:42 -04:00
|
|
|
$this->checkPermission('book-delete');
|
2015-08-23 09:20:34 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
Activity::addMessage('book_delete', 0, $book->name);
|
2015-09-04 12:50:52 -04:00
|
|
|
Activity::removeEntity($book);
|
2015-07-28 15:57:13 -04:00
|
|
|
$this->bookRepo->destroyBySlug($bookSlug);
|
2015-07-12 15:01:42 -04:00
|
|
|
return redirect('/books');
|
|
|
|
}
|
|
|
|
}
|