rework on rules

This commit is contained in:
Eduardo Bacarin 2025-07-04 11:43:43 -03:00
parent 2e33469987
commit de8c7b4ac4

View file

@ -1,24 +1,22 @@
<?php
use Somnambulist\Components\Validation\Factory;
require_once(__DIR__.'/validator.php');
function pixCobrancaImediataComValorRules(array $data)
{
$rules = [
'expiracao' => 'integer',
'devedor' => 'array',
'devedor.documento' => 'string|min:11|max:18',
'devedor.nome' => 'required_with:devedor.documento|string|max:100',
'devedor' => 'sometimes|array',
'devedor.documento' => 'sometimes|string|min:11|max:18',
'devedor.nome' => 'sometimes|required_with:devedor.documento|string|max:100',
'valor' => 'required|integer|min:1',
'chave' => 'required|string',
'txid' => 'required|string|max:100',
'solicitacaoPagador' => 'string|max:140'
];
$validation = (new Factory)->validate($data, $rules);
if ($validation->fails()) {
throw new Exception(json_encode($validation->errors()->firstOfAll()), 500);
$validate = validate($data, $rules);
if (!$validate['valid']) {
throw new Exception(json_encode(array_slice($validate['errors'], 0, 1)), 500);
} else {
return true;
}
@ -29,19 +27,18 @@ function pixCobrancaImediataSemValorRules(array $data)
{
$rules = [
'expiracao' => 'integer',
'devedor' => 'array',
'devedor.documento' => 'string|min:11|max:18',
'devedor.nome' => 'required_with:devedor.documento|string|max:100',
'devedor' => 'sometimes|array',
'devedor.documento' => 'sometimes|string|min:11|max:18',
'devedor.nome' => 'sometimes|required_with:devedor.documento|string|max:100',
'valor' => 'sometimes|integer',
'chave' => 'required|string',
'txid' => 'required|string|max:100',
'solicitacaoPagador' => 'string|max:140'
];
$validation = (new Factory)->validate($data, $rules);
if ($validation->fails()) {
throw new Exception(json_encode($validation->errors()->firstOfAll()), 500);
$validate = validate($data, $rules);
if (!$validate['valid']) {
throw new Exception(json_encode(array_slice($validate['errors'], 0, 1)), 500);
} else {
return true;
}