Download the PHP package imarc/checkpoint without Composer
On this page you can find all versions of the php package imarc/checkpoint. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download imarc/checkpoint
More information about imarc/checkpoint
Files in imarc/checkpoint
Package checkpoint
Short Description A simple, explicit, yet powerful validation paradigm
License MIT
Informations about the package checkpoint
Checkpoint
Checkpoint is a validation wrapper around Respect/Validation which is designed to allow custom rule generation and validation error message logging. Some of its primary goals are:
- Do not abstract the validation logic
- Enable validation of multiple types of data
- Isolate validation to explicit encapsulated objects
Creating an Inspector
Setting the Validator
Normally the instantiation and setting of the validator will be set up in your dependency injector. Using a dependency injector like [Auryn]() allows you to define a preparer for the Checkpoint\Validation
interface so that any instantiated inspector will automatically have the validator injected through its setter method.
Additional Validation Dependencies
Because validators are encapsulated in their own classes, it's easy to inject other dependencies you may need to validate your data. If your dependency injector does recursive construction you can set these on your custom inspector. For example, a common requirement is to determine if an e-mail address is unique in a database table or repository, so on the inspector class you might do:
Then during validation:
Performing Validation
All validation logic should be encapsulated in the validate()
method. The data you receive to validate can be any type of data and it's up to you to pass a valid data format. Whether you use arrays or objects, you write your validation how you want.
Or perhaps a model/entity from your ORM:
Custom Rules
The check()
method suppports a handful of default rules provided by Respect, including:
- alpha
- phone
- lowercase
- notBlank
Default rules will only ever include those that do not require additional arguments. To define custom rules you can use the define method which takes the rule name, the error message to log, and returns a Respect\Validation\Validator
to chain rules on:
Running Validation
Once your validate()
method is setup you can run validation simply by passing in the requisite data:
Since the data to be inspected is whatever you want it to be this can take multiple formats:
Or perhaps a more explicit array:
This flexibility allows you to validate anything from form input, models, all the way to a single value:
Write your validators for whatever suites you, including direct request input:
Checking Messages
The first argument of the check()
method defines under what name messages will be logged. Messages are always added to an array keyed under the name provided so that multiple validation messages can be added if multiple checks are added. You can get the total number of messages logged with the countMessages()
method:
To get a specific message you can use the getMessages()
method and provide it a path to the messages. The path for a top-level inspector is simply the key name which was passed when calling check.
In most cases you will want to define a template partial for this. Here's an example in twig:
You can then see how this partial can be included inline to produce per-field messaging:
Child Inspectors
Sometimes you want to validate really complex data structures or related objects and the such. For this reason, Checkpoint supports adding child inspectors to pass additional validation on to. To add a child inspector you must take the following steps:
Register the Child
Since the child is a dependency of the parent, we can dependency inject it into the constructor and register it there.
Fetch and Run the Child
Now that you have a child inspector added, you can fetch and run it during valdiation with a subset of your data:
Check Child Messages
Child messages will be accessible from the top-level validator using an object notation to recursively reference child inspectors and eventually get the messages for their particular checks:
A Complex Example
Here is a moderately complex example which includes a child inspector based on some of the concepts we've already covered:
In this example the ProfileInspector
is a top level inspector which checks for a duplicate and returns immediately if one is found. Otherwise, it goes on to validate the additional details. It's dependencies are a PersonInspector
and a CompanyInspector
which will check subsets of its data, for example:
Similarly, the PersonInspector
would only concern itself with checking/logging errors on the person related data. Once you have all three objects, the following is possible:
Remember that the data you submit is probably going to come in the form of POST
data submitted directly by a form or an object, so actual usage will not be this verbose. Additionally, a recursive dependency injector will go a long way towards filling your dependencies right down the line. Checking messages on the Company's zip code would then follow as something like this:
You could also check for a duplicate at the very top to provide a much more obvious warning:
Conclusion
Checkpoint was written to solve much of the inflexibility found in other validation systems. The ability to add child inspectors means that you can aggregate a number of inspectors for simpler objects and the composite them together for more complex validation like with a registration form that might actually represent more than one domain modeled data structure. Inspectors can be written an composited from the bottom (a single field) to the top (a complex form).
By encapsulating validation logic and using actual logic with a few clean helper methods, it's possible to do much more complex validation while still keeping all the rules for a particular domain model in one place as opposed to having simpler checks written in a config, and then more complex checks written in separately registered helpers or as separate rule objects.
Repsect/Validation provides a lot of possible rules out of the box, so simple validation remains easy. To learn more about Respect/Validation, see their github repository.
Code Check and Testing
Run Analysis:
Run Tests: