Files
BookStack/app/Entities/Controllers/ChapterController.php

286 lines
10 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
2023-05-17 17:56:55 +01:00
namespace BookStack\Entities\Controllers;
2015-07-27 20:17:08 +01:00
2023-05-17 17:56:55 +01:00
use BookStack\Activity\Models\View;
use BookStack\Activity\Tools\UserEntityWatchOptions;
use BookStack\Entities\Models\Book;
use BookStack\Entities\Queries\ChapterQueries;
use BookStack\Entities\Queries\EntityQueries;
use BookStack\Entities\Repos\ChapterRepo;
2021-06-26 15:23:15 +00:00
use BookStack\Entities\Tools\BookContents;
use BookStack\Entities\Tools\Cloner;
use BookStack\Entities\Tools\HierarchyTransformer;
use BookStack\Entities\Tools\NextPreviousContentLocator;
use BookStack\Exceptions\MoveOperationException;
use BookStack\Exceptions\NotFoundException;
use BookStack\Exceptions\NotifyException;
use BookStack\Exceptions\PermissionsException;
use BookStack\Http\Controller;
use BookStack\Permissions\Permission;
use BookStack\References\ReferenceFetcher;
use BookStack\Util\DatabaseTransaction;
2015-07-27 20:17:08 +01:00
use Illuminate\Http\Request;
use Illuminate\Validation\ValidationException;
use Throwable;
2015-07-27 20:17:08 +01:00
class ChapterController extends Controller
{
public function __construct(
protected ChapterRepo $chapterRepo,
protected ChapterQueries $queries,
protected EntityQueries $entityQueries,
protected ReferenceFetcher $referenceFetcher,
) {
2015-07-27 20:17:08 +01:00
}
2015-08-29 15:03:42 +01:00
2015-07-27 20:17:08 +01:00
/**
* Show the form for creating a new chapter.
2015-07-27 20:17:08 +01:00
*/
public function create(string $bookSlug)
2015-07-27 20:17:08 +01:00
{
$book = $this->entityQueries->books->findVisibleBySlugOrFail($bookSlug);
$this->checkOwnablePermission(Permission::ChapterCreate, $book);
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.chapters_create'));
2021-06-26 15:23:15 +00:00
return view('chapters.create', [
'book' => $book,
'current' => $book,
]);
2015-07-27 20:17:08 +01:00
}
/**
* Store a newly created chapter in storage.
2021-06-26 15:23:15 +00:00
*
* @throws ValidationException
2015-07-27 20:17:08 +01:00
*/
public function store(Request $request, string $bookSlug)
2015-07-27 20:17:08 +01:00
{
$validated = $this->validate($request, [
2024-01-01 21:58:49 +01:00
'name' => ['required', 'string', 'max:255'],
'description_html' => ['string', 'max:2000'],
'tags' => ['array'],
'default_template_id' => ['nullable', 'integer'],
2015-07-27 20:17:08 +01:00
]);
$book = $this->entityQueries->books->findVisibleBySlugOrFail($bookSlug);
$this->checkOwnablePermission(Permission::ChapterCreate, $book);
$chapter = $this->chapterRepo->create($validated, $book);
return redirect($chapter->getUrl());
2015-07-27 20:17:08 +01:00
}
/**
* Display the specified chapter.
2015-07-27 20:17:08 +01:00
*/
public function show(string $bookSlug, string $chapterSlug)
2015-07-27 20:17:08 +01:00
{
try {
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
} catch (NotFoundException $exception) {
$chapter = $this->entityQueries->findVisibleByOldSlugs('chapter', $chapterSlug, $bookSlug);
if (is_null($chapter)) {
throw $exception;
}
return redirect($chapter->getUrl());
}
$sidebarTree = (new BookContents($chapter->book))->getTree();
$pages = $this->entityQueries->pages->visibleForChapterList($chapter->id)->get();
$nextPreviousLocator = new NextPreviousContentLocator($chapter, $sidebarTree);
View::incrementFor($chapter);
$this->setPageTitle($chapter->getShortName());
2021-06-26 15:23:15 +00:00
return view('chapters.show', [
'book' => $chapter->book,
'chapter' => $chapter,
'current' => $chapter,
'sidebarTree' => $sidebarTree,
'watchOptions' => new UserEntityWatchOptions(user(), $chapter),
'pages' => $pages,
'next' => $nextPreviousLocator->getNext(),
'previous' => $nextPreviousLocator->getPrevious(),
'referenceCount' => $this->referenceFetcher->getReferenceCountToEntity($chapter),
]);
2015-07-27 20:17:08 +01:00
}
/**
* Show the form for editing the specified chapter.
2015-07-27 20:17:08 +01:00
*/
public function edit(string $bookSlug, string $chapterSlug)
2015-07-27 20:17:08 +01:00
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterUpdate, $chapter);
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.chapters_edit_named', ['chapterName' => $chapter->getShortName()]));
2021-06-26 15:23:15 +00:00
return view('chapters.edit', ['book' => $chapter->book, 'chapter' => $chapter, 'current' => $chapter]);
2015-07-27 20:17:08 +01:00
}
/**
* Update the specified chapter in storage.
2021-06-26 15:23:15 +00:00
*
* @throws NotFoundException
2015-07-27 20:17:08 +01:00
*/
public function update(Request $request, string $bookSlug, string $chapterSlug)
{
$validated = $this->validate($request, [
2024-01-01 21:58:49 +01:00
'name' => ['required', 'string', 'max:255'],
'description_html' => ['string', 'max:2000'],
'tags' => ['array'],
'default_template_id' => ['nullable', 'integer'],
]);
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterUpdate, $chapter);
DB: Aligned entity structure to a common table As per PR #5800 * DB: Planned out new entity table format via migrations * DB: Created entity migration logic Made some other tweaks/fixes while testing. * DB: Added change of entity relation columns to suit new entities table * DB: Got most view queries working for new structure * Entities: Started logic change to new structure Updated base entity class, and worked through BaseRepo. Need to go through other repos next. Removed a couple of redundant interfaces as part of this since we can move the logic onto the shared ContainerData model as needed. * Entities: Been through repos to update for new format * Entities: Updated repos to act on refreshed clones Changes to core entity models are now done on clones to ensure clean state before save, and those clones are returned back if changes are needed after that action. * Entities: Updated model classes & relations for changes * Entities: Changed from *Data to a common "contents" system Added smart loading from builder instances which should hydrate with "contents()" loaded via join, while keeping the core model original. * Entities: Moved entity description/covers to own non-model classes Added back some interfaces. * Entities: Removed use of contents system for data access * Entities: Got most queries back to working order * Entities: Reverted back to data from contents, fixed various issues * Entities: Started addressing issues from tests * Entities: Addressed further tests/issues * Entities: Been through tests to get all passing in dev Fixed issues and needed test changes along the way. * Entities: Addressed phpstan errors * Entities: Reviewed TODO notes * Entities: Ensured book/shelf relation data removed on destroy * Entities: Been through API responses & adjusted field visibility * Entities: Added type index to massively improve query speed
2025-10-18 13:14:30 +01:00
$chapter = $this->chapterRepo->update($chapter, $validated);
return redirect($chapter->getUrl());
}
/**
* Shows the page to confirm deletion of this chapter.
2021-06-26 15:23:15 +00:00
*
* @throws NotFoundException
*/
public function showDelete(string $bookSlug, string $chapterSlug)
2015-07-27 20:17:08 +01:00
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterDelete, $chapter);
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.chapters_delete_named', ['chapterName' => $chapter->getShortName()]));
2021-06-26 15:23:15 +00:00
return view('chapters.delete', ['book' => $chapter->book, 'chapter' => $chapter, 'current' => $chapter]);
2015-07-27 20:17:08 +01:00
}
/**
* Remove the specified chapter from storage.
2021-06-26 15:23:15 +00:00
*
* @throws NotFoundException
* @throws Throwable
2015-07-27 20:17:08 +01:00
*/
public function destroy(string $bookSlug, string $chapterSlug)
2015-07-27 20:17:08 +01:00
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterDelete, $chapter);
$this->chapterRepo->destroy($chapter);
return redirect($chapter->book->getUrl());
2015-07-27 20:17:08 +01:00
}
2016-06-25 15:31:38 +01:00
/**
* Show the page for moving a chapter.
2021-06-26 15:23:15 +00:00
*
* @throws NotFoundException
2016-06-25 15:31:38 +01:00
*/
public function showMove(string $bookSlug, string $chapterSlug)
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
2016-12-04 16:51:39 +00:00
$this->setPageTitle(trans('entities.chapters_move_named', ['chapterName' => $chapter->getShortName()]));
$this->checkOwnablePermission(Permission::ChapterUpdate, $chapter);
$this->checkOwnablePermission(Permission::ChapterDelete, $chapter);
return view('chapters.move', [
2016-06-25 15:31:38 +01:00
'chapter' => $chapter,
2021-06-26 15:23:15 +00:00
'book' => $chapter->book,
2016-06-25 15:31:38 +01:00
]);
}
/**
* Perform the move action for a chapter.
2021-06-26 15:23:15 +00:00
*
* @throws NotFoundException|NotifyException
*/
public function move(Request $request, string $bookSlug, string $chapterSlug)
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterUpdate, $chapter);
$this->checkOwnablePermission(Permission::ChapterDelete, $chapter);
2016-06-25 15:31:38 +01:00
$entitySelection = $request->get('entity_selection', null);
if ($entitySelection === null || $entitySelection === '') {
return redirect($chapter->getUrl());
}
try {
$this->chapterRepo->move($chapter, $entitySelection);
} catch (PermissionsException $exception) {
$this->showPermissionError();
} catch (MoveOperationException $exception) {
$this->showErrorNotification(trans('errors.selected_book_not_found'));
2021-06-26 15:23:15 +00:00
return redirect($chapter->getUrl('/move'));
2016-06-25 15:31:38 +01:00
}
return redirect($chapter->getUrl());
}
/**
* Show the view to copy a chapter.
*
* @throws NotFoundException
*/
public function showCopy(string $bookSlug, string $chapterSlug)
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
session()->flashInput(['name' => $chapter->name]);
return view('chapters.copy', [
2021-12-20 17:40:27 +00:00
'book' => $chapter->book,
'chapter' => $chapter,
]);
}
/**
2021-12-19 19:20:31 +00:00
* Create a copy of a chapter within the requested target destination.
*
* @throws NotFoundException
* @throws Throwable
*/
public function copy(Request $request, Cloner $cloner, string $bookSlug, string $chapterSlug)
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$entitySelection = $request->get('entity_selection') ?: null;
$newParentBook = $entitySelection ? $this->entityQueries->findVisibleByStringIdentifier($entitySelection) : $chapter->getParent();
if (!$newParentBook instanceof Book) {
$this->showErrorNotification(trans('errors.selected_book_not_found'));
2021-12-20 17:40:27 +00:00
return redirect($chapter->getUrl('/copy'));
}
$this->checkOwnablePermission(Permission::ChapterCreate, $newParentBook);
$newName = $request->get('name') ?: $chapter->name;
$chapterCopy = $cloner->cloneChapter($chapter, $newParentBook, $newName);
$this->showSuccessNotification(trans('entities.chapters_copy_success'));
return redirect($chapterCopy->getUrl());
}
/**
* Convert the chapter to a book.
*/
public function convertToBook(HierarchyTransformer $transformer, string $bookSlug, string $chapterSlug)
{
$chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);
$this->checkOwnablePermission(Permission::ChapterUpdate, $chapter);
$this->checkOwnablePermission(Permission::ChapterDelete, $chapter);
$this->checkPermission(Permission::BookCreateAll);
$book = (new DatabaseTransaction(function () use ($chapter, $transformer) {
return $transformer->transformChapterToBook($chapter);
}))->run();
return redirect($book->getUrl());
}
2015-07-27 20:17:08 +01:00
}