43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Airport;
|
|
use Illuminate\Console\Attributes\Description;
|
|
use Illuminate\Console\Attributes\Signature;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
#[Signature('app:populate-airport-timezones')]
|
|
#[Description('Populate timezone data for all airports using lat/lng')]
|
|
class PopulateAirportTimezones extends Command
|
|
{
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
Airport::whereNull('timezone')->chunk(100, function ($airports) {
|
|
foreach ($airports as $airport) {
|
|
$response = Http::withoutVerifying()
|
|
->withOptions(['allow_redirects' => false])
|
|
->get('http://api.timezonedb.com/v2.1/get-time-zone', [
|
|
'key' => config('app.timezone_api_key'),
|
|
'format' => 'json',
|
|
'by' => 'position',
|
|
'lat' => $airport->latitude_deg,
|
|
'lng' => $airport->longitude_deg,
|
|
]);
|
|
|
|
if ($response->ok()) {
|
|
$airport->update(['timezone' => $response->json('zoneName')]);
|
|
} else {
|
|
dd($response->json());
|
|
}
|
|
|
|
sleep(1);
|
|
}
|
|
});
|
|
}
|
|
}
|