1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
use strict;
package HTML::FormFu::Constraint::DependOn;
$HTML::FormFu::Constraint::DependOn::VERSION = '2.07';
# ABSTRACT: Multi-field Dependency Constraint
use Moose;
extends 'HTML::FormFu::Constraint';
with 'HTML::FormFu::Role::Constraint::Others';
use HTML::FormFu::Util qw(
DEBUG_CONSTRAINTS
debug
);
sub process {
my ( $self, $params ) = @_;
# check when condition
if ( !$self->_process_when($params) ) {
DEBUG_CONSTRAINTS && debug('fail when() check - skipping constraint');
return;
}
my $others = $self->others;
if ( !defined $others ) {
DEBUG_CONSTRAINTS && debug('no others() - skipping constraint');
return;
}
my @names = ref $others ? @{$others} : ($others);
my @failed;
my $value = $self->get_nested_hash_value( $params, $self->nested_name );
if ( !$self->constrain_value($value) ) {
DEBUG_CONSTRAINTS && debug('no value - skipping constraint');
return;
}
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 $@;
}
if ( !$ok ) {
push @failed, $name;
}
}
return $self->mk_errors(
{ pass => @failed ? 0 : 1,
failed => \@failed,
names => [ $self->nested_name, @names ],
} );
}
sub constrain_value {
my ( $self, $value ) = @_;
return 0 if !defined $value || $value eq '';
return 1;
}
sub _localize_args {
my ($self) = @_;
return $self->parent->label;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
HTML::FormFu::Constraint::DependOn - Multi-field Dependency Constraint
=head1 VERSION
version 2.07
=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<HTML::FormFu::Role::Constraint::Others/others>.
By default, if any of the named fields in
L<HTML::FormFu::Role::Constraint::Others/others> are missing, an error will be
attached to each missing field. This behaviour can be changed by setting
any of L<HTML::FormFu::Role::Constraint::Others/attach_errors_to_base>,
L<HTML::FormFu::Role::Constraint::Others/attach_errors_to_others> or
L<HTML::FormFu::Role::Constraint::Others/attach_errors_to>.
This constraint doesn't honour the C<not()> value.
=head1 SEE ALSO
Is a sub-class of, and inherits methods from
L<HTML::FormFu::Role::Constraint::Others>, L<HTML::FormFu::Constraint>
L<HTML::FormFu>
=head1 AUTHOR
Carl Franks C<cfranks@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=head1 AUTHOR
Carl Franks <cpan@fireartist.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Carl Franks.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|