balena-supervisor/src/app.coffee

70 lines
2.0 KiB
CoffeeScript
Raw Normal View History

Promise = require 'bluebird'
2013-12-17 00:33:42 +00:00
knex = require './db'
utils = require './utils'
bootstrap = require './bootstrap'
config = require './config'
2014-06-18 16:54:36 +00:00
utils.mixpanelTrack('Supervisor start')
console.log('Starting connectivity check..')
utils.connectivityCheck()
2014-09-15 11:31:14 +00:00
knex('config').select('value').where(key: 'uuid').then ([ uuid ]) ->
if not uuid?.value
console.log('New device detected. Bootstrapping..')
retryingBootstrap = ->
utils.mixpanelTrack('Device bootstrap')
bootstrap().catch (err) ->
utils.mixpanelTrack('Device bootstrap failed, retrying', {error: err, delay: config.bootstrapRetryDelay})
Promise.delay(config.bootstrapRetryDelay)
.then(retryingBootstrap)
retryingBootstrap()
2014-06-18 16:54:36 +00:00
else
uuid.value
.then (uuid) ->
# Persist the uuid in subsequent metrics
utils.mixpanelProperties.uuid = uuid
api = require './api'
application = require './application'
supervisor = require './supervisor-update'
2014-12-23 19:11:28 +00:00
vpn = require './lib/vpn'
console.log('Starting OpenVPN..')
2014-12-23 19:11:28 +00:00
setImmediate(vpn.connect)
2013-12-18 00:55:47 +00:00
console.log('Starting API server..')
api.listen(80)
2013-12-23 04:33:16 +00:00
console.log('Starting Apps..')
2014-03-19 19:54:39 +00:00
knex('app').select()
.then (apps) ->
Promise.all(apps.map(application.start))
2014-03-19 19:54:39 +00:00
.catch (error) ->
2014-09-15 11:31:14 +00:00
console.error('Error starting apps:', error)
2014-03-19 19:54:39 +00:00
.then ->
utils.mixpanelTrack('Start application update poll', {interval: config.appUpdatePollInterval})
setInterval(->
application.update()
, config.appUpdatePollInterval)
application.update()
updateIpAddr = ->
utils.findIpAddrs().then (ipAddrs) ->
application.updateDeviceInfo(
ip_address: ipAddrs.join(' ')
)
console.log('Starting periodic check for IP addresses..')
setInterval(updateIpAddr, 30 * 1000) # Every 30s
updateIpAddr()
# Tell the supervisor updater that we have successfully started, so that it can do whatever it needs to.
supervisor.startupSuccessful()
2014-10-08 18:19:27 +00:00
# Let API know we are running a new version
2014-12-23 17:52:23 +00:00
console.log('Updating supervisor version:', utils.supervisorVersion)
2014-10-08 18:19:27 +00:00
application.updateDeviceInfo(
supervisor_version: utils.supervisorVersion
2014-10-08 18:19:27 +00:00
)