File Coverage

blib/lib/Net/DRI/DRD/WS.pm
Criterion Covered Total %
statement 12 22 54.5
branch 0 4 0.0
condition n/a
subroutine 4 10 40.0
pod 4 6 66.6
total 20 42 47.6


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, "WorldSite.WS" Registry Driver for .WS
2             ##
3             ## Copyright (c) 2005,2008,2009 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::WS;
16              
17 1     1   695 use strict;
  1         2  
  1         27  
18 1     1   3 use warnings;
  1         1  
  1         39  
19              
20 1     1   4 use base qw/Net::DRI::DRD/;
  1         1  
  1         66  
21              
22 1     1   5 use DateTime::Duration;
  1         1  
  1         161  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::DRD::WS - Website.WS .WS Registry driver 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             Enetdri@dotandco.comE
39              
40             Please also see the SUPPORT file in the distribution.
41              
42             =head1 SEE ALSO
43              
44             Ehttp://www.dotandco.com/services/software/Net-DRI/E
45              
46             =head1 AUTHOR
47              
48             Patrick Mevzek, Enetdri@dotandco.comE
49              
50             =head1 COPYRIGHT
51              
52             Copyright (c) 2005,2008,2009 Patrick Mevzek .
53             All rights reserved.
54              
55             This program is free software; you can redistribute it and/or modify
56             it under the terms of the GNU General Public License as published by
57             the Free Software Foundation; either version 2 of the License, or
58             (at your option) any later version.
59              
60             See the LICENSE file that comes with this distribution for more details.
61              
62             =cut
63              
64             ####################################################################################################
65              
66 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0            
67 0     0 1   sub name { return 'WS'; }
68 0     0 1   sub tlds { return ('ws'); }
69 0     0 1   sub object_types { return ('domain','ns'); }
70 0     0 0   sub profile_types { return qw/rrp whois/; }
71              
72             sub transport_protocol_default
73             {
74 0     0 0   my ($self,$type)=@_;
75              
76 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::RRP',{}) if $type eq 'rrp';
77 0 0         return ('Net::DRI::Transport::Socket',{remote_host=>'whois.nic.ws'},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois';
78 0           return;
79             }
80              
81             ####################################################################################################
82             1;