'integer', 'airline_id' => 'integer', 'aircraft_id' => 'integer', 'level' => 'integer', 'distance' => 'float', 'planned_distance' => 'float', 'flight_time' => 'integer', 'planned_flight_time' => 'integer', 'zfw' => 'float', 'block_fuel' => 'float', 'fuel_used' => 'float', 'landing_rate' => 'float', 'source' => 'integer', 'flight_type' => 'integer', 'state' => 'integer', 'status' => 'integer', ]; 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', 'notes' => 'nullable', 'route' => 'nullable', ]; /** * Get the flight ident, e.,g JBU1900 * @return string */ public function getIdentAttribute() { $flight_id = $this->airline->code; $flight_id .= $this->flight_number; 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; } /** * 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; } try { $distance = (float) $this->attributes['distance']; return new Distance($distance, config('phpvms.internal_units.distance')); } 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 { if ($value instanceof Distance) { $this->attributes['distance'] = $value->toUnit( config('phpvms.internal_units.distance')); } else { $this->attributes['distance'] = $value; } } /** * Return a new Fuel unit so conversions can be made * @return int|Fuel */ public function getFuelUsedAttribute() { if (!array_key_exists('fuel_used', $this->attributes)) { return null; } try { $fuel_used = (float) $this->attributes['fuel_used']; return new Fuel($fuel_used, config('phpvms.internal_units.fuel')); } catch (NonNumericValue $e) { return 0; } catch (NonStringUnitName $e) { return 0; } } /** * Return the planned_distance in a converter class * @return int|Distance */ public function getPlannedDistanceAttribute() { if (!array_key_exists('planned_distance', $this->attributes)) { return null; } try { $distance = (float) $this->attributes['planned_distance']; return new Distance($distance, config('phpvms.internal_units.distance')); } catch (NonNumericValue $e) { return 0; } catch (NonStringUnitName $e) { return 0; } } /** * Set the amount of fuel used * @param $value */ public function setFuelUsedAttribute($value) { if ($value instanceof Fuel) { $this->attributes['fuel_used'] = $value->toUnit( config('phpvms.internal_units.fuel') ); } else { $this->attributes['fuel_used'] = $value; } } /** * Set the distance unit, convert to our internal default unit * @param $value */ public function setPlannedDistanceAttribute($value) { if ($value instanceof Distance) { $this->attributes['planned_distance'] = $value->toUnit( config('phpvms.internal_units.distance') ); } else { $this->attributes['planned_distance'] = $value; } } /** * Do some cleanup on the route * @param $route */ public function setRouteAttribute($route): void { $route = strtoupper(trim($route)); $this->attributes['route'] = $route; } /** * Check if this PIREP is allowed to be updated * @return bool */ public function allowedUpdates(): bool { if($this->state === PirepState::CANCELLED) { return false; } return true; } /** * Foreign Keys */ public function acars() { return $this->hasMany(Acars::class, 'pirep_id') ->where('type', AcarsType::FLIGHT_PATH) ->orderBy('created_at', 'desc'); } public function acars_logs() { return $this->hasMany(Acars::class, 'pirep_id') ->where('type', AcarsType::LOG) ->orderBy('created_at', 'asc'); } public function acars_route() { return $this->hasMany(Acars::class, 'pirep_id') ->where('type', AcarsType::ROUTE) ->orderBy('order', 'asc'); } public function aircraft() { return $this->belongsTo(Aircraft::class, 'aircraft_id'); } public function airline() { return $this->belongsTo(Airline::class, 'airline_id'); } public function arr_airport() { return $this->belongsTo(Airport::class, 'arr_airport_id'); } public function dpt_airport() { return $this->belongsTo(Airport::class, 'dpt_airport_id'); } public function comments() { return $this->hasMany(PirepComment::class, 'pirep_id') ->orderBy('created_at', 'desc'); } public function fares() { return $this->hasMany(PirepFare::class, 'pirep_id'); } public function fields() { return $this->hasMany(PirepFieldValues::class, 'pirep_id'); } 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() { return $this->hasOne(Acars::class, 'pirep_id') ->where('type', AcarsType::FLIGHT_PATH) ->latest(); } public function transactions() { return $this->hasMany(JournalTransaction::class, 'ref_class_id') ->where('ref_class', __CLASS__) ->orderBy('credit', 'desc') ->orderBy('debit', 'desc'); } public function user() { return $this->belongsTo(User::class, 'user_id'); } }