import * as Capitano from 'capitano'; import _ = require('lodash'); import Mixpanel = require('mixpanel'); import Raven = require('raven'); import Promise = require('bluebird'); import BalenaSdk = require('balena-sdk'); import packageJSON = require('../package.json'); const getBalenaSdk = _.once(() => BalenaSdk.fromSharedOptions()); const getMatchCommandAsync = Promise.promisify(Capitano.state.getMatchCommand); const getMixpanel = _.once(() => { const settings = require('balena-settings-client'); return Mixpanel.init('00000000000000000000000000000000', { host: `api.${settings.get('balenaUrl')}`, path: '/mixpanel', protocol: 'https', }); }); export function trackCommand(capitanoCli: Capitano.Cli) { const balena = getBalenaSdk(); return Promise.props({ balenaUrl: balena.settings.get('balenaUrl'), username: balena.auth.whoami().catchReturn(undefined), mixpanel: getMixpanel(), }) .then(({ username, balenaUrl, mixpanel }) => { return getMatchCommandAsync(capitanoCli.command).then(command => { Raven.mergeContext({ user: { id: username, username, }, }); return mixpanel.track(`[CLI] ${command.signature.toString()}`, { distinct_id: username, argv: process.argv.join(' '), version: packageJSON.version, node: process.version, arch: process.arch, balenaUrl, platform: process.platform, command: capitanoCli, }); }); }) .timeout(100) .catchReturn(undefined); }