File Coverage

blib/lib/Net/DRI/Protocol/Whois/Domain/AERO.pm
Criterion Covered Total %
statement 18 54 33.3
branch 0 8 0.0
condition n/a
subroutine 6 10 60.0
pod 0 4 0.0
total 24 76 31.5


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Whois commands for .AERO (RFC3912)
2             ##
3             ## Copyright (c) 2007,2009,2013 Patrick Mevzek . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             ####################################################################################################
14              
15             package Net::DRI::Protocol::Whois::Domain::AERO;
16              
17 1     1   791 use strict;
  1         2  
  1         27  
18 1     1   4 use warnings;
  1         1  
  1         20  
19              
20 1     1   4 use Net::DRI::Exception;
  1         1  
  1         23  
21 1     1   3 use Net::DRI::Util;
  1         1  
  1         16  
22 1     1   6 use Net::DRI::Protocol::Whois::Domain::common;
  1         2  
  1         20  
23 1     1   3 use Net::DRI::Data::Contact::AERO;
  1         3  
  1         17  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::Protocol::Whois::Domain::AERO - .AERO Whois commands (RFC3912) for Net::DRI
30              
31             =head1 DESCRIPTION
32              
33             Please see the README file for details.
34              
35             =head1 SUPPORT
36              
37             For now, support questions should be sent to:
38              
39             Enetdri@dotandco.comE
40              
41             Please also see the SUPPORT file in the distribution.
42              
43             =head1 SEE ALSO
44              
45             Ehttp://www.dotandco.com/services/software/Net-DRI/E
46              
47             =head1 AUTHOR
48              
49             Patrick Mevzek, Enetdri@dotandco.comE
50              
51             =head1 COPYRIGHT
52              
53             Copyright (c) 2007,2009,2013 Patrick Mevzek .
54             All rights reserved.
55              
56             This program is free software; you can redistribute it and/or modify
57             it under the terms of the GNU General Public License as published by
58             the Free Software Foundation; either version 2 of the License, or
59             (at your option) any later version.
60              
61             See the LICENSE file that comes with this distribution for more details.
62              
63             =cut
64              
65             ####################################################################################################
66              
67             sub register_commands
68             {
69 0     0 0   my ($class,$version)=@_;
70 0           return { 'domain' => { info => [ \&info, \&info_parse ] } };
71             }
72              
73             sub info
74             {
75 0     0 0   my ($po,$domain,$rd)=@_;
76 0           my $mes=$po->message();
77 0 0         Net::DRI::Exception->die(1,'protocol/whois',10,'Invalid domain name: '.$domain) unless Net::DRI::Util::is_hostname($domain);
78 0           $mes->command('domain '.lc($domain));
79 0           return;
80             }
81              
82             sub info_parse
83             {
84 0     0 0   my ($po,$otype,$oaction,$oname,$rinfo)=@_;
85 0           my $mes=$po->message();
86 0 0         return unless $mes->is_success();
87              
88 0           my $rr=$mes->response();
89 0           my $rd=$mes->response_raw();
90 0           my ($domain,$exist)=parse_domain($po,$rr,$rd,$rinfo);
91 0           $rinfo->{domain}->{$domain}->{exist}=$exist;
92 0           $rinfo->{domain}->{$domain}->{action}='info';
93              
94 0 0         return unless $exist;
95              
96 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_registrars($po,$domain,$rr,$rinfo);
97 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_dates($po,$domain,$rr,$rinfo);
98 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_status($po,$domain,$rr,$rinfo);
99 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_contacts($po,$domain,$rr,$rinfo,{registrant => 'Registrant',admin => 'Admin', billing => 'Billing', tech => 'Tech'});
100 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_ns($po,$domain,$rr,$rinfo);
101 0           return;
102             }
103              
104             sub parse_domain
105             {
106 0     0 0   my ($po,$rr,$rd,$rinfo)=@_;
107 0           my ($dom,$e);
108 0 0         if (exists($rr->{'Domain Name'}))
109             {
110 0           $e=1;
111 0           $dom=lc($rr->{'Domain Name'}->[0]);
112 0           $rinfo->{domain}->{$dom}->{ens}={auth_id => $rr->{'ENS_AuthId'}->[0] };
113 0           $rinfo->{domain}->{$dom}->{clWebsite}=$rr->{'Maintainer'}->[0] ;
114 0           $rinfo->{domain}->{$dom}->{roid}=$rr->{'Domain ID'}->[0];
115             } else
116             {
117 0           $e=0;
118 0           ($dom)=grep { m/^No match for domain "\S+"\./ } @$rd;
  0            
119 0           $dom=~s/^.+"(\S+)".+$/$1/;
120 0           $dom=lc($dom);
121             }
122 0           return ($dom,$e);
123             }
124              
125             ####################################################################################################
126             1;