File Coverage

blib/lib/Net/DRI/DRD/SC.pm
Criterion Covered Total %
statement 12 28 42.8
branch 0 2 0.0
condition n/a
subroutine 4 12 33.3
pod 4 8 50.0
total 20 50 40.0


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Afilias ccTLD policies for .SC
2             ##
3             ## Copyright (c) 2008,2009 Tonnerre Lombard .
4             ## (c) 2010,2011 Patrick Mevzek . All rights reserved.
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::SC;
18              
19 1     1   660 use strict;
  1         2  
  1         29  
20 1     1   4 use warnings;
  1         2  
  1         22  
21              
22 1     1   3 use base qw/Net::DRI::DRD/;
  1         1  
  1         62  
23              
24 1     1   5 use DateTime::Duration;
  1         1  
  1         207  
25              
26             =pod
27              
28             =head1 NAME
29              
30             Net::DRI::DRD::SC - .SC 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) 2008,2009 Tonnerre Lombard .
55             (c) 2010,2011 Patrick Mevzek .
56             All rights reserved.
57              
58             This program is free software; you can redistribute it and/or modify
59             it under the terms of the GNU General Public License as published by
60             the Free Software Foundation; either version 2 of the License, or
61             (at your option) any later version.
62              
63             See the LICENSE file that comes with this distribution for more details.
64              
65             =cut
66              
67             ####################################################################################################
68              
69             sub new
70             {
71 0     0 0   my $class=shift;
72 0           my $self=$class->SUPER::new(@_);
73 0           $self->{info}->{host_as_attr}=0;
74 0           $self->{info}->{contact_i18n}=2;
75 0           return $self;
76             }
77              
78 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0            
79 0     0 1   sub name { return 'Afilias SC'; }
80 0     0 1   sub tlds { return qw/sc com.sc gov.sc net.sc org.sc edu.sc/; }
81 0     0 1   sub object_types { return ('domain','contact','ns'); }
82 0     0 0   sub profile_types { return qw/epp/; }
83              
84             sub transport_protocol_default
85             {
86 0     0 0   my ($self,$type)=@_;
87              
88 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::Afilias',{}) if $type eq 'epp';
89 0           return;
90             }
91              
92             ####################################################################################################
93             ## http://www.afilias-grs.info/public/policies/sc
94             ## http://www.nic.sc/policies.html
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             min_length => 3,
101             });
102             }
103              
104             ####################################################################################################
105             1;