mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
36 lines
885 B
PHP
36 lines
885 B
PHP
<?php
|
|
|
|
namespace Crater\Space;
|
|
|
|
use Crater\Models\Setting;
|
|
use GuzzleHttp\Client;
|
|
use GuzzleHttp\Exception\RequestException;
|
|
|
|
// Implementation taken from Akaunting - https://github.com/akaunting/akaunting
|
|
trait SiteApi
|
|
{
|
|
protected static function getRemote($url, $data = [], $token = null)
|
|
{
|
|
$client = new Client(['verify' => false, 'base_uri' => config('crater.base_url').'/']);
|
|
|
|
$headers['headers'] = [
|
|
'Accept' => 'application/json',
|
|
'Referer' => url('/'),
|
|
'crater' => Setting::getSetting('version'),
|
|
'Authorization' => "Bearer {$token}",
|
|
];
|
|
|
|
$data['http_errors'] = false;
|
|
|
|
$data = array_merge($data, $headers);
|
|
|
|
try {
|
|
$result = $client->get($url, $data);
|
|
} catch (RequestException $e) {
|
|
$result = $e;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|