mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Application;
|
|
use Exception;
|
|
use GuzzleHttp\Client;
|
|
use Illuminate\Contracts\Cache\Repository as Cache;
|
|
use Illuminate\Log\Logger;
|
|
|
|
class ApplicationInformationService
|
|
{
|
|
private const CACHE_KEY = 'latestKoelVersion';
|
|
|
|
private $client;
|
|
private $cache;
|
|
private $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, 1 * 24 * 60, function (): string {
|
|
try {
|
|
return json_decode(
|
|
$this->client->get('https://api.github.com/repos/phanan/koel/tags')->getBody()
|
|
)[0]->name;
|
|
} catch (Exception $e) {
|
|
$this->logger->error($e);
|
|
|
|
return Application::KOEL_VERSION;
|
|
}
|
|
});
|
|
}
|
|
}
|