phpvms/app/Models/Pirep.php

490 lines
14 KiB
PHP
Raw Normal View History

2017-06-29 08:54:05 +08:00
<?php
namespace App\Models;
use App\Contracts\Model;
use App\Events\PirepStateChange;
use App\Events\PirepStatusChange;
use App\Models\Casts\CarbonCast;
use App\Models\Casts\DistanceCast;
use App\Models\Casts\FuelCast;
use App\Models\Enums\AcarsType;
use App\Models\Enums\PirepFieldSource;
use App\Models\Enums\PirepState;
use App\Models\Traits\HashIdTrait;
2018-02-11 11:16:32 +08:00
use App\Support\Units\Distance;
use App\Support\Units\Fuel;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Collection;
use Kleemans\AttributeEvents;
2017-06-29 08:54:05 +08:00
/**
* @property string id
* @property string ident
* @property string flight_number
* @property string route_code
* @property string route_leg
* @property string flight_type
2018-08-27 02:50:08 +08:00
* @property int airline_id
* @property int user_id
* @property int aircraft_id
* @property Aircraft aircraft
* @property Airline airline
* @property Airport arr_airport
* @property string arr_airport_id
* @property Airport dpt_airport
* @property string dpt_airport_id
* @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
* @property Fuel block_fuel
* @property Fuel fuel_used
* @property Distance distance
* @property Distance planned_distance
* @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
* @property User user
* @property Flight|null flight
* @property Collection fields
2020-08-13 10:02:20 +08:00
* @property string status
* @property int state
* @property int source
* @property string source_name
* @property Carbon submitted_at
* @property Carbon created_at
* @property Carbon updated_at
* @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
*/
class Pirep extends Model
2017-06-29 08:54:05 +08:00
{
use AttributeEvents;
use HashIdTrait;
use HasFactory;
use Notifiable;
2017-06-29 08:54:05 +08:00
public $table = 'pireps';
protected $keyType = 'string';
2017-07-05 02:57:08 +08:00
public $incrementing = false;
2017-06-29 08:54:05 +08:00
/** The form wants this */
2018-08-27 00:40:04 +08:00
public $hours;
2018-08-27 00:40:04 +08:00
public $minutes;
2018-03-21 08:40:19 +08:00
protected $fillable = [
'id',
'user_id',
2018-01-31 01:15:07 +08:00
'airline_id',
'aircraft_id',
'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',
'distance',
'planned_distance',
'block_time',
'flight_time',
'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',
'landing_rate',
'route',
'notes',
2018-04-26 00:56:05 +08:00
'score',
2018-01-31 01:15:07 +08:00
'source',
'source_name',
'flight_type',
'state',
'status',
'block_off_time',
'block_on_time',
'submitted_at',
'created_at',
'updated_at',
];
2017-06-29 08:54:05 +08:00
protected $casts = [
'user_id' => 'integer',
'airline_id' => 'integer',
'aircraft_id' => 'integer',
'level' => 'integer',
'distance' => DistanceCast::class,
'planned_distance' => DistanceCast::class,
'block_time' => 'integer',
'block_off_time' => CarbonCast::class,
'block_on_time' => CarbonCast::class,
'flight_time' => 'integer',
'planned_flight_time' => 'integer',
'zfw' => 'float',
'block_fuel' => FuelCast::class,
'fuel_used' => FuelCast::class,
'landing_rate' => 'float',
2018-04-26 00:56:05 +08:00
'score' => 'integer',
'source' => 'integer',
'state' => 'integer',
'submitted_at' => CarbonCast::class,
];
2017-06-29 08:54:05 +08:00
public static $rules = [
'airline_id' => 'required|exists:airlines,id',
'aircraft_id' => 'required|exists:aircraft,id',
'flight_number' => 'required',
'dpt_airport_id' => 'required',
'arr_airport_id' => 'required',
'block_fuel' => 'nullable|numeric',
'fuel_used' => 'nullable|numeric',
'level' => 'nullable|numeric',
'notes' => 'nullable',
'route' => 'nullable',
];
2017-06-29 08:54:05 +08:00
/**
* Auto-dispatch events for lifecycle state changes
*/
protected $dispatchesEvents = [
'status:*' => PirepStatusChange::class,
'state:*' => PirepStateChange::class,
];
/*
* If a PIREP is in these states, then it can't be changed.
*/
public static $read_only_states = [
PirepState::ACCEPTED,
PirepState::REJECTED,
PirepState::CANCELLED,
];
/*
* 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,
];
/**
* Create a new PIREP model from a given flight. Pre-populates the fields
*
* @param \App\Models\Flight $flight
*
* @return \App\Models\Pirep
*/
public static function fromFlight(Flight $flight): self
{
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,
]);
}
/**
* 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
/**
* Get the flight ident, e.,g JBU1900/C.nn/L.yy
2017-12-04 05:29:34 +08:00
*/
public function ident(): Attribute
2017-12-04 05:29:34 +08:00
{
return Attribute::make(
get: function ($value, $attrs) {
$flight_id = optional($this->airline)->code;
$flight_id .= $this->flight_number;
2018-05-02 09:58:05 +08:00
if (filled($this->route_code)) {
$flight_id .= '/C.'.$this->route_code;
}
2018-05-02 09:58:05 +08:00
if (filled($this->route_leg)) {
$flight_id .= '/L.'.$this->route_leg;
}
2018-05-03 04:14:18 +08:00
return $flight_id;
}
);
}
/**
* Return if this PIREP can be edited or not
*/
public function readOnly(): Attribute
{
return Attribute::make(
get: fn ($_, $attrs) => \in_array($this->state, static::$read_only_states, true)
);
}
2018-04-05 06:42:43 +08:00
/**
* Return the flight progress in a percent.
*/
public function progressPercent(): Attribute
2018-04-05 06:42:43 +08:00
{
return Attribute::make(
get: function ($_, $attrs) {
$distance = $attrs['distance'];
2018-04-05 06:42:43 +08:00
$upper_bound = $distance;
if ($attrs['planned_distance']) {
$upper_bound = $attrs['planned_distance'];
}
2018-04-05 06:42:43 +08:00
$upper_bound = empty($upper_bound) ? 1 : $upper_bound;
$distance = empty($distance) ? $upper_bound : $distance;
return round(($distance / $upper_bound) * 100);
}
);
2018-04-05 06:42:43 +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 fields(): Attribute
{
return Attribute::make(
get: function ($_, $attrs) {
$custom_fields = PirepField::all();
$field_values = PirepFieldValue::where('pirep_id', $this->id)
->orderBy('created_at', 'asc')
->get();
// Merge the field values into $fields
foreach ($custom_fields as $field) {
$has_value = $field_values->firstWhere('slug', $field->slug);
if (!$has_value) {
$field_values->push(
new PirepFieldValue([
'pirep_id' => $this->id,
'name' => $field->name,
'slug' => $field->slug,
'value' => '',
'source' => PirepFieldSource::MANUAL,
])
);
}
}
return $field_values;
}
);
}
/**
* Do some cleanup on the route
2018-08-27 00:40:04 +08:00
*
* @return Attribute
*/
public function route(): Attribute
{
return Attribute::make(
set: fn ($route) => strtoupper(trim($route))
);
}
2018-05-12 01:08:55 +08:00
/**
* Return if this is cancelled or not
*/
public function cancelled(): Attribute
2018-05-12 01:08:55 +08:00
{
return Attribute::make(
get: fn ($_, $attrs) => $this->state === PirepState::CANCELLED
);
2018-05-12 01:08:55 +08:00
}
/**
* Check if this PIREP is allowed to be updated
2018-08-27 00:40:04 +08:00
*
* @return bool
*/
2018-03-03 07:29:11 +08:00
public function allowedUpdates(): bool
{
2018-08-27 00:40:04 +08:00
return !$this->getReadOnlyAttribute();
}
/**
* Return a custom field value
2018-08-27 00:40:04 +08:00
*
* @param $field_name
2018-08-27 00:40:04 +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
*/
public function acars()
{
2018-01-08 23:22:12 +08:00
return $this->hasMany(Acars::class, 'pirep_id')
->where('type', AcarsType::FLIGHT_PATH)
2018-05-29 07:15:51 +08:00
->orderBy('created_at', 'asc')
->orderBy('sim_time', 'asc');
}
public function acars_logs()
{
2018-01-08 23:22:12 +08:00
return $this->hasMany(Acars::class, 'pirep_id')
->where('type', AcarsType::LOG)
2018-05-29 07:15:51 +08:00
->orderBy('created_at', 'desc')
->orderBy('sim_time', 'asc');
}
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')
->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
}
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
{
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
{
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')
->orderBy('created_at', 'desc');
2017-07-24 02:07:41 +08:00
}
public function fares()
{
return $this->hasMany(PirepFare::class, 'pirep_id');
}
public function field_values()
2017-06-29 08:54:05 +08:00
{
return $this->hasMany(PirepFieldValue::class, 'pirep_id');
2017-06-29 08:54:05 +08:00
}
public function pilot()
{
return $this->user();
}
/**
* 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()
{
2018-01-08 23:22:12 +08:00
return $this->hasOne(Acars::class, 'pirep_id')
->where('type', AcarsType::FLIGHT_PATH)
->latest();
}
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__)
->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
}
}