2018-03-22 06:07:30 +08:00
|
|
|
<?php
|
|
|
|
|
2018-03-23 01:43:58 +08:00
|
|
|
namespace App\Services\ImportExport;
|
2018-03-22 06:07:30 +08:00
|
|
|
|
2019-07-16 03:44:31 +08:00
|
|
|
use App\Contracts\ImportExport;
|
2018-03-23 10:21:35 +08:00
|
|
|
use App\Models\Enums\Days;
|
2018-03-22 06:07:30 +08:00
|
|
|
use App\Models\Flight;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The flight importer can be imported or export. Operates on rows
|
|
|
|
*/
|
|
|
|
class FlightExporter extends ImportExport
|
|
|
|
{
|
2018-03-23 01:43:58 +08:00
|
|
|
public $assetType = 'flight';
|
|
|
|
|
2018-03-22 06:07:30 +08:00
|
|
|
/**
|
|
|
|
* Set the current columns and other setup
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2018-03-31 06:27:29 +08:00
|
|
|
self::$columns = array_keys(FlightImporter::$columns);
|
2018-03-22 06:07:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import a flight, parse out the different rows
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @param Flight $flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @return array
|
|
|
|
*/
|
2018-04-23 21:46:28 +08:00
|
|
|
public function export($flight): array
|
2018-03-22 06:07:30 +08:00
|
|
|
{
|
|
|
|
$ret = [];
|
2018-08-27 00:40:04 +08:00
|
|
|
foreach (self::$columns as $column) {
|
2018-03-22 06:07:30 +08:00
|
|
|
$ret[$column] = $flight->{$column};
|
|
|
|
}
|
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
// Modify special fields
|
2018-03-22 06:07:30 +08:00
|
|
|
$ret['airline'] = $ret['airline']->icao;
|
2018-03-24 01:27:28 +08:00
|
|
|
$ret['dpt_airport'] = $flight->dpt_airport_id;
|
|
|
|
$ret['arr_airport'] = $flight->arr_airport_id;
|
2019-07-23 21:42:31 +08:00
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
if ($flight->alt_airport) {
|
2018-03-24 01:27:28 +08:00
|
|
|
$ret['alt_airport'] = $flight->alt_airport_id;
|
|
|
|
}
|
|
|
|
|
2018-03-23 10:21:35 +08:00
|
|
|
$ret['days'] = $this->getDays($flight);
|
2018-03-22 06:07:30 +08:00
|
|
|
$ret['fares'] = $this->getFares($flight);
|
|
|
|
$ret['fields'] = $this->getFields($flight);
|
|
|
|
$ret['subfleets'] = $this->getSubfleets($flight);
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2018-03-23 10:21:35 +08:00
|
|
|
/**
|
|
|
|
* Return the days string
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-23 10:21:35 +08:00
|
|
|
* @param Flight $flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-23 10:21:35 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getDays(Flight &$flight)
|
|
|
|
{
|
|
|
|
$days_str = '';
|
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
if ($flight->on_day(Days::MONDAY)) {
|
2018-03-23 10:21:35 +08:00
|
|
|
$days_str .= '1';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::TUESDAY)) {
|
|
|
|
$days_str .= '2';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::WEDNESDAY)) {
|
|
|
|
$days_str .= '3';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::THURSDAY)) {
|
|
|
|
$days_str .= '4';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::FRIDAY)) {
|
|
|
|
$days_str .= '5';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::SATURDAY)) {
|
|
|
|
$days_str .= '6';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($flight->on_day(Days::SUNDAY)) {
|
|
|
|
$days_str .= '7';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $days_str;
|
|
|
|
}
|
|
|
|
|
2018-03-22 06:07:30 +08:00
|
|
|
/**
|
|
|
|
* Return any custom fares that have been made to this flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @param Flight $flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getFares(Flight &$flight): string
|
|
|
|
{
|
|
|
|
$fares = [];
|
2018-08-27 00:40:04 +08:00
|
|
|
foreach ($flight->fares as $fare) {
|
2018-03-22 06:07:30 +08:00
|
|
|
$fare_export = [];
|
2018-08-27 00:40:04 +08:00
|
|
|
if ($fare->pivot->price) {
|
2018-03-22 06:07:30 +08:00
|
|
|
$fare_export['price'] = $fare->pivot->price;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($fare->pivot->cost) {
|
|
|
|
$fare_export['cost'] = $fare->pivot->cost;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($fare->pivot->capacity) {
|
|
|
|
$fare_export['capacity'] = $fare->pivot->capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fares[$fare->code] = $fare_export;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->objectToMultiString($fares);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse all of the subfields
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @param Flight $flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getFields(Flight &$flight): string
|
|
|
|
{
|
|
|
|
$ret = [];
|
|
|
|
foreach ($flight->field_values as $field) {
|
|
|
|
$ret[$field->name] = $field->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->objectToMultiString($ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the list of subfleets that are associated here
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @param Flight $flight
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-22 06:07:30 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getSubfleets(Flight &$flight): string
|
|
|
|
{
|
|
|
|
$subfleets = [];
|
2018-08-27 00:40:04 +08:00
|
|
|
foreach ($flight->subfleets as $subfleet) {
|
2018-03-22 06:07:30 +08:00
|
|
|
$subfleets[] = $subfleet->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->objectToMultiString($subfleets);
|
|
|
|
}
|
|
|
|
}
|