-
Notifications
You must be signed in to change notification settings - Fork 50
[RFC] Replace Input with a chain of callbacks. #87
Comments
In which context do you want to create and execute the chain. I think this could lead to heavy objects, because there are so much dependencies (Hydrator, Validator, Filter, ...). And in my opinion the code is really hard to read. But aside of this, it could be a great feature. |
Chain can be created from static methods and added to input filters $inputFilter->addInput("input name", Chain $chain);
$result = $inputFilter->resolve($inputValuesArray);
$result->isValid();
$result->getValues(); About the code legibility this is as easy as use local vars or refactor dependent components for be API compatible. $removeWhitespaces = ...;
$validateIsFormattedAsADate = ...;
$chain
->then($removeWhitespaces)
->then($validateIsFormattedAsADate)
->then(null, $setFallbackValue)
; About the dependencies, there is no dependencies, just callables. |
Note this way of make chains could replace or remove ValidatorChain and FilterChain classes |
while I like the idea of replacing |
Well, who said this things could not be async in the future or with alternative PHP engines. |
If that was the actual intention, I'd rather have the input filter wrapped in a promise via a dedicated implementation like reactphp/promise, or introduce a new zend component for that purpose, but then again... why would you do that? |
This repository has been closed and moved to laminas/laminas-inputfilter; a new issue has been opened at laminas/laminas-inputfilter#6. |
I started to think the best way of build a custom pipe of filters and validators where you can filter after validation, etc.
I propose replace
Zend\InputFilter\Input
with a custom chain of methods like A+ promises.For resume A+ promises have the following main properties along others I won't detail here:
then(callback success = null, callback error = null)
So basically the chain do two kind of things. Transformations of the input value and reject the chain if is invalid.
Options:
Reject promise using a reject method callback instead throwing exceptions.
->then($reject($errror) {}, $inputValue);
Benefits of this design:
Thoughts?
/cc @weierophinney, @Ocramius, @bakura10, @zendframework/community-review-team
The text was updated successfully, but these errors were encountered: