balena-cli/lib/resin/models/device.coffee
2014-11-28 15:11:15 -04:00

50 lines
1.1 KiB
CoffeeScript

canvas = require('./_canvas')
_ = require('lodash')
errors = require('../errors/errors')
server = require('../server/server')
config = require('../config')
exports.getAll = (callback) ->
return canvas.get
resource: 'device'
options:
expand: 'application'
orderby: 'name asc'
.then (devices) ->
if _.isEmpty(devices)
return callback(new errors.NotAny('devices'))
return callback(null, devices)
.catch (error) ->
return callback(error)
exports.getAllByApplication = (applicationId, callback) ->
return canvas.get
resource: 'device'
options:
filter:
application: applicationId
expand: 'application'
orderby: 'name asc'
.then (devices) ->
if _.isEmpty(devices)
return callback(new errors.NotAny('devices'))
return callback(null, devices)
.catch (error) ->
return callback(error)
exports.remove = (id, callback) ->
return canvas.delete
resource: 'device'
id: id
.then ->
return callback()
.catch (error) ->
return callback(error)
exports.identify = (uuid, callback) ->
server.post(config.urls.identify, { uuid }, callback)