The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Catmandu::Fix::Condition::marc_any_match;
use Catmandu::Sane;
use Catmandu::Fix::marc_map;
use Catmandu::Fix::Condition::any_match;
use Catmandu::Fix::set_field;
use Catmandu::Fix::remove_field;
use Moo;
use Catmandu::Fix::Has;

our $VERSION = '1.21';

with 'Catmandu::Fix::Condition';

has marc_path  => (fix_arg => 1);
has value      => (fix_arg => 1);

sub emit {
    my ($self,$fixer,$label) = @_;

    my $perl;

    my $tmp_var  = '_tmp_' . int(rand(9999));
    my $marc_map = Catmandu::Fix::marc_map->new($self->marc_path , "$tmp_var.\$append");
    $perl .= $marc_map->emit($fixer,$label);

    my $any_match    = Catmandu::Fix::Condition::any_match->new("$tmp_var.*",$self->value);
    my $remove_field = Catmandu::Fix::remove_field->new($tmp_var);

    my $pass_fixes = $self->pass_fixes;
    my $fail_fixes = $self->fail_fixes;

    $any_match->pass_fixes([ $remove_field , @$pass_fixes ]);
    $any_match->fail_fixes([ $remove_field , @$fail_fixes ]);

    $perl .= $any_match->emit($fixer,$label);

    $perl;
}

=head1 NAME

Catmandu::Fix::Condition::marc_any_match - Test if a MARC (sub)field matches a value

=head1 SYNOPSIS

   # marc_any_match(MARC_PATH,REGEX)

   # Match when 245 contains the value "My funny title"
   if marc_any_match('245','My funny title')
   	add_field('my.funny.title','true')
   end

   # Match when 245a contains the value "My funny title"
   if marc_any_match('245a','My funny title')
   	add_field('my.funny.title','true')
   end

   # Match when at least one 650 field contains digits
   if marc_any_match('650','[0-9]')
     add_field('has_digits','true')
   end

=head1 DESCRIPTION

Evaluate the enclosing fixes only if the MARC (sub)field matches a
regular expression. When the MARC field is a repeated fiels, then at
least one MARC fields should match the regular expression.

=head1 METHODS

=head2 marc_any_match(MARC_PATH, REGEX)

Evaluates to true when at least one MARC_PATH values matches the REGEX, false otherwise.

=head1 SEE ALSO

L<Catmandu::Fix::Condition::marc_all_match>

=cut

1;