File Coverage

blib/lib/Net/DRI/DRD/HN.pm
Criterion Covered Total %
statement 28 31 90.3
branch 1 2 50.0
condition n/a
subroutine 11 13 84.6
pod 4 8 50.0
total 44 54 81.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Afilias ccTLD policies for .HN
2             ##
3             ## Copyright (c) 2008,2009 Tonnerre Lombard .
4             ## (c) 2010,2011 Patrick Mevzek .
5             ## All rights reserved.
6             ##
7             ## This file is part of Net::DRI
8             ##
9             ## Net::DRI is free software; you can redistribute it and/or modify
10             ## it under the terms of the GNU General Public License as published by
11             ## the Free Software Foundation; either version 2 of the License, or
12             ## (at your option) any later version.
13             ##
14             ## See the LICENSE file that comes with this distribution for more details.
15             ####################################################################################################
16              
17             package Net::DRI::DRD::HN;
18              
19 2     2   1137 use utf8;
  2         4  
  2         11  
20 2     2   50 use strict;
  2         3  
  2         30  
21 2     2   6 use warnings;
  2         2  
  2         43  
22              
23 2     2   5 use base qw/Net::DRI::DRD/;
  2         3  
  2         574  
24              
25 2     2   17 use DateTime::Duration;
  2         2  
  2         472  
26              
27             =pod
28              
29             =head1 NAME
30              
31             Net::DRI::DRD::HN - .HN policies for Net::DRI
32              
33             =head1 DESCRIPTION
34              
35             Please see the README file for details.
36              
37             =head1 SUPPORT
38              
39             For now, support questions should be sent to:
40              
41             Enetdri@dotandco.comE
42              
43             Please also see the SUPPORT file in the distribution.
44              
45             =head1 SEE ALSO
46              
47             Ehttp://www.dotandco.com/services/software/Net-DRI/E
48              
49             =head1 AUTHOR
50              
51             Tonnerre Lombard, Etonnerre.lombard@sygroup.chE
52              
53             =head1 COPYRIGHT
54              
55             Copyright (c) 2008,2009 Tonnerre Lombard .
56             (c) 2010,2011 Patrick Mevzek .
57             All rights reserved.
58              
59             This program is free software; you can redistribute it and/or modify
60             it under the terms of the GNU General Public License as published by
61             the Free Software Foundation; either version 2 of the License, or
62             (at your option) any later version.
63              
64             See the LICENSE file that comes with this distribution for more details.
65              
66             =cut
67              
68             ####################################################################################################
69              
70             sub new
71             {
72 1     1 0 3 my $class=shift;
73 1         6 my $self=$class->SUPER::new(@_);
74 1         7 $self->{info}->{host_as_attr}=0;
75 1         1 $self->{info}->{contact_i18n}=2;
76 1         3 return $self;
77             }
78              
79 1     1 1 3 sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  10         343  
80 1     1 1 2 sub name { return 'Afilias HN'; }
81 3     3 1 10 sub tlds { return qw/hn com.hn net.hn org.hn edu.hn/; }
82 0     0 1 0 sub object_types { return ('domain','contact','ns'); }
83 0     0 0 0 sub profile_types { return qw/epp/; }
84              
85             sub transport_protocol_default
86             {
87 1     1 0 1 my ($self,$type)=@_;
88              
89 1 50       5 return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::Afilias',{}) if $type eq 'epp';
90 0         0 return;
91             }
92              
93             ####################################################################################################
94             ## http://www.afilias-grs.info/public/policies/hn
95             ## http://www.nic.hn/politicas/sobre_dominios.html
96             sub verify_name_domain
97             {
98 1     1 0 2 my ($self,$ndr,$domain,$op)=@_;
99 1         10 return $self->_verify_name_rules($domain,$op,{check_name => 1,
100             my_tld => 1,
101             min_length => 3, ## http://www.nic.hn/politicas/sobre_dominios.html ยง1.c
102             });
103             }
104              
105             ####################################################################################################
106             1;