successfully wrapping sudo
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / SSH.pm
index c9193d0..a90270f 100644 (file)
@@ -1,23 +1,26 @@
 package Object::Remote::Connector::SSH;
 
-use Object::Remote::FatNode;
-use Net::OpenSSH;
+use Object::Remote::ModuleSender;
+use Object::Remote::Handle;
 use Moo;
 
-with 'Object::Remote::Role::Connector';
+with 'Object::Remote::Role::Connector::PerlInterpreter';
 
-has ssh_masters => (is => 'ro', default => sub { {} });
+around _perl_command => sub {
+  my ($orig, $self, $target) = @_;
+  return 'ssh', $target, $self->$orig($target);
+};
 
-sub _open2_for {
-  my $self = shift;
-  my @res = $self->_ssh_object_for(@_)->open2('perl','-',@_);
-  print { $res[0] } $Object::Remote::FatNode::DATA, "__END__\n";
-  return @res;
-}
+no warnings 'once';
 
-sub _ssh_object_for {
-  my ($self, $on) = @_;
-  $self->ssh_masters->{$on} ||= Net::OpenSSH->new($on);
-}
+push @Object::Remote::Connection::Guess, sub { 
+  for ($_[0]) {
+    # 0-9 a-z _ - first char, those or . subsequent - hostnamish
+    if (defined and !ref and /^(?:.*?\@)?[\w\-][\w\-\.]/) {
+      return __PACKAGE__->new->connect($_[0]);
+    }
+  }
+  return;
+};
 
 1;