mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
153 lines
3.9 KiB
PHP
153 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Api\EUVAT
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\EUVAT;
|
|
|
|
use phpOMS\Message\Http\HttpRequest;
|
|
use phpOMS\Message\Http\RequestMethod;
|
|
use phpOMS\Message\Http\Rest;
|
|
use phpOMS\Uri\HttpUri;
|
|
|
|
/**
|
|
* Check EU VAT.
|
|
*
|
|
* @package phpOMS\Api\EUVAT
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
final class EUVATBffOnline implements EUVATInterface
|
|
{
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
private function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function validate(string $otherVAT, string $ownVAT = '') : array
|
|
{
|
|
$request = new HttpRequest(new HttpUri('https://evatr.bff-online.de/evatrRPC?UstId_1=' . $ownVAT . '&UstId_2=' . $otherVAT));
|
|
$request->setMethod(RequestMethod::GET);
|
|
|
|
$result = [
|
|
'status' => -1,
|
|
'vat' => 'C',
|
|
'name' => '',
|
|
'city' => '',
|
|
'postal' => '',
|
|
'address' => '',
|
|
'body' => '',
|
|
];
|
|
|
|
$matches = [];
|
|
try {
|
|
$body = Rest::request($request)->getBody();
|
|
$result['body'] = $body;
|
|
|
|
\preg_match('/ErrorCode.*?(\d+)/s', $body, $matches);
|
|
|
|
switch ((int) ($matches[1] ?? 1)) {
|
|
case 200:
|
|
$result['vat'] = 'A';
|
|
break;
|
|
default:
|
|
$result['vat'] = 'B';
|
|
}
|
|
|
|
$result['status'] = 0;
|
|
} catch (\Throwable $t) {
|
|
return $result;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function validateQualified(
|
|
string $otherVAT,
|
|
string $ownVAT,
|
|
string $otherName,
|
|
string $otherCity,
|
|
string $otherPostal,
|
|
string $otherStreet
|
|
) : array
|
|
{
|
|
$result = [
|
|
'status' => -1,
|
|
'vat' => 'C',
|
|
'name' => 'C',
|
|
'city' => 'C',
|
|
'postal' => 'C',
|
|
'address' => 'C',
|
|
'body' => '',
|
|
];
|
|
|
|
if (empty($ownVAT)) {
|
|
return $result;
|
|
}
|
|
|
|
$request = new HttpRequest(new HttpUri(
|
|
'https://evatr.bff-online.de/evatrRPC?UstId_1=' . $ownVAT . '&UstId_2=' . $otherVAT . '&Firmenname=' . \urlencode($otherName) . '&Ort=' . \urlencode($otherCity) . '&PLZ=' . \urlencode($otherPostal) . '&Strasse=' . \urlencode($otherStreet))
|
|
);
|
|
$request->setMethod(RequestMethod::GET);
|
|
|
|
try {
|
|
$body = Rest::request($request)->getBody();
|
|
$result['body'] = $body;
|
|
|
|
$matches = [];
|
|
\preg_match('/ErrorCode.*?(\d+)/s', $body, $matches);
|
|
|
|
switch ((int) ($matches[1] ?? 1)) {
|
|
case 200:
|
|
$result['vat'] = 'A';
|
|
break;
|
|
default:
|
|
$result['vat'] = 'B';
|
|
}
|
|
|
|
$matches = [];
|
|
\preg_match('/Erg_PLZ.*?<string>(A|B|C|D)/s', $body, $matches);
|
|
$result['postal'] = $matches[1] ?? 'B';
|
|
|
|
$matches = [];
|
|
\preg_match('/Erg_Ort.*?<string>(A|B|C|D)/s', $body, $matches);
|
|
$result['city'] = $matches[1] ?? 'B';
|
|
|
|
$matches = [];
|
|
\preg_match('/Erg_Str.*?<string>(A|B|C|D)/s', $body, $matches);
|
|
$result['address'] = $matches[1] ?? 'B';
|
|
|
|
$matches = [];
|
|
\preg_match('/Erg_Name.*?<string>(A|B|C|D)/s', $body, $matches);
|
|
$result['name'] = $matches[1] ?? 'B';
|
|
|
|
$result['status'] = 0;
|
|
} catch (\Throwable $t) {
|
|
return $result;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|