make snarf info available to exports
[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_suspend {
24   my($self) = shift;
25   $self->_export_command('suspend', @_);
26 }
27
28 sub _export_unsuspend {
29   my($self) = shift;
30   $self->_export_command('unsuspend', @_);
31 }
32
33 sub _export_command {
34   my ( $self, $action, $svc_acct) = (shift, shift, shift);
35   my $command = $self->option($action);
36   return '' if $command =~ /^\s*$/;
37   my $stdin = $self->option($action."_stdin");
38
39   no strict 'vars';
40   {
41     no strict 'refs';
42     ${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields;
43
44     my $count = 1;
45     foreach my $acct_snarf ( $svc_acct->acct_snarf ) {
46       ${"snarf_$_$count"} = shell_quote( $acct_snarf->get($_) )
47         foreach qw( machine username _password );
48       $count++;
49     }
50   }
51
52   my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
53   if ( $cust_pkg ) {
54     $email = ( grep { $_ ne 'POST' } $cust_pkg->cust_main->invoicing_list )[0];
55   } else {
56     $email = '';
57   }
58
59   $finger = shell_quote $finger;
60   $quoted_password = shell_quote $_password;
61   $domain = $svc_acct->domain;
62   $crypt_password = ''; #surpress "used only once" warnings
63   $crypt_password = crypt( $svc_acct->_password,
64                              $saltset[int(rand(64))].$saltset[int(rand(64))] );
65
66   $self->shellcommands_queue( $svc_acct->svcnum,
67     user         => $self->option('user')||'root',
68     host         => $self->machine,
69     command      => eval(qq("$command")),
70     stdin_string => eval(qq("$stdin")),
71   );
72 }
73
74 sub _export_replace {
75   my($self, $new, $old ) = (shift, shift, shift);
76   my $command = $self->option('usermod');
77   my $stdin = $self->option('usermod_stdin');
78   no strict 'vars';
79   {
80     no strict 'refs';
81     ${"old_$_"} = $old->getfield($_) foreach $old->fields;
82     ${"new_$_"} = $new->getfield($_) foreach $new->fields;
83   }
84   $new_finger = shell_quote $new_finger;
85   $quoted_new__password = shell_quote $new__password; #old, wrong?
86   $new_quoted_password = shell_quote $new__password; #new, better?
87   $old_domain = $old->domain;
88   $new_domain = $new->domain;
89   $new_crypt_password = ''; #surpress "used only once" warnings
90   $new_crypt_password = crypt( $new->_password,
91                                $saltset[int(rand(64))].$saltset[int(rand(64))]);
92   if ( $self->option('usermod_pwonly') ) {
93     my $error = '';
94     if ( $old_username ne $new_username ) {
95       $error ||= "can't change username";
96     }
97     if ( $old_domain ne $new_domain ) {
98       $error ||= "can't change domain";
99     }
100     if ( $old_uid != $new_uid ) {
101       $error ||= "can't change uid";
102     }
103     if ( $old_dir ne $new_dir ) {
104       $error ||= "can't change dir";
105     }
106     return $error. ' ('. $self->exporttype. ' to '. $self->machine. ')'
107       if $error;
108   }
109   $self->shellcommands_queue( $new->svcnum,
110     user         => $self->option('user')||'root',
111     host         => $self->machine,
112     command      => eval(qq("$command")),
113     stdin_string => eval(qq("$stdin")),
114   );
115 }
116
117 #a good idea to queue anything that could fail or take any time
118 sub shellcommands_queue {
119   my( $self, $svcnum ) = (shift, shift);
120   my $queue = new FS::queue {
121     'svcnum' => $svcnum,
122     'job'    => "FS::part_export::shellcommands::ssh_cmd",
123   };
124   $queue->insert( @_ );
125 }
126
127 sub ssh_cmd { #subroutine, not method
128   use Net::SSH '0.07';
129   &Net::SSH::ssh_cmd( { @_ } );
130 }
131
132 #sub shellcommands_insert { #subroutine, not method
133 #}
134 #sub shellcommands_replace { #subroutine, not method
135 #}
136 #sub shellcommands_delete { #subroutine, not method
137 #}
138