laravel-geoip icon indicating copy to clipboard operation
laravel-geoip copied to clipboard

Wrong country name for ipdata.co

Open ehsanrasta opened this issue 5 years ago • 1 comments

Hi in Torann\GeoIP\Services

should change continent_name to country

public function locate($ip)
{
    // Get data from client
    $data = $this->client->get($ip);

    // Verify server response
    if ($this->client->getErrors() !== null || empty($data[0])) {
        throw new Exception('Request failed (' . $this->client->getErrors() . ')');
    }

    $json = json_decode($data[0], true);

    return $this->hydrate([
        'ip' => $ip,
        'iso_code' => $json['country_code'],
        'country' => $json['continent_name'],
        'city' => $json['city'],
        'state' => $json['region_code'],
        'state_name' => $json['region'],
        'postal_code' => $json['postal'],
        'lat' => $json['latitude'],
        'lon' => $json['longitude'],
        'timezone' => Arr::get($json, 'time_zone.name'),
        'continent' => Arr::get($json, 'continent_code'),
        'currency' => Arr::get($json, 'currency.code'),
    ]);
}

ehsanrasta avatar Jul 27 '19 10:07 ehsanrasta

I'm waiting for the pull request #141 that resolves this to be accepted by @Torann.

manoelcalixto avatar Jul 30 '19 19:07 manoelcalixto