File Coverage

blib/lib/Net/DRI/DRD/ID.pm
Criterion Covered Total %
statement 15 30 50.0
branch 0 2 0.0
condition n/a
subroutine 5 13 38.4
pod 4 8 50.0
total 24 53 45.2


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, policies for .ID
2             ##
3             ## Copyright (c) 2012 Patrick Mevzek .
4             ## 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::ID;
17              
18 1     1   703 use utf8;
  1         1  
  1         16  
19 1     1   36 use strict;
  1         1  
  1         24  
20 1     1   5 use warnings;
  1         2  
  1         23  
21              
22 1     1   3 use base qw/Net::DRI::DRD/;
  1         1  
  1         86  
23              
24 1     1   6 use DateTime::Duration;
  1         1  
  1         295  
25              
26             =pod
27              
28             =head1 NAME
29              
30             Net::DRI::DRD::ID - .ID policies for Net::DRI
31              
32             =head1 DESCRIPTION
33              
34             Please see the README file for details.
35              
36             =head1 SUPPORT
37              
38             For now, support questions should be sent to:
39              
40             Enetdri@dotandco.comE
41              
42             Please also see the SUPPORT file in the distribution.
43              
44             =head1 SEE ALSO
45              
46             Ehttp://www.dotandco.com/services/software/Net-DRI/E
47              
48             =head1 AUTHOR
49              
50             Tonnerre Lombard, Etonnerre.lombard@sygroup.chE
51              
52             =head1 COPYRIGHT
53              
54             Copyright (c) 2012 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 0     0 0   my $class=shift;
71 0           my $self=$class->SUPER::new(@_);
72 0           $self->{info}->{host_as_attr}=0;
73 0           return $self;
74             }
75              
76 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); } ## TODO : check valid periods
  0            
77 0     0 1   sub name { return 'IDNIC'; }
78 0     0 1   sub tlds { return qw/id co.id ac.id net.id/; }
79 0     0 1   sub object_types { return ('domain','contact','ns'); }
80 0     0 0   sub profile_types { return qw/epp/; }
81              
82             sub transport_protocol_default
83             {
84 0     0 0   my ($self,$type)=@_;
85              
86 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP',{}) if $type eq 'epp';
87 0           return;
88             }
89              
90             ####################################################################################################
91              
92             sub verify_name_domain
93             {
94 0     0 0   my ($self,$ndr,$domain,$op)=@_;
95 0           return $self->_verify_name_rules($domain,$op,{check_name => 1,
96             my_tld => 1,
97             min_length => 2, ## TODO : find correct value
98             });
99             }
100              
101             ####################################################################################################
102             1;