File Coverage

blib/lib/Net/DRI/Protocol/Whois/Domain/COM.pm
Criterion Covered Total %
statement 15 67 22.3
branch 0 10 0.0
condition n/a
subroutine 5 13 38.4
pod 0 8 0.0
total 20 98 20.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Whois commands for .COM/.NET (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::COM;
16              
17 1     1   783 use strict;
  1         2  
  1         27  
18 1     1   5 use warnings;
  1         1  
  1         19  
19              
20 1     1   4 use Net::DRI::Exception;
  1         1  
  1         16  
21 1     1   4 use Net::DRI::Util;
  1         1  
  1         35  
22 1     1   6 use Net::DRI::Protocol::EPP::Core::Status;
  1         2  
  1         832  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Protocol::Whois::Domain::COM - .COM/.NET 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           $rinfo->{domain}->{$domain}->{exist}=$exist;
91 0           $rinfo->{domain}->{$domain}->{action}='info';
92              
93 0 0         return unless $exist;
94              
95 0           parse_registrars($po,$domain,$rr,$rinfo);
96 0           parse_dates($po,$domain,$rr,$rinfo);
97 0           parse_status($po,$domain,$rr,$rinfo);
98 0           parse_ns($po,$domain,$rr,$rinfo);
99 0           return;
100             }
101              
102             sub parse_domain
103             {
104 0     0 0   my ($po,$rr,$rd,$rinfo)=@_;
105 0           my ($dom,$e);
106 0 0         if (exists($rr->{'Domain Name'}))
107             {
108 0           $e=1;
109 0           $dom=$rr->{'Domain Name'}->[0];
110             } else
111             {
112 0           $e=0;
113 0           ($dom)=grep { m/^No match for domain "\S+"\./ } @$rd;
  0            
114 0           $dom=~s/^.+"(\S+)".+$/$1/;
115             }
116 0           return (lc($dom),$e);
117             }
118              
119             sub parse_registrars
120             {
121 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
122 0           $rinfo->{domain}->{$domain}->{clName}=$rr->{'Registrar'}->[0];
123 0           $rinfo->{domain}->{$domain}->{clWhois}=$rr->{'Whois Server'}->[0];
124 0           $rinfo->{domain}->{$domain}->{clWebsite}=$rr->{'Referral URL'}->[0];
125 0           return;
126             }
127              
128             sub parse_dates
129             {
130 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
131 0           my $strp=$po->build_strptime_parser(pattern => '%d-%b-%Y', locale => 'en_US', time_zone => 'America/New_York');
132 0           $rinfo->{domain}->{$domain}->{crDate}=$strp->parse_datetime($rr->{'Creation Date'}->[0]);
133 0           $rinfo->{domain}->{$domain}->{upDate}=$strp->parse_datetime($rr->{'Updated Date'}->[0]);
134 0           $rinfo->{domain}->{$domain}->{exDate}=$strp->parse_datetime($rr->{'Expiration Date'}->[0]);
135              
136 0           my ($l)=($rr->{'>>> Last update of whois database'}->[0]=~m/^(.+) <<<$/);
137 0           $strp=$po->build_strptime_parser(pattern => '%a, %d %b %Y %T UTC', locale => 'en_US', time_zone => 'UTC');
138 0           $rinfo->{domain}->{$domain}->{wuDate}=$strp->parse_datetime($l);
139 0           return;
140             }
141              
142             sub parse_status
143             {
144 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
145 0           $rinfo->{domain}->{$domain}->{status}=Net::DRI::Protocol::EPP::Core::Status->new($rr->{'Status'}); #####
146 0           return;
147             }
148              
149             sub parse_ns
150             {
151 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
152 0 0         $rinfo->{domain}->{$domain}->{ns}=$po->create_local_object('hosts')->set(@{$rr->{'Name Server'}}) if exists($rr->{'Name Server'});
  0            
153 0           return;
154             }
155              
156             ####################################################################################################
157             1;