package HTML::FormFu::Constraint; use strict; use base 'HTML::FormFu::Processor'; use Class::C3; use HTML::FormFu::Exception::Constraint; use Scalar::Util qw/ blessed /; use Carp qw/ croak /; __PACKAGE__->mk_accessors(qw/ not force_errors when /); sub process { my ( $self, $params ) = @_; my $value = $self->get_nested_hash_value( $params, $self->nested_name ); my @errors; # check when condition return unless $self->_process_when($params); if ( ref $value eq 'ARRAY' ) { push @errors, eval { $self->constrain_values( $value, $params ); }; if ($@) { push @errors, $self->mk_errors( { pass => 0, message => $@, } ); } } else { my $ok = eval { $self->constrain_value( $value, $params ); }; push @errors, $self->mk_errors( { pass => ( $@ || !$ok ) ? 0 : 1, message => $@, } ); } return @errors; } sub constrain_values { my ( $self, $values, $params ) = @_; my @errors; for my $value (@$values) { my $ok = eval { $self->constrain_value( $value, $params ); }; push @errors, $self->mk_errors( { pass => ( $@ || !$ok ) ? 0 : 1, message => $@, } ); } return @errors; } sub constrain_value { croak "constrain_value() should be overridden"; } sub mk_errors { my ( $self, $args ) = @_; my $pass = $args->{pass}; my $message = $args->{message}; my @errors; my $force = $self->force_errors || $self->parent->force_errors; if ( !$pass || $force ) { my $error = $self->mk_error($message); $error->forced(1) if $pass; push @errors, $error; } return @errors; } sub mk_error { my ( $self, $err ) = @_; if ( !blessed $err || !$err->isa('HTML::FormFu::Exception::Constraint') ) { $err = HTML::FormFu::Exception::Constraint->new; } return $err; } sub _process_when { my ( $self, $params ) = @_; # returns 1 if when condition is fullfilled or not defined # returns 0 if when condition is defined and not fullfilled # If it's a callback, return callback's return value (so when # condition is met if callback returns a true value) # get when condition my $when = $self->when; return 1 if !defined $when; # check type of 'when' croak "Parameter 'when' is not a hash ref" if ref $when ne 'HASH'; # field or callback must be defined my $when_field = $when->{field}; my $when_callback = $when->{callback}; croak "Parameter 'field' or 'callback' is not defined" if !defined $when_field && !defined $when_callback; # Callback will be the preferred thing if ($when_callback) { no strict 'refs'; return $when_callback->($params); } # nothing to constrain if field doesn't exist my $when_field_value = $params->{$when_field}; return 0 if !defined $when_field_value; # a compare value must be defined my @values; my $compare_value = $when->{value}; push @values, $compare_value if defined $compare_value; my $compare_values = $when->{values}; push @values, @$compare_values if ref $compare_values eq 'ARRAY'; croak "Parameter 'value' or 'values' are not defined" unless @values; # determine if condition is fullfilled my $fullfilled = grep { $when_field_value eq $_ } @values; # invert when condition if asked for $fullfilled = $when->{not} ? !$fullfilled : $fullfilled; return $fullfilled; } 1; __END__ =head1 NAME HTML::FormFu::Constraint - Constrain User Input =head1 SYNOPSIS --- elements: - type: Text name: foo constraints: - type: Length min: 8 when: field: bar values: [ 1, 3, 5 ] - type: Text name: bar constraints: - Integer - Required constraints: - SingleValue =head1 DESCRIPTION User input is processed in the following order: =over =item L =item L =item L =item L =item L =back See L for further details. L can be called on any L, L (includes fieldsets) or L. If called on a field element, no C argument should be passed. If called on a L or L, if no C argument is provided, a new constraint is created for and added to every field on that form or block. See L for further details. =head1 METHODS =head2 type Returns the C argument originally used to create the constraint. =head2 not If true, inverts the results of the constraint - such that input that would otherwise fail will pass, and vise-versa. This value is ignored by some constraints - see the documentation for individual constraints for details. =head2 message Arguments: $string Set the message which will be displayed if the constraint fails. =head2 message_xml Arguments: $string Variant of L which ensures the value won't be XML-escaped. =head2 message_loc Arguments: $string Variant of L which uses L to create the message. =head2 localise_args Provide arguments that should be passed to L to replace C<[_1]>, C<[_2]>, etc. in the localized string. =head2 force_errors See L for details. =head2 parent Returns the L object that the constraint is associated with. =head2 form Returns the L object that the constraint's field is attached to. =head2 name Shorthand for C<< $constraint->parent->name >> =head2 when Defines a condition for the constraint. Only when the condition is fullfilled the constraint will be applied. This method expects a hashref with the following keys: field: name of form field that shall be compared value: expected value in the form field 'field' values: Array of multiple values, one must match to fullfill the condition not: inverse the when condition - value(s) must not match callback: a callback can be supplied to perform complex checks. An hashref of all parameters is passed to the callback sub. In this case all other keys are ignored, including not. You need to return a true value for the constraint to be applied or a false value to not apply it. =head1 CORE CONSTRAINTS =over =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =item L =back =head1 AUTHOR Carl Franks, C Based on the original source code of L, by Sebastian Riedel, C. =head1 LICENSE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.