Refactor request library.
This commit is contained in:
parent
3d2a607768
commit
7baad428ec
@ -53,11 +53,24 @@ class Request extends Neuron {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inicia la validación que se haya configurado.
|
* Corre las validaciones e intenta continuar con la pila de callbacks.
|
||||||
*
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function validate(): mixed
|
public function handle(): mixed
|
||||||
|
{
|
||||||
|
if ($this->validate())
|
||||||
|
return Middleware::next($this);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inicia la validación que se haya configurado.
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function validate(): bool
|
||||||
{
|
{
|
||||||
$actual = match($_SERVER['REQUEST_METHOD']) {
|
$actual = match($_SERVER['REQUEST_METHOD']) {
|
||||||
'GET', 'DELETE' => $this->get,
|
'GET', 'DELETE' => $this->get,
|
||||||
@ -67,7 +80,7 @@ class Request extends Neuron {
|
|||||||
if (Validator::validateList(static::paramRules(), $this->params) &&
|
if (Validator::validateList(static::paramRules(), $this->params) &&
|
||||||
Validator::validateList(static::getRules(), $this->get ) &&
|
Validator::validateList(static::getRules(), $this->get ) &&
|
||||||
Validator::validateList(static::rules(), $actual))
|
Validator::validateList(static::rules(), $actual))
|
||||||
return Middleware::next($this);
|
return true;
|
||||||
|
|
||||||
if (isset(static::messages()[Validator::$lastFailed]))
|
if (isset(static::messages()[Validator::$lastFailed]))
|
||||||
$error = static::messages()[Validator::$lastFailed];
|
$error = static::messages()[Validator::$lastFailed];
|
||||||
@ -120,12 +133,12 @@ class Request extends Neuron {
|
|||||||
*
|
*
|
||||||
* @param string $error
|
* @param string $error
|
||||||
*
|
*
|
||||||
* @return mixed
|
* @return false
|
||||||
*/
|
*/
|
||||||
protected function onInvalid(string $error): mixed
|
protected function onInvalid(string $error): false
|
||||||
{
|
{
|
||||||
http_response_code(422);
|
http_response_code(422);
|
||||||
print($error);
|
print($error);
|
||||||
return null;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -356,7 +356,7 @@ class Router {
|
|||||||
|
|
||||||
// Llama a la validación y luego procesa la cola de callbacks
|
// Llama a la validación y luego procesa la cola de callbacks
|
||||||
$request->next = $router['callback'];
|
$request->next = $router['callback'];
|
||||||
$data = $request->validate();
|
$data = $request->handle();
|
||||||
|
|
||||||
// Por defecto imprime como JSON si se retorna algo
|
// Por defecto imprime como JSON si se retorna algo
|
||||||
if (isset($data)) {
|
if (isset($data)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user