2020-11-21 18:20:54 -05:00
|
|
|
<?php namespace BookStack\Entities\Tools;
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Deletion;
|
|
|
|
use BookStack\Entities\Models\Entity;
|
2020-10-03 13:44:12 -04:00
|
|
|
use BookStack\Entities\EntityProvider;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\HasCoverImage;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Exceptions\NotifyException;
|
|
|
|
use BookStack\Facades\Activity;
|
|
|
|
use BookStack\Uploads\AttachmentService;
|
|
|
|
use BookStack\Uploads\ImageService;
|
|
|
|
use Exception;
|
2020-11-07 08:58:23 -05:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
class TrashCan
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2020-09-27 18:24:33 -04:00
|
|
|
* Send a shelf to the recycle bin.
|
2019-10-05 07:55:01 -04:00
|
|
|
*/
|
2020-09-27 18:24:33 -04:00
|
|
|
public function softDestroyShelf(Bookshelf $shelf)
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
2020-10-03 13:44:12 -04:00
|
|
|
Deletion::createForEntity($shelf);
|
2019-10-05 07:55:01 -04:00
|
|
|
$shelf->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-27 18:24:33 -04:00
|
|
|
* Send a book to the recycle bin.
|
|
|
|
* @throws Exception
|
2019-10-05 07:55:01 -04:00
|
|
|
*/
|
2020-09-27 18:24:33 -04:00
|
|
|
public function softDestroyBook(Book $book)
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
2020-10-03 13:44:12 -04:00
|
|
|
Deletion::createForEntity($book);
|
2020-09-27 18:24:33 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
foreach ($book->pages as $page) {
|
2020-09-27 18:24:33 -04:00
|
|
|
$this->softDestroyPage($page, false);
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($book->chapters as $chapter) {
|
2020-09-27 18:24:33 -04:00
|
|
|
$this->softDestroyChapter($chapter, false);
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$book->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-27 18:24:33 -04:00
|
|
|
* Send a chapter to the recycle bin.
|
|
|
|
* @throws Exception
|
2019-10-05 07:55:01 -04:00
|
|
|
*/
|
2020-09-27 18:24:33 -04:00
|
|
|
public function softDestroyChapter(Chapter $chapter, bool $recordDelete = true)
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
2020-09-27 18:24:33 -04:00
|
|
|
if ($recordDelete) {
|
2020-10-03 13:44:12 -04:00
|
|
|
Deletion::createForEntity($chapter);
|
2020-09-27 18:24:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($chapter->pages) > 0) {
|
|
|
|
foreach ($chapter->pages as $page) {
|
|
|
|
$this->softDestroyPage($page, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$chapter->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a page to the recycle bin.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function softDestroyPage(Page $page, bool $recordDelete = true)
|
|
|
|
{
|
|
|
|
if ($recordDelete) {
|
2020-10-03 13:44:12 -04:00
|
|
|
Deletion::createForEntity($page);
|
2020-09-27 18:24:33 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
// Check if set as custom homepage & remove setting if not used or throw error if active
|
|
|
|
$customHome = setting('app-homepage', '0:');
|
|
|
|
if (intval($page->id) === intval(explode(':', $customHome)[0])) {
|
|
|
|
if (setting('app-homepage-type') === 'page') {
|
|
|
|
throw new NotifyException(trans('errors.page_custom_home_deletion'), $page->getUrl());
|
|
|
|
}
|
|
|
|
setting()->remove('app-homepage');
|
|
|
|
}
|
|
|
|
|
2020-09-27 18:24:33 -04:00
|
|
|
$page->delete();
|
|
|
|
}
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2020-09-27 18:24:33 -04:00
|
|
|
/**
|
|
|
|
* Remove a bookshelf from the system.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2020-11-06 07:54:39 -05:00
|
|
|
protected function destroyShelf(Bookshelf $shelf): int
|
2020-09-27 18:24:33 -04:00
|
|
|
{
|
|
|
|
$this->destroyCommonRelations($shelf);
|
|
|
|
$shelf->forceDelete();
|
2020-10-03 13:53:09 -04:00
|
|
|
return 1;
|
2020-09-27 18:24:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a book from the system.
|
|
|
|
* Destroys any child chapters and pages.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2020-11-06 07:54:39 -05:00
|
|
|
protected function destroyBook(Book $book): int
|
2020-09-27 18:24:33 -04:00
|
|
|
{
|
2020-10-03 13:53:09 -04:00
|
|
|
$count = 0;
|
2020-09-27 18:24:33 -04:00
|
|
|
$pages = $book->pages()->withTrashed()->get();
|
|
|
|
foreach ($pages as $page) {
|
|
|
|
$this->destroyPage($page);
|
2020-10-03 13:53:09 -04:00
|
|
|
$count++;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
2020-09-27 18:24:33 -04:00
|
|
|
$chapters = $book->chapters()->withTrashed()->get();
|
|
|
|
foreach ($chapters as $chapter) {
|
|
|
|
$this->destroyChapter($chapter);
|
2020-10-03 13:53:09 -04:00
|
|
|
$count++;
|
2020-09-27 18:24:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->destroyCommonRelations($book);
|
|
|
|
$book->forceDelete();
|
2020-10-03 13:53:09 -04:00
|
|
|
return $count + 1;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a chapter from the system.
|
2020-09-27 18:24:33 -04:00
|
|
|
* Destroys all pages within.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws Exception
|
|
|
|
*/
|
2020-11-06 07:54:39 -05:00
|
|
|
protected function destroyChapter(Chapter $chapter): int
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
2020-10-03 13:53:09 -04:00
|
|
|
$count = 0;
|
2020-09-27 18:24:33 -04:00
|
|
|
$pages = $chapter->pages()->withTrashed()->get();
|
|
|
|
if (count($pages)) {
|
|
|
|
foreach ($pages as $page) {
|
|
|
|
$this->destroyPage($page);
|
2020-10-03 13:53:09 -04:00
|
|
|
$count++;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->destroyCommonRelations($chapter);
|
2020-09-27 18:24:33 -04:00
|
|
|
$chapter->forceDelete();
|
2020-10-03 13:53:09 -04:00
|
|
|
return $count + 1;
|
2020-09-27 18:24:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a page from the system.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2020-11-06 07:54:39 -05:00
|
|
|
protected function destroyPage(Page $page): int
|
2020-09-27 18:24:33 -04:00
|
|
|
{
|
|
|
|
$this->destroyCommonRelations($page);
|
2021-05-26 11:40:56 -04:00
|
|
|
$page->allRevisions()->delete();
|
2020-09-27 18:24:33 -04:00
|
|
|
|
|
|
|
// Delete Attached Files
|
|
|
|
$attachmentService = app(AttachmentService::class);
|
|
|
|
foreach ($page->attachments as $attachment) {
|
|
|
|
$attachmentService->deleteFile($attachment);
|
|
|
|
}
|
|
|
|
|
|
|
|
$page->forceDelete();
|
2020-10-03 13:53:09 -04:00
|
|
|
return 1;
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
2020-10-03 13:44:12 -04:00
|
|
|
/**
|
|
|
|
* Get the total counts of those that have been trashed
|
|
|
|
* but not yet fully deleted (In recycle bin).
|
|
|
|
*/
|
|
|
|
public function getTrashedCounts(): array
|
|
|
|
{
|
|
|
|
$counts = [];
|
|
|
|
|
|
|
|
/** @var Entity $instance */
|
2020-11-21 20:20:38 -05:00
|
|
|
foreach ((new EntityProvider)->all() as $key => $instance) {
|
2020-10-03 13:44:12 -04:00
|
|
|
$counts[$key] = $instance->newQuery()->onlyTrashed()->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $counts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy all items that have pending deletions.
|
2020-11-02 17:47:48 -05:00
|
|
|
* @throws Exception
|
2020-10-03 13:44:12 -04:00
|
|
|
*/
|
2020-11-06 07:54:39 -05:00
|
|
|
public function empty(): int
|
2020-10-03 13:44:12 -04:00
|
|
|
{
|
|
|
|
$deletions = Deletion::all();
|
2020-10-03 13:53:09 -04:00
|
|
|
$deleteCount = 0;
|
2020-10-03 13:44:12 -04:00
|
|
|
foreach ($deletions as $deletion) {
|
2020-11-02 17:47:48 -05:00
|
|
|
$deleteCount += $this->destroyFromDeletion($deletion);
|
2020-10-03 13:44:12 -04:00
|
|
|
}
|
2020-10-03 13:53:09 -04:00
|
|
|
return $deleteCount;
|
2020-10-03 13:44:12 -04:00
|
|
|
}
|
|
|
|
|
2020-11-02 17:47:48 -05:00
|
|
|
/**
|
|
|
|
* Destroy an element from the given deletion model.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function destroyFromDeletion(Deletion $deletion): int
|
|
|
|
{
|
|
|
|
// We directly load the deletable element here just to ensure it still
|
|
|
|
// exists in the event it has already been destroyed during this request.
|
|
|
|
$entity = $deletion->deletable()->first();
|
|
|
|
$count = 0;
|
|
|
|
if ($entity) {
|
|
|
|
$count = $this->destroyEntity($deletion->deletable);
|
|
|
|
}
|
|
|
|
$deletion->delete();
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restore the content within the given deletion.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function restoreFromDeletion(Deletion $deletion): int
|
|
|
|
{
|
|
|
|
$shouldRestore = true;
|
|
|
|
$restoreCount = 0;
|
|
|
|
$parent = $deletion->deletable->getParent();
|
|
|
|
|
|
|
|
if ($parent && $parent->trashed()) {
|
|
|
|
$shouldRestore = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($shouldRestore) {
|
|
|
|
$restoreCount = $this->restoreEntity($deletion->deletable);
|
|
|
|
}
|
|
|
|
|
|
|
|
$deletion->delete();
|
|
|
|
return $restoreCount;
|
|
|
|
}
|
2020-11-07 08:58:23 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Automatically clear old content from the recycle bin
|
|
|
|
* depending on the configured lifetime.
|
|
|
|
* Returns the total number of deleted elements.
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public function autoClearOld(): int
|
|
|
|
{
|
|
|
|
$lifetime = intval(config('app.recycle_bin_lifetime'));
|
|
|
|
if ($lifetime < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$clearBeforeDate = Carbon::now()->addSeconds(10)->subDays($lifetime);
|
|
|
|
$deleteCount = 0;
|
|
|
|
|
|
|
|
$deletionsToRemove = Deletion::query()->where('created_at', '<', $clearBeforeDate)->get();
|
|
|
|
foreach ($deletionsToRemove as $deletion) {
|
|
|
|
$deleteCount += $this->destroyFromDeletion($deletion);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $deleteCount;
|
|
|
|
}
|
2020-11-02 17:47:48 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Restore an entity so it is essentially un-deleted.
|
|
|
|
* Deletions on restored child elements will be removed during this restoration.
|
|
|
|
*/
|
|
|
|
protected function restoreEntity(Entity $entity): int
|
|
|
|
{
|
|
|
|
$count = 1;
|
|
|
|
$entity->restore();
|
|
|
|
|
2020-11-02 17:54:00 -05:00
|
|
|
$restoreAction = function ($entity) use (&$count) {
|
|
|
|
if ($entity->deletions_count > 0) {
|
|
|
|
$entity->deletions()->delete();
|
2020-11-02 17:47:48 -05:00
|
|
|
}
|
2020-11-02 17:54:00 -05:00
|
|
|
|
|
|
|
$entity->restore();
|
|
|
|
$count++;
|
|
|
|
};
|
|
|
|
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Chapter || $entity instanceof Book) {
|
2020-11-02 17:54:00 -05:00
|
|
|
$entity->pages()->withTrashed()->withCount('deletions')->get()->each($restoreAction);
|
2020-11-02 17:47:48 -05:00
|
|
|
}
|
|
|
|
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Book) {
|
2020-11-02 17:54:00 -05:00
|
|
|
$entity->chapters()->withTrashed()->withCount('deletions')->get()->each($restoreAction);
|
2020-11-02 17:47:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
2020-10-03 13:44:12 -04:00
|
|
|
/**
|
|
|
|
* Destroy the given entity.
|
2021-02-06 08:29:39 -05:00
|
|
|
* @throws Exception
|
2020-10-03 13:44:12 -04:00
|
|
|
*/
|
2020-10-03 13:53:09 -04:00
|
|
|
protected function destroyEntity(Entity $entity): int
|
2020-10-03 13:44:12 -04:00
|
|
|
{
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Page) {
|
2020-10-03 13:44:12 -04:00
|
|
|
return $this->destroyPage($entity);
|
|
|
|
}
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Chapter) {
|
2020-10-03 13:44:12 -04:00
|
|
|
return $this->destroyChapter($entity);
|
|
|
|
}
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Book) {
|
2020-10-03 13:44:12 -04:00
|
|
|
return $this->destroyBook($entity);
|
|
|
|
}
|
2021-02-06 08:29:39 -05:00
|
|
|
if ($entity instanceof Bookshelf) {
|
2020-10-03 13:44:12 -04:00
|
|
|
return $this->destroyShelf($entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
/**
|
|
|
|
* Update entity relations to remove or update outstanding connections.
|
|
|
|
*/
|
|
|
|
protected function destroyCommonRelations(Entity $entity)
|
|
|
|
{
|
|
|
|
Activity::removeEntity($entity);
|
|
|
|
$entity->views()->delete();
|
|
|
|
$entity->permissions()->delete();
|
|
|
|
$entity->tags()->delete();
|
|
|
|
$entity->comments()->delete();
|
|
|
|
$entity->jointPermissions()->delete();
|
|
|
|
$entity->searchTerms()->delete();
|
2020-10-03 13:44:12 -04:00
|
|
|
$entity->deletions()->delete();
|
2021-05-23 08:41:56 -04:00
|
|
|
$entity->favourites()->delete();
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
if ($entity instanceof HasCoverImage && $entity->cover) {
|
|
|
|
$imageService = app()->make(ImageService::class);
|
|
|
|
$imageService->destroy($entity->cover);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|