mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
import Analytics from 'analytics-node';
|
|
import {getAppVersion} from './appInfo';
|
|
import * as db from './database';
|
|
import {SEGMENT_WRITE_KEY} from './constants';
|
|
|
|
let analytics = null;
|
|
let userId = null;
|
|
|
|
export async function initLegacyAnalytics () {
|
|
analytics = new Analytics(SEGMENT_WRITE_KEY);
|
|
|
|
if (!userId) {
|
|
const stats = await db.stats.get();
|
|
userId = stats._id;
|
|
|
|
// Recurse now that we have a userId
|
|
return await initLegacyAnalytics();
|
|
}
|
|
|
|
analytics.identify({
|
|
userId,
|
|
traits: {
|
|
appPlatform: process.platform,
|
|
appVersion: getAppVersion(),
|
|
|
|
// Reserved Traits
|
|
createdAt: new Date()
|
|
}
|
|
});
|
|
|
|
console.log(`-- Legacy analytics Initialized for ${userId} --`);
|
|
}
|
|
|
|
export function trackLegacyEvent (event, properties = {}) {
|
|
// Don't track events if we haven't set them up yet
|
|
if (analytics) {
|
|
// Add base properties
|
|
Object.assign(properties, {
|
|
appPlatform: process.platform,
|
|
appVersion: getAppVersion()
|
|
});
|
|
|
|
analytics.track({userId, event, properties});
|
|
}
|
|
}
|