Sha256: 76fe37e725358c7b6e2e821e911a51575fa83650597cd84e26be6da1e1340ac7

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

require 'shellwords'

module Aptible
  module CLI
    module Subcommands
      module SSH
        # rubocop:disable MethodLength
        def self.included(thor)
          thor.class_eval do
            include Helpers::Operation
            include Helpers::App

            desc 'ssh COMMAND', 'Run a command against an app'
            long_desc <<-LONGDESC
              Runs an interactive command against a remote Aptible app

              If specifying an app, invoke via: aptible ssh [--app=APP] COMMAND
            LONGDESC
            option :app
            def ssh(*args)
              app = ensure_app(options)
              host = app.account.bastion_host
              port = app.account.bastion_port

              ENV['ACCESS_TOKEN'] = fetch_token
              ENV['APTIBLE_COMMAND'] = command_from_args(*args)
              ENV['APTIBLE_APP'] = app.handle

              Kernel.exec "ssh -o 'SendEnv=*' -p #{port} root@#{host}"
            end

            private

            def command_from_args(*args)
              args.empty? ? '/bin/bash' : Shellwords.join(args)
            end
          end
        end
        # rubocop:enable MethodLength
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
aptible-cli-0.3.5 lib/aptible/cli/subcommands/ssh.rb
aptible-cli-0.3.4 lib/aptible/cli/subcommands/ssh.rb
aptible-cli-0.3.3 lib/aptible/cli/subcommands/ssh.rb
aptible-cli-0.3.2 lib/aptible/cli/subcommands/ssh.rb
aptible-cli-0.3.1 lib/aptible/cli/subcommands/ssh.rb