mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\User;
|
|
use App\Repositories\Traits\Searchable;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class AlbumRepository extends Repository
|
|
{
|
|
use Searchable;
|
|
|
|
public function getOne(int $id, ?User $scopedUser = null): Album
|
|
{
|
|
return Album::withMeta($scopedUser ?? $this->auth->user())
|
|
->where('albums.id', $id)
|
|
->first();
|
|
}
|
|
|
|
/** @return Collection|array<array-key, Album> */
|
|
public function getRecentlyAdded(int $count = 6, ?User $scopedUser = null): Collection
|
|
{
|
|
return Album::withMeta($scopedUser ?? $this->auth->user())
|
|
->isStandard()
|
|
->latest('albums.created_at')
|
|
->limit($count)
|
|
->get();
|
|
}
|
|
|
|
/** @return Collection|array<array-key, Album> */
|
|
public function getMostPlayed(int $count = 6, ?User $scopedUser = null): Collection
|
|
{
|
|
$scopedUser ??= $this->auth->user();
|
|
|
|
return Album::withMeta($scopedUser ?? $this->auth->user())
|
|
->isStandard()
|
|
->orderByDesc('play_count')
|
|
->limit($count)
|
|
->get();
|
|
}
|
|
|
|
/** @return Collection|array<array-key, Album> */
|
|
public function getByIds(array $ids, ?User $scopedUser = null): Collection
|
|
{
|
|
return Album::withMeta($scopedUser ?? $this->auth->user())
|
|
->whereIn('albums.id', $ids)
|
|
->get();
|
|
}
|
|
}
|