mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
41 lines
1 KiB
PHP
41 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use GuzzleHttp\Client;
|
|
use Illuminate\Contracts\Cache\Repository as Cache;
|
|
use Illuminate\Log\Logger;
|
|
use Throwable;
|
|
|
|
class ApplicationInformationService
|
|
{
|
|
private const CACHE_KEY = 'latestKoelVersion';
|
|
|
|
private Client $client;
|
|
private Cache $cache;
|
|
private Logger $logger;
|
|
|
|
public function __construct(Client $client, Cache $cache, Logger $logger)
|
|
{
|
|
$this->client = $client;
|
|
$this->cache = $cache;
|
|
$this->logger = $logger;
|
|
}
|
|
|
|
/**
|
|
* Get the latest version number of Koel from GitHub.
|
|
*/
|
|
public function getLatestVersionNumber(): string
|
|
{
|
|
return $this->cache->remember(self::CACHE_KEY, now()->addDay(), function (): string {
|
|
try {
|
|
return json_decode($this->client->get('https://api.github.com/repos/koel/koel/tags')->getBody())[0]
|
|
->name;
|
|
} catch (Throwable $e) {
|
|
$this->logger->error($e);
|
|
|
|
return koel_version();
|
|
}
|
|
});
|
|
}
|
|
}
|