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