mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
46 lines
1000 B
JavaScript
46 lines
1000 B
JavaScript
import Analytics from 'analytics-node';
|
|
import {SEGMENT_WRITE_KEY, getAppVersion, isDevelopment} from '../common/constants';
|
|
import * as models from '../models';
|
|
|
|
let analytics = null;
|
|
let userId = null;
|
|
|
|
export async function init () {
|
|
if (isDevelopment()) {
|
|
console.log('[segment] Not initializing for dev');
|
|
return;
|
|
}
|
|
|
|
analytics = new Analytics(SEGMENT_WRITE_KEY);
|
|
|
|
const stats = await models.stats.get();
|
|
userId = stats._id;
|
|
|
|
analytics.identify({
|
|
userId,
|
|
traits: {
|
|
appPlatform: process.platform,
|
|
appVersion: getAppVersion(),
|
|
|
|
// Reserved Traits
|
|
createdAt: new Date()
|
|
}
|
|
});
|
|
|
|
console.log(`[segment] Initialized for ${userId}`);
|
|
}
|
|
|
|
export function trackLegacyEvent (event, properties = {}) {
|
|
|
|
if (analytics) {
|
|
Object.assign(properties, {
|
|
appPlatform: process.platform,
|
|
appVersion: getAppVersion()
|
|
});
|
|
|
|
analytics.track({userId, event, properties});
|
|
}
|
|
|
|
console.log(`[segment] Track ${event} for ${userId}`);
|
|
}
|