balena-cli/lib/resin/device/device.coffee
2014-11-26 13:12:39 -04:00

21 lines
516 B
CoffeeScript

_ = require('lodash')
# TODO: This should be fetch from the server
DEVICES = require('./device-data.json')
exports.getDisplayName = (device) ->
if _.indexOf(exports.getSupportedDevices(), device) isnt -1
return device
for key, value of DEVICES
if _.indexOf(value.names, device) isnt -1
return key
return 'Unknown'
exports.getDeviceSlug = (device) ->
displayName = exports.getDisplayName(device)
return DEVICES[displayName]?.slug or 'unknown'
exports.getSupportedDevices = ->
return _.keys(DEVICES)