37fc761567
* Update vaCentral library for new API server format * Formatting * Remove missing/unused import
38 lines
780 B
PHP
38 lines
780 B
PHP
<?php
|
|
|
|
namespace App\Services\AirportLookup;
|
|
|
|
use App\Contracts\AirportLookup;
|
|
use Illuminate\Support\Facades\Log;
|
|
use VaCentral\Contracts\IVaCentral;
|
|
use VaCentral\Exceptions\HttpException;
|
|
|
|
class VaCentralLookup extends AirportLookup
|
|
{
|
|
private $client;
|
|
|
|
public function __construct(IVaCentral $client)
|
|
{
|
|
$this->client = $client;
|
|
}
|
|
|
|
/**
|
|
* Lookup the information for an airport
|
|
*
|
|
* @param string $icao
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAirport($icao)
|
|
{
|
|
try {
|
|
$airport = $this->client->getAirport($icao);
|
|
$airport->location = $airport->city;
|
|
return $airport;
|
|
} catch (HttpException $e) {
|
|
Log::error($e);
|
|
return [];
|
|
}
|
|
}
|
|
}
|