summaryrefslogtreecommitdiff
path: root/FS/FS/svc_domain.pm
diff options
context:
space:
mode:
authorivan <ivan>2007-08-09 00:31:36 +0000
committerivan <ivan>2007-08-09 00:31:36 +0000
commit51055278448998492df09d0ecd8fbd5b000ee688 (patch)
tree936179a5e7cb06ccae21fa12b6888426562beae8 /FS/FS/svc_domain.pm
parent51d699639c09bdb34513fb49f4a3769893802640 (diff)
add TLD checking to svc_domain
Diffstat (limited to 'FS/FS/svc_domain.pm')
-rw-r--r--FS/FS/svc_domain.pm29
1 files changed, 8 insertions, 21 deletions
diff --git a/FS/FS/svc_domain.pm b/FS/FS/svc_domain.pm
index 803ebefe5..7ae996178 100644
--- a/FS/FS/svc_domain.pm
+++ b/FS/FS/svc_domain.pm
@@ -8,6 +8,7 @@ use vars qw( @ISA $whois_hack $conf
use Carp;
use Date::Format;
#use Net::Whois::Raw;
+use Net::Domain::TLD;
use FS::Record qw(fields qsearch qsearchs dbh);
use FS::Conf;
use FS::svc_Common;
@@ -361,11 +362,18 @@ sub check {
} elsif ( $whois_hack && $recref->{domain} =~ /^([\w\-\.]+)\.(\w+)$/ ) {
$recref->{domain} = "$1.$2";
# need to match a list of suffixes - no guarantee they're top-level..
+ # http://wiki.mozilla.org/TLD_List
+ # but this will have to do for now...
+ $recref->{suffix} || $2;
} else {
return "Illegal domain ". $recref->{domain}.
" (or unknown registry - try \$whois_hack)";
}
+ $self->suffix =~ /(^|\.)(\w+)$/
+ or return "can't parse suffix for TLD: ". $self->suffix;
+ my $tld = $2;
+ return "No such TLD: .$tld" unless tld_exists($tld);
if ( $recref->{catchall} ne '' ) {
my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $recref->{catchall} } );
@@ -445,27 +453,6 @@ sub whois {
#$whois_hack or die "whois_hack not set...\n";
}
-=item _whois
-
-Depriciated.
-
-=cut
-
-sub _whois {
- die "_whois depriciated";
-}
-
-=item submit_internic
-
-Submits a registration email for this domain.
-
-=cut
-
-sub submit_internic {
- #my $self = shift;
- carp "submit_internic depreciated";
-}
-
=back
=head1 BUGS