2016-02-27 14:24:42 -05:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
2015-08-16 13:59:23 -04:00
|
|
|
use Activity;
|
2016-02-28 05:49:41 -05:00
|
|
|
use BookStack\Repos\UserRepo;
|
2015-07-27 15:17:08 -04:00
|
|
|
use Illuminate\Http\Request;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Repos\ChapterRepo;
|
2015-11-21 12:22:14 -05:00
|
|
|
use Views;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
|
|
|
class ChapterController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $bookRepo;
|
|
|
|
protected $chapterRepo;
|
2016-02-28 05:49:41 -05:00
|
|
|
protected $userRepo;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ChapterController constructor.
|
2016-02-28 05:49:41 -05:00
|
|
|
* @param BookRepo $bookRepo
|
|
|
|
* @param ChapterRepo $chapterRepo
|
|
|
|
* @param UserRepo $userRepo
|
2015-07-27 15:17:08 -04:00
|
|
|
*/
|
2016-02-28 05:49:41 -05:00
|
|
|
public function __construct(BookRepo $bookRepo, ChapterRepo $chapterRepo, UserRepo $userRepo)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
$this->chapterRepo = $chapterRepo;
|
2016-02-28 05:49:41 -05:00
|
|
|
$this->userRepo = $userRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
2015-08-29 10:03:42 -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);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-create', $book);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Create New Chapter');
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/create', ['book' => $book, 'current' => $book]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Store a newly created chapter in storage.
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param $bookSlug
|
2015-07-27 15:17:08 -04:00
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function store($bookSlug, Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-create', $book);
|
|
|
|
|
2016-04-24 11:54:20 -04:00
|
|
|
$input = $request->all();
|
|
|
|
$input['priority'] = $this->bookRepo->getNewPriority($book);
|
2016-07-03 05:31:20 -04:00
|
|
|
$chapter = $this->chapterRepo->createFromInput($input, $book);
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($chapter, 'chapter_create', $book->id);
|
2015-09-02 13:26:33 -04:00
|
|
|
return redirect($chapter->getUrl());
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Display the specified chapter.
|
|
|
|
* @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);
|
2016-04-09 07:40:07 -04:00
|
|
|
$this->checkOwnablePermission('chapter-view', $chapter);
|
2015-11-26 18:45:04 -05:00
|
|
|
$sidebarTree = $this->bookRepo->getChildren($book);
|
2015-11-21 12:22:14 -05:00
|
|
|
Views::add($chapter);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle($chapter->getShortName());
|
2016-03-05 13:09:21 -05:00
|
|
|
$pages = $this->chapterRepo->getChildren($chapter);
|
|
|
|
return view('chapters/show', [
|
|
|
|
'book' => $book,
|
|
|
|
'chapter' => $chapter,
|
|
|
|
'current' => $chapter,
|
|
|
|
'sidebarTree' => $sidebarTree,
|
|
|
|
'pages' => $pages
|
|
|
|
]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Show the form for editing the specified chapter.
|
|
|
|
* @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);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-update', $chapter);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Edit Chapter' . $chapter->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/edit', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Update the specified chapter in storage.
|
|
|
|
* @param Request $request
|
2015-08-29 10:03:42 -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 update(Request $request, $bookSlug, $chapterSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-update', $chapter);
|
2015-07-28 15:57:13 -04:00
|
|
|
$chapter->fill($request->all());
|
|
|
|
$chapter->slug = $this->chapterRepo->findSuitableSlug($chapter->name, $book->id, $chapter->id);
|
2016-09-29 07:43:46 -04:00
|
|
|
$chapter->updated_by = user()->id;
|
2015-07-28 15:57:13 -04:00
|
|
|
$chapter->save();
|
2015-08-16 13:59:23 -04:00
|
|
|
Activity::add($chapter, 'chapter_update', $book->id);
|
2015-07-28 15:57:13 -04:00
|
|
|
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);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-delete', $chapter);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Delete Chapter' . $chapter->getShortName());
|
2015-08-16 09:51:45 -04:00
|
|
|
return view('chapters/delete', ['book' => $book, 'chapter' => $chapter, 'current' => $chapter]);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-28 15:57:13 -04:00
|
|
|
* Remove the specified chapter from storage.
|
|
|
|
* @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);
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkOwnablePermission('chapter-delete', $chapter);
|
2015-08-23 09:20:34 -04:00
|
|
|
Activity::addMessage('chapter_delete', $book->id, $chapter->name);
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->chapterRepo->destroy($chapter);
|
2015-07-28 15:57:13 -04:00
|
|
|
return redirect($book->getUrl());
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
2016-02-28 05:49:41 -05:00
|
|
|
|
2016-06-25 10:31:38 -04:00
|
|
|
/**
|
|
|
|
* Show the page for moving a chapter.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
|
|
|
* @return mixed
|
|
|
|
* @throws \BookStack\Exceptions\NotFoundException
|
|
|
|
*/
|
|
|
|
public function showMove($bookSlug, $chapterSlug) {
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
|
|
|
$this->checkOwnablePermission('chapter-update', $chapter);
|
|
|
|
return view('chapters/move', [
|
|
|
|
'chapter' => $chapter,
|
|
|
|
'book' => $book
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-07-03 05:31:20 -04:00
|
|
|
/**
|
|
|
|
* Perform the move action for a chapter.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
|
|
|
* @param Request $request
|
|
|
|
* @return mixed
|
|
|
|
* @throws \BookStack\Exceptions\NotFoundException
|
|
|
|
*/
|
2016-06-25 10:31:38 -04:00
|
|
|
public function move($bookSlug, $chapterSlug, Request $request) {
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
|
|
|
$this->checkOwnablePermission('chapter-update', $chapter);
|
|
|
|
|
|
|
|
$entitySelection = $request->get('entity_selection', null);
|
|
|
|
if ($entitySelection === null || $entitySelection === '') {
|
|
|
|
return redirect($chapter->getUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
$stringExploded = explode(':', $entitySelection);
|
|
|
|
$entityType = $stringExploded[0];
|
|
|
|
$entityId = intval($stringExploded[1]);
|
|
|
|
|
|
|
|
$parent = false;
|
|
|
|
|
|
|
|
if ($entityType == 'book') {
|
|
|
|
$parent = $this->bookRepo->getById($entityId);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parent === false || $parent === null) {
|
|
|
|
session()->flash('The selected Book was not found');
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
|
2016-08-26 15:20:58 -04:00
|
|
|
$this->chapterRepo->changeBook($parent->id, $chapter, true);
|
2016-06-25 10:31:38 -04:00
|
|
|
Activity::add($chapter, 'chapter_move', $chapter->book->id);
|
|
|
|
session()->flash('success', sprintf('Chapter moved to "%s"', $parent->name));
|
|
|
|
|
|
|
|
return redirect($chapter->getUrl());
|
|
|
|
}
|
|
|
|
|
2016-02-28 05:49:41 -05:00
|
|
|
/**
|
|
|
|
* Show the Restrictions view.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function showRestrict($bookSlug, $chapterSlug)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
|
|
|
$this->checkOwnablePermission('restrictions-manage', $chapter);
|
|
|
|
$roles = $this->userRepo->getRestrictableRoles();
|
|
|
|
return view('chapters/restrictions', [
|
|
|
|
'chapter' => $chapter,
|
|
|
|
'roles' => $roles
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the restrictions for this chapter.
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $chapterSlug
|
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
|
|
*/
|
|
|
|
public function restrict($bookSlug, $chapterSlug, Request $request)
|
|
|
|
{
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$chapter = $this->chapterRepo->getBySlug($chapterSlug, $book->id);
|
|
|
|
$this->checkOwnablePermission('restrictions-manage', $chapter);
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->chapterRepo->updateEntityPermissionsFromRequest($request, $chapter);
|
2016-04-03 07:19:44 -04:00
|
|
|
session()->flash('success', 'Chapter Restrictions Updated');
|
2016-02-28 05:49:41 -05:00
|
|
|
return redirect($chapter->getUrl());
|
|
|
|
}
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|