package HTML::FormFu::Constraint::AllOrNone; use strict; use base 'HTML::FormFu::Constraint::_others'; sub process { my ( $self, $params ) = @_; # check when condition return unless $self->_process_when($params); my $others = $self->others; return if !defined $others; my @names = ( $self->nested_name ); push @names, ref $others ? @{$others} : $others; my @failed; for my $name (@names) { my $value = $self->get_nested_hash_value( $params, $name ); my $seen = 0; if ( ref $value eq 'ARRAY' ) { my @errors = eval { $self->constrain_values( $value, $params ); }; $seen = 1 if !@errors && !$@; } else { my $ok = eval { $self->constrain_value($value); }; $seen = 1 if $ok && !$@; } push @failed, $name if !$seen; } return $self->mk_errors( { pass => @failed && scalar @failed != scalar @names ? 0 : 1, failed => \@failed, names => \@names, } ); } sub constrain_value { my ( $self, $value ) = @_; return 0 if !defined $value || $value eq ''; return 1; } 1; __END__ =head1 NAME HTML::FormFu::Constraint::AllOrNone - Multi-field All or None Constraint =head1 SYNOPSIS type: AllOrNone name: foo others: [bar, baz] =head1 DESCRIPTION Ensure that either all or none of the named fields are present. By default, if some but not all fields are submitted, errors are attached to those fields which weren't submitted. This behaviour can be changed by setting any of L, L or L. This constraint doesn't honour the C value. =head1 SEE ALSO Is a sub-class of, and inherits methods from L, L L =head1 AUTHOR Carl Franks C =head1 LICENSE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.