X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fsvc_forward.pm;h=7a121b835d2c4b8d1f2e4b17894fb83df4345293;hp=6ee1d5b852ab07e8cdc1e5b7a1ec5eb056a77ac4;hb=d20581bcbf2809d5c2969d773b16a0c8714a6dec;hpb=57d69d5c1f98f778a0df82795ce21ee7bd21042a diff --git a/FS/FS/svc_forward.pm b/FS/FS/svc_forward.pm index 6ee1d5b85..7a121b835 100644 --- a/FS/FS/svc_forward.pm +++ b/FS/FS/svc_forward.pm @@ -1,11 +1,9 @@ package FS::svc_forward; use strict; -use vars qw( @ISA $nossh_hack $conf $shellmachine @qmailmachines - @vpopmailmachines ); -use Net::SSH qw(ssh); +use vars qw( @ISA ); use FS::Conf; -use FS::Record qw( fields qsearch qsearchs ); +use FS::Record qw( fields qsearch qsearchs dbh ); use FS::svc_Common; use FS::cust_svc; use FS::svc_acct; @@ -13,21 +11,6 @@ use FS::svc_domain; @ISA = qw( FS::svc_Common ); -#ask FS::UID to run this stuff for us later -$FS::UID::callback{'FS::svc_forward'} = sub { - $conf = new FS::Conf; - if ( $conf->exists('qmailmachines') ) { - $shellmachine = $conf->config('shellmachine') - } else { - $shellmachine = ''; - } - if ( $conf->exists('vpopmailmachines') ) { - @vpopmailmachines = $conf->config('vpopmailmachines'); - } else { - @vpopmailmachines = (); - } -}; - =head1 NAME FS::svc_forward - Object methods for svc_forward records @@ -91,17 +74,6 @@ the error, otherwise returns false. The additional fields pkgnum and svcpart (see L) should be defined. An FS::cust_svc record will be created and inserted. -If the configuration value (see L) vpopmailmachines exists, then -the command: - - [ -d $vpopdir/$domain/$source ] || { - echo "$destination" >> $vpopdir/$domain/$username/.$qmail - chown $vpopuid:$vpopgid $vpopdir/$domain/$username/.$qmail - } - -is executed on each vpopmailmachine via ssh (see the vpopmail documentation). -This behaviour can be supressed by setting $FS::svc_forward::nossh_hack true. - =cut sub insert { @@ -115,29 +87,20 @@ sub insert { local $SIG{TSTP} = 'IGNORE'; local $SIG{PIPE} = 'IGNORE'; + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; + $error = $self->check; return $error if $error; $error = $self->SUPER::insert; - return $error if $error; - - my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $self->srcsvc } ); - my $username = $svc_acct->username; - my $domain = $svc_acct->domain; - my $destination; - if ($self->dstsvc) { - my $dst_svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $self->dstsvc } ); - $destination = $dst_svc_acct->email; - } else { - $destination = $self->dst; - } - - foreach my $vpopmailmachine ( @vpopmailmachines ) { - my($machine, $vpopdir, $vpopuid, $vpopgid) = split(/\s+/, $vpopmailmachine); - ssh("root\@$machine","[ -d $vpopdir/$domain/$username ] || { echo \"$destination\" >> $vpopdir/$domain/$username/.qmail; chown $vpopuid:$vpopgid $vpopdir/$domain/$username/.qmail; }") - unless $nossh_hack; + if ($error) { + $dbh->rollback if $oldAutoCommit; + return $error; } + $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; #no error } @@ -149,29 +112,37 @@ returns the error, otherwise returns false. The corresponding FS::cust_svc record will be deleted as well. -=item replace OLD_RECORD +=cut -Replaces OLD_RECORD with this one in the database. If there is an error, -returns the error, otherwise returns false. +sub delete { + my $self = shift; -If srcsvc changes, and the configuration value vpopmailmachines exists, then -the command: + local $SIG{HUP} = 'IGNORE'; + local $SIG{INT} = 'IGNORE'; + local $SIG{QUIT} = 'IGNORE'; + local $SIG{TERM} = 'IGNORE'; + local $SIG{TSTP} = 'IGNORE'; + local $SIG{PIPE} = 'IGNORE'; - rm $vpopdir/$domain/$username/.qmail + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::Autocommit = 0; + my $dbh = dbh; -is executed on each vpopmailmachine via ssh. This behaviour can be supressed -by setting $FS::svc_forward_nossh_hack true. + my $error = $self->SUPER::delete; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } -If dstsvc changes (or dstsvc is 0 and dst changes), and the configuration value -vpopmailmachines exists, then the command: + $dbh->commit or die $dbh->errstr if $oldAutoCommit; + ''; +} - [ -d $vpopdir/$domain/$source ] || { - echo "$destination" >> $vpopdir/$domain/$username/.$qmail - chown $vpopuid:$vpopgid $vpopdir/$domain/$username/.$qmail - } -is executed on each vpopmailmachine via ssh. This behaviour can be supressed -by setting $FS::svc_forward_nossh_hack true. +=item replace OLD_RECORD + +Replaces OLD_RECORD with this one in the database. If there is an error, +returns the error, otherwise returns false. =cut @@ -193,40 +164,17 @@ sub replace { local $SIG{TSTP} = 'IGNORE'; local $SIG{PIPE} = 'IGNORE'; - my $error = $new->SUPER::replace($old); - return $error if $error; - - if ( $new->srcsvc != $old->srcsvc ) { - my $old_svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $old->srcsvc } ); - my $old_username = $old_svc_acct->username; - my $old_domain = $old_svc_acct->domain; - foreach my $vpopmailmachine ( @vpopmailmachines ) { - my($machine, $vpopdir, $vpopuid, $vpopgid) = - split(/\s+/, $vpopmailmachine); - ssh("root\@$machine","rm $vpopdir/$old_domain/$old_username/.qmail") - unless $nossh_hack; - } - } + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; - #false laziness with stuff in insert, should subroutine - my $svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $new->srcsvc } ); - my $username = $svc_acct->username; - my $domain = $svc_acct->domain; - my $destination; - if ($new->dstsvc) { - my $dst_svc_acct = qsearchs( 'svc_acct', { 'svcnum' => $new->dstsvc } ); - $destination = $dst_svc_acct->email; - } else { - $destination = $new->dst; - } - - foreach my $vpopmailmachine ( @vpopmailmachines ) { - my($machine, $vpopdir, $vpopuid, $vpopgid) = split(/\s+/, $vpopmailmachine); - ssh("root\@$machine","[ -d $vpopdir/$domain/$username ] || { echo \"$destination\" >> $vpopdir/$domain/$username/.qmail; chown $vpopuid:$vpopgid $vpopdir/$domain/$username/.qmail; }") - unless $nossh_hack; + my $error = $new->SUPER::replace($old); + if ($error) { + $dbh->rollback if $oldAutoCommit; + return $error; } - #end subroutinable bits + $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; } @@ -271,19 +219,20 @@ sub check { ; return $error if $error; - return "Unknown srcsvc" - unless qsearchs('svc_acct', { 'svcnum' => $self->srcsvc } ); + return "Unknown srcsvc" unless $self->srcsvc_acct; - return "Both dstsvc and dst were defined; one one can be specified" + return "Both dstsvc and dst were defined; only one can be specified" if $self->dstsvc && $self->dst; return "one of dstsvc or dst is required" unless $self->dstsvc || $self->dst; + #return "Unknown dstsvc: $dstsvc" unless $self->dstsvc_acct || ! $self->dstsvc; return "Unknown dstsvc" unless qsearchs('svc_acct', { 'svcnum' => $self->dstsvc } ) || ! $self->dstsvc; + if ( $self->dst ) { $self->dst =~ /^([\w\.\-]+)\@(([\w\-]+\.)+\w+)$/ or return "Illegal dst: ". $self->dst; @@ -292,24 +241,40 @@ sub check { $self->dst(''); } - ''; #no error + $self->SUPER::check; } -=back +=item srcsvc_acct -=head1 VERSION +Returns the FS::svc_acct object referenced by the srcsvc column. -$Id: svc_forward.pm,v 1.7 2001-09-06 20:41:59 ivan Exp $ +=cut -=head1 BUGS +sub srcsvc_acct { + my $self = shift; + qsearchs('svc_acct', { 'svcnum' => $self->srcsvc } ); +} + +=item dstsvc_acct + +Returns the FS::svc_acct object referenced by the srcsvc column, or false for +forwards not local to freeside. + +=cut + +sub dstsvc_acct { + my $self = shift; + qsearchs('svc_acct', { 'svcnum' => $self->dstsvc } ); +} -The remote commands should be configurable. +=back + +=head1 BUGS =head1 SEE ALSO L, L, L, L, L, -L, L, L, L, L, -schema.html from the base documentation. +L, L, schema.html from the base documentation. =cut