api/app/Http/Requests/StoreHuntStepRequest.php

54 lines
1.4 KiB
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Http\Exceptions\HttpResponseException;
class StoreHuntStepRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
'step_number' => 'required|integer',
'title' => 'required|string|max:255',
'description' => 'nullable|string',
'hint_text' => 'required|string',
'hint_media_url' => 'nullable|string',
'latitude' => 'required|numeric',
'longitude' => 'required|numeric',
'radius_m' => 'integer|min:1',
'xp' => 'integer|min:0',
];
}
/**
* Handle a failed validation attempt.
*
* @return void
*
* @throws \Illuminate\Http\Exceptions\HttpResponseException
*/
protected function failedValidation(Validator $validator)
{
throw new HttpResponseException(response()->json([
'message' => 'Validation errors',
'errors' => $validator->errors(),
], 422));
}
}