balena-cli/lib/actions/keys.coffee

36 lines
1.3 KiB
CoffeeScript
Raw Normal View History

2014-11-20 18:00:39 +00:00
_ = require('lodash')
2014-11-26 16:07:10 +00:00
resin = require('../resin')
2014-11-20 17:02:29 +00:00
authHooks = require('../hooks/auth')
2014-11-21 17:56:11 +00:00
patterns = require('../patterns/patterns')
2014-11-20 17:02:29 +00:00
table = require('../table/table')
2014-11-20 18:00:39 +00:00
helpers = require('../helpers/helpers')
2014-11-20 17:02:29 +00:00
config = require('../config')
exports.list = authHooks.failIfNotLoggedIn ->
2014-11-26 16:07:10 +00:00
resin.server.get config.urls.keys, (error, response, keys) ->
2014-11-26 16:38:02 +00:00
resin.errors.handle(error) if error?
resin.log.out table.horizontal keys, (key) ->
2014-11-20 17:02:29 +00:00
delete key.public_key
return key
, [ 'ID', 'Title' ]
2014-11-20 18:00:39 +00:00
exports.info = authHooks.failIfNotLoggedIn (id) ->
2014-11-21 13:23:02 +00:00
id = _.parseInt(id)
2014-11-20 18:00:39 +00:00
# TODO: We don't have a way to query a single ssh key yet.
# As a workaround, we request all of them, and filter
# the one we need. Fix once we have a better way.
2014-11-26 16:07:10 +00:00
resin.server.get config.urls.keys, (error, response, keys) ->
2014-11-26 16:38:02 +00:00
resin.errors.handle(error) if error?
2014-11-20 18:00:39 +00:00
key = _.findWhere(keys, { id })
if not key?
2014-11-26 16:38:02 +00:00
resin.errors.handle(new resin.errors.NotFound("key #{id}"))
2014-11-20 18:00:39 +00:00
key.public_key = '\n' + helpers.formatLongString(key.public_key, config.sshKeyWidth)
2014-11-26 16:38:02 +00:00
resin.log.out(table.vertical(key, _.identity, [ 'ID', 'Title', 'Public Key' ]))
2014-11-21 17:56:11 +00:00
exports.remove = authHooks.failIfNotLoggedIn (id, program) ->
patterns.remove 'key', program.parent.yes, (callback) ->
2014-11-26 16:07:10 +00:00
resin.server.delete("/user/keys/#{id}", callback)
2014-11-26 16:38:02 +00:00
, resin.errors.handle