koel/app/Services/MediaCacheService.php
2021-06-05 12:47:56 +02:00

54 lines
1.1 KiB
PHP

<?php
namespace App\Services;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
use Illuminate\Cache\Repository as Cache;
class MediaCacheService
{
private const CACHE_KEY = 'media_cache';
private Cache $cache;
public function __construct(Cache $cache)
{
$this->cache = $cache;
}
/**
* Get media data.
* If caching is enabled, the data will be retrieved from the cache.
*
* @return array<mixed>
*/
public function get(): array
{
if (!config('koel.cache_media')) {
return $this->query();
}
return $this->cache->rememberForever(self::CACHE_KEY, fn (): array => $this->query());
}
/**
* Query fresh data from the database.
*
* @return array<mixed>
*/
private function query(): array
{
return [
'albums' => Album::orderBy('name')->get(),
'artists' => Artist::orderBy('name')->get(),
'songs' => Song::all(),
];
}
public function clear(): void
{
$this->cache->forget(self::CACHE_KEY);
}
}