shellcommands edit gecos field too
[freeside.git] / FS / FS / part_export / shellcommands.pm
1 package FS::part_export::shellcommands;
2
3 use vars qw(@ISA @saltset);
4 use String::ShellQuote;
5 use FS::part_export;
6
7 @ISA = qw(FS::part_export);
8
9 @saltset = ( 'a'..'z' , 'A'..'Z' , '0'..'9' , '.' , '/' );
10
11 sub rebless { shift; }
12
13 sub _export_insert {
14   my($self) = shift;
15   $self->_export_command('useradd', @_);
16 }
17
18 sub _export_delete {
19   my($self) = shift;
20   $self->_export_command('userdel', @_);
21 }
22
23 sub _export_command {
24   my ( $self, $action, $svc_acct) = (shift, shift, shift);
25   my $command = $self->option($action);
26   my $stdin = $self->option($action."_stdin");
27   {
28     no strict 'refs';
29     ${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields;
30   }
31   $finger = shell_quote $finger;
32   $crypt_password = ''; #surpress "used only once" warnings
33   $crypt_password = crypt( $svc_acct->_password,
34                              $saltset[int(rand(64))].$saltset[int(rand(64))] );
35   $self->shellcommands_queue( $svc_acct->svcnum,
36     user         => $self->option('user')||'root',
37     host         => $self->machine,
38     command      => eval(qq("$command")),
39     stdin_string => eval(qq("$stdin")),
40   );
41 }
42
43 sub _export_replace {
44   my($self, $new, $old ) = (shift, shift, shift);
45   my $command = $self->option('usermod');
46   my $stdin = $self->option('usermod_stdin');
47   {
48     no strict 'refs';
49     ${"old_$_"} = $old->getfield($_) foreach $old->fields;
50     ${"new_$_"} = $new->getfield($_) foreach $new->fields;
51   }
52   $new_finger = shell_quote $new_finger;
53   $new_crypt_password = ''; #surpress "used only once" warnings
54   $new_crypt_password = crypt( $new->_password,
55                                $saltset[int(rand(64))].$saltset[int(rand(64))]);
56   $self->shellcommands_queue( $new->svcnum,
57     user         => $self->option('user')||'root',
58     host         => $self->machine,
59     command      => eval(qq("$command")),
60     stdin_string => eval(qq("$stdin")),
61   );
62 }
63
64 #a good idea to queue anything that could fail or take any time
65 sub shellcommands_queue {
66   my( $self, $svcnum ) = (shift, shift);
67   my $queue = new FS::queue {
68     'svcnum' => $svcnum,
69     'job'    => "FS::part_export::shellcommands::ssh_cmd",
70   };
71   $queue->insert( @_ );
72 }
73
74 sub ssh_cmd { #subroutine, not method
75   use Net::SSH '0.06';
76   &Net::SSH::ssh_cmd( { @_ } );
77 }
78
79 #sub shellcommands_insert { #subroutine, not method
80 #}
81 #sub shellcommands_replace { #subroutine, not method
82 #}
83 #sub shellcommands_delete { #subroutine, not method
84 #}
85