61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Services\ImportExport;
|
|
|
|
use App\Contracts\ImportExport;
|
|
use App\Models\Airport;
|
|
|
|
/**
|
|
* Import airports
|
|
*/
|
|
class AirportImporter extends ImportExport
|
|
{
|
|
public $assetType = 'airport';
|
|
|
|
/**
|
|
* All of the columns that are in the CSV import
|
|
* Should match the database fields, for the most part
|
|
*/
|
|
public static $columns = [
|
|
'icao' => 'required',
|
|
'iata' => 'required',
|
|
'name' => 'required',
|
|
'location' => 'nullable',
|
|
'country' => 'nullable',
|
|
'timezone' => 'nullable',
|
|
'hub' => 'nullable|boolean',
|
|
'lat' => 'required|numeric',
|
|
'lon' => 'required|numeric',
|
|
'ground_handling_cost' => 'nullable|numeric',
|
|
'fuel_100ll_cost' => 'nullable|numeric',
|
|
'fuel_jeta_cost' => 'nullable|numeric',
|
|
'fuel_mogas_cost' => 'nullable|numeric',
|
|
];
|
|
|
|
/**
|
|
* Import a flight, parse out the different rows
|
|
*
|
|
* @param array $row
|
|
* @param int $index
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function import(array $row, $index): bool
|
|
{
|
|
$row['id'] = $row['icao'];
|
|
$row['hub'] = get_truth_state($row['hub']);
|
|
|
|
try {
|
|
$airport = Airport::updateOrCreate([
|
|
'id' => $row['icao'],
|
|
], $row);
|
|
} catch (\Exception $e) {
|
|
$this->errorLog('Error in row '.$index.': '.$e->getMessage());
|
|
return false;
|
|
}
|
|
|
|
$this->log('Imported '.$row['icao']);
|
|
return true;
|
|
}
|
|
}
|