hyperf-chat/app/Support/IpAddress.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2021-09-12 16:26:28 +08:00
<?php
declare(strict_types=1);
namespace App\Support;
use Hyperf\Guzzle\ClientFactory;
class IpAddress
{
public function read(string $ip)
{
return $this->request($ip);
}
private function request(string $ip)
{
$api = config('juhe_api.ip');
$client = di()->get(ClientFactory::class)->create([]);
$params = [
'ip' => $ip,
'key' => $api['key'],
];
$response = $client->get($api['api'] . '?' . http_build_query($params));
if ($response->getStatusCode() == 200) {
$result = json_decode($response->getBody()->getContents(), true);
if ($result['resultcode'] != '200') {
return [];
}
$result = $result['result'];
return [
'country' => $result['Country'] ?? '',
'province' => $result['Province'] ?? '',
'city' => $result['City'] ?? '',
'isp' => $result['Isp'] ?? '',
'ip' => $ip,
];
}
return [];
}
}