File: is_valid_issn.pm

package info (click to toggle)
libcatmandu-identifier-perl 0.15-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 292 kB
  • sloc: perl: 978; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 600 bytes parent folder | download
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
package Catmandu::Fix::Condition::is_valid_issn;

our $VERSION = '0.15';

use Catmandu::Sane;
use Moo;
use Business::ISSN;
use Catmandu::Fix::Has;

has path => (fix_arg => 1);

with 'Catmandu::Fix::Condition::SimpleAllTest';

sub emit_test {
    my ($self, $var, $parser) = @_;
    "(is_value(${var}) && Business::ISSN->new(${var}) && Business::ISSN->new(${var})->is_valid)";
}

=head1 NAME

Catmandu::Fix::Condition::is_valid_issn - condition on validity of issn numbers

=head1 SYNOPSIS

   if is_valid_issn(issn_field)
     ...
   else
     ...
   end

=head1 SEE ALSO

L<Catmandu::Fix>

=cut

1;