48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\V3\Mission\ControlUnit;
|
|
|
|
use App\Enums\MissionStates;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Validator;
|
|
|
|
class StartRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return $this->mission->state_id == MissionStates::PENDING_CONFIRMATION->value;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, ValidationRule|array|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'code' => 'required|string',
|
|
'km' => 'required',
|
|
'time' => 'required|date',
|
|
];
|
|
}
|
|
|
|
public function after(): array
|
|
{
|
|
return [
|
|
function (Validator $validator) {
|
|
if ($this->mission->code != $this->code) {
|
|
$validator->errors()->add(
|
|
'code',
|
|
'کد وارد شده صحیح نمی باشد'
|
|
);
|
|
}
|
|
},
|
|
];
|
|
}
|
|
}
|