balena-cli/lib/actions/app.coffee
2014-11-21 10:12:03 -04:00

59 lines
1.7 KiB
CoffeeScript

_ = require('lodash')
async = require('async')
device = require('../device/device')
table = require('../table/table')
server = require('../server/server')
widgets = require('../widgets/widgets')
applicationModel = require('../models/application')
authHooks = require('../hooks/auth')
config = require('../config')
exports.list = authHooks.failIfNotLoggedIn ->
applicationModel.getAll().then (applications) ->
console.log table.horizontal applications, (application) ->
application.device_type = device.getDisplayName(application.device_type)
application['Online Devices'] = _.where(application.device, is_online: 1).length
application['All Devices'] = application.device?.length or 0
delete application.git_repository
delete application.device
return application
, [ 'ID', 'Name', 'Device Type', 'Online Devices', 'All Devices' ]
.catch (error) ->
throw error
exports.info = authHooks.failIfNotLoggedIn (id) ->
applicationModel.get(id).then (application) ->
console.log table.vertical application, (application) ->
application.device_type = device.getDisplayName(application.device_type)
delete application.device
return application
, [ 'ID', 'Name', 'Device Type', 'Git Repository', 'Commit' ]
.catch (error) ->
throw error
exports.restart = authHooks.failIfNotLoggedIn (id) ->
# TODO: Move this URL to config
server.post "/application/#{id}/restart", (error) ->
throw error if error?
exports.remove = authHooks.failIfNotLoggedIn (id) ->
async.waterfall [
(callback) ->
widgets.confirmRemoval('application', callback)
(confirmed, callback) ->
return callback() if not confirmed
applicationModel.remove(id).then ->
return callback()
.catch(callback)
], (error) ->
throw error if error?