From: ivan Date: Thu, 26 Jun 2008 21:55:02 +0000 (+0000) Subject: adding phone_shellcommands with preliminary FreePBX integration commands X-Git-Tag: root_of_webpay_support~530 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=a2da8f67ee40abf7e755dcc80c5a4f9cd234ab6c;p=freeside.git adding phone_shellcommands with preliminary FreePBX integration commands --- diff --git a/FS/FS/part_export/phone_shellcommands.pm b/FS/FS/part_export/phone_shellcommands.pm new file mode 100644 index 000000000..cfbae5019 --- /dev/null +++ b/FS/FS/part_export/phone_shellcommands.pm @@ -0,0 +1,138 @@ +package FS::part_export::phone_shellcommands; + +use strict; +use vars qw(@ISA %info); +use Tie::IxHash; +use String::ShellQuote; +use FS::part_export; + +@ISA = qw(FS::part_export); + +#TODO +#- modify command (get something from freepbx for changing PINs) +#- suspension/unsuspension + +tie my %options, 'Tie::IxHash', + 'user' => { label=>'Remote username', default=>'root', }, + 'useradd' => { label=>'Insert command', }, + 'userdel' => { label=>'Delete command', }, + 'usermod' => { label=>'Modify command', }, + 'suspend' => { label=>'Suspension command', }, + 'unsuspend' => { label=>'Unsuspension command', }, +; + +%info = ( + 'svc' => 'svc_phone', + 'desc' => 'Run remote commands via SSH, for phone numbers', + 'options' => \%options, + 'notes' => <<'END' +Run remote commands via SSH, for phone numbers. You will need to +setup SSH for unattended operation. +

Use these buttons for some useful presets: + + +The following variables are available for interpolation (prefixed with new_ or +old_ for replace operations): + +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_suspend { + my($self) = shift; + $self->_export_command('suspend', @_); +} + +sub _export_unsuspend { + my($self) = shift; + $self->_export_command('unsuspend', @_); +} + +sub _export_command { + my ( $self, $action, $svc_phone) = (shift, shift, shift); + my $command = $self->option($action); + return '' if $command =~ /^\s*$/; + + #set variable for the command + no strict 'vars'; + { + no strict 'refs'; + ${$_} = $svc_phone->getfield($_) foreach $svc_phone->fields; + } + my $cust_pkg = $svc_phone->cust_svc->cust_pkg; + my $cust_name = $cust_pkg ? $cust_pkg->cust_main->name : ''; + $cust_name = shell_quote $cust_name; + #done setting variables for the command + + $self->shellcommands_queue( $svc_phone->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; + } + + my $cust_pkg = $new->cust_svc->cust_pkg; + my $new_cust_name = $cust_pkg ? $cust_pkg->cust_main->name : ''; + $new_cust_name = shell_quote $new_cust_name; + #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::phone_shellcommands::ssh_cmd", + }; + $queue->insert( @_ ); +} + +sub ssh_cmd { #subroutine, not method + use Net::SSH '0.08'; + &Net::SSH::ssh_cmd( { @_ } ); +} +