d69848f22900270cae270d2c8b1c337581d1e44f
[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   no strict 'vars';
28   {
29     no strict 'refs';
30     ${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields;
31   }
32   $finger = shell_quote $finger;
33   $domain = $svc_acct->domain;
34   $crypt_password = ''; #surpress "used only once" warnings
35   $crypt_password = crypt( $svc_acct->_password,
36                              $saltset[int(rand(64))].$saltset[int(rand(64))] );
37   $self->shellcommands_queue( $svc_acct->svcnum,
38     user         => $self->option('user')||'root',
39     host         => $self->machine,
40     command      => eval(qq("$command")),
41     stdin_string => eval(qq("$stdin")),
42   );
43 }
44
45 sub _export_replace {
46   my($self, $new, $old ) = (shift, shift, shift);
47   my $command = $self->option('usermod');
48   my $stdin = $self->option('usermod_stdin');
49   no strict 'vars';
50   {
51     no strict 'refs';
52     ${"old_$_"} = $old->getfield($_) foreach $old->fields;
53     ${"new_$_"} = $new->getfield($_) foreach $new->fields;
54   }
55   $new_finger = shell_quote $new_finger;
56   $new_domain = $new->domain;
57   $new_crypt_password = ''; #surpress "used only once" warnings
58   $new_crypt_password = crypt( $new->_password,
59                                $saltset[int(rand(64))].$saltset[int(rand(64))]);
60   $self->shellcommands_queue( $new->svcnum,
61     user         => $self->option('user')||'root',
62     host         => $self->machine,
63     command      => eval(qq("$command")),
64     stdin_string => eval(qq("$stdin")),
65   );
66 }
67
68 #a good idea to queue anything that could fail or take any time
69 sub shellcommands_queue {
70   my( $self, $svcnum ) = (shift, shift);
71   my $queue = new FS::queue {
72     'svcnum' => $svcnum,
73     'job'    => "FS::part_export::shellcommands::ssh_cmd",
74   };
75   $queue->insert( @_ );
76 }
77
78 sub ssh_cmd { #subroutine, not method
79   use Net::SSH '0.07';
80   &Net::SSH::ssh_cmd( { @_ } );
81 }
82
83 #sub shellcommands_insert { #subroutine, not method
84 #}
85 #sub shellcommands_replace { #subroutine, not method
86 #}
87 #sub shellcommands_delete { #subroutine, not method
88 #}
89