File Coverage

blib/lib/Net/DRI/DRD/ICMRegistry.pm
Criterion Covered Total %
statement 22 27 81.4
branch 1 2 50.0
condition n/a
subroutine 8 11 72.7
pod 4 7 57.1
total 35 47 74.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, ICMRegistry (.XXX) policies
2             ##
3             ## Copyright (c) 2013 Patrick Mevzek . All rights reserved.
4             ## (c) 2013 Michael Holloway . All rights reserved.
5             ##
6             ## This file is part of Net::DRI
7             ##
8             ## Net::DRI is free software; you can redistribute it and/or modify
9             ## it under the terms of the GNU General Public License as published by
10             ## the Free Software Foundation; either version 2 of the License, or
11             ## (at your option) any later version.
12             ##
13             ## See the LICENSE file that comes with this distribution for more details.
14             ####################################################################################################
15              
16             package Net::DRI::DRD::ICMRegistry;
17              
18 2     2   1183 use strict;
  2         2  
  2         48  
19 2     2   7 use warnings;
  2         3  
  2         41  
20              
21 2     2   7 use base qw/Net::DRI::DRD/;
  2         2  
  2         558  
22              
23 2     2   10 use DateTime::Duration;
  2         2  
  2         373  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::DRD::ICMRegistry - ICMRegistry (.XXX) policies for Net::DRI
30              
31             =head1 DESCRIPTION
32              
33             Driver for XXX EPP
34              
35             Additional domain extension 'association' for Association Membership details
36              
37             $dri->domain_create('domain.xxx', { .... association => {id => 'CONT', pw =>'password'} });
38              
39             =head1 SUPPORT
40              
41             For now, support questions should be sent to:
42              
43             Enetdri@dotandco.comE
44              
45             Please also see the SUPPORT file in the distribution.
46              
47             =head1 SEE ALSO
48              
49             Ehttp://www.dotandco.com/services/software/Net-DRI/E
50              
51             =head1 AUTHOR
52              
53             Michael Holloway, Emichael@thedarkwinter.comE
54              
55             =head1 COPYRIGHT
56             Copyright (c) 2013 Patrick Mevzek .
57             (c) 2013 Michael Holloway .
58             All rights reserved.
59              
60             This program is free software; you can redistribute it and/or modify
61             it under the terms of the GNU General Public License as published by
62             the Free Software Foundation; either version 2 of the License, or
63             (at your option) any later version.
64              
65             See the LICENSE file that comes with this distribution for more details.
66              
67             =cut
68              
69             ####################################################################################################
70              
71             sub new
72             {
73 1     1 0 2 my $class=shift;
74 1         5 my $self=$class->SUPER::new(@_);
75 1         4 $self->{info}->{host_as_attr}=0;
76 1         1 $self->{info}->{contact_i18n}=2; ## INT only
77 1         2 $self->{info}->{check_limit}=38; ## Upper limit computed to that XML stream length is < 4096 bytes
78 1         2 return $self;
79             }
80              
81 0     0 1 0 sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0         0  
82 1     1 1 2 sub name { return 'ICMRegistry'; }
83 1     1 1 3 sub tlds { return ('xxx'); }
84 0     0 1 0 sub object_types { return ('domain','contact','ns'); }
85 0     0 0 0 sub profile_types { return qw/epp/; }
86              
87             sub transport_protocol_default
88             {
89 1     1 0 38 my ($self,$type)=@_;
90              
91 1 50       5 return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::ICMRegistry',{}) if $type eq 'epp';
92             ## return ('Net::DRI::Transport::Socket',{remote_host=>'whois.nic.xxx'},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois';
93 0           return;
94             }
95              
96             ####################################################################################################
97              
98             1;