mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
88 lines
2.9 KiB
JavaScript
88 lines
2.9 KiB
JavaScript
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
(function() {
|
|
var getSubShellCommand;
|
|
|
|
getSubShellCommand = function(command) {
|
|
var os;
|
|
os = require('os');
|
|
if (os.platform() === 'win32') {
|
|
return {
|
|
program: 'sh',
|
|
args: ['-c', command]
|
|
};
|
|
} else {
|
|
return {
|
|
program: '/bin/sh',
|
|
args: ['-c', command]
|
|
};
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
signature: 'enter <uuid>',
|
|
description: '(beta) get a shell into the running app container of a device',
|
|
help: 'Use this command to get a shell into the running application container of\nyour device.\n\nExamples:\n\n $ resin enter 7cf02a6\n $ resin enter 7cf02a6 --port 8080',
|
|
permission: 'user',
|
|
primary: true,
|
|
options: [
|
|
{
|
|
signature: 'port',
|
|
parameter: 'port',
|
|
description: 'ssh port',
|
|
alias: 't'
|
|
}
|
|
],
|
|
action: function(params, options, done) {
|
|
var Promise, child_process, resin, settings;
|
|
child_process = require('child_process');
|
|
Promise = require('bluebird');
|
|
resin = require('resin-sdk');
|
|
settings = require('resin-settings-client');
|
|
if (options.port == null) {
|
|
options.port = 22;
|
|
}
|
|
console.info("Connecting with: " + params.uuid);
|
|
return Promise.props({
|
|
isOnline: resin.models.device.isOnline(params.uuid),
|
|
username: resin.auth.whoami(),
|
|
uuid: resin.models.device.get(params.uuid).get('uuid'),
|
|
containerId: resin.models.device.getApplicationInfo(params.uuid).get('containerId')
|
|
}).then(function(arg) {
|
|
var containerId, isOnline, username, uuid;
|
|
isOnline = arg.isOnline, username = arg.username, uuid = arg.uuid, containerId = arg.containerId;
|
|
if (!isOnline) {
|
|
throw new Error('Device is not online');
|
|
}
|
|
if (containerId == null) {
|
|
throw new Error('Did not find running application container');
|
|
}
|
|
return Promise["try"](function() {
|
|
var command, spawn, subShellCommand;
|
|
command = "ssh -t -p " + options.port + " " + username + "@" + (settings.get('proxyUrl')) + " enter " + uuid + " " + containerId;
|
|
subShellCommand = getSubShellCommand(command);
|
|
return spawn = child_process.spawn(subShellCommand.program, subShellCommand.args, {
|
|
stdio: 'inherit'
|
|
});
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
}).call(this);
|