mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Services\Tax\Providers;
|
|
|
|
use Illuminate\Http\Client\Response;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
class ZipTax
|
|
{
|
|
|
|
private string $endpoint = 'https://api.zip-tax.com/request/v40';
|
|
|
|
public function __construct(protected string $api_key, protected string $address, protected ?string $postal_code)
|
|
{
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
|
|
$response = $this->callApi(['key' => $this->api_key, 'address' => $this->address]);
|
|
|
|
if($response->successful())
|
|
return $response->json();
|
|
|
|
if($this->postal_code) {
|
|
$response = $this->callApi(['key' => $this->api_key, 'address' => $this->postal_code]);
|
|
|
|
if($response->successful())
|
|
return $response->json();
|
|
|
|
}
|
|
|
|
$response->throw();
|
|
|
|
}
|
|
|
|
/**
|
|
* callApi
|
|
*
|
|
* @param array $parameters
|
|
* @return Response
|
|
*/
|
|
private function callApi(array $parameters): Response
|
|
{
|
|
$response = Http::retry(3, 1000)->withHeaders([])->get($this->endpoint, $parameters);
|
|
|
|
return $response;
|
|
|
|
}
|
|
}
|