75
common/Core/HttpClient.php
Executable file
75
common/Core/HttpClient.php
Executable file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Core;
|
||||
|
||||
use Common\Settings\Settings;
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Exception\ClientException;
|
||||
|
||||
class HttpClient
|
||||
{
|
||||
/**
|
||||
* @var Client
|
||||
*/
|
||||
private $client;
|
||||
|
||||
/**
|
||||
* @param array $params
|
||||
*/
|
||||
public function __construct($params = [])
|
||||
{
|
||||
if ( ! isset($params['exceptions'])) $params['exceptions'] = false;
|
||||
if ( ! isset($params['timeout'])) $params['timeout'] = 2;
|
||||
$defaultVerify = (bool) app(Settings::class)->get('https.enable_cert_verification', true);
|
||||
if ( ! isset($params['verify'])) $params['verify'] = $defaultVerify;
|
||||
$this->client = new Client($params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array|string
|
||||
*/
|
||||
public function get(string $url, array $params = [])
|
||||
{
|
||||
try {
|
||||
$r = $this->client->get($url, $params);
|
||||
} catch (ClientException $e) {
|
||||
$r = $e->getResponse();
|
||||
if ($r->getStatusCode() === 429 && $r->hasHeader('Retry-After')) {
|
||||
$seconds = $r->getHeader('Retry-After') ?: 5;
|
||||
sleep((int) $seconds);
|
||||
$r = $this->get($url);
|
||||
}
|
||||
}
|
||||
|
||||
if ($r->getStatusCode() === 429 && $r->hasHeader('Retry-After')) {
|
||||
$seconds = $r->getHeader('Retry-After') ? $r->getHeader('Retry-After') : 5;
|
||||
sleep((int) $seconds);
|
||||
$r = $this->get($url);
|
||||
}
|
||||
|
||||
$contents = is_string($r) ? $r : $r->getBody()->getContents();
|
||||
$json = json_decode($contents, true);
|
||||
return $json ? $json : $contents;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $url
|
||||
* @param array $params
|
||||
* @return array
|
||||
*/
|
||||
public function post($url, $params = [])
|
||||
{
|
||||
$r = $this->client->post($url, $params);
|
||||
|
||||
if ($r->getStatusCode() === 429 && $r->hasHeader('Retry-After')) {
|
||||
$seconds = $r->getHeader('Retry-After') ? $r->getHeader('Retry-After') : 5;
|
||||
sleep($seconds);
|
||||
$r = $this->get($url);
|
||||
}
|
||||
|
||||
$contents = $r->getBody()->getContents();
|
||||
$json = json_decode($contents, true);
|
||||
return $json ? $json : $contents;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user