summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/shellcommands.pm
blob: ccde72a6835cfb720f6af511f7627058141ab410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package FS::part_export::shellcommands;

use vars qw(@ISA);
use FS::part_export;

@ISA = qw(FS::part_export);

sub rebless { shift; }

sub _export_insert {
  my($self) = shift;
  $self->_export_command('useradd', @_);
}

sub _export_delete {
  my($self) = shift;
  $self->_export_command('userdel', @_);
}

sub _export_command {
  my ( $self, $action, $svc_acct) = (shift, shift, shift);
  my $command = $self->option($action);
  no strict 'refs';
  ${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields;
  $self->shellcommands_queue(
    $self->options('user')||'root'. "\@". $self->options('machine'),
    eval(qq("$command"))
  );
}

sub _export_replace {
  my($self, $new, $old ) = (shift, shift, shift);
  my $command = $self->option('usermod');
  no strict 'refs';
  ${"old_$_"} = $old->getfield($_) foreach $old->fields;
  ${"new_$_"} = $new->getfield($_) foreach $new->fields;
  $self->shellcommands_queue(
    $self->options('user')||'root'. "\@". $self->options('machine'),
    eval(qq("$command"))
  );
}

#a good idea to queue anything that could fail or take any time
sub shellcommands_queue {
  my( $self, $svcnum ) = (shift, shift);
  my $queue = new FS::queue {
    'svcnum' => $svcnum,
    'job'    => "Net::SSH::ssh_cmd", #freeside-queued pre-uses...
  };
  $queue->insert( @_ );
}

#sub shellcommands_insert { #subroutine, not method
#}
#sub shellcommands_replace { #subroutine, not method
#}
#sub shellcommands_delete { #subroutine, not method
#}