typo from refactoring
[freeside.git] / FS / FS / part_export / domain_shellcommands.pm
1 package FS::part_export::domain_shellcommands;
2
3 use strict;
4 use vars qw(@ISA %info);
5 use Tie::IxHash;
6 use FS::part_export;
7
8 @ISA = qw(FS::part_export);
9
10 tie my %options, 'Tie::IxHash',
11   'user' => { label=>'Remote username', default=>'root' },
12   'useradd' => { label=>'Insert command',
13                  default=>'',
14                },
15   'userdel'  => { label=>'Delete command',
16                   default=>'',
17                 },
18   'usermod'  => { label=>'Modify command',
19                   default=>'',
20                 },
21 ;
22
23 %info = (
24   'svc'     => 'svc_domain',
25   'desc'    => 'Run remote commands via SSH, for domains (qmail, ISPMan).',
26   'options' => \%options,
27   'notes'   => <<'END'
28 Run remote commands via SSH, for domains.  You will need to
29 <a href="../docs/ssh.html">setup SSH for unattended operation</a>.
30 <BR><BR>Use these buttons for some useful presets:
31 <UL>
32   <LI>
33     <INPUT TYPE="button" VALUE="qmail catchall .qmail-domain-default maintenance" onClick='
34       this.form.useradd.value = "[ \"$uid\" -a \"$gid\" -a \"$dir\" -a \"$qdomain\" ] && [ -e $dir/.qmail-$qdomain-default ] || { touch $dir/.qmail-$qdomain-default; chown $uid:$gid $dir/.qmail-$qdomain-default; }";
35       this.form.userdel.value = "";
36       this.form.usermod.value = "";
37     '>
38   <LI>
39     <INPUT TYPE="button" VALUE="ISPMan CLI" onClick='
40       this.form.useradd.value = "/usr/local/ispman/bin/ispman.addDomain -d $domain changeme";
41       this.form.userdel.value = "/usr/local/ispman/bin/ispman.deleteDomain -d $domain";
42       this.form.usermod.value = "";
43     '>
44 </UL>
45 The following variables are available for interpolation (prefixed with <code>new_</code> or <code>old_</code> for replace operations):
46 <UL>
47   <LI><code>$domain</code>
48   <LI><code>$qdomain</code> - domain with periods replaced by colons
49   <LI><code>$uid</code> - of catchall account
50   <LI><code>$gid</code> - of catchall account
51   <LI><code>$dir</code> - home directory of catchall account
52   <LI>All other fields in
53     <a href="../docs/schema.html#svc_domain">svc_domain</a> are also available.
54 </UL>
55 END
56 );
57
58 sub rebless { shift; }
59
60 sub _export_insert {
61   my($self) = shift;
62   $self->_export_command('useradd', @_);
63 }
64
65 sub _export_delete {
66   my($self) = shift;
67   $self->_export_command('userdel', @_);
68 }
69
70 sub _export_command {
71   my ( $self, $action, $svc_domain) = (shift, shift, shift);
72   my $command = $self->option($action);
73
74   #set variable for the command
75   no strict 'vars';
76   {
77     no strict 'refs';
78     ${$_} = $svc_domain->getfield($_) foreach $svc_domain->fields;
79   }
80   ( $qdomain = $domain ) =~ s/\./:/g; #see dot-qmail(5): EXTENSION ADDRESSES
81
82   if ( $svc_domain->catchall ) {
83     no strict 'refs';
84     my $svc_acct = $svc_domain->catchall_svc_acct;
85     ${$_} = $svc_acct->getfield($_) foreach qw(uid gid dir);
86   } else {
87     no strict 'refs';
88     ${$_} = '' foreach qw(uid gid dir);
89   }
90
91   #done setting variables for the command
92
93   $self->shellcommands_queue( $svc_domain->svcnum,
94     user         => $self->option('user')||'root',
95     host         => $self->machine,
96     command      => eval(qq("$command")),
97   );
98 }
99
100 sub _export_replace {
101   my($self, $new, $old ) = (shift, shift, shift);
102   my $command = $self->option('usermod');
103   
104   #set variable for the command
105   no strict 'vars';
106   {
107     no strict 'refs';
108     ${"old_$_"} = $old->getfield($_) foreach $old->fields;
109     ${"new_$_"} = $new->getfield($_) foreach $new->fields;
110   }
111   ( $old_qdomain = $old_domain ) =~ s/\./:/g; #see dot-qmail(5): EXTENSION ADDRESSES
112   ( $new_qdomain = $new_domain ) =~ s/\./:/g; #see dot-qmail(5): EXTENSION ADDRESSES
113
114   if ( $old->catchall ) {
115     no strict 'refs';
116     my $svc_acct = $old->catchall_svc_acct;
117     ${"old_$_"} = $svc_acct->getfield($_) foreach qw(uid gid dir);
118   } else {
119     ${"old_$_"} = '' foreach qw(uid gid dir);
120   }
121   if ( $new->catchall ) {
122     no strict 'refs';
123     my $svc_acct = $new->catchall_svc_acct;
124     ${"new_$_"} = $svc_acct->getfield($_) foreach qw(uid gid dir);
125   } else {
126     ${"new_$_"} = '' foreach qw(uid gid dir);
127   }
128
129   #done setting variables for the command
130
131   $self->shellcommands_queue( $new->svcnum,
132     user         => $self->option('user')||'root',
133     host         => $self->machine,
134     command      => eval(qq("$command")),
135   );
136 }
137
138 #a good idea to queue anything that could fail or take any time
139 sub shellcommands_queue {
140   my( $self, $svcnum ) = (shift, shift);
141   my $queue = new FS::queue {
142     'svcnum' => $svcnum,
143     'job'    => "FS::part_export::domain_shellcommands::ssh_cmd",
144   };
145   $queue->insert( @_ );
146 }
147
148 sub ssh_cmd { #subroutine, not method
149   use Net::SSH '0.08';
150   &Net::SSH::ssh_cmd( { @_ } );
151 }
152
153 #sub shellcommands_insert { #subroutine, not method
154 #}
155 #sub shellcommands_replace { #subroutine, not method
156 #}
157 #sub shellcommands_delete { #subroutine, not method
158 #}
159
160 1;
161