File Coverage

blib/lib/Mail/BIMI/App/Command/checkrecord.pm
Criterion Covered Total %
statement 24 74 32.4
branch 0 16 0.0
condition 0 13 0.0
subroutine 9 14 64.2
pod 5 5 100.0
total 38 122 31.1


line stmt bran cond sub pod time code
1             package Mail::BIMI::App::Command::checkrecord;
2             # ABSTRACT: Validate a given BIMI assertion record
3             our $VERSION = '3.20210512'; # VERSION
4 1     1   1316 use 5.20.0;
  1         3  
5 1     1   27 BEGIN { $ENV{MAIL_BIMI_CACHE_DEFAULT_BACKEND} = 'Null' };
6 1     1   6 use Mail::BIMI::Prelude;
  1         4  
  1         12  
7 1     1   292 use Mail::BIMI::App -command;
  1         3  
  1         8  
8 1     1   299 use Mail::BIMI;
  1         3  
  1         37  
9 1     1   7 use Mail::BIMI::Indicator;
  1         2  
  1         22  
10 1     1   5 use Mail::BIMI::Record;
  1         2  
  1         37  
11 1     1   8 use Mail::DMARC;
  1         2  
  1         61  
12 1     1   9 use Term::ANSIColor qw{ :constants };
  1         6  
  1         1073  
13              
14              
15 0     0 1   sub description { 'Check a given BIMI assertion record' }
16 0     0 1   sub usage_desc { "%c checkrecord %o <RECORD>" }
17              
18             sub opt_spec {
19             return (
20 0     0 1   [ 'profile=s', 'SVG Profile to validate against ('.join('|',@Mail::BIMI::Indicator::VALIDATOR_PROFILES).')' ],
21             [ 'domain=s', 'Optional domain' ],
22             );
23             }
24              
25 0     0 1   sub validate_args($self,$opt,$args) {
  0            
  0            
  0            
  0            
26 0 0         $self->usage_error('No Record specified') if !@$args;
27 0 0         $self->usage_error('Multiple Records specified') if scalar @$args > 1;
28 0 0 0       $self->usage_error('Unknown SVG Profile') if $opt->profile && !grep {;$_ eq $opt->profile} @Mail::BIMI::Indicator::VALIDATOR_PROFILES;
  0            
29             }
30              
31 0     0 1   sub execute($self,$opt,$args) {
  0            
  0            
  0            
  0            
32 0           my $check_record = $args->[0];
33 0   0       my $domain = $opt->domain // '-none-';
34              
35 0           my $dmarc = Mail::DMARC::PurePerl->new;
36 0   0       $dmarc->header_from($opt->domain // 'reject.test.fastmaildmarc.com');
37 0           $dmarc->validate;
38 0           $dmarc->result->result('pass');
39 0 0         my $bimi = Mail::BIMI->new(
    0          
40             dmarc_object => $dmarc,
41             domain => $domain,
42             options => {
43             force_record => $check_record,
44             vmc_no_check_alt => $opt->domain ? 0 : 1,
45             ( $opt->profile ? ( svg_profile => $opt->profile ) : () ),
46             }
47             );
48              
49 0           my $record = $bimi->record;
50             # my $record = Mail::BIMI::Record->new( domain => $domain, selector => $selector );
51 0           say "BIMI domain checker";
52 0           say '';
53 0           say 'Requested:';
54 0           say YELLOW.' Domain '.WHITE.': '.CYAN.$domain.RESET;
55 0           say YELLOW.' Record '.WHITE.': '.CYAN.$check_record.RESET;
56 0           say '';
57 0           $record->app_validate;
58 0 0 0       if ( $record->location && $record->location->indicator ) {
59 0           say '';
60 0           $record->location->indicator->app_validate;
61             }
62 0 0 0       if ( $record->authority && $record->authority->vmc ) {
63 0           say '';
64 0           $record->authority->vmc->app_validate;
65 0 0         if ( $record->authority->vmc->indicator ) {
66 0           say '';
67 0           $record->authority->vmc->indicator->app_validate;
68             }
69             }
70 0           say '';
71              
72 0           say 'An authenticated email with this record would receive the following BIMI results:';
73 0           say '';
74 0           my $result = $bimi->result;
75 0           say "Authentication-Results: authservid.example.com; ".$result->get_authentication_results;
76 0           my $headers = $result->headers;
77 0           foreach my $header ( sort keys $headers->%* ) {
78 0           say "$header: ".$headers->{$header};
79             }
80              
81 0           $bimi->finish;
82             }
83              
84             1;
85              
86             __END__
87              
88             =pod
89              
90             =encoding UTF-8
91              
92             =head1 NAME
93              
94             Mail::BIMI::App::Command::checkrecord - Validate a given BIMI assertion record
95              
96             =head1 VERSION
97              
98             version 3.20210512
99              
100             =head1 DESCRIPTION
101              
102             App::Cmd class implementing the 'mailbimi checkdomain' command
103              
104             =head1 REQUIRES
105              
106             =over 4
107              
108             =item * L<Mail::BIMI|Mail::BIMI>
109              
110             =item * L<Mail::BIMI::App|Mail::BIMI::App>
111              
112             =item * L<Mail::BIMI::Indicator|Mail::BIMI::Indicator>
113              
114             =item * L<Mail::BIMI::Prelude|Mail::BIMI::Prelude>
115              
116             =item * L<Mail::BIMI::Record|Mail::BIMI::Record>
117              
118             =item * L<Mail::DMARC|Mail::DMARC>
119              
120             =item * L<Term::ANSIColor|Term::ANSIColor>
121              
122             =back
123              
124             =head1 AUTHOR
125              
126             Marc Bradshaw <marc@marcbradshaw.net>
127              
128             =head1 COPYRIGHT AND LICENSE
129              
130             This software is copyright (c) 2020 by Marc Bradshaw.
131              
132             This is free software; you can redistribute it and/or modify it under
133             the same terms as the Perl 5 programming language system itself.
134              
135             =cut