/usr/share/perl5/Net/EPP/Client.pm is in libnet-epp-perl 0.19-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | # Copyright (c) 2012 CentralNic Ltd. All rights reserved. This program is
# free software; you can redistribute it and/or modify it under the same
# terms as Perl itself.
#
# $Id: Client.pm,v 1.17 2011/01/23 12:23:16 gavin Exp $
package Net::EPP::Client;
use bytes;
use Net::EPP::Protocol;
use Carp;
use IO::Socket;
use IO::Socket::SSL;
use vars qw($XMLDOM $EPPFRAME);
use strict;
use warnings;
=pod
=head1 NAME
Net::EPP::Client - a client library for the TCP transport for EPP, the Extensible Provisioning Protocol
=head1 SYNOPSIS
#!/usr/bin/perl
use Net::EPP::Client;
use strict;
my $epp = Net::EPP::Client->new(
host => 'epp.nic.tld',
port => 700,
ssl => 1,
frames => 1,
);
my $greeting = $epp->connect;
$epp->send_frame('login.xml');
my $answer = $epp->get_frame;
$epp->send_frame('<epp><logout /></epp>');
my $answer = $epp->get_frame;
=head1 DESCRIPTION
EPP is the Extensible Provisioning Protocol. EPP (defined in RFC 4930) is an
application layer client-server protocol for the provisioning and management of
objects stored in a shared central repository. Specified in XML, the protocol
defines generic object management operations and an extensible framework that
maps protocol operations to objects. As of writing, its only well-developed
application is the provisioning of Internet domain names, hosts, and related
contact details.
RFC 4934 defines a TCP based transport model for EPP, and this module
implements a client for that model. You can establish and manage EPP
connections and send and receive responses over this connection.
C<Net::EPP::Client> also provides some time-saving features, such as being able
to provide request and response frames as C<Net::EPP::Frame> objects.
=cut
BEGIN {
our $XMLDOM = 0;
our $EPPFRAME = 0;
eval {
require XML::LibXML;
$XMLDOM = 1;
};
eval {
require Net::EPP::Frame;
$EPPFRAME = 1;
};
}
=pod
=head1 CONSTRUCTOR
my $epp = Net::EPP::Client->new(PARAMS);
The constructor method creates a new EPP client object. It accepts a number of
parameters:
=over
=item * host
C<host> specifies the computer to connect to. This may be a DNS hostname or
an IP address.
=item * port
C<port> specifies the TCP port to connect to. This is usually 700.
=item * ssl
If the C<ssl> parameter is defined, then C<IO::Socket::SSL> will be used to
provide an encrypted connection. If not, then a plaintext connection will be
created.
=item * dom (deprecated)
If the C<dom> parameter is defined, then all response frames will be returned
as C<XML::LibXML::Document> objects.
=item * frames
If the C<frames> parameter is defined, then all response frames will be
returned as C<Net::EPP::Frame> objects (actually, C<XML::LibXML::Document>
objects reblessed as C<Net::EPP::Frame> objects).
=back
=cut
sub new {
my ($package, %params) = @_;
my $self;
if (defined($params{'sock'})) {
$self = {
'sock' => $params{'sock'},
ssl => 0,
'dom' => (defined($params{'dom'}) ? 1 : 0),
'frames' => (defined($params{'frames'}) ? 1 : 0),
}
} else {
croak("missing hostname") if (!defined($params{'host'}));
croak("missing port") if (!defined($params{'port'}));
$self = {
'host' => $params{'host'},
'port' => $params{'port'},
'ssl' => (defined($params{'ssl'}) ? 1 : 0),
'dom' => (defined($params{'dom'}) ? 1 : 0),
'frames' => (defined($params{'frames'}) ? 1 : 0),
};
}
if ($self->{'frames'} == 1) {
if ($EPPFRAME == 0) {
croak("Frames requested but Net::EPP::Frame isn't available");
} else {
$self->{'parser'} = XML::LibXML->new;
$self->{'class'} = 'Net::EPP::Frame';
}
} elsif ($self->{'dom'} == 1) {
if ($XMLDOM == 0) {
croak("DOM requested but XML::LibXML isn't available");
} else {
$self->{'parser'} = XML::LibXML->new;
$self->{'class'} = 'XML::LibXML::Document';
}
} else {
# for well-formedness checking:
$self->{'parser'} = XML::LibXML->new;
}
return bless($self, $package);
}
=pod
=head1 METHODS
=head2 Connecting to a server:
my $greeting = $epp->connect(%PARAMS);
This method establishes the TCP connection. You can use the C<%PARAMS> hash to
specify arguments that will be passed on to the constructors for
C<IO::Socket::INET> (such as a timeout) or C<IO::Socket::SSL> (such as
certificate information). See the relevant manpage for examples.
This method will C<croak()> if connection fails, so be sure to use C<eval()> if
you want to catch the error.
By default, the return value for C<connect()> will be the EPP E<lt>greetingE<gt>
frame returned by the server. Please note that the same caveat about blocking
applies to this method as to C<get_frame()> (see below).
If you want to get the greeting yourself, set C<$params{no_greeting}>.
=cut
sub connect {
my ($self, %params) = @_;
if (defined($self->{'sock'})) {
$self->_connect_unix(%params);
} else {
$self->_connect_tcp(%params);
}
return ($params{'no_greeting'} ? 1 : $self->get_frame);
}
sub _connect_tcp {
my ($self, %params) = @_;
my $SocketClass = ($self->{'ssl'} == 1 ? 'IO::Socket::SSL' : 'IO::Socket::INET');
$self->{'connection'} = $SocketClass->new(
PeerAddr => $self->{'host'},
PeerPort => $self->{'port'},
Proto => 'tcp',
Type => SOCK_STREAM,
%params
);
if (!defined($self->{'connection'}) || ($@ && $@ ne '')) {
chomp($@);
$@ =~ s/^$SocketClass:? ?//;
croak("Connection to $self->{'host'}:$self->{'port'} failed: $@")
};
return 1;
}
sub _connect_unix {
my ($self, %params) = @_;
$self->{'connection'} = IO::Socket::UNIX->new(
Peer => $self->{'sock'},
Type => SOCK_STREAM,
%params
);
croak("Connection to $self->{'host'}:$self->{'port'} failed: $@") if (!defined($self->{'connection'}) || ($@ && $@ ne ''));
return 1;
}
=pod
=head2 Communicating with the server:
my $answer = $epp->request($question);
This is a simple wrapper around C<get_frame()> and C<send_frame()> (see below).
This method accepts a "question" frame as an argument, sends it to the server,
and then returns the next frame the server sends back.
=cut
sub request {
my ($self, $frame) = @_;
return $self->get_frame if ($self->send_frame($frame));
}
=pod
=head2 Getting a frame from the server:
my $frame = $epp->get_frame;
This method returns an EPP response frame from the server. This may either be a
scalar filled with XML, an C<XML::LibXML::Document> object (or an
C<XML::DOM::Document> object), depending on whether you defined the C<dom>
parameter to the constructor.
B<Important Note>: this method will block your program until it receives the
full frame from the server. That could be a bad thing for your program, so you
might want to consider using the C<alarm()> function to apply a timeout, like
so:
my $timeout = 10; # ten seconds
eval {
local $SIG{ALRM} = sub { die "alarm\n" };
alarm($timeout);
my $frame = $epp->get_frame;
alarm(0);
};
if ($@ ne '') {
alarm(0);
print "timed out\n";
}
If the connection to the server closes before the response can be received, or
the server returned a mal-formed frame, this method will C<croak()>.
=cut
sub get_frame {
my $self = shift;
return $self->get_return_value(Net::EPP::Protocol->get_frame($self->{'connection'}));
}
sub get_return_value {
my ($self, $xml) = @_;
if (!defined($self->{'class'})) {
return $xml;
} else {
my $document;
eval { $document = $self->{'parser'}->parse_string($xml) };
if (!defined($document) || $@ ne '') {
chomp($@);
croak(sprintf("Frame from server wasn't well formed: %s\n\nThe XML looks like this:\n\n%s\n\n", $@, $xml));
return undef;
} else {
my $class = $self->{'class'};
return bless($document, $class);
}
}
}
=pod
=head2 Sending a frame to the server:
$epp->send_frame($frame, $wfcheck);
This sends a request frame to the server. C<$frame> may be one of:
=over
=item * a scalar containing XML
=item * a scalar containing a filename
=item * an C<XML::LibXML::Document> object (or an instance of a subclass)
=item * an C<XML::DOM::Document> object (or an instance of a subclass)
=back
Unless C<$wfcheck> is false, the first two of these will be checked for
well-formedness. If the XML data is broken, then this method will croak.
=cut
sub send_frame {
my ($self, $frame, $wfcheck) = @_;
my $xml;
if (ref($frame) ne '' && ($frame->isa('XML::DOM::Document') || $frame->isa('XML::LibXML::Document'))) {
$xml = $frame->toString;
$wfcheck = 0;
} elsif ($frame !~ /</ && -e $frame) {
if (!open(FRAME, $frame)) {
croak("Couldn't open file '$frame' for reading: $!");
} else {
$xml = join('', <FRAME>);
close(FRAME);
$wfcheck = 1;
}
} else {
$xml = $frame;
$wfcheck = ($wfcheck ? 1 : 0);
}
if ($wfcheck == 1) {
eval { $self->{'parser'}->parse_string($xml) };
if ($@ ne '') {
chomp($@);
croak(sprintf("Frame from server wasn't well formed: %s\n\nThe XML looks like this:\n\n%s\n\n", $@, $xml));
}
}
return Net::EPP::Protocol->send_frame($self->{'connection'}, $xml);
}
=pod
=head2 Disconnecting from the server:
$epp->disconnect;
This closes the connection. An EPP server should always close a connection after
a E<lt>logoutE<gt> frame has been received and acknowledged; this method
is provided to allow you to clean up on the client side, or close the
connection out of sync with the server.
=cut
sub disconnect {
my $self = shift;
$self->{'connection'}->close;
return 1;
}
=pod
=head1 AUTHOR
CentralNic Ltd (L<http://www.centralnic.com/>).
=head1 COPYRIGHT
This module is (c) 2012 CentralNic Ltd. This module is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
=over
=item * L<Net::EPP::Frame>
=item * L<Net::EPP::Proxy>
=item * RFCs 4930 and RFC 4934, available from L<http://www.ietf.org/>.
=item * The CentralNic EPP site at L<http://www.centralnic.com/resellers/epp>.
=back
=cut
1;
|