| Net-DRI documentation | Contained in the Net-DRI distribution. |
Net::DRI::DRD::SE - .SE policies 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) 2006-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.
| Net-DRI documentation | Contained in the Net-DRI distribution. |
## Domain Registry Interface, .SE policy on reserved names ## Contributed by Elias Sidenbladh and Ulrich Wisser from NIC SE ## ## Copyright (c) 2006-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::DRD::SE; use strict; use warnings; use base qw/Net::DRI::DRD/; use DateTime::Duration; use Net::DRI::Util; use Net::DRI::Data::Contact::SE; our $VERSION=do { my @r=(q$Revision: 1.9 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); }; ## Only transfer requests and queries are possible, the rest is handled "off line". __PACKAGE__->make_exception_for_unavailable_operations(qw/domain_transfer_stop domain_transfer_accept domain_transfer_refuse domain_delete/);
#################################################################################################### sub new { my $class=shift; my $self=$class->SUPER::new(@_); $self->{info}->{host_as_attr}=0; bless($self,$class); return $self; } sub name { return 'se'; } sub tlds { return ('SE'); } sub periods { return map { DateTime::Duration->new(months => $_) } (12..120); } sub object_types { return ('domain','contact','ns'); } sub profile_types { return qw/epp whois/; } sub transport_protocol_default { my ($self,$type)=@_; return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP::Extensions::SE',{}) if $type eq 'epp'; return ('Net::DRI::Transport::Socket',{remote_host=>'whois.nic-se.se'},'Net::DRI::Protocol::Whois',{}) if $type eq 'whois'; return; } sub set_factories { my ($self,$po)=@_; $po->factories('contact',sub { return Net::DRI::Data::Contact::SE->new(@_); }); } #################################################################################################### sub verify_name_domain { my ($self,$ndr,$domain,$op)=@_; return $self->_verify_name_rules($domain,$op,{check_name => 1, my_tld => 1, }); } sub verify_duration_create { my ($self,$ndr,$duration,$domain)=@_; ($duration,$domain)=($ndr,$duration) unless (defined($ndr) && $ndr && (ref($ndr) eq 'Net::DRI::Registry')); if ( defined($duration) ) { my $m = $duration->in_units( 'months' ); ## Only 12 - 120 months allowed unless ( $m >= 12 && $m <= 120 ) { Net::DRI::Exception::usererr_invalid_parameters( 'Invalid duration for create, must be 12..120 months (was '.$m.')' ); return 1; # if exception is removed, return an error } } return 0; ## everything ok } sub verify_duration_renew { my ($self,$ndr,$duration,$domain,$curexp)=@_; ($duration,$domain,$curexp)=($ndr,$duration,$domain) unless (defined($ndr) && $ndr && (ref($ndr) eq 'Net::DRI::Registry')); if ( defined($duration) ) { my $m = $duration->in_units( 'months' ); ## Only 12 - 120 months allowed unless ( $m >= 12 && $m <= 120 ) { Net::DRI::Exception::usererr_invalid_parameters( 'Invalid duration for renew, must be 12..120 months (was '.$m.')' ); return 1; # if exception is removed, return an error } } return 0; ## everything ok } #################################################################################################### 1;