X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Frouter.pm;h=f66f2cee885a18084fe6945df82c21d48f82c1a2;hb=72deba42ac5847c2a6bdeea20157035b8f9df7ae;hp=3f9459a0131672f865bcd2bd688af3aa9fea34d6;hpb=0354f39ed0e74fd2eae1d9da13906625b4f56591;p=freeside.git diff --git a/FS/FS/router.pm b/FS/FS/router.pm index 3f9459a01..f66f2cee8 100755 --- a/FS/FS/router.pm +++ b/FS/FS/router.pm @@ -2,10 +2,10 @@ package FS::router; use strict; use vars qw( @ISA ); -use FS::Record qw( qsearchs qsearch ); +use FS::Record qw( qsearchs qsearch dbh ); use FS::addr_block; -@ISA = qw( FS::Record ); +@ISA = qw( FS::Record FS::m2m_Common ); =head1 NAME @@ -82,34 +82,57 @@ sub check { my $error = $self->ut_numbern('routernum') - || $self->ut_text('routername'); + || $self->ut_text('routername') + || $self->ut_agentnum_acl('agentnum', 'Broadband global configuration') + ; return $error if $error; - ''; + $self->SUPER::check; } -=item addr_block +=item delete -Returns a list of FS::addr_block objects (address blocks) associated -with this object. +Deletes this router if and only if no address blocks (see L) +are currently allocated to it. =cut -sub addr_block { - my $self = shift; - return qsearch('addr_block', { routernum => $self->routernum }); +sub delete { + my $self = shift; + + return 'Router has address blocks allocated to it' if $self->addr_block; + + local $SIG{HUP} = 'IGNORE'; + local $SIG{INT} = 'IGNORE'; + local $SIG{QUIT} = 'IGNORE'; + local $SIG{TERM} = 'IGNORE'; + local $SIG{TSTP} = 'IGNORE'; + local $SIG{PIPE} = 'IGNORE'; + + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; + + my $error = $self->SUPER::delete; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + + $dbh->commit or die $dbh->errstr if $oldAutoCommit; + ''; } -=item router_field +=item addr_block -Returns a list of FS::router_field objects assigned to this object. +Returns a list of FS::addr_block objects (address blocks) associated +with this object. =cut -sub router_field { +sub addr_block { my $self = shift; - - return qsearch('router_field', { routernum => $self->routernum }); + return qsearch('addr_block', { routernum => $self->routernum }); } =item part_svc_router @@ -137,17 +160,21 @@ sub part_svc { $self->part_svc_router; } -=back +=item agent -=head1 VERSION +Returns the agent associated with this router, if any. -$Id: +=cut + +sub agent { + qsearchs('agent', { 'agentnum' => shift->agentnum }); +} -=head1 BUGS +=back =head1 SEE ALSO -FS::svc_broadband, FS::router, FS::addr_block, FS::router_field, FS::part_svc, +FS::svc_broadband, FS::router, FS::addr_block, FS::part_svc, schema.html from the base documentation. =cut