mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-12 21:43:48 +08:00
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Entities\Queries;
|
||
|
|
||
|
use BookStack\Entities\Models\Bookshelf;
|
||
|
use BookStack\Exceptions\NotFoundException;
|
||
|
use Illuminate\Database\Eloquent\Builder;
|
||
|
|
||
|
class BookshelfQueries
|
||
|
{
|
||
|
public function start(): Builder
|
||
|
{
|
||
|
return Bookshelf::query();
|
||
|
}
|
||
|
|
||
|
public function findVisibleBySlug(string $slug): Bookshelf
|
||
|
{
|
||
|
/** @var ?Bookshelf $shelf */
|
||
|
$shelf = $this->start()
|
||
|
->scopes('visible')
|
||
|
->where('slug', '=', $slug)
|
||
|
->first();
|
||
|
|
||
|
if ($shelf === null) {
|
||
|
throw new NotFoundException(trans('errors.bookshelf_not_found'));
|
||
|
}
|
||
|
|
||
|
return $shelf;
|
||
|
}
|
||
|
|
||
|
public function visibleForList(): Builder
|
||
|
{
|
||
|
return $this->start()->scopes('visible');
|
||
|
}
|
||
|
|
||
|
public function visibleForListWithCover(): Builder
|
||
|
{
|
||
|
return $this->visibleForList()->with('cover');
|
||
|
}
|
||
|
|
||
|
public function recentlyViewedForCurrentUser(): Builder
|
||
|
{
|
||
|
return $this->visibleForList()
|
||
|
->scopes('withLastView')
|
||
|
->having('last_viewed_at', '>', 0)
|
||
|
->orderBy('last_viewed_at', 'desc');
|
||
|
}
|
||
|
|
||
|
public function popularForList(): Builder
|
||
|
{
|
||
|
return $this->visibleForList()
|
||
|
->scopes('withViewCount')
|
||
|
->having('view_count', '>', 0)
|
||
|
->orderBy('view_count', 'desc');
|
||
|
}
|
||
|
}
|