File Coverage

blib/lib/Net/DRI/DRD/Afilias.pm
Criterion Covered Total %
statement 22 30 73.3
branch 1 4 25.0
condition n/a
subroutine 8 12 66.6
pod 4 8 50.0
total 35 54 64.8


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Afilias (.INFO) policies
2             ##
3             ## Copyright (c) 2006-2009 Rony Meyer . All rights reserved.
4             ## (c) 2010,2011,2016 Patrick Mevzek . 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::Afilias;
17              
18 2     2   1023 use strict;
  2         3  
  2         44  
19 2     2   6 use warnings;
  2         3  
  2         39  
20              
21 2     2   5 use base qw/Net::DRI::DRD/;
  2         2  
  2         525  
22              
23 2     2   11 use DateTime::Duration;
  2         2  
  2         462  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::DRD::Afilias - Afilias (.INFO) policies 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) 2006-2009 Rony Meyer .
54             (c) 2010,2011,2016 Patrick Mevzek .
55             All rights reserved.
56              
57             This program is free software; you can redistribute it and/or modify
58             it under the terms of the GNU General Public License as published by
59             the Free Software Foundation; either version 2 of the License, or
60             (at your option) any later version.
61              
62             See the LICENSE file that comes with this distribution for more details.
63              
64             =cut
65              
66             ####################################################################################################
67              
68             sub new
69             {
70 1     1 0 2 my $class=shift;
71 1         6 my $self=$class->SUPER::new(@_);
72 1         5 $self->{info}->{host_as_attr}=0;
73 1         2 $self->{info}->{contact_i18n}=2; ## INT only
74 1         1 $self->{info}->{check_limit}=38; ## Upper limit computed to that XML stream length is < 4096 bytes
75 1         3 return $self;
76             }
77              
78 0     0 1 0 sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0         0  
79 1     1 1 2 sub name { return 'Afilias'; }
80 1     1 1 5 sub tlds { return ('info'); }
81 0     0 1 0 sub object_types { return ('domain','contact','ns'); }
82 0     0 0 0 sub profile_types { return qw/epp whois/; }
83              
84             sub transport_protocol_default
85             {
86 1     1 0 1 my ($self,$type)=@_;
87            
88 1 50       5 return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::Afilias',{}) if $type eq 'epp';
89 0 0         return ('Net::DRI::Transport::Socket',{remote_host=>'whois.afilias.info'},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois';
90 0           return;
91             }
92              
93             ####################################################################################################
94              
95             sub verify_name_domain
96             {
97 0     0 0   my ($self,$ndr,$domain,$op)=@_;
98 0           return $self->_verify_name_rules($domain,$op,{check_name => 1,
99             my_tld => 1,
100             icann_reserved => 1,
101             });
102             }
103              
104             ####################################################################################################
105             1;