mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
c1ba73a2da
It's needed to properly integrate CLI with balena analytics proxy service. Change-type: patch Signed-off-by: Roman Mazur <roman@balena.io>
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Balena Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import BalenaSdk = require('balena-sdk');
|
|
import Promise = require('bluebird');
|
|
import _ = require('lodash');
|
|
import Mixpanel = require('mixpanel');
|
|
import Raven = require('raven');
|
|
|
|
import packageJSON = require('../package.json');
|
|
|
|
const getBalenaSdk = _.once(() => BalenaSdk.fromSharedOptions());
|
|
const getMixpanel = _.once<any>(() => {
|
|
const settings = require('balena-settings-client');
|
|
return Mixpanel.init('balena-main', {
|
|
host: `api.${settings.get('balenaUrl')}`,
|
|
path: '/mixpanel',
|
|
protocol: 'https',
|
|
});
|
|
});
|
|
|
|
export function trackCommand(commandSignature: string) {
|
|
const balena = getBalenaSdk();
|
|
return Promise.props({
|
|
balenaUrl: balena.settings.get('balenaUrl'),
|
|
username: balena.auth.whoami().catchReturn(undefined),
|
|
mixpanel: getMixpanel(),
|
|
})
|
|
.then(({ username, balenaUrl, mixpanel }) => {
|
|
return Promise.try(() => {
|
|
Raven.mergeContext({
|
|
user: {
|
|
id: username,
|
|
username,
|
|
},
|
|
});
|
|
// commandSignature is a string like, for example:
|
|
// "push <applicationOrDevice>"
|
|
// That's literally so: "applicationOrDevice" is NOT replaced with
|
|
// the actual application ID or device ID. The purpose is find out the
|
|
// most / least used command verbs, so we can focus our development
|
|
// effort where it is most beneficial to end users.
|
|
return mixpanel.track(`[CLI] ${commandSignature}`, {
|
|
distinct_id: username,
|
|
version: packageJSON.version,
|
|
node: process.version,
|
|
arch: process.arch,
|
|
balenaUrl, // e.g. 'balena-cloud.com' or 'balena-staging.com'
|
|
platform: process.platform,
|
|
});
|
|
});
|
|
})
|
|
.timeout(100)
|
|
.catchReturn(undefined);
|
|
}
|