File Coverage

blib/lib/Net/DRI/DRD/UPU.pm
Criterion Covered Total %
statement 15 31 48.3
branch 0 2 0.0
condition n/a
subroutine 5 13 38.4
pod 4 8 50.0
total 24 54 44.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, "Universal Postal Union" Registry Driver for .POST
2             ##
3             ## Copyright (c) 2012-2014 Patrick Mevzek . 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::UPU;
16              
17 1     1   1010 use strict;
  1         20  
  1         36  
18 1     1   4 use warnings;
  1         2  
  1         22  
19              
20 1     1   4 use base qw/Net::DRI::DRD/;
  1         1  
  1         58  
21              
22 1     1   5 use DateTime::Duration;
  1         1  
  1         14  
23 1     1   3 use Net::DRI::Util;
  1         2  
  1         222  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::DRD::UPU - "Universal Postal Union" .POST Registry driver 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) 2012-2014 Patrick Mevzek .
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           return $self;
72             }
73              
74 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0            
75 0     0 1   sub name { return 'UPU'; }
76 0     0 1   sub tlds { return (qw/post edu.post org.post com.post/, map { lc($_).'.post' } sort { $a cmp $b } keys %Net::DRI::Util::CCA2); }
  0            
  0            
77 0     0 1   sub object_types { return qw/domain ns contact/; }
78 0     0 0   sub profile_types { return qw/epp whois/; }
79              
80             sub transport_protocol_default
81             {
82 0     0 0   my ($self,$type)=@_;
83              
84 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP',{}) if $type eq 'epp';
85             ## return ('Net::DRI::Transport::Socket',{remote_host=>'whois.dotpostregistry.net '},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois';
86 0           return;
87             }
88              
89             ####################################################################################################
90              
91             sub verify_name_domain
92             {
93 0     0 0   my ($self,$ndr,$domain,$op)=@_;
94 0           return $self->_verify_name_rules($domain,$op,{check_name => 1,
95             my_tld => 1,
96             icann_reserved => 1,
97             });
98             }
99              
100             ####################################################################################################
101             1;