phpvms/app/Models/Flight.php

163 lines
3.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
use App\Models\Traits\HashIdTrait;
2018-02-11 11:16:32 +08:00
use App\Support\Units\Distance;
use PhpUnitsOfMeasure\Exception\NonNumericValue;
use PhpUnitsOfMeasure\Exception\NonStringUnitName;
/**
* @property Airline airline
* @property mixed flight_number
* @property mixed route_code
* @property mixed route_leg
*/
class Flight extends BaseModel
{
use HashIdTrait;
2017-06-25 02:20:24 +08:00
public const ID_MAX_LENGTH = 12;
public $table = 'flights';
2017-06-25 02:20:24 +08:00
public $incrementing = false;
/** The form wants this */
public $hours, $minutes;
public $fillable = [
'id',
'airline_id',
'flight_number',
'route_code',
'route_leg',
'dpt_airport_id',
'arr_airport_id',
'alt_airport_id',
'dpt_time',
'arr_time',
'level',
'distance',
'flight_time',
'flight_type',
'route',
'notes',
'has_bid',
'active',
];
protected $casts = [
'flight_number' => 'integer',
'level' => 'integer',
'distance' => 'float',
'flight_time' => 'integer',
'flight_type' => 'integer',
'has_bid' => 'boolean',
'active' => 'boolean',
];
public static $rules = [
'airline_id' => 'required|exists:airlines,id',
'flight_number' => 'required',
'route_code' => 'nullable',
'route_leg' => 'nullable',
'dpt_airport_id' => 'required',
'arr_airport_id' => 'required',
'level' => 'nullable',
];
/**
* Get the flight ident, e.,g JBU1900
*/
public function getIdentAttribute(): string
{
$flight_id = $this->airline->code;
$flight_id .= $this->flight_number;
2018-02-11 11:16:32 +08:00
if (filled($this->route_code)) {
$flight_id .= '/C' . $this->route_code;
}
if (filled($this->route_leg)) {
$flight_id .= '/L' . $this->route_leg;
}
return $flight_id;
}
2018-02-11 11:16:32 +08:00
/**
* Return a new Length unit so conversions can be made
* @return int|Distance
*/
public function getDistanceAttribute()
{
if (!array_key_exists('distance', $this->attributes)) {
return null;
}
2018-02-11 11:16:32 +08:00
try {
$distance = (float) $this->attributes['distance'];
return new Distance($distance, config('phpvms.internal_units.distance'));
2018-02-11 11:16:32 +08:00
} catch (NonNumericValue $e) {
return 0;
} catch (NonStringUnitName $e) {
return 0;
}
}
/**
* Set the distance unit, convert to our internal default unit
* @param $value
*/
public function setDistanceAttribute($value): void
2018-02-11 11:16:32 +08:00
{
if($value instanceof Distance) {
$this->attributes['distance'] = $value->toUnit(
config('phpvms.internal_units.distance')
);
2018-02-11 11:16:32 +08:00
} else {
$this->attributes['distance'] = $value;
}
}
/**
* Relationship
*/
2017-06-20 00:50:25 +08:00
public function airline()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airline::class, 'airline_id');
2017-06-20 00:50:25 +08:00
}
public function dpt_airport()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airport::class, 'dpt_airport_id');
}
public function arr_airport()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airport::class, 'arr_airport_id');
}
public function alt_airport()
{
2018-01-08 23:22:12 +08:00
return $this->belongsTo(Airport::class, 'alt_airport_id');
}
public function fares()
{
2018-01-08 23:22:12 +08:00
return $this->belongsToMany(Fare::class, 'flight_fare')
->withPivot('price', 'cost', 'capacity');
}
public function fields()
{
2018-01-08 23:22:12 +08:00
return $this->hasMany(FlightFields::class, 'flight_id');
}
public function subfleets()
{
2018-01-08 23:22:12 +08:00
return $this->belongsToMany(Subfleet::class, 'subfleet_flight');
}
}