|
Key
This line was removed.
This word was removed. This word was added.
This line was added.
|
Comment:
Changes (0)
View Page History{zone-data:component-name}
Zend_Validate_Builder, Zend_Filter_Builder
{zone-data}
{zone-data:proposer-list}
[Bryce Lohr|mailto:blohr@triad.rr.com]
{zone-data}
{zone-data:revision}
0.2
{zone-data}
{zone-data:overview}
I'd like to propose an alternative to the [Zend_Filter_Input|Zend_Filter_Input redesign - Bill Karwin] proposal. Bill Karwin and others have put a lot of time and energy into that work, and I'd like to take this opportunity to thank them. This work is built upon those, and I'd like to acknowledge that up front.
This proposal is inspired by Christopher Thompson's original [Zend_FilterChain|Zend_FilterChain Zend_Validator - Christopher Thompson] proposal, and provides a similar interface. This is quite a different tact than the array-based structure used by [Zend_Filter_Input|Zend_Filter_Input redesign - Bill Karwin]; some people may find this interface preferable.
I actually propose quite a bit of change here. Here's a quick rundown to get started:
* Zend_Filter_Builder and Zend_Validate_Builder classes
* Facades providing a fluent interface for both Builder classes
* An Error Manager class to faciliate configuring error messages for many validators at once
{zone-data}
{zone-data:references}
* [Zend_FilterChain Zend_Validator - Christopher Thompson]
* [Zend_Filter Design Proposal - Darby Felton]
* [Zend_Filter_Input redesign - Bill Karwin]
* [Zend_Filter static usage - Bill Karwin]
* [Zend_Validate_Array Proposal]
* [Zend_Form - Simon Mundy & Ralf Eggert]
{zone-data}
{zone-data:requirements}
* Zend_Validate_Builder manages exactly one responsibility: validating sets of data in arrays
* Zend_Filter_Builder manages exactly one responsibility: filtering sets of data in arrays
* Zend_Validate_Builder_ErrorManager is responsible for defining and reporting error messages for validators
* Neither component handles any other aspect of form processing
* No mechanism for statically calling filters or validators is provided (out of scope)
* The solution in this proposal is not designed to make using the existing filters and validators more convenient for quickly checking one value; it's geared toward easily handling a lot of data at once
* Thanks to the pre-1.0 changes to the Zend_Validate_* classes with regards to error messages, this proposal works with the existing validation API as-is.
{zone-data}
{zone-data:dependencies}
* Zend_Validate_Interface
* Zend_Filter_Interface
* Zend_Validate_*
* Zend_Filter_*
* Zend_Validate_Exception
{zone-data}
{zone-data:operation}
Essentially, Zend_Validate_Builder and Zend_Filter_Builder use the Builder and Composite patterns to construct a recursive tree structure of Zend_Validate_* or Zend_Filter_* instances, which is then applied wholesale to an array of input data. In the case of Zend_Filter_Builder, the result is the original input array after having each of the constituent filters applied to each input array element. In the case of Zend_Validate_Builder, the result is a boolean value indicating whether any single element in the input data was deemed invalid by any of the constituent Zend_Validate_* instances.
In addition to the Builder classes, I also propose Zend_Validate_Builder_FluentFacade and Zend_Filter_Builder_FluentFacade. These classes provide a very elegant and easy to use fluent interface to the Builder classes, and their use is totally optional. The Builder classes in no way depend on these.
Error messages are a vital part of data validation. If your code decides that something the user entered is not acceptable, you must be able to tell the user why. To that end, I propose a Zend_Validate_Builder_ErrorManager class. This class provides a way for the Zend_Validate_* classes, Zend_Validate_Builder, and your application code to define and communicate errors. The Zend_Validate_* classes all have built-in error messages which, for a variety of reasons, are often not suitable to display directly to users. Therefore, the error messages for validators can be overridden. However, this can only be done on an individual, validator-by-validator basis. Zend_Validate_Builder_ErrorManager allows you to define all the error messages for any arbitrary set of validators, by data field. This way, you can easily set up each error message for a field, and also easily retreive any error messages by field for display.
{zone-data}
{zone-data:milestones}
* Milestone 1: \[DONE\] Design interface and test feasibility
* Milestone 2: \[DONE\] Write proposal
* Milestone 3: \[IN PROGRESS\] Gather feedback and revise design as necessary
* Milestone 4: \[IN PROGRESS\] Develop full implementation and unit tests
* Milestone 5: Write documentation
{zone-data}
{zone-data:class-list}
* Zend_Validate_Builder
* Zend_Validate_Builder_FluentFacade
* Zend_Validate_Builder_FluentAdder
* Zend_Validate_Builder_ValidatorFactory
* Zend_Validate_Builder_ValidatorFactory_Interface
* Zend_Validate_Builder_ErrorManager
* Zend_Validate_Builder_ErrorManager_Interface
* Zend_Filter_Builder
* Zend_Filter_Builder_FluentFacade
* Zend_Filter_Builder_FluentAdder
* Zend_Filter_Builder_FilterFactory
* Zend_Filter_Builder_FilterFactory_Interface
{zone-data}
{zone-data:use-cases}
For all of these use cases, assume that the code shown is extracted from a valid Action Controller method that is processing a form with the intention of saving the data to the database. Assume that methods referenced after {{$this->}} exist and are valid. In most of these examples, I refer to Zend_Validate_* classes that don't currently exist; for now assume that they do. I plan to add a separate proposal for some new validators that would work well with this proposal, as well as being useful in general.
||UC-01||
Some very basic examples. First, Zend_Filter_Builder:
{code}
$filter = new Zend_Filter_Builder;
$filter->addFilter('phone_no', new Zend_Filter_Digits);
$filter->addFilter('description', new Zend_Filter_StripTags);
$filteredPost = $filter->filter($unfilteredPost);
{code}
This filters out all non-digit characters from the {{phone_no}} field, and strips HTML tags from the {{description}} field. The {{filter()}} method takes an array of data, and runs the specified filters on the matching keys.
Next, Zend_Validate_Builder:
{code}
$validate = new Zend_Validate_Builder;
$validate->addValidator('phone_no', new Zend_Validate_IsNumeric);
$validate->addValidator('phone_no', new Zend_Validate_Between(1000000, 9999999));
$validate->addValidator('description', new Zend_Validate_StringLength(255), Zend_Validate_Buider::OPTIONAL);
if ($validator->isValid($post)) {
$this->saveData($post);
}
{code}
Here, the {{phone_no}} field is checked to make sure it's numeric, and {{description}} field is checked to make sure it's less than 255 characters long. Since the Zend_Validate_* classes will usually fail an empty value, all fields are required by default. The {{addValidator}} method takes an optional third argument, which are flags for that specific field. We're passing the OPTIONAL flag for the {{description}} field, so Zend_Validate_Builder will skip over it when it's empty, and the StringLength validator will never see it unless it has a value.
Note the {{phone_no}} example: the order the validators are added to the field is preserved; that is, the IsNumeric validator will be run before the Between validator. All the validators assigned to a field will always be executed. Therefore, a single field might generate several error messages, depending on how many validators it fails. Since these error messages are built up in the Error Manager object, your application code can decide which errors to display to the user; you need not display all of them.
||UC-02||
This demonstrates a little more advanced usage.
Globbing:
{code}
// Decode HTML entities and strip tags from all POST fields
$filter = new Zend_Filter_Builder;
$filter->addFilter('*', new Zend_Filter_HtmlEntitiesDecode);
$filter->addFilter('*', new Zend_Filter_StripTags);
$filteredPost = $filter->filter($post);
// Require all fields on the form to be Alpha-only characters
$validate = new Zend_Validate_Builder;
$validate->addValidator('*', new Zend_Validate_Alpha);
if ($validate->isValid($filteredPost)) {
$this->saveData($filteredPost);
}
{code}
{info:title=Supported Meta-characters}
I currently only have support for the '\*' meta-character for globbing. However, it's fairly straight-forward to expand the support for more complex matching, including using regular expressions to pick which fields to match. In this implementation, using '\*' is semantically equivilent to manually specifying every field in the top level input array.
{info}
Grouping:
{code}
// Filter out non-digit characters from three fields
$filter = new Zend_Filter_Builder;
$filter->addFilter(array('phone_no', 'ss_no', 'cc_no'), new Zend_Filter_Digits);
$filteredPost = $filter->filter($post);
// Make sure none of the address fields are longer than 100 characters
$validate = new Zend_Validate_Builder;
$validate->addValidator(array('address1', 'address2', 'address3'), new Zend_Validate_StringLength(100));
if ($validate->isValid($filteredPost)) {
$this->saveData($filteredPost);
}
{code}
||UC-03||
Password confirmation, catpcha validation, etc. This uses the (currently) fictional Zend_Validate_Equals, which validates that the input value is equal to the value given to the constructor. I propose that we add such a validator to the core distribution.
Password Confirmation:
{code}
$validator = new Zend_Validate_Builder;
// My_Password_Validator is a user-defined (i.e., non-ZF) class the app uses to validate passwords
$validator->addValidator('password1', new My_Password_Validator);
$validator->addValidator('password2', new Zend_Validate_Equals($post['password1']));
if ($validator->isValid($post)) {
$this->_addUser($post);
}
{code}
Catpcha validation:
{code}
$validator = new Zend_Validate_Builder;
$validator->addValidator('captcha', new Zend_Validate_Equals($session['captcha']));
if ($validator->isValid($post)){
$this->_addComment($post);
}
{code}
||UC-O4||
Since this follows the Composite pattern, you can nest validators to do some neat things. In this example, assume we're trying to validate a mailing address. Suppose, for organizational purposes, you structured the form so the mailing address was in a sub-array, something like this:
{code}
$post = array(
'name' => 'Jimmy',
'email' => 'jimmy@chickenshack.com',
'address' => array(
'addr1' => '123 N Main St',
'addr2' => '',
'addr3' => '',
'city' => 'Townsville',
'state' => 'NC',
'zip' => '12345',
)
);
{code}
You could validate this nested structure like so:
{code}
$outer = new Zend_Validate_Builder;
$outer->addValidator('name', new Zend_Validate_StringLength(50));
$outer->addValidator('email', new Zend_Validate_EmailAddress);
$string100 = new Zend_Validate_StringLength(100);
$inner = new Zend_Validate_Builder;
$inner->addValidator(array('addr1', 'city'), $string100);
$inner->addValidator(array('addr2', 'addr3'), $string100, Zend_Validate_Builder::OPTIONAL);
// Assume $states is a valid array of US states
$inner->addValidator('state', new Zend_Validate_InArray($states));
// Another custom validator for Zip codes
$inner->addValidator('zip', new My_Zipcode_Valiadator);
// ZVB will pass the entire array in the 'address' field to the inner validator, which will operate just like the outer does normally.
$outer->addValidator('address', $inner);
if ($outer->isValid($post)) {
$this->saveData($post);
}
{code}
If you have a situation where the entire address is optional (therefore if any one field is given, they must all be valid; otherwise it's valid if they're all blank), you might be temped to pass the OPTIONAL flag to the {{address}} field. However, that won't work: when the OPTIONAL flag is set, the Builder checks the value of the current field, and if it's blank, the Builder never calls the validator. In this situation, the current field would be an array with six elements; even though each element could have an empty value, the array itself won't ever be considered an empty value. Therefore, the entire {{address}} field will always be validated against the sub-validator. In this situation, what you actually need is _conditionally_ optional fields, based on whether or not _other_ fields are valid, which requires completely different logic.
||UC-05||
In order to handle a situation like the optional address mentioned above, you'd need something like this. This uses another fictional validator called Zend_Validate_AllOrNone. It allows you to do some limited conditional requirement of fields: you pass it a set of fields, and if all of them are empty, or if all of them are filled, then it considers the set valid. If only some are filled, then it considers the set invalid. The example may clarify things a bit. I plan on adding this validator to a separate validators proposal, since it seems useful for a variety of situations.
{code}
// Put all the required address fields into an array
// Required, in this sense, means that if any one value is given, they all must be given
$fields = array('address1', 'city', 'state', 'zip')
$reqd = array_intersect_key($post, array_flip($fields));
$string100 = new Zend_Validate_StringLength(100);
// In this example, the POST data doesn't have the nested array as in the previous use case
$validate = new Zend_Validate_Builder;
// This is where the magic happens: based on the set of fields passed to its constructor, AllOrNone will return
// valid if the entire set is either all empty values or all non-empty values. Otherwise, it returns invalid.
$validate->addValidator($fields, new Zend_Validate_AllOrNone($reqd));
// After the AllOrNone check, other validators are used to check the validity of the specific fields
$validate->addValidator(array('address1', 'address2', 'address3', 'city'), $string100, Zend_Validate_Builder::OPTIONAL);
// Assume $states is a valid array of US states
$validate->addValidator('state', new Zend_Validate_InArray($states), Zend_Validate_Builder::OPTIONAL);
// Another custom validator for Zip codes
$validate->addValidator('zip', new My_Zipcode_Valiadator, Zend_Validate_Builder::OPTIONAL);
{code}
Here, the OPTIONAL flag is passed to all the validators after the AllOrNone validator. This is so those validators don't fail the field in the case when the field is omitted (the fields are still opitonal; albeit _conditionally_ optional).
||UC-06||
Here are some examples that demonstrate some of the neat things that can be done with custom validators that act as Decorators for other valiators. I may add some of these to a separate proposal for additional validators. Keep in mind that a Zend_Validate_Builder instance counts as a validator that can be decorated; if you're creative, you can probably come up with some really cool things to do with this.
*Zend_Validate_Array*
Most validators take a scalar value to {{isValid()}}, and perform checks on that. {{Zend_Validate_Array}} takes another validator passed to the constructor, and an array value to {{isValid()}}. It will iterate over all the elements of the array, performing the given validator on each one. Obviously, you could nest these as much as you needed to, provided that you know the structure of the input array ahead of time.
{code}
// Suppose the 'selected' field is an array of IDs, which were checkboxes in the UI. The user
// can select any number of them. We just want to make sure they're all int values, and haven't
// been tampered with.
$validate = new Zend_Validate_Builder;
$validate->addValidator('selected', new Zend_Validate_Array(new Zend_Validate_Int));
if ($validate->isValid($post)) {
$this->deleteSelected($post);
}
{code}
*Zend_Validate_Switch*
Acts like a data-driven {{switch}} statement. The constructor takes an associative array of validator instances. The field value passed to its {{isValid()}} method is used as the key to look up which validator to run in the array passed to the constructor. This way you can attach different validations to fields based on what the user selects at runtime.
{code}
// Say you have a search form with three mutually-exclusive search options (represented by radio
// buttons, for example): search by Item Id, Title, or Publish Date. You only want to validate
// the respective search boxes according to the type of search they selected. This also uses nested
// Zend_Validate_Builder instances.
// Remember, you could add a whole bunch of validators to each field, if needed
$valId = new Zend_Validate_Builder(array('searchId' => $post['searchId']));
$valId->addValidator('searchId', new Zend_Validate_Int);
$valTitle = new Zend_Validate_Builder(array('searchTitle' => $post['searchTitle']));
$valTitle->addValidator('searchTitle', new Zend_Validate_StringLength(255));
$valDate = new Zend_Validate_Builder(array('searchDate' => $post['searchDate']));
$valDate->addValidator('searchDate', new Zend_Validate_Date);
// Set up our array of validators
$valArray = array(
'id' => $valId,
'title' => $valTitle,
'date' => $valDate
);
$valdiate = new Zend_Validate_Builder;
$validate->addValidator('searchType', new Zend_Validate_InArray(array('id', 'title', 'date')));
$validate->addValidator('searchType', new Zend_Validate_Switch($valArray));
if ($validate->isValid($post)) {
$this->doSearch($post);
}
{code}
*Zend_Validate_AtLeastNofM* and *Zend_Validate_AtMostNofM*
These two are complements of each other, and do basically the same thing. Their constructors take three arguments: a threshold number, a total count, and a validator instance. Basically, they determine whether at least, or at most, _n_ fields of the _m_ total pass the given validator. It's easier to understand by seeing it:
{code}
// This example is pretty contrived, but bear with me. Assume there are seven fields. The user is
// required to choose at least any three of them, but they can choose no more than five.
$isInt = new Zend_Validate_Int;
$fields = array('field1', ..., 'field7');
$validate = new Zend_Validate_Builder;
$validate->addValidator($fields, new Zend_Validate_AtLeastNofM(3, 7, $isInt));
$validate->addValidator($fields, new Zend_Validate_AtMostNofM(5, 7, $isInt));
if ($validate->isValid($post)) {
$this->saveData($post);
}
{code}
Granted, it's hard to come up with a real-world use-case for this, but it's a good example of the creative things you can do. Also remember that you don't have to always use these two together as I have here.
||UC-07||
I used to build forms that mimiced my table structure, with the ability to edit multiple records for multiple tables in one form. In this example, assume we want to validate a CRUD form for a simple contact table, but the user can add multiple contacts on the form (maybe with the help of some Javascript like WForms). The form fields are laid out in a three-dimensional array, where the first key is the table name, the second key is the row number, and the third key is the field name. It would result in post data that looks something like this:
{code}
$post = array(
'contacts' => array(
0 => array(
'name' => 'Billy Bob',
'phone_no' => '555-1212',
'email' => 'billy@bob.com',
'notes' => 'Owner of Billy Bob\'s Widgets',
),
),
);
{code}
Assume that the user actually entered several contacts, so the 'contacts' array would have several sub-arrays, one for each record, just like a result set.
Here's how to set up a filter/validator that would process all of the records:
{code}
$filterContacts = new Zend_Filter_Builder;
$filterContacts->addFilter('*', new Zend_Filter_StringTrim);
$filterContacts->addFilter('*', new Zend_Filter_HtmlEntitiesDecode);
$fitlerContacts->addFilter('*', new Zend_Filter_StripTags);
$fitlerContacts->addFilter('phone_no', new Zend_Filter_Digits);
$filterForm = new Zend_Filter_Builder;
// We don't actually have Zend_Filter_Array yet; it would be needed for this (would work just like Zend_Validate_Array mentioned earlier)
$filterForm->addFilter('contacts', new Zend_Filter_Array($filterContacts));
$post = $filterForm->filter($post);
$valContacts = new Zend_Validate_Builder;
$valContacts->addValidator('name', new Zend_Validate_StringLength(50));
$valContacts->addValidator('phone_no', new Zend_Validate_IsNumeric));
$valContacts->addValidator('email', new Zend_Validate_EmailAddress);
$valContacts->addValidator('notes', new Zend_Validate_StringLength(2000), Zend_Validate_Builder::OPTIONAL);
$valForm = new Zend_Validate_Builder;
$valForm->addValidator('contacts', new Zend_Validate_Array($valContacts));
if ($valForm->isValid($post)) {
$this->saveData($post);
}
{code}
||UC-08||
Up to now, any field that failed a validator's test would result in the validator's built-in error message being reported. This shows how to use the Error Manager to define custom error messages and retrieve raised errors.
The {{Zend_Validate_Interface}} interface defines the methods {{getMessages}} and {{getErrors}}, which when used with the standard Zend_Validate_* classes, return either all the error messages raised by the validator, or the codes for the raised errors, respectively. Since {{Zend_Validate_Builder}} adheres to this interface, it implements these methods, which you can use to retrieve all the error messages that have been raised during the entire validation run. Internally, it delegates this work to the Error Manager; so for retrieving messages, you don't really ever need to directly touch it. You only need to access the Error Manager directly when you want to use it set up custom error messages, or want more control over which errors are returned.
{code}
$zvb = new Zend_Validate_Builder;
// Get an instance of the Error Manager
$em = new Zend_Validate_Builder_ErrorManager;
// This also equally valid; acts kind of like a singleton
// $em = $zvb->getErrorManager();
// The error messages can contain the same substitution parameters allowed by the validators themselves, which is very useful
$em->setMessage('name', 'Zend_Validate_StringLength', 'stringLengthTooShort', 'Name must be less than %min% characters long.');
$em->setMessage('phone_no', 'Zend_Validate_IsNumeric', 'isNumericNot', 'Phone number can only contain numeric digits.');
$em->setMessage('phone_no', 'Zend_Validate_Between', 'notBetween', '"%value%" does not appear to be a valid US phone number.');
// You don't have to override all the possible messages in a validator
$em->setMessage('email', 'Zend_Validate_EmailAddress', 'emailAddressInvalid', 'Please enter a valid email address');
$zvb->addValidator('name', new Zend_Validate_StringLength(100));
$zvb->addValidator('phone_no', new Zend_Validate_IsNumeric);
$zvb->addValidator('phone_no', new Zend_Validate_Between(1000000, 9999999));
$zvb->addValidator('email', new Zend_Validate_EmailAddress);
if (!$zvb->isValid($post)) {
// Get the error messages for all the failed fields
$messages = $zvb->getMessages();
}
{code}
Normally, calling {{getMessages}} on a validator returns a flat array of error messages. But because the Builder manages a whole collection of fields and validators, it can't be completely compatible with the return value of this method. Instead, it returns a three-dimensional array, indexed by field name, validator class name, and failure reason code. It would look something like this:
{code}
$messages = array(
'name' => array(
'Zend_Validate_StringLength' => array(
'stringLengthTooShort' => 'Name must be less than 100 characters long.'
),
),
...
);
{code}
It should be mentioned that the Error Manager provides the methods {{getErrors}} and {{hasErrors}} for more granular access to the set of raised errors.
One key benefit of all this is that it allows you to completely separate your error messages from the code that does validation. You could put all your messages in a separate file, or use a Zend_Config object to load all the error messages for a form at once. Among other things, this should make I18N/L10N for your forms much easier.
Here's one possible way to store errors in an INI file, and set them via Zend_Config. The {{setMessages}} method makes this possible, since it accepts an entire array structure of error messages.
*errors.ini*
{code}
[Errors]
name.Zend_Validate_StringLength.stringLengthTooShort = Name must be less than %min% characters long.
phone_no.Zend_Validate_IsNumeric.isNumericNot = Phone number can only contain numeric digits.
phone_no.Zend_Validate_Between.notBetween = %value% does not appear to be a valid US phone number.
email.Zend_Validate_EmailAddress.emailAddressInvalid = Please enter a valid email address
{code}
*someController.php*
{code}
$zvb = new Zend_Validate_Builder;
$em = $zvb->getErrorManager();
$cfg = new Zend_Config_Ini('/path/to/errors.ini');
$em->setMessages($cfg->Errors->toArray());
{code}
||UC-09||
This use case is more real-world. I'm writing a financial system which consists of individual applications for General Ledger, Accounts Payable, Accounts Receiveable, etc., along with some applications, such as Privilege Licenses, which are designed for local governments. These examples are adapted from some of the Privilege Licenses code (obviously, it's not the actual application code).
This is from a form that allows entry of new License Codes. There are quite a few complex validation requirements on this form. The {{amount}} and {{rate_schedule}} fields are mutually exclusive. There are seven account number fields, where each account number field actually consists of two fields: one for the Entity (Company) and one for the Account Number. Account numbers are only valid by Entity.
The seven account fields have several complex requirements. The Cash and Revenue accounts are always required. The Due To and Due From accounts are required only if the Cash Ent and Revenue Ent are different, or (if given) the Cash Ent and AR Ent are different. If present, the Cash Ent and Due To Ent must match each other, and the AR Ent, Reserve AR Ent, Due From Ent, and Prepaid Ent must all match.
I've omitted all but the {{validate()}} method for the sake of clarity.
{code}
class PL_LicenseCodesController
{
public function validateSave(&$form)
{
$filter = new Zend_Filter_Builder;
$filter->addFilter('*', new Zend_Filter_StringTrim);
$filter->addFilter('*', new Zend_Filter_HtmlSpecialCharsDecode);
$filter->addFilter('*', new Zend_Filter_StripTags);
$form = $filter->filter($form);
$glFields = array_intersect_key($form, array_flip(array(
'cash_ent', 'revenue_ent', 'ar_ent', 'reserve_ar_ent', 'due_to_ent', 'due_from_ent', 'prepaid_ent',
'cash_acct', 'revenue_acct', 'ar_acct', 'reserve_ar_acct', 'due_to_acct', 'due_from_acct', 'prepaid_acct',
)));
$glFilter = new Zend_Filter_Builder;
$glFilter->addFilter('*', new Zend_Filter_Digits);
$glFields = $glFilter->filter($glFields);
// This would also work, but filter() returns the same set of fields passed
// in, so the GL fields wouldn't be isolated into their own array in this
// case:
/*
$glFilter = new Zend_Filter_Builder;
$glFilter->addFilter(array('cash_ent', 'revenue_ent', 'ar_ent', 'reserve_ar_ent', 'due_to_ent', 'due_from_ent', 'prepaid_ent',
'cash_acct', 'revenue_acct', 'ar_acct', 'reserve_ar_acct', 'due_to_acct', 'due_from_acct', 'prepaid_acct',),
new Zend_Filter_Digits);
$form = $glFilter->filter($form);
*/
// Order validators are added to fields is preserved
// Reuse validators
$notEmpty = new Zend_Validate_NotEmpty;
$isNumeric = new Zend_Validate_IsNumeric;
$string50 = new Zend_Validate_StringLength(50);
$string10 = new Zend_Validate_StringLength(10);
$validator = new Zend_Validate_Builder;
$validator->onError(array($this, 'handleError'));
$validator->addValidator('id', $isNumeric, Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('code', $isNumeric);
$validator->addValidator('title', $string50);
$validator->addValidator('general_statute', $string10);
// At least one or the other, but not both
$validator->addValidator(array('amount', 'rate_schedule'),
new Zend_Validate_AtLeastNofM(1, 2, $notEmpty));
$validator->addValidator(array('amount', 'rate_schedule'),
new Zend_Validate_AtMostNofM(1, 2, $notEmpty));
$validator->addValidator('amount', $isNumeric, Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('rate_schedule', new PL_Validate_RateSchedule, Zend_Validate_Builder::OPTIONAL);
// Cash Ent/Account and Revenue Ent/Account are required
$validator->addValidator(array('cash_ent', 'revenue_ent'),
$isNumeric);
$validator->addValidator('cash_acct',
new GL_Validate_AccountNo($form['cash_ent']));
$validator->addValidator('revenue_acct',
new GL_Validate_AccountNo($form['revenue_ent']));;
// The other account fields are optional
$validator->addValidator(array('ar_ent', 'reserve_ar_ent', 'prepaid_ent'),
$isNumeric, Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('ar_acct',
new GL_Validate_AccountNo($form['ar_ent']),
Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('reserve_ar_acct',
new GL_Validate_AccountNo($form['reserve_ar_ent']),
Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('prepaid_acct',
new GL_Validate_AccountNo($form['prepaid_ent']),
Zend_Validate_Builder::OPTIONAL);
$validator->addValidator('due_to_ent',
new Zend_Validate_Equals($form['cash_ent']),
Zend_Validate_Builder::OPTIONAL);
$validator->addValidator(array('ar_ent', 'reserve_ar_ent', 'due_from_ent', 'prepaid_ent'),
new Zend_Validate_Equals($form['revenue_ent']),
Zend_Validate_Builder::OPTIONAL);
// If we have an AR Account, and the Cash Ent is different from the AR Ent,
// then the Due To and Due From Accounts are required. Otherwise, if the
// Cash Ent and Revenue Ent are different, the Due To and Due From Accounts
// are required. Two different conditions that end in the same result.
if ((!empty($form['ar_acct']) && ($form['cash_ent'] != $form['ar_ent'])) ||
$form['cash_ent'] != $form['revenue_ent']) {
$validator->addValidator(array('due_to_ent', 'due_from_ent'),
$isNumeric);
$validator->addValidator('due_to_acct',
new GL_Validate_AccountNo($form['due_to_ent']));
$validator->addValidator('due_from_acct',
new GL_Validate_AccountNo($form['due_from_ent']));
}
if (!$validator->isValid()) {
$this->_forward('editPage');
return;
}
$this->saveData();
$this->_redirect('/pl/license_codes', array('code'=>303));
}
}
{code}
||UC-10||
The fluent interface. This demonstrates the fluent Facade by re-writing UC-07. A lot of the "fluency" of the interface depends quite a bit on the naming of the filter and validator classes.
{code}
$zfb1 = new Zend_Filter_Builder;
$filterContacts = new Zend_Filter_Builder_FluentFacade($zfb1);
$filterContacts->glob('*')->stringTrim()->htmlEntitiesDecode()->stripTags();
$fitlerContacts->phone_no->digits();
$zfb2 = new Zend_Filter_Builder;
$filterForm = new Zend_Filter_Builder_FluentFacade($zfb2);
// We don't actually have Zend_Filter_Array yet; it would be needed for this (would work just like Zend_Validate_Array mentioned earlier)
$filterForm->contacts->array($filterContacts);
$post = $filterForm->filter($post);
$zvb1 = new Zend_Validate_Builder;
$valContacts = new Zend_Validate_Builder_FluentFacade($zvb1);
$valContacts->name->stringLength(50);
$valContacts->phone_no->isNumeric();
$valContacts->email->emailAddress();
$valContacts->notes->stringLength(2000)->optional();
$valForm = new Zend_Validate_Builder;
$valForm->addValidator('contacts', new Zend_Validate_Array($valContacts));
if ($valForm->isValid($post)) {
$this->saveData($post);
}
{code}
||UC-11||
And finally, the big one, re-written with the fluent Facade. A bit less big now.
{code}
class PL_LicenseCodesController
{
public function validateSave(&$form)
{
$zfb = new Zend_Filter_Builder;
$filter = new Zend_Filter_Builder_FluentFacade($zfb);
$filter->glob('*')->stringTrim()->htmlSpecialCharsDecode()->stripTags();
$form = $filter->filter($form);
$glFields = array_intersect_key($form, array_flip(array(
'cash_ent', 'revenue_ent', 'ar_ent', 'reserve_ar_ent', 'due_to_ent', 'due_from_ent', 'prepaid_ent',
'cash_acct', 'revenue_acct', 'ar_acct', 'reserve_ar_acct', 'due_to_acct', 'due_from_acct', 'prepaid_acct',
)));
$zfb2 = new Zend_Filter_Builder;
$glFilter = new Zend_Filter_Builder_FluentFacade($zfb2);
$glFilter->glob('*')->digits();
$glFields = $glFilter->filter($glFields);
// This would also work, but filter() returns the same set of fields passed
// in, so the GL fields wouldn't be isolated into their own array in this
// case:
/*
$zfb2 = new Zend_Filter_Builder;
$glFilter = new Zend_Filter_Builder_FluentFacade($zfb2);
$glFilter->group(array('cash_ent', 'revenue_ent', 'ar_ent', 'reserve_ar_ent', 'due_to_ent', 'due_from_ent', 'prepaid_ent',
'cash_acct', 'revenue_acct', 'ar_acct', 'reserve_ar_acct', 'due_to_acct', 'due_from_acct', 'prepaid_acct'))->digits;
$form = $glFilter->filter($form);
*/
// Order validators are added to fields is preserved
// Future optimization: make fluent Facade internally reuse validators
$options['namespaces'] = array('GL_Validate', 'PL_Validate');
$zvb = new Zend_Validate_Builder;
$validate = new Zend_Validate_Builder_FluentFacade($zvb, $options);
$validate->id->isNumeric()->optional();
$validate->code->isNumeric();
$validate->title->stringLength(50);
$validate->general_statute->stringLength(10);
// At least one or the other, but not both
$validate->group(array('amount', 'rate_schedule'))
->atLeastNofM(1, 2, $validate->notEmpty())
->atMostNofM(1, 2, $validate->notEmpty());
$validate->amount->isNumeric()->optional();
$validate->rate_schedule->rateSchedule()->optional();
// Cash Ent/Account and Revenue Ent/Account are required
$validate->group(array('cash_ent', 'revenue_ent'))->isNumeric();
$validate->cash_acct->accountNo($form['cash_ent']);
$validate->revenue_acct->accountNo($form['revenue_ent']);
// The other account fields are optional
$validate->group(array('ar_ent', 'reserve_ar_ent', 'prepaid_ent'))->isNumeric()->optional();
$validate->ar_acct->accountNo($form['ar_ent'])->optional();
$validate->reserve_ar_acct->accountNo($form['reserve_ar_ent'])->optional();
$validate->prepaid_acct->accountNo($form['prepaid_ent'])->optional();
$validate->due_to_ent->equals($form['cash_ent'])->optional();
$validate->group(array('ar_ent', 'reserve_ar_ent', 'due_from_ent', 'prepaid_ent'))
->equals($form['revenue_ent'])->optional();
// If we have an AR Account, and the Cash Ent is different from the AR Ent,
// then the Due To and Due From Accounts are required. Otherwise, if the
// Cash Ent and Revenue Ent are different, the Due To and Due From Accounts
// are required. Two different conditions that end in the same result.
if ((!empty($form['ar_acct']) && ($form['cash_ent'] != $form['ar_ent'])) ||
$form['cash_ent'] != $form['revenue_ent']) {
$validate->group(array('due_to_ent', 'due_from_ent'))->isNumeric();
$validate->due_to_acct->accountNo($form['due_to_ent']);
$validate->due_from_acct->accountNo($form['due_from_ent']);
}
if (!$validate->isValid()) {
$this->_forward('editPage');
return;
}
$this->saveData();
$this->_redirect('/pl/license_codes', array('code'=>303));
}
}
{code}
{info:title=Namespaces and Class names}
The factories used by the fluent Facades attempt to find classes by searching through an array of namespace prefixes. If you have filter or validator classes with the same "base name" in two different namespaces, only the first one found will be returned. There's no way to pick which namespace to use on a call-by-call basis. You can easily replace the factories with your own in order to implement different instantiation rules. The standard Builder classes are not affected by this problem.
{info}
{zone-data}
{zone-data:skeletons}
*Zend_Validate_Builder*
{code}
class Zend_Validate_Builder implements Zend_Validate_Interface
{
const OPTIONAL = 1;
protected $_validators;
protected $_patterns;
protected $_flags;
protected $_errorManager;
public $dataSet;
public function __construct(array $dataSet = null) { }
public function clear() { }
public function getErrorManager() { }
public function setErrorManager(Zend_Validate_Builder_ErrorManager_Interface $em) { }
public function setOptional($field, $value = true) { }
public function addValidator($field, Zend_Validate_Interface $validator, $fieldFlags = 0) { }
public function isPattern($test) { }
protected function _expandMeta(array $dataSet) { }
public function isValid($dataSet) { }
public function getMessages() { }
public function getErrors() { }
}
{code}
*Zend_Validate_Builder_FluentFacade*
{code}
class Zend_Validate_Builder_FluentFacade implements Zend_Validate_Interface
{
protected $_builder;
protected $_options;
protected $_factory;
public function __construct(Zend_Validate_Builder $builder, array $options = array()) { }
public function getBuilder() { }
public function setBuilder(Zend_Validate_Builder $builder) { }
public function getFactory() { }
public function setFactory(Zend_Validate_Builder_ValidatorFactory_Interface $factory) { }
public function getOptions() { }
public function setOptions(array $options) { }
public function glob($pattern) { }
public function group() { }
public function __get($field) { }
public function __call($name, $args) { }
protected function _getAdder($fields) { }
public function isValid($data) { }
public function getMessages() { }
public function getErrors() { }
}
{code}
*Zend_Validate_Builder_FluentAdder*
{code}
class Zend_Validate_Builder_FluentAdder
{
protected $_builder;
protected $_factory;
protected $_field;
public function __construct(Zend_Validate_Builder $builder, Zend_Validate_Builder_ValidatorFactory_Interface $factory, $field) { }
public function optional($value = true) { }
public function __call($name, $args) { }
}
{code}
*Zend_Validate_Builder_ValidatorFactory*
{code}
class Zend_Validate_Builder_ValidatorFactory implements Zend_Validate_Builder_ValidatorFactory_Interface
{
protected $_options = array();
public function __construct(array $options = array()) { }
public function getOptions() { }
public function setOptions(array $options) { }
public function create($name, $args) { }
public function namespaceLoad($basename, array $namespaces = null, $dirs = null) { }
}
{code}
*Zend_Validate_Builder_ValidatorFactory_Interface*
{code}
interface Zend_Validate_Builder_ValidatorFactory_Interface
{
public function create($name, $args);
}
{code}
*Zend_Validate_Builder_ErrorManager*
{code}
class Zend_Validate_Builder_ErrorManager implements Zend_Validate_Builder_ErrorManager_Interface
{
protected $_messages;
protected $_raised;
public function __construct() { }
public function setMessage($field, $valClass, $reason, $message) { }
public function setMessages(array $errors) { }
public function getMessages($field = null, $valClass = null, $reason = null) { }
public function raise($field, Zend_Validate_Interface $val) { }
public function getErrors($field = null, $valClass = null, $reason = null) { }
public function hasErrors($field = null, $valClass = null, $reason = null) { }
public function clear($field = null, $valClass = null, $reason = null) { }
protected function _createMessage($message, Zend_Validate_Interface $val) { }
}
{code}
*Zend_Validate_Builder_ErrorManager_Interface*
{code}
interface Zend_Validate_Builder_ErrorManager_Interface
{
public function raise($field, Zend_Validate_Interface $val);
public function getErrors($field = null, $valClass = null, $reason = null);
public function clear($field = null, $valClass = null, $reason = null);
}
{code}
*Zend_Filter_Builder*
{code}
class Zend_Filter_Builder implements Zend_Filter_Interface
{
protected $_filters;
protected $_patterns;
public $dataSet;
public function __construct(array $dataSet = null) { }
public function clear() { }
public function addFilter($field, Zend_Filter_Interface $filter) { }
public function isPattern($test) { }
protected function _expandMeta(array $dataSet) { }
public function filter($dataSet) { }
}
{code}
*Zend_Filter_Builder_FluentFacade*
{code}
class Zend_Filter_Builder_FluentFacade implements Zend_Filter_Interface
{
protected $_builder;
protected $_options;
protected $_factory;
public function __construct(Zend_Filter_Builder $builder, array $options = array()) { }
public function getBuilder() { }
public function setBuilder(Zend_Filter_Builder $builder) { }
public function getFactory() { }
public function setFactory(Zend_Filter_Builder_FilterFactory_Interface $factory) { }
public function getOptions() { }
public function setOptions(array $options) { }
public function glob($pattern) { }
public function group() { }
public function __get($field) { }
public function __call($name, $args) { }
protected function _getAdder($fields) { }
public function filter($data) { }
}
{code}
*Zend_Filter_Builder_FluentAdder*
{code}
class Zend_Filter_Builder_FluentAdder
{
protected $_builder;
protected $_factory;
protected $_field;
public function __construct(Zend_Filter_Builder $builder, Zend_Filter_Builder_FilterFactory_Interface $factory, $field) { }
public function __call($name, $args) { }
}
{code}
*Zend_Filter_Builder_FilterFactory*
{code}
class Zend_Filter_Builder_FilterFactory implements Zend_Filter_Builder_FilterFactory_Interface
{
protected $_options = array();
public function __construct(array $options = array()) { }
public function getOptions() { }
public function setOptions(array $options) { }
public function create($name, $args) { }
public function namespaceLoad($basename, array $namespaces = null, $dirs = null) { }
}
{code}
*Zend_Filter_Builder_FilterFactory_Interface*
{code}
interface Zend_Filter_Builder_FilterFactory_Interface
{
public function create($name, $args);
}
{code}
{info:title=Get the Code!}
The full implementation of these classes can be checked out from the Zend Laboratory SVN repository: http://framework.zend.com/svn/laboratory. The source code is in the {{library/Zend/Filter}} and {{library/Zend/Validate}} directories. The unit tests are in {{tests/Zend/Filter}} and {{tests/Zend/Validate}}.
{info}
{zone-data}
{zone-template-instance}