balena-cli/lib/actions/app.coffee
2014-11-21 13:23:29 -04:00

52 lines
1.7 KiB
CoffeeScript

_ = require('lodash')
async = require('async')
device = require('../device/device')
table = require('../table/table')
log = require('../log/log')
server = require('../server/server')
patterns = require('../patterns/patterns')
applicationModel = require('../models/application')
authHooks = require('../hooks/auth')
config = require('../config')
exports.list = authHooks.failIfNotLoggedIn ->
applicationModel.getAll().then (applications) ->
log.out 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) ->
log.out 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, program) ->
patterns.remove 'application', program.parent.yes, (callback) ->
applicationModel.remove(id).then ->
return callback()
.catch(callback)
, (error) ->
throw error if error?