mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 22:47:48 +00:00
6124d8c493
Change-type: patch Signed-off-by: Paulo Castro <paulo@balena.io>
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
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<any>(() => {
|
|
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);
|
|
}
|