first attempt at fixing ssh/sh escaping problem with perl_command - works but isn...
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / SSH.pm
1 package Object::Remote::Connector::SSH;
2
3 use Object::Remote::ModuleSender;
4 use Object::Remote::Handle;
5 use Moo;
6
7 with 'Object::Remote::Role::Connector::PerlInterpreter';
8
9 has ssh_to => (is => 'ro', required => 1);
10
11 has ssh_perl_command => (is => 'lazy');
12
13 has ssh_options => (is => 'ro', default => sub { [ '-A' ] });
14
15 has ssh_command => (is => 'ro', default => sub { 'ssh' });
16
17 #TODO properly integrate if this works
18 BEGIN { $ENV{TERM} = 'dumb'; } 
19
20 sub _escape_shell_arg { 
21     my ($self, $str) = (@_);
22     $str =~ s/((?:^|[^\\])(?:\\\\)*)'/$1\\'/g;
23     return "$str";
24 }
25
26
27 sub _build_ssh_perl_command {
28   my ($self) = @_;
29   my $perl_command = join('', @{$self->perl_command});
30   
31   #TODO non-trivial to escape properly for ssh and shell
32   #this "works" but is not right, needs to be replaced
33   #after testing
34   return [
35     do { my $c = $self->ssh_command; ref($c) ? @$c : $c },
36     @{$self->ssh_options}, $self->ssh_to,
37     $self->_escape_shell_arg($perl_command),
38   ];
39 }
40
41 sub final_perl_command { shift->ssh_perl_command }
42
43 no warnings 'once';
44
45 push @Object::Remote::Connection::Guess, sub { 
46   for ($_[0]) {
47     # 0-9 a-z _ - first char, those or . subsequent - hostnamish
48     if (defined and !ref and /^(?:.*?\@)?[\w\-][\w\-\.]/) {
49       my $host = shift(@_);
50       return __PACKAGE__->new(@_, ssh_to => $host);
51     }
52   }
53   return;
54 };
55
56 1;