This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/cli.js

182 lines
4.8 KiB
JavaScript
Raw Normal View History

2014-02-07 23:21:24 +02:00
/*
* Copyright (c) 2015 Joyent Inc. All rights reserved.
2014-02-07 23:21:24 +02:00
*
* The `triton` CLI class.
2014-02-07 23:21:24 +02:00
*/
var assert = require('assert-plus');
var bunyan = require('bunyan');
2014-02-07 23:21:24 +02:00
var child_process = require('child_process'),
spawn = child_process.spawn,
exec = child_process.exec;
var cmdln = require('cmdln'),
Cmdln = cmdln.Cmdln;
var fs = require('fs');
var util = require('util'),
format = util.format;
2015-08-26 19:59:12 +03:00
var path = require('path');
var vasync = require('vasync');
2014-02-07 23:21:24 +02:00
var common = require('./common');
2014-02-08 10:15:26 +02:00
var errors = require('./errors');
var Triton = require('./triton');
2014-02-07 23:21:24 +02:00
//---- globals
var p = console.log;
2014-02-07 23:21:24 +02:00
var pkg = require('../package.json');
var name = 'triton';
2014-02-07 23:21:24 +02:00
var log = bunyan.createLogger({
name: name,
serializers: bunyan.stdSerializers,
stream: process.stderr,
level: 'warn'
});
//---- CLI class
function CLI() {
Cmdln.call(this, {
name: pkg.name,
desc: pkg.description,
options: [
{names: ['help', 'h'], type: 'bool', help: 'Print help and exit.'},
{name: 'version', type: 'bool', help: 'Print version and exit.'},
{names: ['verbose', 'v'], type: 'bool',
help: 'Verbose/debug output.'},
// XXX disable profile selection for now
//{names: ['profile', 'p'], type: 'string', env: 'TRITON_PROFILE',
// helpArg: 'NAME', help: 'Triton client profile to use.'}
2014-02-07 23:21:24 +02:00
],
helpOpts: {
includeEnv: true,
2015-08-26 07:34:47 +03:00
minHelpCol: 30
},
helpSubcmds: [
'help',
{ group: 'Operator Commands' },
'account',
2015-08-26 07:16:41 +03:00
'info',
2015-08-26 07:40:32 +03:00
'keys',
2015-08-26 01:15:02 +03:00
{ group: 'Instances (aka VMs/Machines/Containers)' },
2015-08-26 06:53:48 +03:00
'create-instance',
2015-08-26 01:15:02 +03:00
'instances',
2015-08-26 03:27:46 +03:00
'instance',
2015-08-26 01:15:02 +03:00
'instance-audit',
2015-08-26 04:09:32 +03:00
'start-instance',
'stop-instance',
'reboot-instance',
2015-08-26 08:25:26 +03:00
'delete-instance',
2015-08-26 22:16:01 +03:00
'wait-instance',
2015-08-26 06:25:00 +03:00
'ssh',
{ group: 'Images' },
'images',
2015-08-26 01:47:29 +03:00
'image',
{ group: 'Packages' },
'packages',
2015-08-26 23:40:50 +03:00
'package',
{ group: 'Networks' },
'networks'
]
2014-02-07 23:21:24 +02:00
});
}
util.inherits(CLI, Cmdln);
CLI.prototype.init = function (opts, args, callback) {
var self = this;
if (opts.version) {
p(this.name, pkg.version);
callback(false);
return;
}
this.opts = opts;
if (opts.verbose) {
log.level('trace');
log.src = true;
}
this.__defineGetter__('triton', function () {
if (self._triton === undefined) {
2015-08-26 19:59:12 +03:00
var userConfigPath = require('./config').DEFAULT_USER_CONFIG_PATH;
var dir = path.dirname(userConfigPath);
var cacheDir = path.join(dir, 'cache');
[dir, cacheDir].forEach(function (d) {
try {
fs.mkdirSync(d);
} catch (e) {
log.info({err: e}, 'failed to make dir %s', d);
}
});
self._triton = new Triton({
log: log,
profile: opts.profile,
config: userConfigPath,
cachedir: cacheDir
});
}
return self._triton;
});
2014-02-07 23:21:24 +02:00
// Cmdln class handles `opts.help`.
Cmdln.prototype.init.apply(this, arguments);
};
//CLI.prototype.do_profile = require('./do_profile');
2014-02-07 23:21:24 +02:00
// Operator
CLI.prototype.do_account = require('./do_account');
2015-08-26 07:16:41 +03:00
CLI.prototype.do_info = require('./do_info');
2015-08-26 07:40:32 +03:00
CLI.prototype.do_keys = require('./do_keys');
// Images
2015-08-26 00:25:30 +03:00
CLI.prototype.do_images = require('./do_images');
2015-08-26 01:47:29 +03:00
CLI.prototype.do_image = require('./do_image');
2015-08-26 00:25:30 +03:00
2015-08-26 01:15:02 +03:00
// Instances (aka VMs/containers/machines)
2015-08-26 03:27:46 +03:00
CLI.prototype.do_instance = require('./do_instance');
2015-08-26 01:15:02 +03:00
CLI.prototype.do_instances = require('./do_instances');
2015-08-26 06:53:48 +03:00
CLI.prototype.do_create_instance = require('./do_create_instance');
2015-08-26 01:15:02 +03:00
CLI.prototype.do_instance_audit = require('./do_instance_audit');
CLI.prototype.do_stop_instance = require('./do_startstop_instance')('stop');
CLI.prototype.do_start_instance = require('./do_startstop_instance')('start');
CLI.prototype.do_reboot_instance = require('./do_startstop_instance')('reboot');
2015-08-26 19:18:40 +03:00
CLI.prototype.do_delete_instance = require('./do_startstop_instance')('delete');
2015-08-26 22:16:01 +03:00
CLI.prototype.do_wait_instance = require('./do_wait_instance');
2015-08-26 06:25:00 +03:00
CLI.prototype.do_ssh = require('./do_ssh');
2014-02-07 23:21:24 +02:00
// Packages
CLI.prototype.do_packages = require('./do_packages');
CLI.prototype.do_package = require('./do_package');
2015-08-26 23:40:50 +03:00
// Networks
CLI.prototype.do_networks = require('./do_networks');
// Hidden commands
CLI.prototype.do_cloudapi = require('./do_cloudapi');
CLI.prototype.do_badger = require('./do_badger');
2014-02-07 23:21:24 +02:00
2015-07-26 08:45:20 +03:00
//---- mainline
if (require.main === module) {
var cli = new CLI();
cmdln.main(cli, {showNoCommandErr: false});
}
2014-02-07 23:21:24 +02:00
//---- exports
module.exports = CLI;