### Copyright 2016 Resin.io Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ### # TODO: A function to reliably execute a command # in all supported operating systems, including # different Windows environments like `cmd.exe` # and `Cygwin` should be encapsulated in a # re-usable package. # This is literally copy-pasted from the `resin-sync` # module. getSubShellCommand = (command) -> os = require('os') if os.platform() is 'win32' return { program: 'cmd.exe' args: [ '/s', '/c', command ] } else return { program: '/bin/sh' args: [ '-c', command ] } module.exports = signature: 'ssh [destination]' description: '(beta) get a shell into the running app container of a device' help: ''' WARNING: If you're running Windows, this command only supports `cmd.exe`. Use this command to get a shell into the running application container of your device. The `destination` argument can be either a device uuid or an application name. Examples: $ resin ssh MyApp $ resin ssh 7cf02a6 $ resin ssh 7cf02a6 --port 8080 $ resin ssh 7cf02a6 -v ''' permission: 'user' primary: true options: [ signature: 'port' parameter: 'port' description: 'ssh gateway port' alias: 't' , signature: 'verbose' boolean: true description: 'increase verbosity' alias: 'v' ] action: (params, options, done) -> child_process = require('child_process') Promise = require 'bluebird' resin = require('resin-sdk') settings = require('resin-settings-client') patterns = require('../utils/patterns') if not options.port? options.port = 22 verbose = if options.verbose then '-vvv' else '' resin.models.device.has(params.destination).then (isValidUUID) -> if isValidUUID return params.destination return patterns.inferOrSelectDevice(params.destination) .then (uuid) -> console.info("Connecting with: #{uuid}") resin.models.device.get(uuid) .then (device) -> throw new Error('Device is not online') if not device.is_online Promise.props username: resin.auth.whoami() uuid: device.uuid # get full uuid containerId: resin.models.device.getApplicationInfo(device.uuid).get('containerId') .then ({ username, uuid, containerId }) -> throw new Error('Did not find running application container') if not containerId? Promise.try -> command = "ssh #{verbose} -t -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null \ -p #{options.port} #{username}@ssh.#{settings.get('proxyUrl')} enter #{uuid} #{containerId}" subShellCommand = getSubShellCommand(command) spawn = child_process.spawn subShellCommand.program, subShellCommand.args, stdio: 'inherit' .nodeify(done)