| Net-DRI documentation | Contained in the Net-DRI distribution. |
Net::DRI::Protocol::EPP::Extensions::NeuLevel::UIN - EPP Extension for .TRAVEL UIN for Net::DRI
Please see the README file for details.
For now, support questions should be sent to:
<tonnerre.lombard@sygroup.ch>
Please also see the SUPPORT file in the distribution.
<http://oss.bsdprojects.net/projects/netdri/>
Tonnerre Lombard, <tonnerre.lombard@sygroup.ch>
Copyright (c) 2008 Tonnerre Lombard <tonnerre.lombard@sygroup.ch>. 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.
| Net-DRI documentation | Contained in the Net-DRI distribution. |
## Domain Registry Interface, EPP Extension for .travel UIN ## (ICANN Sponsored TLD Registry Agreement, Part IV) ## ## Copyright (c) 2008 Tonnerre Lombard <tonnerre.lombard@sygroup.ch>. ## 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::Extensions::NeuLevel::UIN; use strict; use Net::DRI::Util; our $VERSION=do { my @r=(q$Revision: 1.1 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); };
#################################################################################################### sub register_commands { my ($class, $version) = @_; my %tmp = ( create => [ \&add_uin, undef ], transfer_request => [ \&add_uin, undef ], renew => [ \&renew, undef ], ); return { 'domain' => \%tmp }; } #################################################################################################### ############ Transform commands sub add_uin { my ($epp, $domain, $rd) = @_; my $mes = $epp->message(); return unless Net::DRI::Util::has_key($rd,'uin'); my $eid = $mes->command_extension_register('neulevel:extension', 'xmlns:neulevel="urn:ietf:params:xml:ns:neulevel-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:neulevel-1.0 neulevel-1.0.xsd"'); $mes->command_extension($eid, ['neulevel:unspec', 'UIN=' . $rd->{uin}]); } sub renew { my ($epp, $domain, $rd) = @_; my $mes = $epp->message(); my @vals = qw(RestoreReasonCode RestoreComment TrueData ValidUse UIN); my %info; my $comment; if (defined($rd->{rgp}) && ref($rd->{rgp}) eq 'HASH') { $info{TrueData} = 'Y'; $info{ValidUse} = 'Y'; $info{RestoreReasonCode} = $rd->{rgp}->{code}; $comment = $rd->{rgp}->{comment}; $comment = join('', map { ucfirst($_) } split(/\s+/, $comment)); $info{RestoreComment} = $comment; } if (Net::DRI::Util::has_key($rd,'uin')) { $info{UIN} = $rd->{uin}; } my $eid = $mes->command_extension_register('neulevel:extension', 'xmlns:neulevel="urn:ietf:params:xml:ns:neulevel-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:neulevel-1.0 neulevel-1.0.xsd"'); $mes->command_extension($eid, ['neulevel:unspec', join(' ', map { $_ . '=' . $info{$_} } grep { defined($info{$_}) } @vals)]); } #################################################################################################### 1;