balena-cli/lib/actions/keys.coffee

92 lines
2.4 KiB
CoffeeScript
Raw Normal View History

2014-11-20 18:00:39 +00:00
_ = require('lodash')
_.str = require('underscore.string')
2014-12-19 17:06:58 +00:00
async = require('async')
fs = require('fs')
2015-01-08 12:04:37 +00:00
resin = require('resin-sdk')
2014-11-20 18:00:39 +00:00
helpers = require('../helpers/helpers')
visuals = require('resin-cli-visuals')
commandOptions = require('./command-options')
2014-11-20 17:02:29 +00:00
exports.list =
signature: 'keys'
description: 'list all ssh keys'
help: '''
Use this command to list all your SSH keys.
Examples:
$ resin keys
'''
permission: 'user'
action: (params, options, done) ->
resin.models.key.getAll (error, keys) ->
return done(error) if error?
2015-01-22 17:06:02 +00:00
console.log visuals.widgets.table.horizontal keys, [ 'id', 'title' ]
return done()
exports.info =
signature: 'key <id>'
description: 'list a single ssh key'
help: '''
Use this command to show information about a single SSH key.
Examples:
$ resin key 17
'''
permission: 'user'
action: (params, options, done) ->
resin.models.key.get params.id, (error, key) ->
return done(error) if error?
# TODO: Move this chop functionality to resin.models.key
key.public_key = '\n' + _.str.chop(key.public_key, resin.settings.get('sshKeyWidth')).join('\n')
2015-01-22 17:06:02 +00:00
console.log(visuals.widgets.table.vertical(key, [ 'id', 'title', 'public_key' ]))
return done()
exports.remove =
signature: 'key rm <id>'
description: 'remove a ssh key'
help: '''
Use this command to remove a SSH key from resin.io.
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
$ resin key rm 17
$ resin key rm 17 --yes
'''
options: [ commandOptions.yes ]
permission: 'user'
action: (params, options, done) ->
visuals.patterns.remove 'key', options.yes, (callback) ->
resin.models.key.remove(params.id, callback)
, done
exports.add =
signature: 'key add <name> [path]'
description: 'add a SSH key to resin.io'
help: '''
Use this command to associate a new SSH key with your account.
If `path` is omitted, the command will attempt
to read the SSH key from stdin.
Examples:
$ resin key add Main ~/.ssh/id_rsa.pub
$ cat ~/.ssh/id_rsa.pub | resin key add Main
'''
permission: 'user'
action: (params, options, done) ->
async.waterfall [
(callback) ->
if params.path?
fs.readFile(params.path, encoding: 'utf8', callback)
else
helpers.readStdin(callback)
(key, callback) ->
resin.models.key.create(params.name, key, callback)
], done