mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 02:42:18 +01:00
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Integrations\Core;
|
|
|
|
use CachetHQ\Cachet\Integrations\Contracts\Credits as CreditsContract;
|
|
use Exception;
|
|
use GuzzleHttp\Client;
|
|
use Illuminate\Contracts\Cache\Repository;
|
|
|
|
class Credits implements CreditsContract
|
|
{
|
|
/**
|
|
* The default url.
|
|
*
|
|
* @var string
|
|
*/
|
|
const URL = 'https://cachethq.io/credits';
|
|
|
|
/**
|
|
* The failed status indicator.
|
|
*
|
|
* @var int
|
|
*/
|
|
const FAILED = 1;
|
|
|
|
/**
|
|
* The cache repository instance.
|
|
*
|
|
* @var \Illuminate\Contracts\Cache\Repository
|
|
*/
|
|
protected $cache;
|
|
|
|
/**
|
|
* The url to use.
|
|
*
|
|
* @var string|null
|
|
*/
|
|
protected $url;
|
|
|
|
/**
|
|
* Creates a new credits instance.
|
|
*
|
|
* @param \Illuminate\Contracts\Cache\Repository $cache
|
|
* @param string|null $url
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Repository $cache, $url = null)
|
|
{
|
|
$this->cache = $cache;
|
|
$this->url = $url ?: static::URL;
|
|
}
|
|
|
|
/**
|
|
* Returns the latest credits.
|
|
*
|
|
* @return array|null
|
|
*/
|
|
public function latest()
|
|
{
|
|
$result = $this->cache->remember('credits', 2880, function () {
|
|
try {
|
|
return json_decode((new Client())->get($this->url, [
|
|
'headers' => ['Accept' => 'application/json', 'User-Agent' => defined('CACHET_VERSION') ? 'cachet/'.constant('CACHET_VERSION') : 'cachet'],
|
|
])->getBody(), true);
|
|
} catch (Exception $e) {
|
|
return self::FAILED;
|
|
}
|
|
});
|
|
|
|
return $result === self::FAILED ? null : $result;
|
|
}
|
|
}
|