| Net-DRI documentation | Contained in the Net-DRI distribution. |
Net::DRI::Data::Contact::DENIC - Handle .DE contact data for Net::DRI
This subclass of Net::DRI::Data::Contact adds accessors and validation for .DE specific data.
The following accessors/mutators can be called in chain, as they all return the object itself.
The type of the contact (Person, Organization, whatever).
The SIP telephone number of the contact.
Remarks regarding the contact.
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) 2007,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, Handling of contact data for .DE ## ## Copyright (c) 2007,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::Data::Contact::DENIC; use strict; use base qw/Net::DRI::Data::Contact/; use Net::DRI::Exception; use Net::DRI::Util; use Email::Valid; our $VERSION=do { my @r=(q$Revision: 1.3 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); }; __PACKAGE__->register_attributes(qw(type sip remarks));
#################################################################################################### sub validate ## See DENIC-11 { my ($self, $change) = @_; $change ||= 0; my @errs; if (!$change) { Net::DRI::Exception::usererr_insufficient_parameters('Invalid contact information: name/city/cc/srid mandatory') unless (scalar($self->name()) && scalar($self->city()) && scalar($self->cc()) && $self->srid()); push @errs,'srid' unless Net::DRI::Util::xml_is_token($self->srid(), 3, 32); } ## TODO: convert that to a test on srid(), testing roid() is useless ## \w includes _ in Perl push(@errs,'roid') if ($self->roid() && $self->roid() !~ m/^\w{1,80}-\w{1,8}$/); push(@errs,'name') if ($self->name() && grep { !Net::DRI::Util::xml_is_normalizedstring($_,1,255) } ($self->name())); push(@errs,'org') if ($self->org() && grep { !Net::DRI::Util::xml_is_normalizedstring($_,undef,255) } ($self->org())); my @rs = ($self->street()); foreach my $i (0,1) { next unless $rs[$i]; push(@errs,'street') if ((ref($rs[$i]) ne 'ARRAY') || (@{$rs[$i]} > 3) || (grep { !Net::DRI::Util::xml_is_normalizedstring($_, undef,255) } @{$rs[$i]})); } push(@errs,'city') if ($self->city() && grep { !Net::DRI::Util::xml_is_normalizedstring($_,1,255) } ($self->city())); push(@errs,'pc') if ($self->pc() && grep { !Net::DRI::Util::xml_is_normalizedstring($_,undef,16) } ($self->pc())); push(@errs,'cc') if ($self->cc() && grep { !Net::DRI::Util::xml_is_normalizedstring($_,2,2) } ($self->cc())); push(@errs,'cc') if ($self->cc() && grep { !exists($Net::DRI::Util::CCA2{uc($_)}) } ($self->cc())); push(@errs,'voice') if ($self->voice() && !Net::DRI::Util::xml_is_token($self->voice(),undef,17) && $self->voice() !~ m/^\+[0-9]{1,3}\.[0-9]{1,14}(?:x\d+)?$/); push(@errs,'fax') if ($self->fax() && !Net::DRI::Util::xml_is_token($self->fax(),undef,17) && $self->fax() !~ m/^\+[0-9]{1,3}\.[0-9]{1,14}(?:x\d+)?$/); push(@errs,'email') if ($self->email() && !Net::DRI::Util::xml_is_token($self->email(),1,undef) && !Email::Valid->rfc822($self->email())); Net::DRI::Exception::usererr_invalid_parameters('Invalid contact information: ' . join('/', @errs)) if (@errs); return 1; ## everything ok. } #################################################################################################### 1;