add domain_shellcommands export
[freeside.git] / FS / FS / part_export / domain_shellcommands.pm
diff --git a/FS/FS/part_export/domain_shellcommands.pm b/FS/FS/part_export/domain_shellcommands.pm
new file mode 100644 (file)
index 0000000..d2f55e5
--- /dev/null
@@ -0,0 +1,113 @@
+package FS::part_export::domain_shellcommands;
+
+use strict;
+use vars qw(@ISA);
+use FS::part_export;
+
+@ISA = qw(FS::part_export);
+
+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_domain) = (shift, shift, shift);
+  my $command = $self->option($action);
+
+  #set variable for the command
+  {
+    no strict 'refs';
+    ${$_} = $svc_domain->getfield($_) foreach $svc_domain->fields;
+  }
+
+#  my $domain_record = $svc_www->domain_record; # or die ?
+#  my $zone = $domain_record->reczone; # or die ?
+#  unless ( $zone =~ /\.$/ ) {
+#    my $svc_domain = $domain_record->svc_domain; # or die ?
+#    $zone .= '.'. $svc_domain->domain;
+#  }
+
+#  my $svc_acct = $svc_www->svc_acct; # or die ?
+#  my $username = $svc_acct->username;
+#  my $homedir = $svc_acct->dir; # or die ?
+
+  #done setting variables for the command
+
+  $self->shellcommands_queue( $svc_domain->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 'refs';
+    ${"old_$_"} = $old->getfield($_) foreach $old->fields;
+    ${"new_$_"} = $new->getfield($_) foreach $new->fields;
+  }
+#  my $old_domain_record = $old->domain_record; # or die ?
+#  my $old_zone = $old_domain_record->reczone; # or die ?
+#  unless ( $old_zone =~ /\.$/ ) {
+#    my $old_svc_domain = $old_domain_record->svc_domain; # or die ?
+#    $old_zone .= '.'. $old_svc_domain->domain;
+#  }
+#
+#  my $old_svc_acct = $old->svc_acct; # or die ?
+#  my $old_username = $old_svc_acct->username;
+#  my $old_homedir = $old_svc_acct->dir; # or die ?
+#
+#  my $new_domain_record = $new->domain_record; # or die ?
+#  my $new_zone = $new_domain_record->reczone; # or die ?
+#  unless ( $new_zone =~ /\.$/ ) {
+#    my $new_svc_domain = $new_domain_record->svc_domain; # or die ?
+#    $new_zone .= '.'. $new_svc_domain->domain;
+#  }
+
+#  my $new_svc_acct = $new->svc_acct; # or die ?
+#  my $new_username = $new_svc_acct->username;
+#  my $new_homedir = $new_svc_acct->dir; # or die ?
+
+  #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::domain_shellcommands::ssh_cmd",
+  };
+  $queue->insert( @_ );
+}
+
+sub ssh_cmd { #subroutine, not method
+  use Net::SSH '0.06';
+  &Net::SSH::ssh_cmd( { @_ } );
+}
+
+#sub shellcommands_insert { #subroutine, not method
+#}
+#sub shellcommands_replace { #subroutine, not method
+#}
+#sub shellcommands_delete { #subroutine, not method
+#}
+