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;
|
|
|
|
|
|
|
|
use GuzzleHttp\Exception\RequestException;
|
|
|
|
use LibreNMS\Exceptions\ApiException;
|
|
|
|
|
|
|
|
class RipeApi extends BaseApi
|
|
|
|
{
|
|
|
|
protected $base_uri = 'https://stat.ripe.net';
|
|
|
|
|
|
|
|
protected $whois_uri = '/data/whois/data.json';
|
|
|
|
protected $abuse_uri = '/data/abuse-contact-finder/data.json';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whois info
|
|
|
|
*
|
2021-09-08 23:35:56 +02:00
|
|
|
* @param string $resource ASN/IPv4/IPv6
|
2019-01-25 15:30:58 -06:00
|
|
|
* @return array
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2019-01-25 15:30:58 -06:00
|
|
|
* @throws ApiException
|
|
|
|
*/
|
|
|
|
public function getWhois($resource)
|
|
|
|
{
|
|
|
|
return $this->makeApiCall($this->whois_uri, [
|
|
|
|
'query' => [
|
2020-09-21 14:54:51 +02:00
|
|
|
'resource' => $resource,
|
|
|
|
],
|
2019-01-25 15:30:58 -06:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Abuse contact
|
|
|
|
*
|
2021-09-08 23:35:56 +02:00
|
|
|
* @param string $resource prefix, single IP address or ASN
|
2019-01-25 15:30:58 -06:00
|
|
|
* @return array|mixed
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2019-01-25 15:30:58 -06:00
|
|
|
* @throws ApiException
|
|
|
|
*/
|
|
|
|
public function getAbuseContact($resource)
|
|
|
|
{
|
|
|
|
return $this->makeApiCall($this->abuse_uri, [
|
|
|
|
'query' => [
|
2020-09-21 14:54:51 +02:00
|
|
|
'resource' => $resource,
|
|
|
|
],
|
2019-01-25 15:30:58 -06:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array|mixed
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2019-01-25 15:30:58 -06:00
|
|
|
* @throws ApiException
|
|
|
|
*/
|
2021-03-24 15:13:43 +01:00
|
|
|
private function makeApiCall(string $uri, array $options)
|
2019-01-25 15:30:58 -06:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
$response = $this->getClient()->get($uri, $options);
|
|
|
|
$response_data = json_decode($response->getBody(), true);
|
|
|
|
if (isset($response_data['status']) && $response_data['status'] == 'ok') {
|
|
|
|
return $response_data;
|
|
|
|
} else {
|
2020-09-21 15:59:34 +02:00
|
|
|
throw new ApiException('RIPE API call failed', $response_data);
|
2019-01-25 15:30:58 -06:00
|
|
|
}
|
|
|
|
} catch (RequestException $e) {
|
|
|
|
$message = 'RIPE API call to ' . $e->getRequest()->getUri() . ' failed: ';
|
|
|
|
$message .= $e->getResponse()->getReasonPhrase() . ' ' . $e->getResponse()->getStatusCode();
|
|
|
|
|
|
|
|
throw new ApiException(
|
|
|
|
$message,
|
|
|
|
json_decode($e->getResponse()->getBody(), true)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|