package HTML::FormFu::Constraint::DependOn;
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 = ref $others ? @{$others} : ($others);
my @failed;
my $value = $self->get_nested_hash_value( $params, $self->nested_name );
return if !$self->constrain_value($value);
for my $name (@names) {
my $value = $self->get_nested_hash_value( $params, $name );
my $ok = 0;
if ( ref $value eq 'ARRAY' ) {
my @err = eval { $self->constrain_values( $value, $params ); };
$ok = 1 if !@err && !$@;
}
else {
$ok = eval { $self->constrain_value($value); };
$ok = 0 if $@;
}
push @failed, $name
if !$ok;
}
return $self->mk_errors( {
pass => @failed ? 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::DependOn - Multi-field Dependency Constraint
=head1 SYNOPSIS
type: DependOn
name: foo
others: bar
=head1 DESCRIPTION
If a value is submitted for the field this constraint is attached to, then a
value must also be submitted for all fields named in L.
By default, if any of the named fields in L are missing, an error
will be attached to each missing field. 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.