mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
87 lines
2.8 KiB
JavaScript
87 lines
2.8 KiB
JavaScript
(function() {
|
|
var _, async, examplesData, fs, mkdirp, path, vcs, visuals;
|
|
|
|
mkdirp = require('mkdirp');
|
|
|
|
async = require('async');
|
|
|
|
fs = require('fs');
|
|
|
|
path = require('path');
|
|
|
|
_ = require('lodash');
|
|
|
|
visuals = require('resin-cli-visuals');
|
|
|
|
vcs = require('resin-vcs');
|
|
|
|
examplesData = require('../data/examples.json');
|
|
|
|
exports.list = {
|
|
signature: 'examples',
|
|
description: 'list all example applications',
|
|
help: 'Use this command to list available example applications from resin.io\n\nExample:\n\n $ resin examples',
|
|
permission: 'user',
|
|
action: function() {
|
|
examplesData = _.map(examplesData, function(example, index) {
|
|
example.id = index + 1;
|
|
return example;
|
|
});
|
|
examplesData = _.map(examplesData, function(example) {
|
|
if (example.author == null) {
|
|
example.author = 'Unknown';
|
|
}
|
|
return example;
|
|
});
|
|
return console.log(visuals.table.horizontal(examplesData, ['name', 'display_name', 'author']));
|
|
}
|
|
};
|
|
|
|
exports.info = {
|
|
signature: 'example <name>',
|
|
description: 'list a single example application',
|
|
help: 'Use this command to show information of a single example application\n\nExample:\n\n $ resin example cimon',
|
|
permission: 'user',
|
|
action: function(params, options, done) {
|
|
var example;
|
|
example = _.findWhere(examplesData, {
|
|
name: params.name
|
|
});
|
|
if (example == null) {
|
|
return done(new Error("Unknown example: " + params.name));
|
|
}
|
|
if (example.author == null) {
|
|
example.author = 'Unknown';
|
|
}
|
|
console.log(visuals.table.vertical(example, ["$" + example.display_name + "$", 'description', 'author', 'repository']));
|
|
return done();
|
|
}
|
|
};
|
|
|
|
exports.clone = {
|
|
signature: 'example clone <name>',
|
|
description: 'clone an example application',
|
|
help: 'Use this command to clone an example application to the current directory\n\nThis command outputs information about the cloning process.\nUse `--quiet` to remove that output.\n\nExample:\n\n $ resin example clone cimon',
|
|
permission: 'user',
|
|
action: function(params, options, done) {
|
|
var currentDirectory, destination, example;
|
|
example = _.findWhere(examplesData, {
|
|
name: params.name
|
|
});
|
|
if (example == null) {
|
|
return done(new Error("Unknown example: " + params.name));
|
|
}
|
|
currentDirectory = process.cwd();
|
|
destination = path.join(currentDirectory, example.name);
|
|
return mkdirp(destination, function(error) {
|
|
if (error != null) {
|
|
return done(error);
|
|
}
|
|
console.info("Cloning " + example.display_name + " to " + destination);
|
|
return vcs.clone(example.repository, destination).nodeify(done);
|
|
});
|
|
}
|
|
};
|
|
|
|
}).call(this);
|