File Coverage

blib/lib/Net/DRI/Protocol/Whois/Domain/NAME.pm
Criterion Covered Total %
statement 15 42 35.7
branch 0 10 0.0
condition n/a
subroutine 5 9 55.5
pod 0 4 0.0
total 20 65 30.7


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