File Coverage

blib/lib/Net/DRI/Protocol/Whois/Domain/SE.pm
Criterion Covered Total %
statement 18 91 19.7
branch 0 30 0.0
condition 0 12 0.0
subroutine 6 15 40.0
pod 0 9 0.0
total 24 157 15.2


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Whois commands for .SE (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::SE;
16              
17 1     1   835 use strict;
  1         2  
  1         27  
18 1     1   4 use warnings;
  1         1  
  1         22  
19              
20 1     1   3 use Carp;
  1         1  
  1         58  
21 1     1   5 use Net::DRI::Exception;
  1         1  
  1         17  
22 1     1   3 use Net::DRI::Util;
  1         2  
  1         18  
23 1     1   5 use Net::DRI::Protocol::EPP::Core::Status;
  1         1  
  1         831  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::Protocol::Whois::Domain::SE - .SE 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) 2008,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(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 0         $domain=lc($oname) unless defined($domain);
92 0           $rinfo->{domain}->{$domain}->{exist}=$exist;
93 0           $rinfo->{domain}->{$domain}->{action}='info';
94              
95 0 0         return unless $exist;
96              
97 0           parse_contacts($po,$domain,$rr,$rinfo);
98 0           parse_dates($po,$domain,$rr,$rinfo);
99 0           parse_ns($po,$domain,$rr,$rinfo);
100 0           parse_status($po,$domain,$rr,$rinfo);
101 0           parse_registrars($po,$domain,$rr,$rinfo);
102 0           return;
103             }
104              
105             sub parse_domain
106             {
107 0     0 0   my ($po,$rr,$rd,$rinfo)=@_;
108 0           my ($dom,$e);
109              
110 0 0         if (exists($rr->{'domain'}))
111             {
112 0           $e=1;
113 0           $dom=lc($rr->{'domain'}->[0]);
114             ## what is state ?
115             } else
116             {
117 0           $e=0;
118             }
119 0           return ($dom,$e);
120             }
121              
122             sub parse_contacts
123             {
124 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
125 0           my $cs=$po->create_local_object('contactset');
126 0           my %t=qw/holder registrant admin-c admin tech-c tech billing-c billing/;
127 0           while (my ($s,$type)=each(%t))
128             {
129 0 0 0       next unless (exists($rr->{$s}) && $rr->{$s}->[0] && ($rr->{$s}->[0] ne '-'));
      0        
130 0           my $c=$po->create_local_object('contact');
131 0           $c->srid($rr->{$s}->[0]);
132 0           $cs->add($c,$type);
133             }
134 0           $rinfo->{domain}->{$domain}->{contact}=$cs;
135 0           return;
136             }
137              
138             sub parse_dates
139             {
140 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
141 0           my $strp=$po->build_strptime_parser(pattern => '%Y-%m-%d', time_zone => 'Europe/Stockholm');
142 0           my %t=qw/created crDate modified upDate expires exDate/;
143 0           while (my ($s,$type)=each(%t))
144             {
145 0 0 0       next unless (exists($rr->{$s}) && $rr->{$s}->[0] && ($rr->{$s}->[0] ne '-'));
      0        
146 0           $rinfo->{domain}->{$domain}->{$type}=$strp->parse_datetime($rr->{$s}->[0]);
147             }
148 0           return;
149             }
150              
151             sub parse_ns
152             {
153 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
154 0 0         return unless (exists($rr->{nserver}));
155 0           my $h=$po->create_local_object('hosts');
156 0 0         foreach my $ns (grep { defined($_) && $_ } @{$rr->{nserver}})
  0            
  0            
157             {
158 0           my @w=split(/ /,$ns);
159 0           my $name=shift(@w);
160 0 0         if (@w)
161             {
162 0           $h->add($name,\@w);
163             } else
164             {
165 0           $h->add($name);
166             }
167             }
168 0 0         $rinfo->{domain}->{$domain}->{ns}=$h unless $h->is_empty();
169 0           return;
170             }
171              
172             sub parse_status
173             {
174 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
175 0 0         return unless (exists($rr->{'status'}));
176 0           my @s=@{$rr->{'status'}};
  0            
177 0 0         carp('For '.$domain.' new status found, please report: '.join(' ',@s)) if (grep { $_ ne 'ok' } @s);
  0            
178 0 0         $rinfo->{domain}->{$domain}->{status}=Net::DRI::Protocol::EPP::Core::Status->new(\@s) if @s;
179 0           $rinfo->{domain}->{$domain}->{dnssec}=$rr->{'dnssec'}->[0];
180 0           return;
181             }
182              
183             sub parse_registrars
184             {
185 0     0 0   my ($po,$domain,$rr,$rinfo)=@_;
186 0 0         return unless (exists($rr->{'registrar'}));
187 0           $rinfo->{domain}->{$domain}->{clName}=$rr->{registrar}->[0];
188 0           return;
189             }
190              
191             ####################################################################################################
192             1;