X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/60d0f96cd754a85c637a5f34dcc0341f4ef72a46..refs/pull/3391/head:/app/Entities/Repos/BookRepo.php diff --git a/app/Entities/Repos/BookRepo.php b/app/Entities/Repos/BookRepo.php index c82780fea..7c4b280a8 100644 --- a/app/Entities/Repos/BookRepo.php +++ b/app/Entities/Repos/BookRepo.php @@ -1,63 +1,134 @@ baseRepo = $baseRepo; + $this->tagRepo = $tagRepo; + $this->imageRepo = $imageRepo; + } + + /** + * Get all books in a paginated format. + */ + public function getAllPaginated(int $count = 20, string $sort = 'name', string $order = 'asc'): LengthAwarePaginator + { + return Book::visible()->with('cover')->orderBy($sort, $order)->paginate($count); + } + + /** + * Get the books that were most recently viewed by this user. + */ + public function getRecentlyViewed(int $count = 20): Collection + { + return Book::visible()->withLastView() + ->having('last_viewed_at', '>', 0) + ->orderBy('last_viewed_at', 'desc') + ->take($count)->get(); + } + + /** + * Get the most popular books in the system. + */ + public function getPopular(int $count = 20): Collection + { + return Book::visible()->withViewCount() + ->having('view_count', '>', 0) + ->orderBy('view_count', 'desc') + ->take($count)->get(); + } /** - * Fetch a book by its slug. - * @param string $slug - * @return Book - * @throws NotFoundException + * Get the most recently created books from the system. + */ + public function getRecentlyCreated(int $count = 20): Collection + { + return Book::visible()->orderBy('created_at', 'desc') + ->take($count)->get(); + } + + /** + * Get a book by its slug. */ public function getBySlug(string $slug): Book { - /** @var Book $book */ - $book = $this->getEntityBySlug('book', $slug); + $book = Book::visible()->where('slug', '=', $slug)->first(); + + if ($book === null) { + throw new NotFoundException(trans('errors.book_not_found')); + } + return $book; } /** - * Append a Book to a BookShelf. - * @param Bookshelf $shelf - * @param Book $book + * Create a new book in the system. */ - public function appendBookToShelf(Bookshelf $shelf, Book $book) + public function create(array $input): Book { - if ($shelf->contains($book)) { - return; - } + $book = new Book(); + $this->baseRepo->create($book, $input); + Activity::add(ActivityType::BOOK_CREATE, $book); - $maxOrder = $shelf->books()->max('order'); - $shelf->books()->attach($book->id, ['order' => $maxOrder + 1]); + return $book; } /** - * Destroy the provided book and all its child entities. - * @param Book $book - * @throws NotifyException - * @throws \Throwable + * Update the given book. */ - public function destroyBook(Book $book) + public function update(Book $book, array $input): Book { - foreach ($book->pages as $page) { - $this->destroyPage($page); - } + $this->baseRepo->update($book, $input); + Activity::add(ActivityType::BOOK_UPDATE, $book); - foreach ($book->chapters as $chapter) { - $this->destroyChapter($chapter); - } + return $book; + } - $this->destroyEntityCommonRelations($book); - $book->delete(); + /** + * Update the given book's cover image, or clear it. + * + * @throws ImageUploadException + * @throws Exception + */ + public function updateCoverImage(Book $book, ?UploadedFile $coverImage, bool $removeImage = false) + { + $this->baseRepo->updateCoverImage($book, $coverImage, $removeImage); } -} \ No newline at end of file + /** + * Remove a book from the system. + * + * @throws Exception + */ + public function destroy(Book $book) + { + $trashCan = new TrashCan(); + $trashCan->softDestroyBook($book); + Activity::add(ActivityType::BOOK_DELETE, $book); + + $trashCan->autoClearOld(); + } +}