1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
## Domain Registry Interface, EPP Connection handling
##
## Copyright (c) 2005-2010 Patrick Mevzek <netdri@dotandco.com>. All rights reserved.
##
## This file is part of Net::DRI
##
## Net::DRI is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## See the LICENSE file that comes with this distribution for more details.
#
#
#
####################################################################################################
package Net::DRI::Protocol::EPP::Connection;
use strict;
use warnings;
use Net::DRI::Util;
use Net::DRI::Data::Raw;
use Net::DRI::Protocol::ResultStatus;
our $VERSION=do { my @r=(q$Revision: 1.18 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); };
=pod
=head1 NAME
Net::DRI::Protocol::EPP::Connection - EPP over TCP/TLS Connection Handling (RFC4934) for Net::DRI
=head1 DESCRIPTION
Please see the README file for details.
=head1 SUPPORT
For now, support questions should be sent to:
E<lt>netdri@dotandco.comE<gt>
Please also see the SUPPORT file in the distribution.
=head1 SEE ALSO
E<lt>http://www.dotandco.com/services/software/Net-DRI/E<gt>
=head1 AUTHOR
Patrick Mevzek, E<lt>netdri@dotandco.comE<gt>
=head1 COPYRIGHT
Copyright (c) 2005-2010 Patrick Mevzek <netdri@dotandco.com>.
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
See the LICENSE file that comes with this distribution for more details.
=cut
####################################################################################################
sub login
{
my ($class,$cm,$id,$pass,$cltrid,$dr,$newpass,$pdata)=@_;
my $got=$cm->();
$got->parse($dr);
my $rg=$got->result_greeting();
my $mes=$cm->();
$mes->command(['login']);
my @d;
push @d,['clID',$id];
push @d,['pw',$pass];
push @d,['newPW',$newpass] if (defined($newpass) && $newpass);
push @d,['options',['version',$rg->{version}->[0]],['lang','en']]; ## TODO: allow choice of language if multiple choices (like fr+en in .CA) ?
my @s;
push @s,map { ['objURI',$_] } @{$rg->{svcs}};
push @s,['svcExtension',map {['extURI',$_]} @{$rg->{svcext}}] if (exists($rg->{svcext}) && defined($rg->{svcext}) && (ref($rg->{svcext}) eq 'ARRAY'));
@s=$pdata->{login_service_filter}->(@s) if (defined($pdata) && ref($pdata) eq 'HASH' && exists($pdata->{login_service_filter}) && ref($pdata->{login_service_filter}) eq 'CODE');
push @d,['svcs',@s] if @s;
$mes->command_body(\@d);
$mes->cltrid($cltrid) if $cltrid;
return $mes;
}
sub logout
{
my ($class,$cm,$cltrid)=@_;
my $mes=$cm->();
$mes->command(['logout']);
$mes->cltrid($cltrid) if $cltrid;
return $mes;
}
sub keepalive
{
my ($class,$cm)=@_;
my $mes=$cm->();
$mes->command(['hello']);
return $mes;
}
####################################################################################################
sub read_data
{
my ($class,$to,$sock)=@_;
my $c;
my $rl=$sock->sysread($c,4); ## first 4 bytes are the packed length
die(Net::DRI::Protocol::ResultStatus->new_error('COMMAND_FAILED_CLOSING','Unable to read EPP 4 bytes length (connection closed by registry '.$to->transport_data('remote_uri').' ?): '.($! || 'no error given'),'en')) unless (defined $rl && $rl==4);
my $length=unpack('N',$c)-4;
my $m='';
while ($length > 0)
{
my $new;
$length-=$sock->sysread($new,$length);
$m.=$new;
}
$m=Net::DRI::Util::decode_utf8($m);
die(Net::DRI::Protocol::ResultStatus->new_error('COMMAND_SYNTAX_ERROR',$m? 'Got unexpected EPP message: '.$m : '<empty message from server>','en')) unless ($m=~m!</epp>\s*$!s);
return Net::DRI::Data::Raw->new_from_xmlstring($m);
}
sub write_message
{
my ($self,$to,$msg)=@_;
my $m=Net::DRI::Util::encode_utf8($msg);
my $l=pack('N',4+length($m)); ## RFC 4934 4
return $l.$m; ## We do not support EPP "0.4" at all (which lacks length before data)
}
sub parse_greeting
{
my ($class,$dc)=@_;
my ($code,$msg,$lang)=find_code($dc);
unless (defined($code) && ($code==1000))
{
return Net::DRI::Protocol::ResultStatus->new_error('COMMAND_SYNTAX_ERROR','No greeting node',$lang);
} else
{
return Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL','Greeting OK',$lang);
}
}
## Since <hello /> is used as keepalive, answer is a <greeting>
sub parse_keepalive
{
return shift->parse_greeting(@_);
}
sub parse_login
{
my ($class,$dc)=@_;
my ($code,$msg,$lang)=find_code($dc);
unless (defined($code) && ($code==1000))
{
my $eppcode=(defined($code))? $code : 'COMMAND_SYNTAX_ERROR';
return Net::DRI::Protocol::ResultStatus->new_error($eppcode,$msg || 'Login failed',$lang);
} else
{
return Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL',$msg || 'Login OK',$lang);
}
}
sub parse_logout
{
my ($class,$dc)=@_;
my ($code,$msg,$lang)=find_code($dc);
unless (defined($code) && ($code==1500))
{
my $eppcode=(defined($code))? $code : 'COMMAND_SYNTAX_ERROR';
return Net::DRI::Protocol::ResultStatus->new_error($eppcode,$msg || 'Logout failed',$lang);
} else
{
return Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL_END ',$msg || 'Logout OK',$lang);
}
}
## This simple regex based poking function does obviously not handle all cases correctly,
## but should be enough for parsing greeting/login/logout exchanges, which is all what is needed here
sub find_code
{
my $dc=shift;
my $a=$dc->as_string();
return () unless ($a=~m!</epp>!);
return (1000,'Greeting OK','en') if ($a=~m!<greeting>!);
my ($code,$msg,$lang);
return () unless (($code,$lang,$msg)=($a=~m!<response>\s*<result\s+code=["'](\d+)["']>\s*<msg(?:\s+lang=["'](\S\S)["']\s*)?>\s*(.+?)\s*</msg>\s*<(?:value|extValue|/result)>!));
return (0+$code,$msg,defined $lang && length $lang ? $lang : 'en');
}
## TODO: implement defaults from 4934bis
sub transport_default
{
my ($self,$tname)=@_;
return (defer => 0, socktype => 'ssl', ssl_cipher_list => 'TLSv1', remote_port => 700);
}
####################################################################################################
1;
|