]> BookStack Code Mirror - bookstack/blobdiff - app/Entities/Repos/BookRepo.php
Customization: Added parent tag classes
[bookstack] / app / Entities / Repos / BookRepo.php
index c82780fea39d4399b24034fd9f7deaf78e401863..92e6a81c337fcc45dbe7d15c477082454526adf2 100644 (file)
@@ -1,63 +1,89 @@
 <?php
 
-
 namespace BookStack\Entities\Repos;
 
+use BookStack\Activity\ActivityType;
+use BookStack\Activity\TagRepo;
+use BookStack\Entities\Models\Book;
+use BookStack\Entities\Tools\TrashCan;
+use BookStack\Exceptions\ImageUploadException;
+use BookStack\Facades\Activity;
+use BookStack\Sorting\SortRule;
+use BookStack\Uploads\ImageRepo;
+use Exception;
+use Illuminate\Http\UploadedFile;
 
-use BookStack\Entities\Book;
-use BookStack\Entities\Bookshelf;
-use BookStack\Exceptions\NotFoundException;
-use BookStack\Exceptions\NotifyException;
-
-class BookRepo extends EntityRepo
+class BookRepo
 {
+    public function __construct(
+        protected BaseRepo $baseRepo,
+        protected TagRepo $tagRepo,
+        protected ImageRepo $imageRepo,
+        protected TrashCan $trashCan,
+    ) {
+    }
 
     /**
-     * Fetch a book by its slug.
-     * @param string $slug
-     * @return Book
-     * @throws NotFoundException
+     * Create a new book in the system.
      */
-    public function getBySlug(string $slug): Book
+    public function create(array $input): Book
     {
-        /** @var Book $book */
-        $book = $this->getEntityBySlug('book', $slug);
+        $book = new Book();
+        $this->baseRepo->create($book, $input);
+        $this->baseRepo->updateCoverImage($book, $input['image'] ?? null);
+        $this->baseRepo->updateDefaultTemplate($book, intval($input['default_template_id'] ?? null));
+        Activity::add(ActivityType::BOOK_CREATE, $book);
+
+        $defaultBookSortSetting = intval(setting('sorting-book-default', '0'));
+        if ($defaultBookSortSetting && SortRule::query()->find($defaultBookSortSetting)) {
+            $book->sort_rule_id = $defaultBookSortSetting;
+            $book->save();
+        }
+
         return $book;
     }
 
     /**
-     * Append a Book to a BookShelf.
-     * @param Bookshelf $shelf
-     * @param Book $book
+     * Update the given book.
      */
-    public function appendBookToShelf(Bookshelf $shelf, Book $book)
+    public function update(Book $book, array $input): Book
     {
-        if ($shelf->contains($book)) {
-            return;
+        $this->baseRepo->update($book, $input);
+
+        if (array_key_exists('default_template_id', $input)) {
+            $this->baseRepo->updateDefaultTemplate($book, intval($input['default_template_id']));
+        }
+
+        if (array_key_exists('image', $input)) {
+            $this->baseRepo->updateCoverImage($book, $input['image'], $input['image'] === null);
         }
 
-        $maxOrder = $shelf->books()->max('order');
-        $shelf->books()->attach($book->id, ['order' => $maxOrder + 1]);
+        Activity::add(ActivityType::BOOK_UPDATE, $book);
+
+        return $book;
     }
 
     /**
-     * Destroy the provided book and all its child entities.
-     * @param Book $book
-     * @throws NotifyException
-     * @throws \Throwable
+     * Update the given book's cover image, or clear it.
+     *
+     * @throws ImageUploadException
+     * @throws Exception
      */
-    public function destroyBook(Book $book)
+    public function updateCoverImage(Book $book, ?UploadedFile $coverImage, bool $removeImage = false)
     {
-        foreach ($book->pages as $page) {
-            $this->destroyPage($page);
-        }
+        $this->baseRepo->updateCoverImage($book, $coverImage, $removeImage);
+    }
 
-        foreach ($book->chapters as $chapter) {
-            $this->destroyChapter($chapter);
-        }
+    /**
+     * Remove a book from the system.
+     *
+     * @throws Exception
+     */
+    public function destroy(Book $book)
+    {
+        $this->trashCan->softDestroyBook($book);
+        Activity::add(ActivityType::BOOK_DELETE, $book);
 
-        $this->destroyEntityCommonRelations($book);
-        $book->delete();
+        $this->trashCan->autoClearOld();
     }
-
-}
\ No newline at end of file
+}