File Coverage

blib/lib/Net/DRI/Protocol/OpenSRS/XCP/Session.pm
Criterion Covered Total %
statement 12 32 37.5
branch 0 6 0.0
condition n/a
subroutine 4 7 57.1
pod 0 3 0.0
total 16 48 33.3


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, OpenSRS XCP Session commands
2             ##
3             ## Copyright (c) 2008,2013 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::Protocol::OpenSRS::XCP::Session;
16              
17 1     1   663 use strict;
  1         2  
  1         23  
18 1     1   4 use warnings;
  1         1  
  1         19  
19              
20 1     1   3 use Net::DRI::Exception;
  1         1  
  1         17  
21 1     1   3 use Net::DRI::Util;
  1         1  
  1         204  
22              
23             =pod
24              
25             =head1 NAME
26              
27             Net::DRI::Protocol::OpenSRS::XCP::Session - OpenSRS XCP Session commands for Net::DRI
28              
29             =head1 DESCRIPTION
30              
31             Please see the README file for details.
32              
33             =head1 SUPPORT
34              
35             For now, support questions should be sent to:
36              
37             Enetdri@dotandco.comE
38              
39             Please also see the SUPPORT file in the distribution.
40              
41             =head1 SEE ALSO
42              
43             Ehttp://www.dotandco.com/services/software/Net-DRI/E
44              
45             =head1 AUTHOR
46              
47             Patrick Mevzek, Enetdri@dotandco.comE
48              
49             =head1 COPYRIGHT
50              
51             Copyright (c) 2008,2013 Patrick Mevzek .
52             All rights reserved.
53              
54             This program is free software; you can redistribute it and/or modify
55             it under the terms of the GNU General Public License as published by
56             the Free Software Foundation; either version 2 of the License, or
57             (at your option) any later version.
58              
59             See the LICENSE file that comes with this distribution for more details.
60              
61             =cut
62              
63             ####################################################################################################
64              
65             sub register_commands
66             {
67 0     0 0   my ($class,$version)=@_;
68 0           my %tmp=(
69             set_cookie => [\&set_cookie, \&set_cookie_parse ],
70             );
71              
72 0           return { 'session' => \%tmp };
73             }
74              
75             sub set_cookie
76             {
77 0     0 0   my ($xcp,$ep)=@_;
78 0           my $msg=$xcp->message();
79 0 0         Net::DRI::Exception::usererr_insufficient_parameters('Domain+Username+Password are required for session_set_cookie') if grep { ! Net::DRI::Util::has_key($ep,$_) } qw/domain username password/;
  0            
80 0           my %r=(action=>'set',object=>'cookie');
81 0 0         $r{registrant_ip}=$ep->{registrant_ip} if Net::DRI::Util::has_key($ep,'registrant_ip');
82 0           $msg->command(\%r);
83 0           $msg->command_attributes({domain => $ep->{domain}, reg_username=> $ep->{username}, reg_password => $ep->{password}});
84 0           return;
85             }
86              
87             sub set_cookie_parse
88             {
89 0     0 0   my ($xcp,$otype,$oaction,$oname,$rinfo)=@_;
90 0           my $mes=$xcp->message();
91 0 0         return unless $mes->is_success();
92              
93 0           my $ra=$mes->response_attributes();
94             ## We do not parse all other attributes: f_owner, domain_count, permission, last_access_time, expiredate, last_ip, waiting_requests_no, redirect_url
95 0           my $rd=$ra->{'cookie'};
96 0           $rinfo->{session}->{cookie}->{action}='set';
97 0           $rinfo->{session}->{cookie}->{value}=$rd;
98 0           return;
99             }
100              
101             ####################################################################################################
102             1;