balena-cli/build/actions/app.js

166 lines
6.5 KiB
JavaScript
Raw Normal View History

2015-02-26 15:47:56 +00:00
(function() {
2015-08-12 12:17:46 +00:00
var async, commandOptions, form, resin, vcs, visuals;
2015-02-26 15:47:56 +00:00
async = require('async');
resin = require('resin-sdk');
visuals = require('resin-cli-visuals');
commandOptions = require('./command-options');
vcs = require('resin-vcs');
2015-03-09 13:14:39 +00:00
2015-07-27 12:08:55 +00:00
form = require('resin-cli-form');
2015-02-26 15:47:56 +00:00
exports.create = {
signature: 'app create <name>',
description: 'create an application',
help: 'Use this command to create a new resin.io application.\n\nYou can specify the application type with the `--type` option.\nOtherwise, an interactive dropdown will be shown for you to select from.\n\nYou can see a list of supported device types with\n\n $ resin devices supported\n\nExamples:\n\n $ resin app create MyApp\n $ resin app create MyApp --type raspberry-pi',
2015-02-26 15:47:56 +00:00
options: [
{
signature: 'type',
parameter: 'type',
description: 'application type',
alias: 't'
}
],
permission: 'user',
action: function(params, options, done) {
return async.waterfall([
function(callback) {
return resin.models.application.has(params.name).nodeify(callback);
}, function(hasApplication, callback) {
if (hasApplication) {
return callback(new Error('You already have an application with that name!'));
}
2015-02-26 15:47:56 +00:00
if (options.type != null) {
return callback(null, options.type);
}
2015-05-07 15:40:12 +00:00
return form.ask({
message: 'Device Type',
type: 'list',
choices: ['Raspberry Pi', 'Raspberry Pi 2', 'BeagleBone Black']
2015-07-27 12:08:55 +00:00
}).nodeify(callback);
2015-02-26 15:47:56 +00:00
}, function(type, callback) {
options.type = type;
return resin.models.application.create(params.name, options.type).nodeify(callback);
}, function(application, callback) {
console.info("Application created: " + params.name + " (" + options.type + ", id " + application.id + ")");
return callback();
2015-02-26 15:47:56 +00:00
}
], done);
}
};
exports.list = {
signature: 'apps',
description: 'list all applications',
help: 'Use this command to list all your applications.\n\nNotice this command only shows the most important bits of information for each app.\nIf you want detailed information, use resin app <name> instead.\n\nExamples:\n\n $ resin apps',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
return resin.models.application.getAll().then(function(applications) {
return console.log(visuals.table.horizontal(applications, ['id', 'app_name', 'device_type', 'online_devices', 'devices_length']));
}).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.info = {
signature: 'app <name>',
2015-02-26 15:47:56 +00:00
description: 'list a single application',
help: 'Use this command to show detailed information for a single application.\n\nExamples:\n\n $ resin app MyApp',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
return resin.models.application.get(params.name).then(function(application) {
return console.log(visuals.table.vertical(application, ["$" + application.app_name + "$", 'id', 'device_type', 'git_repository', 'commit']));
}).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.restart = {
signature: 'app restart <name>',
2015-02-26 15:47:56 +00:00
description: 'restart an application',
help: 'Use this command to restart all devices that belongs to a certain application.\n\nExamples:\n\n $ resin app restart MyApp',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
return resin.models.application.restart(params.name).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.remove = {
signature: 'app rm <name>',
2015-02-26 15:47:56 +00:00
description: 'remove an application',
help: 'Use this command to remove a resin.io application.\n\nNotice this command asks for confirmation interactively.\nYou can avoid this by passing the `--yes` boolean option.\n\nExamples:\n\n $ resin app rm MyApp\n $ resin app rm MyApp --yes',
2015-02-26 15:47:56 +00:00
options: [commandOptions.yes],
permission: 'user',
action: function(params, options, done) {
2015-07-27 12:08:55 +00:00
return async.waterfall([
function(callback) {
if (options.yes) {
return callback(null, true);
} else {
return form.ask({
message: 'Are you sure you want to delete the application?',
type: 'confirm',
"default": false
}).nodeify(callback);
}
}, function(confirmed, callback) {
if (!confirmed) {
return callback();
}
return resin.models.application.remove(params.name).nodeify(callback);
}
], done);
2015-02-26 15:47:56 +00:00
}
};
2015-03-09 13:14:39 +00:00
exports.associate = {
signature: 'app associate <name>',
2015-03-09 13:14:39 +00:00
description: 'associate a resin project',
2015-08-12 12:17:46 +00:00
help: 'Use this command to associate a project directory with a resin application.\n\nThis command adds a \'resin\' git remote to the directory and runs git init if necessary.\n\nNotice this command asks for confirmation interactively.\nYou can avoid this by passing the `--yes` boolean option.\n\nExamples:\n\n $ resin app associate MyApp',
options: [commandOptions.yes],
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
var currentDirectory;
currentDirectory = process.cwd();
2015-02-26 15:47:56 +00:00
return async.waterfall([
function(callback) {
return resin.models.application.has(params.name).nodeify(callback);
}, function(hasApp, callback) {
var message;
if (!hasApp) {
return callback(new Error("Invalid application: " + params.name));
}
message = "Are you sure you want to associate " + currentDirectory + " with " + params.name + "?";
2015-07-27 12:08:55 +00:00
if (options.yes) {
return callback(null, true);
} else {
return form.ask({
message: message,
type: 'confirm',
"default": false
}).nodeify(callback);
}
}, function(confirmed, callback) {
if (!confirmed) {
return done();
}
2015-07-10 17:04:17 +00:00
return vcs.initialize(currentDirectory).nodeify(callback);
2015-02-26 15:47:56 +00:00
}, function(callback) {
return resin.models.application.get(params.name).nodeify(callback);
2015-02-26 15:47:56 +00:00
}, function(application, callback) {
2015-07-10 17:04:17 +00:00
return vcs.associate(currentDirectory, application.git_repository).nodeify(callback);
2015-03-09 13:14:39 +00:00
}
], function(error, remoteUrl) {
if (error != null) {
return done(error);
}
console.info("git repository added: " + remoteUrl);
return done(null, remoteUrl);
});
2015-03-09 13:14:39 +00:00
}
};
2015-02-26 15:47:56 +00:00
}).call(this);