koel/app/Services/ApplicationInformationService.php
2024-07-06 17:45:11 +02:00

26 lines
673 B
PHP

<?php
namespace App\Services;
use GuzzleHttp\Client;
use Illuminate\Support\Facades\Cache;
class ApplicationInformationService
{
public function __construct(private readonly Client $client)
{
}
/**
* Get the latest version number of Koel from GitHub.
*/
public function getLatestVersionNumber(): string
{
return attempt(function () {
return Cache::remember('latestKoelVersion', now()->addDay(), function (): string {
return json_decode($this->client->get('https://api.github.com/repos/koel/koel/tags')->getBody())[0]
->name;
});
}) ?? koel_version();
}
}