| Net-DRI documentation | Contained in the Net-DRI distribution. |
Net::DRI::Protocol::EPP::Extensions::GracePeriod - EPP Grace Period commands (RFC3915) for Net::DRI
Please see the README file for details.
For now, support questions should be sent to:
<netdri@dotandco.com>
Please also see the SUPPORT file in the distribution.
<http://www.dotandco.com/services/software/Net-DRI/>
Patrick Mevzek, <netdri@dotandco.com>
Copyright (c) 2005,2006,2008,2009 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.
| Net-DRI documentation | Contained in the Net-DRI distribution. |
## Domain Registry Interface, EPP Grace Period commands (RFC3915) ## ## Copyright (c) 2005,2006,2008,2009 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::Extensions::GracePeriod; use strict; use warnings; use Net::DRI::Util; use Net::DRI::Exception; our $VERSION=do { my @r=(q$Revision: 1.7 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); }; our $NS='urn:ietf:params:xml:ns:rgp-1.0';
#################################################################################################### sub register_commands { my ($class,$version)=@_; my %tmp=( info => [ undef, \&info_parse ], update => [ \&update, \&update_parse ], ); return { 'domain' => \%tmp }; } sub capabilities_add { return ('domain_update','rgp',['set']); } #################################################################################################### ########### Query commands sub info_parse { my ($po,$otype,$oaction,$oname,$rinfo)=@_; my $mes=$po->message(); return unless $mes->is_success(); my $infdata=$mes->get_extension($NS,'infData'); return unless defined $infdata; my $cs=$rinfo->{domain}->{$oname}->{status}; ## a Net::DRI::Protocol::EPP::Core::Status object foreach my $el ($infdata->getChildrenByTagNameNS($NS,'rgpStatus')) { $cs->add($el->getAttribute('s')); } } ############ Transform commands sub update { my ($epp,$domain,$todo)=@_; my $mes=$epp->message(); my $rgp=$todo->set('rgp'); return unless (defined $rgp && $rgp && ref $rgp eq 'HASH'); my $op=$rgp->{op} || ''; Net::DRI::Exception::usererr_invalid_parameters('RGP op must be request or report') unless ($op=~m/^(?:request|report)$/); Net::DRI::Exception::usererr_invalid_parameters('Report data must be included if the operation is a report') unless (($op eq 'request') xor exists $rgp->{report}); my $eid=$mes->command_extension_register('rgp:update',sprintf('xmlns:rgp="%s" xsi:schemaLocation="%s rgp-1.0.xsd"',$NS,$NS)); if ($op eq 'request') { $mes->command_extension($eid,['rgp:restore',{ op => $op }]); } else { my %r=%{$rgp->{report}}; my $def=$epp->default_parameters(); my $data=(Net::DRI::Util::has_key($def,'breaks_rfc3915') && $def->{breaks_rfc3915})? 'Whois' : 'Data'; ## VeriSign does not respect its own RFC my @d; push @d,['rgp:pre'.$data,$r{predata}]; ## XML data is possible in the RFC, but not here ?! push @d,['rgp:post'.$data,$r{postdata}]; ## ditto Net::DRI::Util::check_isa($r{deltime},'DateTime'); push @d,['rgp:delTime',$r{deltime}->strftime('%Y-%m-%dT%T.%1NZ')]; Net::DRI::Util::check_isa($r{restime},'DateTime'); push @d,['rgp:resTime',$r{restime}->strftime('%Y-%m-%dT%T.%1NZ')]; push @d,['rgp:resReason',$r{reason}]; push @d,['rgp:statement',$r{statement1},exists $r{statement1_lang} ? {lang => $r{statement1_lang}} : ()]; push @d,['rgp:statement',$r{statement2},exists $r{statement2_lang} ? {lang => $r{statement2_lang}} : ()]; push @d,['rgp:other',$r{other}] if exists $r{other}; $mes->command_extension($eid,['rgp:restore',['rgp:report',@d],{ op => $op }]); } } sub update_parse { my ($po,$otype,$oaction,$oname,$rinfo)=@_; my $mes=$po->message(); return unless $mes->is_success(); my $updata=$mes->get_extension($NS,'upData'); return unless defined $updata; ## We do nothing, since the rgpStatus alone is useless ## (we do not have the other status) } #################################################################################################### 1;