/home/storage/f/3f/a5/aloic1/public_html/core/vendor/torann/geoip/src/Services/IPGeoLocation.php
<?php
namespace Torann\GeoIP\Services;
use Exception;
use Illuminate\Support\Arr;
use Torann\GeoIP\Support\HttpClient;
class IPGeoLocation extends AbstractService
{
/**
* Http client instance.
*
* @var HttpClient
*/
protected $client;
/**
* The "booting" method of the service.
*
* @return void
*/
public function boot()
{
$base = [
'base_uri' => 'https://api.ipgeolocation.io/',
];
if ($this->config('key')) {
$base['base_uri'] = "{$base['base_uri']}ipgeo?apiKey=" . $this->config('key');
}
$this->client = new HttpClient($base);
}
/**
* {@inheritdoc}
*/
public function locate($ip)
{
// Get data from client
$data = $this->client->get('&ip=' . $ip);
// Verify server response
if ($this->client->getErrors() !== null) {
throw new Exception('Request failed (' . $this->client->getErrors() . ')');
}
// Parse body content
$json = json_decode($data[0], true);
return $this->hydrate($json);
}
}
@LwBee Strong Bypass
Upload File
Create New File