Download the PHP package phphd/exceptional-validation without Composer

On this page you can find all versions of the php package phphd/exceptional-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package exceptional-validation

Exceptional Validation

🧰 Provides exception-to-property mapper bundled as Symfony Messenger middleware. It captures thrown exceptions, matches them with the respective properties, formats violations in Symfony Validator format, and throws ExceptionalValidationFailedException.

Build Status Codecov Psalm coverage Psalm level Packagist Downloads Licence

Installation 📥

  1. Install via composer

  2. Enable the bundles in the bundles.php

Configuration ⚒️

The recommended way to use this package is via Symfony Messenger middleware.

To start off, you should add phd_exceptional_validation middleware to the list:

Once you have done this, middleware will take care of capturing exceptions and processing them.

If you are not using Messenger component, you can still leverage features of this package, by writing your own implementation of the middleware for the specific command bus you are using. Concerning symfony/messenger component, this dependency is optional, so it won't be installed automatically if you don't need it.

Usage 🚀

The first thing necessary is to mark your message with #[ExceptionalValidation] attribute. It is used to include the message for processing by the middleware.

Then you define #[Capture] attributes on the properties of the message. These are used to map thrown exceptions to the corresponding properties of the class:

In this example, whenever LoginAlreadyTakenException or WeakPasswordException is thrown, it will be captured and mapped to the login or password property with the respective error message translation.

Eventually when phd_exceptional_validation middleware has processed the exception, it will throw ExceptionalValidationFailedException so that it can be caught and processed as needed:

The $exception object enfolds constraint violations with the respectively mapped constraint violations. This violation list can be used for example to render errors into html-form or to serialize them into a json-response.

Advanced usage ⚙️

#[ExceptionalValidation] and #[Capture] attributes allow you to implement very flexible mappings. Here are just few examples of how you can use them.

Capturing exceptions on nested objects

#[ExceptionalValidation] attribute works side-by-side with Symfony Validator #[Valid] attribute. Once you have defined these, #[Capture] attribute can be specified on the nested objects.

In this example, whenever InsufficientStockException is thrown, it will be captured and mapped to the product.quantity property with the corresponding message translation.

Capture When-Conditions

#[Capture] attribute accepts the callback function to determine whether particular exception instance should be captured for a given property or not.

In this example, when: option of the #[Capture] attribute is used to specify the callback functions that are called when exception is processed. If isWithdrawalCardBlocked callback returns true, then exception is captured for withdrawalCardId property; otherwise if isDepositCardBlocked callback returns true, then exception is captured for depositCardId property. If neither of them return true, then exception is re-thrown upper in the stack.

Capture Value-Conditions

Since in most cases capture conditions come down to the simple value comparison, it's easier to make your exception implement ValueException interface and specify condition: ValueExceptionMatchCondition::class rather than implementing when: closure every time.

This way, it's possible to avoid much of boilerplate code, keeping it clean:

Following this BlockedCardException should implement ValueException interface:

In this example BlockedCardException could be captured either for withdrawalCardId or depositCardId properties depending on the cardId value from the exception.

Capturing exceptions on nested array items

It is perfectly allowed to map the violations for the nested array items given that you have defined #[Valid] attribute on the iterable property. For example:

In this example, when InsufficientStockException is captured, it will be mapped to the products[*].quantity property, where * stands for the index of the particular ProductDetails instance from the products array on which the exception was captured.

Capturing multiple exceptions

Typically, during the validation process, it is expected that all validation errors will be shown to the user and not just the first one.

Yet, due to the limitations of the sequential computing model, only one exception could be thrown at a time. This leads to the situation where only the first exception is thrown, while the rest are not even reached.

This limitation could still be overcome by implementing some of the concepts of interaction combinators model in sequential PHP environment. The key concept is to use semi-parallel execution flow instead of sequential.

Let's consider the example of user registration and RegisterUserCommand with login and password properties shown above, where we want to capture both LoginAlreadyTakenException and WeakPasswordException at the same time.

In the main code we must collect these exceptions into some kind of "composite exception" that will eventually be thrown. While one could've implemented this manually, it's much easier to use amphp/amp library, where it has been implemented in a lot better way using async Futures:

In this example, createLogin() method could throw LoginAlreadyTakenException and createPassword() method could throw WeakPasswordException. By using async and awaitAnyN functions, we are able to leverage semi-parallel execution flow instead of sequential. Therefore, both createLogin() and createPassword() methods will get executed regardless of thrown exceptions.

If there were no exceptions, then $login and $password variables will be populated from the return values of the Futures. But if there indeed were some exceptions, then Amp\CompositeException will be thrown with all our exceptions wrapped inside.

If you would like to use custom composite exception, read about ExceptionUnwrapper

Since current library is capable of processing composite exceptions (actually there are un-wrappers for Amp and Messenger exceptions), all our thrown exceptions will be processed and user will have the full stack of validation errors at hand.

Violation formatters

There are two built-in violation formatters that you can use - DefaultViolationFormatter and ViolationListExceptionFormatter. If needed, you can create your own custom violation formatter as described below.

Default

DefaultViolationFormatter is used by default if other formatter is not specified.

It provides a very basic way to format violations, building ConstraintViolation with such parameters as: $message, $root, $propertyPath, $value.

Constraint Violation List Formatter

ViolationListExceptionFormatter is used to format violations for the exceptions that implement ViolationListException interface. It allows to easily capture the exception that has ConstraintViolationList obtained from the validator.

The typical exception class implementing ViolationListException interface would look like this:

Then you can use ViolationListExceptionFormatter on the #[Capture] attribute of the property:

In this example, CardNumberValidationFailedException is captured on the cardNumber property and all the constraint violations from this exception are mapped to this property. If there's message specified on the #[Capture] attribute, it is ignored in favor of the messages from ConstraintViolationList.

Custom violation formatters

In some cases, you might need to customize the way violations are formatted such as passing additional parameters to the message translation. You can achieve this by creating your own violation formatter service that implements ExceptionViolationFormatter interface:

Then you should register your custom formatter as a service:

In order for your custom violation formatter to be recognized by this bundle, its service must be tagged with exceptional_validation.violation_formatter tag. If you use autoconfiguration, this is done automatically by the service container owing to the fact that ExceptionViolationFormatter interface is implemented.

Finally, your custom formatter should be specified in the #[Capture] attribute:

In this example, RegistrationViolationsFormatter is used to format constraint violations for both LoginAlreadyTakenException and WeakPasswordException (though you are perfectly fine to use separate formatters), enriching them with additional context.


All versions of exceptional-validation with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
symfony/validator Version ^6.0 | ^7.0
webmozart/assert Version ^1.11
phphd/exception-toolkit Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package phphd/exceptional-validation contains the following files

Loading the files please wait ....