File Coverage

blib/lib/Net/DRI/DRD/SO.pm
Criterion Covered Total %
statement 12 26 46.1
branch 0 2 0.0
condition n/a
subroutine 4 11 36.3
pod 4 7 57.1
total 20 46 43.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, .SO policies
2             ##
3             ## Copyright (c) 2009-2011 Cloud Registry Pty Ltd . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             ####################################################################################################
14              
15             package Net::DRI::DRD::SO;
16              
17 1     1   714 use strict;
  1         2  
  1         25  
18 1     1   3 use warnings;
  1         2  
  1         23  
19              
20 1     1   5 use base qw/Net::DRI::DRD/;
  1         1  
  1         64  
21              
22 1     1   9 use DateTime::Duration;
  1         2  
  1         198  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::DRD::SO - .SO policies for Net::DRI
29              
30             =head1 DESCRIPTION
31              
32             Please see the README file for details.
33              
34             =head1 SUPPORT
35              
36             For now, support questions should be sent to:
37              
38             Eopen@cloudregistry.netE
39              
40             Please also see the SUPPORT file in the distribution.
41              
42             =head1 SEE ALSO
43              
44             Ehttp://soregistry.so/E and
45             Ehttp://oss.bsdprojects.net/projects/netdri/E
46              
47             =head1 AUTHOR
48              
49             Wil Tan Ewil@cloudregistry.netE
50              
51             =head1 COPYRIGHT
52              
53             Copyright (c) 2009-2011 Cloud Registry Pty Ltd .
54             All rights reserved.
55              
56             This program is free software; you can redistribute it and/or modify
57             it under the terms of the GNU General Public License as published by
58             the Free Software Foundation; either version 2 of the License, or
59             (at your option) any later version.
60              
61             See the LICENSE file that comes with this distribution for more details.
62              
63             =cut
64              
65             ####################################################################################################
66              
67             sub new
68             {
69 0     0 0   my $class=shift;
70 0           my $self=$class->SUPER::new(@_);
71 0           $self->{info}->{host_as_attr}=0;
72              
73 0           bless($self,$class);
74 0           return $self;
75             }
76              
77 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0            
78 0     0 1   sub name { return 'SO'; }
79 0     0 1   sub tlds { return (qw/so com.so net.so org.so/); }
80 0     0 1   sub object_types { return ('domain','contact','ns'); }
81 0     0 0   sub profile_types { return qw/epp/; } ## { return qw/epp whois/; }
82              
83             sub transport_protocol_default
84             {
85 0     0 0   my ($self,$type)=@_;
86              
87 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::CloudRegistry',{}) if $type eq 'epp';
88             ## return ('Net::DRI::Transport::Socket',{remote_host=>'whois.nic.so'},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois';
89 0           return;
90             }
91              
92             ####################################################################################################
93             1;