summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/forward_shellcommands.pm
blob: 0f79edea074ee68878deaf72be5c1eb59176d411 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package FS::part_export::forward_shellcommands;

use strict;
use vars qw(@ISA %info);
use Tie::IxHash;
use FS::part_export;

@ISA = qw(FS::part_export);

tie my %options, 'Tie::IxHash',
  'user' => { label=>'Remote username', default=>'root' },
  'useradd' => { label=>'Insert command',
                 default=>'',
               },
  'userdel'  => { label=>'Delete command',
                  default=>'',
                },
  'usermod'  => { label=>'Modify command',
                  default=>'',
                },
;

%info = (
  'svc'     => 'svc_forward',
  'desc'    => 'Run remote commands via SSH, for forwards',
  'options' => \%options,
  'notes'   => <<'END'
Run remote commands via SSH, for forwards.  You will need to
<a href="http://www.freeside.biz/mediawiki/index.php/Freeside:1.9:Documentation:Administration:SSH_Keys">setup SSH for unattended operation</a>.
<BR><BR>Use these buttons for some useful presets:
<UL>
  <LI>
    <INPUT TYPE="button" VALUE="text vpopmail maintenance" onClick='
      this.form.useradd.value = "[ -d /home/vpopmail/domains/$domain/$username ] && { echo \"$destination\" > /home/vpopmail/domains/$domain/$username/.qmail; chown vpopmail:vchkpw /home/vpopmail/domains/$domain/$username/.qmail; }";
      this.form.userdel.value = "rm /home/vpopmail/domains/$domain/$username/.qmail";
      this.form.usermod.value = "mv /home/vpopmail/domains/$old_domain/$old_username/.qmail /home/vpopmail/domains/$new_domain/$new_username; [ \"$old_destination\" != \"$new_destination\" ] && { echo \"$new_destination\" > /home/vpopmail/domains/$new_domain/$new_username/.qmail; chown vpopmail:vchkpw /home/vpopmail/domains/$new_domain/$new_username/.qmail; }";
    '>
  <LI>
    <INPUT TYPE="button" VALUE="ISPMan CLI" onClick='
      this.form.useradd.value = "";
      this.form.userdel.value = "";
      this.form.usermod.value = "";
    '>
</UL>
The following variables are available for interpolation (prefixed with
<code>new_</code> or <code>old_</code> for replace operations):
<UL>
  <LI><code>$username</code> - username of forward source
  <LI><code>$domain</code> - domain of forward source
  <LI><code>$source</code> - forward source ($username@$domain)
  <LI><code>$destination</code> - forward destination
  <LI>All other fields in <a href="../docs/schema.html#svc_forward">svc_forward</a> are also available.
</UL>
END
);

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_forward ) = (shift, shift, shift);
  my $command = $self->option($action);
  return '' if $command =~ /^\s*$/;

  #set variable for the command
  no strict 'vars';
  {
    no strict 'refs';
    ${$_} = $svc_forward->getfield($_) foreach $svc_forward->fields;
  }

  if ( $svc_forward->srcsvc ) {
    my $srcsvc_acct = $svc_forward->srcsvc_acct;
    $username = $srcsvc_acct->username;
    $domain   = $srcsvc_acct->domain;
    $source   = $srcsvc_acct->email;
  } else {
    $source = $svc_forward->src;
    ( $username, $domain ) = split(/\@/, $source);
  }

  if ($svc_forward->dstsvc) {
    $destination = $svc_forward->dstsvc_acct->email;
  } else {
    $destination = $svc_forward->dst;
  }

  #done setting variables for the command

  $self->shellcommands_queue( $svc_forward->svcnum,
    user         => $self->option('user')||'root',
    host         => $self->machine,
    command      => eval(qq("$command")),
  );
}

sub _export_replace {
  my( $self, $new, $old ) = (shift, shift, shift);
  my $command = $self->option('usermod');
  
  #set variable for the command
  no strict 'vars';
  {
    no strict 'refs';
    ${"old_$_"} = $old->getfield($_) foreach $old->fields;
    ${"new_$_"} = $new->getfield($_) foreach $new->fields;
  }

  if ( $old->srcsvc ) {
    my $srcsvc_acct = $old->srcsvc_acct;
    $old_username = $srcsvc_acct->username;
    $old_domain   = $srcsvc_acct->domain;
    $old_source   = $srcsvc_acct->email;
  } else {
    $old_source = $old->src;
    ( $old_username, $old_domain ) = split(/\@/, $old_source);
  }

  if ( $old->dstsvc ) {
    $old_destination = $old->dstsvc_acct->email;
  } else {
    $old_destination = $old->dst;
  }

  if ( $new->srcsvc ) {
    my $srcsvc_acct = $new->srcsvc_acct;
    $new_username = $srcsvc_acct->username;
    $new_domain   = $srcsvc_acct->domain;
    $new_source   = $srcsvc_acct->email;
  } else {
    $new_source = $new->src;
    ( $new_username, $new_domain ) = split(/\@/, $new_source);
  }

  if ( $new->dstsvc ) {
    $new_destination = $new->dstsvc_acct->email;
  } else {
    $new_destination = $new->dst;
  }

  #done setting variables for the command

  $self->shellcommands_queue( $new->svcnum,
    user         => $self->option('user')||'root',
    host         => $self->machine,
    command      => 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'    => "FS::part_export::forward_shellcommands::ssh_cmd",
  };
  $queue->insert( @_ );
}

sub ssh_cmd { #subroutine, not method
  use Net::SSH '0.08';
  &Net::SSH::ssh_cmd( { @_ } );
}

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

1;