Files
animethemes-server/app/Http/Requests/Api/BaseRequest.php
T
2025-10-26 03:09:42 -03:00

46 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Http\Requests\Api;
use App\Contracts\Http\Api\InteractsWithSchema;
use App\Http\Api\Schema\Schema;
use Illuminate\Foundation\Http\FormRequest;
use RuntimeException;
abstract class BaseRequest extends FormRequest
{
/**
* The underlying schema used to perform validation.
*/
protected Schema $schema;
/**
* Get the validation rules that apply to the request.
*/
abstract public function rules(): array;
/**
* Get the underlying schema.
*/
public function schema(): Schema
{
return $this->schema;
}
/**
* Prepare the data for validation.
*/
protected function prepareForValidation(): void
{
parent::prepareForValidation();
$controller = $this->route()->getController();
throw_unless($controller instanceof InteractsWithSchema, RuntimeException::class, "Cannot resolve schema for controller '{$this->route()->getControllerClass()}'");
$this->schema = $controller->schema();
}
}