mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-18 10:46:34 +00:00
28 lines
948 B
CoffeeScript
28 lines
948 B
CoffeeScript
_ = require('lodash')
|
|
resin = require('../resin')
|
|
authHooks = require('../hooks/auth')
|
|
|
|
SYSTEM_VAR_REGEX = /^RESIN_/
|
|
|
|
isSystemVariable = (environmentVariable) ->
|
|
SYSTEM_VAR_REGEX.test(environmentVariable.name)
|
|
|
|
exports.list = authHooks.failIfNotLoggedIn (program) ->
|
|
applicationId = program.parent?.application
|
|
|
|
if not applicationId?
|
|
resin.errors.handle(new Error('You have to specify an application'))
|
|
|
|
resin.models.environmentVariables.getAll applicationId, (error, environmentVariables) ->
|
|
resin.errors.handle(error) if error?
|
|
|
|
if not program.parent.verbose?
|
|
environmentVariables = _.reject(environmentVariables, isSystemVariable)
|
|
|
|
resin.log.out(resin.ui.widgets.table.horizontal(environmentVariables))
|
|
|
|
exports.remove = authHooks.failIfNotLoggedIn (id, program) ->
|
|
resin.ui.patterns.remove 'environment variable', program.parent.yes, (callback) ->
|
|
resin.models.environmentVariables.remove(id, callback)
|
|
, resin.errors.handle
|