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.

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 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:

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:

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:


All versions of checkpoint with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
respect/validation Version ^2.0.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 imarc/checkpoint contains the following files

Loading the files please wait ....