2018-01-29 01:12:13 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Acars;
|
|
|
|
|
2019-07-16 03:44:31 +08:00
|
|
|
use App\Contracts\FormRequest;
|
2018-01-29 01:12:13 +08:00
|
|
|
use App\Models\Pirep;
|
2019-11-06 00:44:31 +08:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2018-01-29 01:12:13 +08:00
|
|
|
|
|
|
|
class PositionRequest extends FormRequest
|
|
|
|
{
|
2018-05-10 01:45:24 +08:00
|
|
|
/**
|
2019-11-06 00:44:31 +08:00
|
|
|
* Is the user allowed to do this?
|
2018-05-10 01:45:24 +08:00
|
|
|
*/
|
2019-11-06 00:44:31 +08:00
|
|
|
public function authorize(): bool
|
2018-01-29 01:12:13 +08:00
|
|
|
{
|
|
|
|
$pirep = Pirep::findOrFail($this->route('pirep_id'), ['user_id']);
|
|
|
|
return $pirep->user_id === Auth::id();
|
|
|
|
}
|
|
|
|
|
2019-11-06 00:44:31 +08:00
|
|
|
public function rules(): array
|
2018-01-29 01:12:13 +08:00
|
|
|
{
|
|
|
|
$rules = [
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions' => 'required|array',
|
|
|
|
'positions.*.lat' => 'required|numeric',
|
|
|
|
'positions.*.lon' => 'required|numeric',
|
2018-05-04 04:07:16 +08:00
|
|
|
'positions.*.status' => 'nullable',
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions.*.altitude' => 'nullable|numeric',
|
2018-05-02 09:58:05 +08:00
|
|
|
'positions.*.heading' => 'nullable|numeric|between:0,360',
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions.*.vs' => 'nullable',
|
|
|
|
'positions.*.gs' => 'nullable',
|
2018-01-29 01:12:13 +08:00
|
|
|
'positions.*.transponder' => 'nullable',
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions.*.autopilot' => 'nullable',
|
2018-05-02 09:58:05 +08:00
|
|
|
'positions.*.fuel' => 'nullable|numeric',
|
|
|
|
'positions.*.fuel_flow' => 'nullable|numeric',
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions.*.log' => 'nullable',
|
2018-05-10 01:45:24 +08:00
|
|
|
'positions.*.sim_time' => 'nullable|date',
|
2018-03-20 09:50:40 +08:00
|
|
|
'positions.*.created_at' => 'nullable|date',
|
2018-01-29 01:12:13 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
}
|