mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-24 07:46:39 +00:00
32 lines
1.1 KiB
CoffeeScript
32 lines
1.1 KiB
CoffeeScript
table = require('../table/table')
|
|
resin = require('../resin')
|
|
widgets = require('../widgets/widgets')
|
|
patterns = require('../patterns/patterns')
|
|
authHooks = require('../hooks/auth')
|
|
config = require('../config')
|
|
|
|
exports.list = authHooks.failIfNotLoggedIn (applicationId) ->
|
|
resin.models.device.getAll(applicationId).then (devices) ->
|
|
|
|
resin.log.out table.horizontal devices, (device) ->
|
|
device.application = device.application[0].app_name
|
|
device.device_type = resin.device.getDisplayName(device.device_type)
|
|
delete device.note
|
|
delete device.supervisor_version
|
|
delete device.uuid
|
|
delete device.download_progress
|
|
return device
|
|
, [ 'ID', 'Name', 'Device Type', 'Is Online', 'IP Address', 'Application', 'Status', 'Last Seen' ]
|
|
|
|
.catch(resin.errors.handle)
|
|
|
|
exports.remove = authHooks.failIfNotLoggedIn (id, program) ->
|
|
patterns.remove 'device', program.parent.yes, (callback) ->
|
|
resin.models.device.remove(id).then ->
|
|
return callback()
|
|
.catch(callback)
|
|
, resin.errors.handle
|
|
|
|
exports.identify = authHooks.failIfNotLoggedIn (uuid) ->
|
|
resin.server.post(config.urls.identify, { uuid }, resin.errors.handle)
|