File Coverage

blib/lib/Net/DRI/Protocol/OVH/WS/Domain.pm
Criterion Covered Total %
statement 12 76 15.7
branch 0 34 0.0
condition 0 6 0.0
subroutine 4 11 36.3
pod 0 7 0.0
total 16 134 11.9


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, OVH Web Services Domain commands
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::OVH::WS::Domain;
16              
17 1     1   630 use strict;
  1         2  
  1         22  
18 1     1   3 use warnings;
  1         2  
  1         17  
19              
20 1     1   4 use Net::DRI::Exception;
  1         1  
  1         18  
21 1     1   3 use Net::DRI::Util;
  1         2  
  1         620  
22              
23             =pod
24              
25             =head1 NAME
26              
27             Net::DRI::Protocol::OVH::WS::Domain - OVH Web Services Domain commands for Net::DRI
28              
29             =head1 DESCRIPTION
30              
31             Please see the README file for details.
32              
33             =head1 SUPPORT
34              
35             For now, support questions should be sent to:
36              
37             Enetdri@dotandco.comE
38              
39             Please also see the SUPPORT file in the distribution.
40              
41             =head1 SEE ALSO
42              
43             Ehttp://www.dotandco.com/services/software/Net-DRI/E
44              
45             =head1 AUTHOR
46              
47             Patrick Mevzek, Enetdri@dotandco.comE
48              
49             =head1 COPYRIGHT
50              
51             Copyright (c) 2008,2009,2013 Patrick Mevzek .
52             All rights reserved.
53              
54             This program is free software; you can redistribute it and/or modify
55             it under the terms of the GNU General Public License as published by
56             the Free Software Foundation; either version 2 of the License, or
57             (at your option) any later version.
58              
59             See the LICENSE file that comes with this distribution for more details.
60              
61             =cut
62              
63             ####################################################################################################
64              
65             sub register_commands
66             {
67 0     0 0   my ($class,$version)=@_;
68 0           my %tmp=(
69             info => [\&info, \&info_parse ],
70             check => [\&check, \&check_parse ],
71             );
72              
73 0           return { 'domain' => \%tmp };
74             }
75              
76             sub parse_ArrayOfNsStruct
77             {
78 0     0 0   my ($po,$r)=@_;
79 0 0         Net::DRI::Exception->die(1,'protocol/ovh/ws',1,'Unexpected content for dns: '.$r) unless (ref($r) eq 'MyArrayOfNsStructType');
80 0           my $h=$po->create_local_object('hosts');
81 0           foreach my $ns (@$r)
82             {
83 0 0         Net::DRI::Exception->die(1,'protocol/ovh/ws',1,'Unexpected content for ArrayOfNsStruct member: '.$ns) unless (ref($ns) eq 'nsStruct');
84 0           my $name=$ns->{name};
85 0           my $ip=$ns->{ip}; ## how are multiple IPs handled ?
86 0 0         $h->add($name,defined($ip)? [$ip] : undef);
87             }
88 0           return $h;
89             }
90              
91             sub build_msg
92             {
93 0     0 0   my ($msg,$command,$domain)=@_;
94 0 0 0       Net::DRI::Exception->die(1,'protocol/ovh/ws',2,'Domain name needed') unless defined($domain) && $domain;
95 0 0         Net::DRI::Exception->die(1,'protocol/ovh/ws',10,'Invalid domain name') unless Net::DRI::Util::is_hostname($domain);
96              
97 0 0         $msg->method($command) if defined($command);
98 0           return;
99             }
100              
101             sub info
102             {
103 0     0 0   my ($po,$domain)=@_;
104 0           my $msg=$po->message();
105 0           build_msg($msg,'domainInfo',$domain);
106 0           $msg->params([$domain]);
107 0           return;
108             }
109              
110             sub info_parse
111             {
112 0     0 0   my ($po,$otype,$oaction,$oname,$rinfo)=@_;
113 0           my $mes=$po->message();
114 0 0         return unless $mes->is_success();
115              
116 0           my $r=$mes->result();
117 0 0         Net::DRI::Exception->die(1,'protocol/ovh/ws',1,'Unexpected reply for domain_info: '.$r) unless (ref($r) eq 'domainInfoReturn');
118              
119 0           my %r=%$r;
120 0           $oname=lc($r->{domain});
121 0           $rinfo->{domain}->{$oname}->{action}='info';
122 0           $rinfo->{domain}->{$oname}->{exist}=1;
123 0           my %d=(creation => 'crDate', modification => 'upDate', expiration => 'exDate');
124 0           while (my ($k,$v)=each(%d))
125             {
126 0 0         next unless exists($r{$k});
127 0           $rinfo->{domain}->{$oname}->{$v}=$po->parse_iso8601($r{$k});
128             }
129 0           my %c=(nicowner => 'registrant', nicadmin => 'admin', nictech => 'tech', nicbilling => 'billing');
130 0           my $cs=$po->create_local_object('contactset');
131 0           while (my ($k,$v)=each(%c))
132             {
133 0 0         next unless exists($r{$k});
134 0           my $c=$po->create_local_object('contact')->srid($r{$k});
135 0           $cs->add($c,$v);
136             }
137 0           $rinfo->{domain}->{$oname}->{contact}=$cs;
138              
139             ## From WSDL file: the authinfo if the domain is unlocked
140 0 0         if (exists($r{authinfo}))
141             {
142 0           $rinfo->{domain}->{$oname}->{auth}={pw => $r{authinfo}};
143 0           $rinfo->{domain}->{$oname}->{status}=$po->create_local_object('status')->add('ok');
144             } else
145             {
146 0           $rinfo->{domain}->{$oname}->{status}=$po->create_local_object('status')->add('clientLock'); ## ? ##
147             }
148 0 0         $rinfo->{domain}->{$oname}->{ns}=parse_ArrayOfNsStruct($po,$r{dns}) if exists($r{dns});
149 0           return;
150             }
151              
152             sub check
153             {
154 0     0 0   my ($po,$domain)=@_;
155 0           my $msg=$po->message();
156 0           build_msg($msg,'domainCheck',$domain);
157 0           $msg->params([$domain]);
158 0           return;
159             }
160              
161             sub check_parse
162             {
163 0     0 0   my ($po,$otype,$oaction,$oname,$rinfo)=@_;
164 0           my $mes=$po->message();
165 0 0         return unless $mes->is_success();
166              
167 0           my $r=$mes->result();
168 0 0         Net::DRI::Exception->die(1,'protocol/ovh/ws',1,'Unexpected reply for domain_check: '.$r) unless (ref($r) eq 'MyArrayOfDomainCheckStructType');
169              
170 0 0         my @r=grep { exists $_->{predicate} && $_->{predicate} eq 'is_available' } @$r; ## also: is_transferable, is_renewable
  0            
171 0           $rinfo->{domain}->{$oname}->{action}='check';
172 0 0 0       $rinfo->{domain}->{$oname}->{exist}=(@r==1 && $r[0]->{value}==1)? 0 : 1;
173 0 0         $rinfo->{domain}->{$oname}->{exist_reason}=$r[0]->{reason} if @r==1;
174 0           return;
175             }
176              
177             ####################################################################################################
178             1;