summaryrefslogtreecommitdiff
path: root/FS/FS/router.pm
diff options
context:
space:
mode:
authorlevinse <levinse>2011-06-22 23:39:36 +0000
committerlevinse <levinse>2011-06-22 23:39:36 +0000
commit87b88389a0b457d1ba8ca5655696939e1adf652c (patch)
treefa378dffce8dde67e1e2191b7bc0b9f9003e5682 /FS/FS/router.pm
parenteed7932c6d70767a8b4ae3d04ec19312ad81d885 (diff)
add router and addr_block delete features, RT13197
Diffstat (limited to 'FS/FS/router.pm')
-rwxr-xr-xFS/FS/router.pm37
1 files changed, 34 insertions, 3 deletions
diff --git a/FS/FS/router.pm b/FS/FS/router.pm
index 7a9fda3..f66f2ce 100755
--- a/FS/FS/router.pm
+++ b/FS/FS/router.pm
@@ -2,7 +2,7 @@ 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 FS::m2m_Common );
@@ -90,6 +90,39 @@ sub check {
$self->SUPER::check;
}
+=item delete
+
+Deletes this router if and only if no address blocks (see L<FS::addr_block>)
+are currently allocated to it.
+
+=cut
+
+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 addr_block
Returns a list of FS::addr_block objects (address blocks) associated
@@ -139,8 +172,6 @@ sub agent {
=back
-=head1 BUGS
-
=head1 SEE ALSO
FS::svc_broadband, FS::router, FS::addr_block, FS::part_svc,