2014-11-19 17:38:15 +00:00
|
|
|
_ = require('lodash')
|
|
|
|
deviceModel = require('../models/device')
|
|
|
|
getDeviceDisplayName = require('../device/device').getDisplayName
|
|
|
|
table = require('../table/table')
|
|
|
|
authHooks = require('../hooks/auth')
|
|
|
|
|
|
|
|
exports.list = authHooks.failIfNotLoggedIn (applicationId) ->
|
|
|
|
deviceModel.getAll(applicationId).then (devices) ->
|
|
|
|
|
|
|
|
console.log table.horizontal devices, (device) ->
|
|
|
|
device.application = device.application[0].app_name
|
|
|
|
device.device_type = getDeviceDisplayName(device.device_type)
|
|
|
|
delete device.note
|
|
|
|
delete device.supervisor_version
|
|
|
|
delete device.uuid
|
|
|
|
delete device.download_progress
|
|
|
|
return device
|
2014-11-19 19:18:15 +00:00
|
|
|
, [ 'ID', 'Name', 'Device Type', 'Is Online', 'IP Address', 'Application', 'Status', 'Last Seen' ]
|
2014-11-19 17:38:15 +00:00
|
|
|
|
|
|
|
.catch (error) ->
|
|
|
|
throw error
|