mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
78 lines
2.3 KiB
CoffeeScript
78 lines
2.3 KiB
CoffeeScript
_ = require('lodash')
|
|
async = require('async')
|
|
device = require('../device/device')
|
|
table = require('../table/table')
|
|
log = require('../log/log')
|
|
server = require('../server/server')
|
|
widgets = require('../widgets/widgets')
|
|
patterns = require('../patterns/patterns')
|
|
applicationModel = require('../models/application')
|
|
authHooks = require('../hooks/auth')
|
|
config = require('../config')
|
|
|
|
exports.create = authHooks.failIfNotLoggedIn (name, program) ->
|
|
async.waterfall [
|
|
|
|
(callback) ->
|
|
deviceType = program.parent.type
|
|
|
|
if deviceType?
|
|
return callback(null, deviceType)
|
|
else
|
|
deviceTypes = device.getSupportedDevices()
|
|
widgets.select('Select a type', deviceTypes, callback)
|
|
|
|
(type, callback) ->
|
|
|
|
# TODO: Currently returns 'unknown'.
|
|
# Maybe we should break or handle better?
|
|
slugifiedType = device.getDeviceSlug(type)
|
|
|
|
applicationModel.create(name, slugifiedType).then ->
|
|
return callback()
|
|
.catch(callback)
|
|
|
|
], (error) ->
|
|
throw error if error?
|
|
|
|
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?
|