File Coverage

blib/lib/Net/DRI/Protocol/Whois/Domain/TRAVEL.pm
Criterion Covered Total %
statement 15 61 24.5
branch 0 10 0.0
condition n/a
subroutine 5 11 45.4
pod 0 6 0.0
total 20 88 22.7


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Whois commands for .TRAVEL (RFC3912)
2             ##
3             ## Copyright (c) 2008,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::TRAVEL;
16              
17 1     1   857 use strict;
  1         3  
  1         39  
18 1     1   7 use warnings;
  1         2  
  1         50  
19              
20 1     1   8 use Net::DRI::Exception;
  1         3  
  1         27  
21 1     1   4 use Net::DRI::Util;
  1         2  
  1         16  
22 1     1   4 use Net::DRI::Protocol::Whois::Domain::common;
  1         1  
  1         601  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Protocol::Whois::Domain::TRAVEL - .TRAVEL 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) 2008,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           Net::DRI::Protocol::Whois::Domain::common::epp_parse_status($po,$domain,$rr,$rinfo);
98 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_contacts($po,$domain,$rr,$rinfo,{registrant => 'Registrant',admin => 'Administrative Contact', billing => 'Billing Contact', tech => 'Technical Contact'});
99 0           Net::DRI::Protocol::Whois::Domain::common::epp_parse_ns($po,$domain,$rr,$rinfo);
100 0           return;
101             }
102              
103             sub parse_domain
104             {
105 0     0 0   my ($po,$rr,$rd,$rinfo)=@_;
106 0           my ($dom,$e);
107 0 0         if (exists($rr->{'Domain Name'}))
108             {
109 0           $e=1;
110 0           $dom=lc($rr->{'Domain Name'}->[0]);
111 0           $rinfo->{domain}->{$dom}->{roid}=$rr->{'Domain ID'}->[0];
112             } else
113             {
114 0           $e=0;
115 0           ($dom)=grep { m/^Not found: domain (\S+)\s*$/ } @$rd;
  0            
116 0           $dom=~s/domain (\S+)\s*$/$1/;
117 0           $dom=lc($dom);
118             }
119 0           return ($dom,$e);
120             }
121              
122             sub parse_registrars
123             {
124 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
125              
126 0           $rinfo->{domain}->{$domain}->{clName}=$rr->{'Sponsoring Registrar'}->[0];
127 0 0         $rinfo->{domain}->{$domain}->{clID}=$rr->{'Sponsoring Registrar IANA ID'}->[0] if exists($rr->{'Sponsoring Registrar IANA ID'});
128 0           $rinfo->{domain}->{$domain}->{crName}=$rr->{'Created by Registrar'}->[0];
129 0           $rinfo->{domain}->{$domain}->{upName}=$rr->{'Last Updated by Registrar'}->[0];
130 0           return;
131             }
132              
133             sub parse_dates
134             {
135 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
136 0           my $strp=$po->build_strptime_parser(pattern => '%a %b %d %T GMT %Y', locale => 'en_US', time_zone => 'UTC');
137 0           $rinfo->{domain}->{$domain}->{crDate}=$strp->parse_datetime($rr->{'Domain Registration Date'}->[0]);
138 0           $rinfo->{domain}->{$domain}->{exDate}=$strp->parse_datetime($rr->{'Domain Expiration Date'}->[0]);
139 0           $rinfo->{domain}->{$domain}->{upDate}=$strp->parse_datetime($rr->{'Domain Last Updated Date'}->[0]);
140 0           return;
141             }
142              
143             ####################################################################################################
144             1;