File Coverage

blib/lib/Mail/BIMI/App/Command/checkdomain.pm
Criterion Covered Total %
statement 24 74 32.4
branch 0 14 0.0
condition 0 11 0.0
subroutine 9 14 64.2
pod 5 5 100.0
total 38 118 32.2


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