2019-01-25 15:30:58 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RipeWhoisApi.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-01-25 15:30:58 -06:00
|
|
|
*
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2019-01-25 15:30:58 -06:00
|
|
|
* @copyright 2019 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\ApiClients;
|
|
|
|
|
2022-11-18 16:27:56 -06:00
|
|
|
use LibreNMS\Exceptions\ApiClientException;
|
2019-01-25 15:30:58 -06:00
|
|
|
|
|
|
|
class RipeApi extends BaseApi
|
|
|
|
{
|
2022-11-02 01:06:15 +01:00
|
|
|
protected string $base_uri = 'https://stat.ripe.net';
|
2019-01-25 15:30:58 -06:00
|
|
|
|
2022-11-02 01:06:15 +01:00
|
|
|
protected string $whois_uri = '/data/whois/data.json';
|
|
|
|
protected string $abuse_uri = '/data/abuse-contact-finder/data.json';
|
2019-01-25 15:30:58 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whois info
|
|
|
|
*
|
2022-11-18 16:27:56 -06:00
|
|
|
* @throws ApiClientException
|
2019-01-25 15:30:58 -06:00
|
|
|
*/
|
2022-11-02 01:06:15 +01:00
|
|
|
public function getWhois(string $resource): array
|
2019-01-25 15:30:58 -06:00
|
|
|
{
|
|
|
|
return $this->makeApiCall($this->whois_uri, [
|
|
|
|
'query' => [
|
|
|
|
'resource' => $resource,
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Abuse contact
|
|
|
|
*
|
2022-11-18 16:27:56 -06:00
|
|
|
* @throws ApiClientException
|
2019-01-25 15:30:58 -06:00
|
|
|
*/
|
2022-11-02 01:06:15 +01:00
|
|
|
public function getAbuseContact(string $resource): mixed
|
2019-01-25 15:30:58 -06:00
|
|
|
{
|
|
|
|
return $this->makeApiCall($this->abuse_uri, [
|
|
|
|
'query' => [
|
|
|
|
'resource' => $resource,
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-11-18 16:27:56 -06:00
|
|
|
* @throws ApiClientException
|
2019-01-25 15:30:58 -06:00
|
|
|
*/
|
2022-11-02 01:06:15 +01:00
|
|
|
private function makeApiCall(string $uri, array $options): mixed
|
2019-01-25 15:30:58 -06:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
$response_data = $this->getClient()->get($uri, $options['query'])->json();
|
2019-01-25 15:30:58 -06:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
if (isset($response_data['status']) && $response_data['status'] == 'ok') {
|
|
|
|
return $response_data;
|
2019-01-25 15:30:58 -06:00
|
|
|
}
|
2023-05-23 09:25:17 -05:00
|
|
|
|
|
|
|
throw new ApiClientException("RIPE API call to $this->base_uri/$uri failed: " . $this->getClient()->get($uri, $options['query'])->status(), $response_data);
|
2019-01-25 15:30:58 -06:00
|
|
|
}
|
|
|
|
}
|