Miguel Nogueira
4eb115d165
This reverts pull request #6. > This pull request applies code style fixes from an analysis carried out by [StyleCI](https://bitbucket.styleci.io). > > For more information, click [here](https://bitbucket.styleci.io/analyses/a2Jl7D).
38 lines
795 B
PHP
38 lines
795 B
PHP
<?php
|
|
|
|
namespace App\CustomFacades;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
class IP
|
|
{
|
|
|
|
/**
|
|
* Looks up information on a specified IP address. Caches results automatically.
|
|
* @param string $IP IP address to lookup
|
|
* @return object
|
|
*/
|
|
public function lookup(string $IP): object
|
|
{
|
|
|
|
$params = [
|
|
'apiKey' => config('general.keys.ipapi.apikey'),
|
|
'ip' => $IP
|
|
];
|
|
|
|
// TODO: Maybe unwrap this? Methods are chained here
|
|
|
|
return json_decode(Cache::remember($IP, 3600, function() use ($IP)
|
|
{
|
|
return Http::get(config('general.urls.ipapi.ipcheck'), [
|
|
'apiKey' => config('general.keys.ipapi.apikey'),
|
|
'ip' => $IP
|
|
])->body();
|
|
}));
|
|
|
|
|
|
}
|
|
|
|
}
|