Improve error messaging for validation exceptions
This commit is contained in:
parent
271197e823
commit
43156e8d53
4 changed files with 31 additions and 11 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
namespace Pterodactyl\Exceptions\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Contracts\Validation\Validator;
|
||||
use Pterodactyl\Exceptions\PterodactylException;
|
||||
use Illuminate\Contracts\Support\MessageProvider;
|
||||
|
@ -11,21 +12,30 @@ class DataValidationException extends PterodactylException implements HttpExcept
|
|||
{
|
||||
/**
|
||||
* The validator instance.
|
||||
*
|
||||
* @var \Illuminate\Contracts\Validation\Validator
|
||||
*/
|
||||
public $validator;
|
||||
protected Validator $validator;
|
||||
|
||||
/**
|
||||
* The underlying model instance that triggered this exception.
|
||||
*/
|
||||
protected Model $model;
|
||||
|
||||
/**
|
||||
* DataValidationException constructor.
|
||||
*/
|
||||
public function __construct(Validator $validator)
|
||||
public function __construct(Validator $validator, Model $model)
|
||||
{
|
||||
parent::__construct(
|
||||
'Data integrity exception encountered while performing database write operation. ' . $validator->errors()->toJson()
|
||||
$message = sprintf(
|
||||
'Could not save %s[%s]: failed to validate data: %s',
|
||||
get_class($model),
|
||||
$model->getKey(),
|
||||
$validator->errors()->toJson()
|
||||
);
|
||||
|
||||
parent::__construct($message);
|
||||
|
||||
$this->validator = $validator;
|
||||
$this->model = $model;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -55,4 +65,14 @@ class DataValidationException extends PterodactylException implements HttpExcept
|
|||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
public function getValidator(): Validator
|
||||
{
|
||||
return $this->validator;
|
||||
}
|
||||
|
||||
public function getModel(): Model
|
||||
{
|
||||
return $this->model;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -271,7 +271,7 @@ class ServersController extends Controller
|
|||
'database_limit', 'allocation_limit', 'backup_limit', 'oom_disabled',
|
||||
]));
|
||||
} catch (DataValidationException $exception) {
|
||||
throw new ValidationException($exception->validator);
|
||||
throw new ValidationException($exception->getValidator());
|
||||
}
|
||||
|
||||
$this->alert->success(trans('admin/server.alerts.build_updated'))->flash();
|
||||
|
@ -315,7 +315,7 @@ class ServersController extends Controller
|
|||
->setUserLevel(User::USER_LEVEL_ADMIN)
|
||||
->handle($server, $data);
|
||||
} catch (DataValidationException $exception) {
|
||||
throw new ValidationException($exception->validator);
|
||||
throw new ValidationException($exception->getValidator());
|
||||
}
|
||||
|
||||
$this->alert->success(trans('admin/server.alerts.startup_changed'))->flash();
|
||||
|
|
|
@ -57,7 +57,7 @@ abstract class Model extends IlluminateModel
|
|||
try {
|
||||
$model->validate();
|
||||
} catch (ValidationException $exception) {
|
||||
throw new DataValidationException($exception->validator);
|
||||
throw new DataValidationException($exception->validator, $model);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
@ -98,7 +98,7 @@ abstract class EloquentRepository extends Repository implements RepositoryInterf
|
|||
$saved = $instance->skipValidation()->save();
|
||||
} else {
|
||||
if (!$saved = $instance->save()) {
|
||||
throw new DataValidationException($instance->getValidator());
|
||||
throw new DataValidationException($instance->getValidator(), $instance);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -195,7 +195,7 @@ abstract class EloquentRepository extends Repository implements RepositoryInterf
|
|||
$saved = $instance->skipValidation()->save();
|
||||
} else {
|
||||
if (!$saved = $instance->save()) {
|
||||
throw new DataValidationException($instance->getValidator());
|
||||
throw new DataValidationException($instance->getValidator(), $instance);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue