2017-06-29 08:54:05 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2019-07-16 03:44:31 +08:00
|
|
|
use App\Contracts\Model;
|
2018-01-02 00:38:45 +08:00
|
|
|
use App\Models\Enums\AcarsType;
|
2018-07-13 10:20:10 +08:00
|
|
|
use App\Models\Enums\PirepFieldSource;
|
2018-01-29 01:12:13 +08:00
|
|
|
use App\Models\Enums\PirepState;
|
2018-03-08 22:51:36 +08:00
|
|
|
use App\Models\Traits\HashIdTrait;
|
2018-02-11 11:16:32 +08:00
|
|
|
use App\Support\Units\Distance;
|
2018-02-21 04:07:33 +08:00
|
|
|
use App\Support\Units\Fuel;
|
2018-04-05 02:03:10 +08:00
|
|
|
use Carbon\Carbon;
|
2018-03-21 00:46:48 +08:00
|
|
|
use Illuminate\Support\Collection;
|
2017-06-29 08:54:05 +08:00
|
|
|
|
|
|
|
/**
|
2018-03-30 03:55:25 +08:00
|
|
|
* @property string id
|
2020-03-30 01:33:14 +08:00
|
|
|
* @property string ident
|
2018-03-20 09:50:40 +08:00
|
|
|
* @property string flight_number
|
|
|
|
* @property string route_code
|
|
|
|
* @property string route_leg
|
2020-02-12 23:40:52 +08:00
|
|
|
* @property string flight_type
|
2018-08-27 02:50:08 +08:00
|
|
|
* @property int airline_id
|
|
|
|
* @property int user_id
|
|
|
|
* @property int aircraft_id
|
2018-03-20 09:50:40 +08:00
|
|
|
* @property Aircraft aircraft
|
|
|
|
* @property Airline airline
|
|
|
|
* @property Airport arr_airport
|
2018-03-31 00:08:53 +08:00
|
|
|
* @property string arr_airport_id
|
|
|
|
* @property Airport dpt_airport
|
|
|
|
* @property string dpt_airport_id
|
2018-04-05 02:03:10 +08:00
|
|
|
* @property Carbon block_off_time
|
|
|
|
* @property Carbon block_on_time
|
2018-08-27 02:50:08 +08:00
|
|
|
* @property int block_time
|
|
|
|
* @property int flight_time In minutes
|
|
|
|
* @property int planned_flight_time
|
2019-07-23 20:41:20 +08:00
|
|
|
* @property float block_fuel
|
|
|
|
* @property float fuel_used
|
2018-08-27 02:50:08 +08:00
|
|
|
* @property float distance
|
|
|
|
* @property float planned_distance
|
2019-11-19 23:06:07 +08:00
|
|
|
* @property int level
|
2018-05-12 01:08:55 +08:00
|
|
|
* @property string route
|
2018-08-27 02:50:08 +08:00
|
|
|
* @property int score
|
2018-03-20 09:50:40 +08:00
|
|
|
* @property User user
|
2018-03-16 07:20:07 +08:00
|
|
|
* @property Flight|null flight
|
2018-03-21 00:46:48 +08:00
|
|
|
* @property Collection fields
|
2020-08-13 10:02:20 +08:00
|
|
|
* @property string status
|
2021-05-03 22:00:10 +08:00
|
|
|
* @property PirepState state
|
|
|
|
* @property int source
|
|
|
|
* @property string source_name
|
2018-04-05 02:03:10 +08:00
|
|
|
* @property Carbon submitted_at
|
|
|
|
* @property Carbon created_at
|
|
|
|
* @property Carbon updated_at
|
2018-05-31 03:00:20 +08:00
|
|
|
* @property bool read_only
|
2018-05-03 04:14:18 +08:00
|
|
|
* @property Acars position
|
2018-05-05 02:59:47 +08:00
|
|
|
* @property Acars[] acars
|
2018-08-27 02:50:08 +08:00
|
|
|
* @property mixed cancelled
|
2017-06-29 08:54:05 +08:00
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class Pirep extends Model
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
2018-03-08 22:51:36 +08:00
|
|
|
use HashIdTrait;
|
2017-06-29 08:54:05 +08:00
|
|
|
|
|
|
|
public $table = 'pireps';
|
2019-09-13 20:05:02 +08:00
|
|
|
|
|
|
|
protected $keyType = 'string';
|
2017-07-05 02:57:08 +08:00
|
|
|
public $incrementing = false;
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2018-02-28 03:37:29 +08:00
|
|
|
/** The form wants this */
|
2018-08-27 00:40:04 +08:00
|
|
|
public $hours;
|
|
|
|
public $minutes;
|
2018-02-28 03:37:29 +08:00
|
|
|
|
2018-03-21 08:40:19 +08:00
|
|
|
protected $fillable = [
|
2018-01-30 08:14:55 +08:00
|
|
|
'id',
|
2017-12-10 11:21:49 +08:00
|
|
|
'user_id',
|
2018-01-31 01:15:07 +08:00
|
|
|
'airline_id',
|
|
|
|
'aircraft_id',
|
2017-12-10 11:21:49 +08:00
|
|
|
'flight_number',
|
|
|
|
'route_code',
|
|
|
|
'route_leg',
|
2020-11-03 00:57:25 +08:00
|
|
|
'flight_id',
|
2018-01-31 01:15:07 +08:00
|
|
|
'dpt_airport_id',
|
|
|
|
'arr_airport_id',
|
2018-09-09 00:38:30 +08:00
|
|
|
'alt_airport_id',
|
2018-01-31 01:15:07 +08:00
|
|
|
'level',
|
2018-01-30 06:27:55 +08:00
|
|
|
'distance',
|
|
|
|
'planned_distance',
|
2018-03-30 02:42:16 +08:00
|
|
|
'block_time',
|
2017-12-10 11:21:49 +08:00
|
|
|
'flight_time',
|
2017-12-26 05:19:34 +08:00
|
|
|
'planned_flight_time',
|
2018-01-31 01:07:48 +08:00
|
|
|
'zfw',
|
2018-01-31 01:05:14 +08:00
|
|
|
'block_fuel',
|
2018-01-31 01:27:39 +08:00
|
|
|
'fuel_used',
|
2018-01-30 08:14:55 +08:00
|
|
|
'landing_rate',
|
2017-12-10 11:21:49 +08:00
|
|
|
'route',
|
|
|
|
'notes',
|
2018-04-26 00:56:05 +08:00
|
|
|
'score',
|
2018-01-31 01:15:07 +08:00
|
|
|
'source',
|
|
|
|
'source_name',
|
2018-01-30 08:14:55 +08:00
|
|
|
'flight_type',
|
2017-12-20 10:19:36 +08:00
|
|
|
'state',
|
2017-12-10 11:21:49 +08:00
|
|
|
'status',
|
2018-03-30 03:10:49 +08:00
|
|
|
'block_off_time',
|
|
|
|
'block_on_time',
|
2018-04-05 02:03:10 +08:00
|
|
|
'submitted_at',
|
2018-01-30 08:14:55 +08:00
|
|
|
'created_at',
|
|
|
|
'updated_at',
|
2017-12-10 11:21:49 +08:00
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2017-12-10 11:21:49 +08:00
|
|
|
protected $casts = [
|
2018-03-20 09:50:40 +08:00
|
|
|
'user_id' => 'integer',
|
|
|
|
'airline_id' => 'integer',
|
|
|
|
'aircraft_id' => 'integer',
|
|
|
|
'level' => 'integer',
|
|
|
|
'distance' => 'float',
|
|
|
|
'planned_distance' => 'float',
|
2018-03-30 02:42:16 +08:00
|
|
|
'block_time' => 'integer',
|
2018-03-20 09:50:40 +08:00
|
|
|
'flight_time' => 'integer',
|
|
|
|
'planned_flight_time' => 'integer',
|
|
|
|
'zfw' => 'float',
|
|
|
|
'block_fuel' => 'float',
|
|
|
|
'fuel_used' => 'float',
|
|
|
|
'landing_rate' => 'float',
|
2018-04-26 00:56:05 +08:00
|
|
|
'score' => 'integer',
|
2018-03-20 09:50:40 +08:00
|
|
|
'source' => 'integer',
|
|
|
|
'state' => 'integer',
|
2017-12-10 11:21:49 +08:00
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2017-12-20 10:19:36 +08:00
|
|
|
public static $rules = [
|
2018-03-20 09:50:40 +08:00
|
|
|
'airline_id' => 'required|exists:airlines,id',
|
|
|
|
'aircraft_id' => 'required|exists:aircraft,id',
|
|
|
|
'flight_number' => 'required',
|
|
|
|
'dpt_airport_id' => 'required',
|
|
|
|
'arr_airport_id' => 'required',
|
2020-02-24 05:01:09 +08:00
|
|
|
'block_fuel' => 'nullable|numeric',
|
|
|
|
'fuel_used' => 'nullable|numeric',
|
2019-11-19 23:06:07 +08:00
|
|
|
'level' => 'nullable|numeric',
|
2018-03-20 09:50:40 +08:00
|
|
|
'notes' => 'nullable',
|
|
|
|
'route' => 'nullable',
|
2017-12-20 10:19:36 +08:00
|
|
|
];
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2019-09-17 01:08:26 +08:00
|
|
|
/*
|
2018-05-10 23:35:10 +08:00
|
|
|
* If a PIREP is in these states, then it can't be changed.
|
|
|
|
*/
|
|
|
|
public static $read_only_states = [
|
|
|
|
PirepState::ACCEPTED,
|
|
|
|
PirepState::REJECTED,
|
|
|
|
PirepState::CANCELLED,
|
|
|
|
];
|
2018-05-10 01:45:24 +08:00
|
|
|
|
2019-09-17 01:08:26 +08:00
|
|
|
/*
|
|
|
|
* If a PIREP is in one of these states, it can't be cancelled
|
|
|
|
*/
|
|
|
|
public static $cancel_states = [
|
|
|
|
PirepState::ACCEPTED,
|
|
|
|
PirepState::REJECTED,
|
|
|
|
PirepState::CANCELLED,
|
|
|
|
PirepState::DELETED,
|
|
|
|
];
|
|
|
|
|
2019-11-06 00:44:31 +08:00
|
|
|
/**
|
|
|
|
* Create a new PIREP model from a given flight. Pre-populates the fields
|
|
|
|
*
|
|
|
|
* @param \App\Models\Flight $flight
|
|
|
|
*
|
|
|
|
* @return \App\Models\Pirep
|
|
|
|
*/
|
2020-03-23 21:31:35 +08:00
|
|
|
public static function fromFlight(Flight $flight): self
|
2019-11-06 00:44:31 +08:00
|
|
|
{
|
|
|
|
return new self([
|
|
|
|
'flight_id' => $flight->id,
|
|
|
|
'airline_id' => $flight->airline_id,
|
|
|
|
'flight_number' => $flight->flight_number,
|
|
|
|
'route_code' => $flight->route_code,
|
|
|
|
'route_leg' => $flight->route_leg,
|
|
|
|
'dpt_airport_id' => $flight->dpt_airport_id,
|
|
|
|
'arr_airport_id' => $flight->arr_airport_id,
|
|
|
|
'route' => $flight->route,
|
|
|
|
'level' => $flight->level,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-03-23 21:31:35 +08:00
|
|
|
/**
|
|
|
|
* Create a new PIREP from a SimBrief instance
|
|
|
|
*
|
|
|
|
* @param \App\Models\SimBrief $simBrief
|
|
|
|
*
|
|
|
|
* @return \App\Models\Pirep
|
|
|
|
*/
|
|
|
|
public static function fromSimBrief(SimBrief $simBrief): self
|
|
|
|
{
|
|
|
|
return new self([
|
|
|
|
'flight_id' => $simBrief->flight->id,
|
|
|
|
'airline_id' => $simBrief->flight->airline_id,
|
|
|
|
'flight_number' => $simBrief->flight->flight_number,
|
|
|
|
'route_code' => $simBrief->flight->route_code,
|
|
|
|
'route_leg' => $simBrief->flight->route_leg,
|
|
|
|
'dpt_airport_id' => $simBrief->flight->dpt_airport_id,
|
|
|
|
'arr_airport_id' => $simBrief->flight->arr_airport_id,
|
|
|
|
'route' => $simBrief->xml->getRouteString(),
|
|
|
|
'level' => $simBrief->xml->getFlightLevel(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2017-12-04 05:29:34 +08:00
|
|
|
/**
|
2017-12-20 10:19:36 +08:00
|
|
|
* Get the flight ident, e.,g JBU1900
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2017-12-04 05:29:34 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
2018-03-19 09:37:35 +08:00
|
|
|
public function getIdentAttribute(): string
|
2017-12-04 05:29:34 +08:00
|
|
|
{
|
2018-08-27 00:40:04 +08:00
|
|
|
//$flight_id = $this->airline->code;
|
2018-04-04 11:44:11 +08:00
|
|
|
$flight_id = $this->flight_number;
|
2018-01-24 05:48:30 +08:00
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if (filled($this->route_code)) {
|
2018-01-24 05:48:30 +08:00
|
|
|
$flight_id .= '/C'.$this->route_code;
|
|
|
|
}
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if (filled($this->route_leg)) {
|
2018-01-24 05:48:30 +08:00
|
|
|
$flight_id .= '/L'.$this->route_leg;
|
2017-12-04 05:29:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return $flight_id;
|
|
|
|
}
|
|
|
|
|
2018-05-02 09:58:05 +08:00
|
|
|
/**
|
|
|
|
* Return the block off time in carbon format
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-08-27 02:50:08 +08:00
|
|
|
* @return Carbon|null
|
2018-05-02 09:58:05 +08:00
|
|
|
*/
|
|
|
|
public function getBlockOffTimeAttribute()
|
|
|
|
{
|
2018-05-02 11:52:31 +08:00
|
|
|
if (array_key_exists('block_off_time', $this->attributes)) {
|
|
|
|
return new Carbon($this->attributes['block_off_time']);
|
|
|
|
}
|
2018-05-02 09:58:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the block on time
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-08-27 02:50:08 +08:00
|
|
|
* @return Carbon|null
|
2018-05-02 09:58:05 +08:00
|
|
|
*/
|
|
|
|
public function getBlockOnTimeAttribute()
|
|
|
|
{
|
2018-05-02 11:52:31 +08:00
|
|
|
if (array_key_exists('block_on_time', $this->attributes)) {
|
|
|
|
return new Carbon($this->attributes['block_on_time']);
|
|
|
|
}
|
2018-05-02 09:58:05 +08:00
|
|
|
}
|
|
|
|
|
2018-05-03 04:14:18 +08:00
|
|
|
/**
|
|
|
|
* Return the block on time
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-05-03 04:14:18 +08:00
|
|
|
* @return Carbon
|
|
|
|
*/
|
|
|
|
public function getSubmittedAtAttribute()
|
|
|
|
{
|
|
|
|
if (array_key_exists('submitted_at', $this->attributes)) {
|
|
|
|
return new Carbon($this->attributes['submitted_at']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-11 12:04:30 +08:00
|
|
|
/**
|
|
|
|
* Set the distance unit, convert to our internal default unit
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-11 12:04:30 +08:00
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setDistanceAttribute($value): void
|
|
|
|
{
|
|
|
|
if ($value instanceof Distance) {
|
2018-02-12 10:19:02 +08:00
|
|
|
$this->attributes['distance'] = $value->toUnit(
|
2018-09-09 00:38:30 +08:00
|
|
|
config('phpvms.internal_units.distance')
|
|
|
|
);
|
2018-02-11 12:04:30 +08:00
|
|
|
} else {
|
|
|
|
$this->attributes['distance'] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-10 11:04:59 +08:00
|
|
|
/**
|
|
|
|
* Return if this PIREP can be edited or not
|
|
|
|
*/
|
|
|
|
public function getReadOnlyAttribute(): bool
|
|
|
|
{
|
2018-05-10 23:35:10 +08:00
|
|
|
return \in_array($this->state, static::$read_only_states, true);
|
2018-04-10 11:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-04-05 06:42:43 +08:00
|
|
|
/**
|
|
|
|
* Return the flight progress in a percent.
|
|
|
|
*/
|
|
|
|
public function getProgressPercentAttribute()
|
|
|
|
{
|
2020-01-15 02:45:22 +08:00
|
|
|
$distance = $this->distance;
|
2018-04-05 06:42:43 +08:00
|
|
|
|
2020-01-15 02:45:22 +08:00
|
|
|
$upper_bound = $distance;
|
|
|
|
if ($this->planned_distance) {
|
|
|
|
$upper_bound = $this->planned_distance;
|
2018-04-05 06:42:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-15 22:09:58 +08:00
|
|
|
$upper_bound = empty($upper_bound) ? 1 : $upper_bound;
|
|
|
|
$distance = empty($distance) ? $upper_bound : $distance;
|
|
|
|
|
2020-01-15 02:45:22 +08:00
|
|
|
return round(($distance / $upper_bound) * 100, 0);
|
2018-04-05 06:42:43 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 10:20:10 +08:00
|
|
|
/**
|
|
|
|
* Get the pirep_fields and then the pirep_field_values and
|
|
|
|
* merge them together. If a field value doesn't exist then add in a fake one
|
|
|
|
*/
|
|
|
|
public function getFieldsAttribute()
|
|
|
|
{
|
|
|
|
$custom_fields = PirepField::all();
|
2021-03-03 01:29:04 +08:00
|
|
|
$field_values = PirepFieldValue::where('pirep_id', $this->id)
|
|
|
|
->orderBy('created_at', 'asc')
|
|
|
|
->get();
|
2018-07-13 10:20:10 +08:00
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
// Merge the field values into $fields
|
|
|
|
foreach ($custom_fields as $field) {
|
2018-07-13 10:20:10 +08:00
|
|
|
$has_value = $field_values->firstWhere('slug', $field->slug);
|
2018-08-27 00:40:04 +08:00
|
|
|
if (!$has_value) {
|
2018-07-13 10:20:10 +08:00
|
|
|
$field_values->push(new PirepFieldValue([
|
|
|
|
'pirep_id' => $this->id,
|
2018-08-27 00:40:04 +08:00
|
|
|
'name' => $field->name,
|
|
|
|
'slug' => $field->slug,
|
|
|
|
'value' => '',
|
|
|
|
'source' => PirepFieldSource::MANUAL,
|
2018-07-13 10:20:10 +08:00
|
|
|
]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 01:29:04 +08:00
|
|
|
return $field_values;
|
2018-07-13 10:20:10 +08:00
|
|
|
}
|
|
|
|
|
2021-03-15 20:30:14 +08:00
|
|
|
/**
|
|
|
|
* Set the amount of block fuel
|
|
|
|
*
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setBlockFuelAttribute($value): void
|
|
|
|
{
|
|
|
|
if ($value instanceof Fuel) {
|
|
|
|
$this->attributes['block_fuel'] = $value->toUnit(
|
|
|
|
config('phpvms.internal_units.fuel')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$this->attributes['block_fuel'] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 04:07:33 +08:00
|
|
|
/**
|
|
|
|
* Set the amount of fuel used
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-21 04:07:33 +08:00
|
|
|
* @param $value
|
|
|
|
*/
|
2018-09-09 00:38:30 +08:00
|
|
|
public function setFuelUsedAttribute($value): void
|
2018-02-21 04:07:33 +08:00
|
|
|
{
|
|
|
|
if ($value instanceof Fuel) {
|
|
|
|
$this->attributes['fuel_used'] = $value->toUnit(
|
|
|
|
config('phpvms.internal_units.fuel')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$this->attributes['fuel_used'] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-11 12:04:30 +08:00
|
|
|
/**
|
|
|
|
* Set the distance unit, convert to our internal default unit
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-11 12:04:30 +08:00
|
|
|
* @param $value
|
|
|
|
*/
|
2018-09-09 00:38:30 +08:00
|
|
|
public function setPlannedDistanceAttribute($value): void
|
2018-02-11 12:04:30 +08:00
|
|
|
{
|
|
|
|
if ($value instanceof Distance) {
|
2018-02-12 10:19:02 +08:00
|
|
|
$this->attributes['planned_distance'] = $value->toUnit(
|
|
|
|
config('phpvms.internal_units.distance')
|
|
|
|
);
|
2018-02-11 12:04:30 +08:00
|
|
|
} else {
|
2018-02-11 12:30:42 +08:00
|
|
|
$this->attributes['planned_distance'] = $value;
|
2018-02-11 12:04:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-07 02:58:48 +08:00
|
|
|
/**
|
|
|
|
* Do some cleanup on the route
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-07 02:58:48 +08:00
|
|
|
* @param $route
|
|
|
|
*/
|
2018-03-03 07:29:11 +08:00
|
|
|
public function setRouteAttribute($route): void
|
2018-02-07 02:58:48 +08:00
|
|
|
{
|
|
|
|
$route = strtoupper(trim($route));
|
|
|
|
$this->attributes['route'] = $route;
|
|
|
|
}
|
|
|
|
|
2018-05-12 01:08:55 +08:00
|
|
|
/**
|
|
|
|
* Return if this is cancelled or not
|
|
|
|
*/
|
2018-08-27 02:50:08 +08:00
|
|
|
public function getCancelledAttribute(): bool
|
2018-05-12 01:08:55 +08:00
|
|
|
{
|
|
|
|
return $this->state === PirepState::CANCELLED;
|
|
|
|
}
|
|
|
|
|
2018-01-29 01:12:13 +08:00
|
|
|
/**
|
|
|
|
* Check if this PIREP is allowed to be updated
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-01-29 01:12:13 +08:00
|
|
|
* @return bool
|
|
|
|
*/
|
2018-03-03 07:29:11 +08:00
|
|
|
public function allowedUpdates(): bool
|
2018-01-29 01:12:13 +08:00
|
|
|
{
|
2018-08-27 00:40:04 +08:00
|
|
|
return !$this->getReadOnlyAttribute();
|
2018-01-29 01:12:13 +08:00
|
|
|
}
|
|
|
|
|
2018-03-21 00:46:48 +08:00
|
|
|
/**
|
|
|
|
* Return a custom field value
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-21 00:46:48 +08:00
|
|
|
* @param $field_name
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-21 00:46:48 +08:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function field($field_name): string
|
|
|
|
{
|
|
|
|
$field = $this->fields->where('name', $field_name)->first();
|
|
|
|
if ($field) {
|
|
|
|
return $field['value'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2017-06-29 08:54:05 +08:00
|
|
|
/**
|
|
|
|
* Foreign Keys
|
|
|
|
*/
|
2017-12-27 05:26:12 +08:00
|
|
|
public function acars()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->hasMany(Acars::class, 'pirep_id')
|
2018-03-20 09:50:40 +08:00
|
|
|
->where('type', AcarsType::FLIGHT_PATH)
|
2018-05-29 07:15:51 +08:00
|
|
|
->orderBy('created_at', 'asc')
|
|
|
|
->orderBy('sim_time', 'asc');
|
2017-12-27 05:26:12 +08:00
|
|
|
}
|
|
|
|
|
2018-01-04 12:19:06 +08:00
|
|
|
public function acars_logs()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->hasMany(Acars::class, 'pirep_id')
|
2018-03-20 09:50:40 +08:00
|
|
|
->where('type', AcarsType::LOG)
|
2018-05-29 07:15:51 +08:00
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->orderBy('sim_time', 'asc');
|
2018-01-04 12:19:06 +08:00
|
|
|
}
|
|
|
|
|
2018-01-02 06:01:01 +08:00
|
|
|
public function acars_route()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->hasMany(Acars::class, 'pirep_id')
|
2018-03-20 09:50:40 +08:00
|
|
|
->where('type', AcarsType::ROUTE)
|
|
|
|
->orderBy('order', 'asc');
|
2018-01-02 06:01:01 +08:00
|
|
|
}
|
|
|
|
|
2017-07-03 10:25:48 +08:00
|
|
|
public function aircraft()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->belongsTo(Aircraft::class, 'aircraft_id');
|
2017-07-03 10:25:48 +08:00
|
|
|
}
|
2017-06-29 08:54:05 +08:00
|
|
|
|
2017-07-23 22:45:33 +08:00
|
|
|
public function airline()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->belongsTo(Airline::class, 'airline_id');
|
2017-07-23 22:45:33 +08:00
|
|
|
}
|
|
|
|
|
2019-11-06 00:44:31 +08:00
|
|
|
public function flight()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Flight::class, 'flight_id');
|
|
|
|
}
|
|
|
|
|
2017-06-30 04:50:16 +08:00
|
|
|
public function arr_airport()
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
2020-01-16 02:00:58 +08:00
|
|
|
return $this->belongsTo(Airport::class, 'arr_airport_id')
|
|
|
|
->withDefault(function ($model) {
|
|
|
|
if (!empty($this->attributes['arr_airport_id'])) {
|
|
|
|
$model->id = $this->attributes['arr_airport_id'];
|
|
|
|
$model->icao = $this->attributes['arr_airport_id'];
|
|
|
|
$model->name = $this->attributes['arr_airport_id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
});
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|
|
|
|
|
2018-09-09 00:38:30 +08:00
|
|
|
public function alt_airport()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Airport::class, 'alt_airport_id');
|
|
|
|
}
|
|
|
|
|
2017-06-30 04:50:16 +08:00
|
|
|
public function dpt_airport()
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
2020-01-16 02:00:58 +08:00
|
|
|
return $this->belongsTo(Airport::class, 'dpt_airport_id')
|
|
|
|
->withDefault(function ($model) {
|
|
|
|
if (!empty($this->attributes['dpt_airport_id'])) {
|
|
|
|
$model->id = $this->attributes['dpt_airport_id'];
|
|
|
|
$model->icao = $this->attributes['dpt_airport_id'];
|
|
|
|
$model->name = $this->attributes['dpt_airport_id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
});
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|
|
|
|
|
2017-08-02 23:17:54 +08:00
|
|
|
public function comments()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->hasMany(PirepComment::class, 'pirep_id')
|
2018-03-20 09:50:40 +08:00
|
|
|
->orderBy('created_at', 'desc');
|
2017-07-24 02:07:41 +08:00
|
|
|
}
|
|
|
|
|
2018-02-25 05:38:25 +08:00
|
|
|
public function fares()
|
|
|
|
{
|
|
|
|
return $this->hasMany(PirepFare::class, 'pirep_id');
|
|
|
|
}
|
|
|
|
|
2018-07-13 10:20:10 +08:00
|
|
|
public function field_values()
|
2017-06-29 08:54:05 +08:00
|
|
|
{
|
2018-07-13 10:20:10 +08:00
|
|
|
return $this->hasMany(PirepFieldValue::class, 'pirep_id');
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|
|
|
|
|
2017-07-04 14:05:37 +08:00
|
|
|
public function pilot()
|
|
|
|
{
|
|
|
|
return $this->user();
|
|
|
|
}
|
|
|
|
|
2017-12-28 06:47:22 +08:00
|
|
|
/**
|
|
|
|
* Relationship that holds the current position, but limits the ACARS
|
|
|
|
* relationship to only one row (the latest), to prevent an N+! problem
|
|
|
|
*/
|
|
|
|
public function position()
|
2017-12-21 01:28:21 +08:00
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->hasOne(Acars::class, 'pirep_id')
|
2018-03-20 09:50:40 +08:00
|
|
|
->where('type', AcarsType::FLIGHT_PATH)
|
|
|
|
->latest();
|
2017-12-21 01:28:21 +08:00
|
|
|
}
|
|
|
|
|
2020-03-23 21:31:35 +08:00
|
|
|
public function simbrief()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(SimBrief::class, 'id', 'pirep_id');
|
|
|
|
}
|
|
|
|
|
2018-03-03 06:09:48 +08:00
|
|
|
public function transactions()
|
|
|
|
{
|
2018-04-02 03:32:01 +08:00
|
|
|
return $this->hasMany(JournalTransaction::class, 'ref_model_id')
|
|
|
|
->where('ref_model', __CLASS__)
|
2018-03-20 09:50:40 +08:00
|
|
|
->orderBy('credit', 'desc')
|
|
|
|
->orderBy('debit', 'desc');
|
2018-03-03 06:09:48 +08:00
|
|
|
}
|
|
|
|
|
2017-06-30 04:50:16 +08:00
|
|
|
public function user()
|
|
|
|
{
|
2018-01-08 23:22:12 +08:00
|
|
|
return $this->belongsTo(User::class, 'user_id');
|
2017-06-29 08:54:05 +08:00
|
|
|
}
|
|
|
|
}
|