balena-cli/lib/helpers/helpers.coffee

16 lines
477 B
CoffeeScript
Raw Normal View History

url = require('url')
2014-11-28 15:36:03 -04:00
_ = require('lodash')
resin = require('../resin')
exports.formatLongString = (string, n) ->
return string if not n?
splitRegexp = new RegExp(".{1,#{n}}", 'g')
splittedString = string.match(splitRegexp)
return splittedString.join('\n')
2014-11-28 15:36:03 -04:00
exports.isDeviceUUIDValid = (uuid, callback) ->
resin.models.device.getAll (error, devices) ->
return callback?(error) if error?
uuidExists = _.findWhere(devices, { uuid })?
return callback(null, uuidExists)