Class: SSHKit::Backend::Abstract

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/sshkit/backends/abstract.rb

Direct Known Subclasses

Local, Netssh, Printer, Skipper

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(host, &block) ⇒ Abstract

Returns a new instance of Abstract.



34
35
36
37
38
39
40
41
42
43
# File 'lib/sshkit/backends/abstract.rb', line 34

def initialize(host, &block)
  raise "Must pass a Host object" unless host.is_a? Host
  @host  = host
  @block = block

  @pwd   = nil
  @env   = nil
  @user  = nil
  @group = nil
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



25
26
27
# File 'lib/sshkit/backends/abstract.rb', line 25

def host
  @host
end

Class Method Details

.configObject



119
120
121
# File 'lib/sshkit/backends/abstract.rb', line 119

def config
  @config ||= OpenStruct.new
end

.configure {|config| ... } ⇒ Object

Yields:



123
124
125
# File 'lib/sshkit/backends/abstract.rb', line 123

def configure
  yield config
end

Instance Method Details

#as(who, &_block) ⇒ Object



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/sshkit/backends/abstract.rb', line 98

def as(who, &_block)
  if who.is_a? Hash
    @user  = who[:user]  || who["user"]
    @group = who[:group] || who["group"]
  else
    @user  = who
    @group = nil
  end
  execute <<-EOTEST, verbosity: Logger::DEBUG
    if ! sudo -u #{@user} whoami > /dev/null
      then echo "You cannot switch to user '#{@user}' using sudo, please check the sudoers file" 1>&2
      false
    fi
  EOTEST
  yield
ensure
  remove_instance_variable(:@user)
  remove_instance_variable(:@group)
end

#background(*args) ⇒ Object



64
65
66
67
68
69
70
# File 'lib/sshkit/backends/abstract.rb', line 64

def background(*args)
  SSHKit.config.deprecation_logger.log(
    'The background method is deprecated. Blame badly behaved pseudo-daemons!'
  )
  options = args.extract_options!.merge(run_in_background: true)
  create_command_and_execute(args, options).success?
end

#capture(*args) ⇒ Object



58
59
60
61
62
# File 'lib/sshkit/backends/abstract.rb', line 58

def capture(*args)
  options = { verbosity: Logger::DEBUG, strip: true }.merge(args.extract_options!)
  result = create_command_and_execute(args, options).full_stdout
  options[:strip] ? result.strip : result
end

#download!(_remote, _local = nil, _options = {}) ⇒ Object



130
# File 'lib/sshkit/backends/abstract.rb', line 130

def download!(_remote, _local=nil, _options = {}) raise MethodUnavailableError end

#execute(*args) ⇒ Object



72
73
74
75
# File 'lib/sshkit/backends/abstract.rb', line 72

def execute(*args)
  options = args.extract_options!
  create_command_and_execute(args, options).success?
end

#make(commands = []) ⇒ Object



45
46
47
# File 'lib/sshkit/backends/abstract.rb', line 45

def make(commands=[])
  execute :make, commands
end

#rake(commands = []) ⇒ Object



49
50
51
# File 'lib/sshkit/backends/abstract.rb', line 49

def rake(commands=[])
  execute :rake, commands
end

#runObject



27
28
29
30
31
32
# File 'lib/sshkit/backends/abstract.rb', line 27

def run
  Thread.current["sshkit_backend"] = self
  instance_exec(@host, &@block)
ensure
  Thread.current["sshkit_backend"] = nil
end

#test(*args) ⇒ Object



53
54
55
56
# File 'lib/sshkit/backends/abstract.rb', line 53

def test(*args)
  options = args.extract_options!.merge(raise_on_non_zero_exit: false, verbosity: Logger::DEBUG)
  create_command_and_execute(args, options).success?
end

#upload!(_local, _remote, _options = {}) ⇒ Object

Backends which extend the Abstract backend should implement the following methods:



129
# File 'lib/sshkit/backends/abstract.rb', line 129

def upload!(_local, _remote, _options = {}) raise MethodUnavailableError end

#with(environment, &_block) ⇒ Object



90
91
92
93
94
95
96
# File 'lib/sshkit/backends/abstract.rb', line 90

def with(environment, &_block)
  env_old = (@env ||= {})
  @env = env_old.merge environment
  yield
ensure
  @env = env_old
end

#within(directory, &_block) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/sshkit/backends/abstract.rb', line 77

def within(directory, &_block)
  (@pwd ||= []).push directory.to_s
  execute <<-EOTEST, verbosity: Logger::DEBUG
    if test ! -d #{File.join(@pwd)}
      then echo "Directory does not exist '#{File.join(@pwd)}'" 1>&2
      false
    fi
    EOTEST
    yield
ensure
  @pwd.pop
end