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
|
package HTML::FormFu::Constraint::Repeatable::Any;
use Moose;
extends 'HTML::FormFu::Constraint';
use Scalar::Util qw( reftype );
use Carp qw( croak );
after BUILD => sub {
my $self = shift;
$self->only_on_reps([1]);
return;
};
sub process {
my ( $self, $params ) = @_;
return unless $self->_run_this_rep;
# check when condition
return if !$self->_process_when($params);
my $field = $self->field;
my $repeatable = $field->get_parent({ type => 'Repeatable' });
my $pass;
my $original_name = $field->original_name || '';
my @fields =
grep { $_->get_parent({ type => 'Repeatable' }) == $repeatable }
grep { ( $_->original_name || '' ) eq $original_name }
@{ $repeatable->get_fields };
my $increment_field_names = $repeatable->increment_field_names;
for my $f (@fields) {
my $value;
if ( $increment_field_names ) {
$value = $self->get_nested_hash_value( $params, $f->nested_name );
}
else {
$value = _find_this_field_value( $self, $f, $repeatable, $params );
}
my $ok = eval { $self->constrain_value($value) };
if ( $ok && !$@ ) {
$pass = 1;
last;
}
}
return $self->mk_errors( {
pass => $pass,
} );
}
sub _find_this_field_value {
my ( $self, $field, $repeatable, $params ) = @_;
my $nested_name = $field->nested_name;
my $value = $self->get_nested_hash_value( $params, $nested_name );
my @fields_with_this_name = @{ $repeatable->get_fields({ nested_name => $nested_name }) };
if ( @fields_with_this_name > 1 ) {
my $index;
for ( my $i=0; $i <= $#fields_with_this_name; ++$i ) {
if ( $fields_with_this_name[$i] eq $field ) {
$index = $i;
last;
}
}
croak 'did not find ourself - how can this happen?'
if !defined $index;
if ( reftype($value) eq 'ARRAY' ) {
$value = $value->[$index];
}
elsif ( $index == 0 ) {
# keep $value
}
else {
undef $value;
}
}
return $value;
}
sub constrain_value {
my ( $self, $value ) = @_;
return defined $value && length $value;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
HTML::FormFu::Constraint::Repeatable::Any - Ensure at least 1 of a repeated field is filled-in
=head1 SYNOPSIS
elements:
- type: Repeatable
elements:
- name: foo
constraints:
- type: Repeatable::Any
=head1 DESCRIPTION
Ensure at least 1 of a repeated field is filled-in.
Any error will be attached to the first repetition of the field.
This constraint doesn't honour the C<not()> value.
=head1 SEE ALSO
Is a sub-class of, and inherits methods from 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.
|