-
-
Notifications
You must be signed in to change notification settings - Fork 61
Description
This work-in-progress is exploring how we might approach stateless validators.
Essentially, instead of an isValid()
method returning a boolean, and a subsequent call on the validator to retrieve validation error messages, we would instead:
- Define a
Result
interface modeling the results of validation; it would compose the value validated, validation status, and, if present, any validation error messages. - Define validators would define a single
validate()
method, accepting both a value and optional context, and return aResult
instance. - Define a
ResultAggregate
interface for aggregating several results, as is necessary in aValidatorChain
;Result
instances would be pushed upon an aggregate.
Translation, value obscuration, and message truncation then become presentation issues, and can be achieved by decorating Result
instances.
Additionally, we'd remove the concept of $options
for creating individual validator instances; they would instead have concrete constructor arguments. This simplifies a ton of logic internally, but means that each validator would require its own factory class. On the flip side, it also means developers can write factories for specific options combinations, and have shared instances without worrying about state.
Migration concerns
We could create a new minor release that adds the new Validator
, Result
, and ResultAggregate
interfaces, and various Result
implementations. Validator
would define validate
instead of isValid()
, allowing devs to implement both in order to forward-proof their validators. We could also provide a wrapper for Validator
implementations to make them work as ValidatorInterface
instances; in such a case, it would pull info from the result in order to populate its members.
The bigger issue is existing validators, and extensions to them. Developers extending existing validators may want to copy/paste implementations and begin migration of those to make them forwards-compatible with version 3. Since we would have version 3 released simultaneously to a v2 with the new interface additions, they could even copy those from v3 to aid their migration.
Integration concerns
I have not yet investigated impact on zend-inputfilter; however, that version will require a similar refactor towards stateless inputs/input filters as well.
Originally posted by @weierophinney at zendframework/zend-validator#181