package HTML::FormFu::Constraint::_others;
use strict;
use base 'HTML::FormFu::Constraint';
use Class::C3;
use Storable qw/ dclone /;
__PACKAGE__->mk_accessors(
qw/
others
attach_errors_to_base
attach_errors_to_others
attach_errors_to /
);
sub mk_errors {
my ( $self, $args ) = @_;
my $pass = $args->{pass};
my @failed = $args->{failed} ? @{ $args->{failed} } : ();
my @names = $args->{names} ? @{ $args->{names} } : ();
my $force = $self->force_errors || $self->parent->force_errors;
my @attach;
if ( $self->attach_errors_to ) {
push @attach, @{ $self->attach_errors_to }
if !$pass || $force;
}
elsif ( $self->attach_errors_to_base || $self->attach_errors_to_others ) {
push @attach, $self->nested_name
if $self->attach_errors_to_base
&& ( !$pass || $force );
push @attach, ref $self->others ? @{ $self->others } : $self->others
if $self->attach_errors_to_others
&& ( !$pass || $force );
}
elsif ($force) {
push @attach, @names;
}
elsif ( @failed && !$pass ) {
push @attach, @failed;
}
my @errors;
for my $name (@attach) {
my $field = $self->form->get_field( { nested_name => $name } )
or die "others() field not found: '$name'";
my $error = $self->mk_error;
$error->parent($field);
$error->forced(1)
if ( $pass && $force && grep { $name eq $_ } @names )
|| !grep { $name eq $_ } @failed;
push @errors, $error;
}
return @errors;
}
sub clone {
my $self = shift;
my $clone = $self->next::method(@_);
$clone->others( dclone $self->others )
if ref $self->others;
return $clone;
}
1;
__END__
=head1 NAME
HTML::FormFu::Constraint::_others - Base class for constraints needing others() method
=head1 METHODS
=head2 others
Arguments: \@field_names
=head2 attach_errors_to_base
If true, any error will cause the error message to be associated with the
field the constraint is attached to.
Can be use in conjunction with L.
Is ignored if L is set.
=head2 attach_errors_to_others
If true, any error will cause the error message to be associated with every
field named in L.
Can be use in conjunction with L.
Is ignored if L is set.
=head2 attach_errors_to
Arguments: \@field_names
Any error will cause the error message to be associated with every field
named in L.
Overrides L and L.
=head1 SEE ALSO
Is a sub-class of, and inherits methods from 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.