Skip to content

Commit fd996f0

Browse files
committed
added ip2locationio service to geo middleware
1 parent 9529b10 commit fd996f0

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

src/Config/firewall.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
'block' => [], // i.e. 'London'
173173
],
174174

175-
// ipapi, extremeiplookup, ipstack, ipdata, ipinfo, ipregistry
175+
// ipapi, extremeiplookup, ipstack, ipdata, ipinfo, ipregistry, ip2locationio
176176
'service' => 'ipapi',
177177

178178
'auto_block' => [

src/Middleware/Geo.php

+24
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,30 @@ public function ipregistry($location)
182182
return $location;
183183
}
184184

185+
public function ip2locationio($location)
186+
{
187+
$url = 'https://api.ip2location.io/?ip=' . $this->ip() . '&key=' . env('IP2LOCATIONIO_KEY');
188+
189+
$response = $this->getResponse($url);
190+
191+
if (! is_object($response) || empty($response->location)) {
192+
return false;
193+
}
194+
195+
$location->country = $response->country_name;
196+
$location->country_code = $response->country_code;
197+
$location->region = $response->region_name;
198+
$location->city = $response->city_name;
199+
$location->latitude = $response->latitude;
200+
$location->longitude = $response->longitude;
201+
$location->zipcode = $response->zip_code;
202+
$location->timezone = $response->time_zone;
203+
$location->asn = $response->asn;
204+
$location->as = $response->as;
205+
206+
return $location;
207+
}
208+
185209
protected function getResponse($url)
186210
{
187211
try {

0 commit comments

Comments
 (0)