lbry-desktop/ui/analytics.js

247 lines
6.6 KiB
JavaScript
Raw Normal View History

2018-02-16 09:47:52 +01:00
// @flow
2018-09-24 05:44:42 +02:00
import { Lbryio } from 'lbryinc';
2019-04-01 16:30:19 +02:00
import ReactGA from 'react-ga';
2019-04-09 23:21:00 +02:00
import { history } from './store';
2019-05-14 22:35:49 +02:00
// @if TARGET='app'
import Native from 'native';
2019-05-14 22:35:49 +02:00
import ElectronCookies from '@exponent/electron-cookies';
// @endif
2018-02-16 09:47:52 +01:00
2019-06-20 02:57:51 +02:00
const isProduction = process.env.NODE_ENV === 'production';
const devInternalApis = process.env.LBRY_API_URL;
const LBRY_TV_MINUS_PIRATE_BAY_UA_ID = 'UA-60403362-16';
const LBRY_TV_UA_ID = 'UA-60403362-12';
const DESKTOP_UA_ID = 'UA-60403362-13';
2019-11-07 16:33:00 +01:00
const SECOND_TRACKER_NAME = 'tracker2';
// @if TARGET='app'
ElectronCookies.enable({
origin: 'https://lbry.tv',
});
// @endif
2019-06-20 02:57:51 +02:00
2018-02-16 09:47:52 +01:00
type Analytics = {
error: string => void,
2019-04-01 16:30:19 +02:00
pageView: string => void,
2018-02-24 01:24:00 +01:00
setUser: Object => void,
toggle: (boolean, ?boolean) => void,
apiLogView: (string, string, string, ?number, ?() => void) => Promise<any>,
2019-10-16 23:36:50 +02:00
apiLogPublish: (ChannelClaim | StreamClaim) => void,
2019-07-22 01:35:59 +02:00
tagFollowEvent: (string, boolean, string) => void,
2020-01-22 18:19:49 +01:00
videoStartEvent: (string, number) => void,
videoBufferEvent: (string, number) => void,
emailProvidedEvent: () => void,
emailVerifiedEvent: () => void,
rewardEligibleEvent: () => void,
2019-10-02 20:20:25 +02:00
startupEvent: () => void,
readyEvent: number => void,
2019-11-04 16:55:02 +01:00
openUrlEvent: string => void,
2018-02-24 01:24:00 +01:00
};
2018-02-16 09:47:52 +01:00
2019-10-16 23:36:50 +02:00
type LogPublishParams = {
uri: string,
claim_id: string,
outpoint: string,
channel_claim_id?: string,
};
2020-01-02 23:30:58 +01:00
let analyticsEnabled: boolean = isProduction;
2018-02-16 09:47:52 +01:00
const analytics: Analytics = {
error: message => {
2020-01-02 17:30:27 +01:00
if (analyticsEnabled && isProduction) {
Lbryio.call('event', 'desktop_error', { error_message: message });
}
},
2019-04-01 16:30:19 +02:00
pageView: path => {
2018-02-24 01:24:00 +01:00
if (analyticsEnabled) {
2019-11-07 16:33:00 +01:00
ReactGA.pageview(path, [SECOND_TRACKER_NAME]);
2018-02-16 09:47:52 +01:00
}
},
2019-07-22 04:28:49 +02:00
setUser: userId => {
if (analyticsEnabled && userId) {
ReactGA.set({
userId,
});
// @if TARGET='app'
Native.getAppVersionInfo().then(({ localVersion }) => {
2019-08-15 05:09:34 +02:00
sendGaEvent('Desktop-Version', localVersion);
2019-07-22 04:28:49 +02:00
});
// @endif
2019-07-22 04:28:49 +02:00
}
},
2019-04-01 16:30:19 +02:00
toggle: (enabled: boolean): void => {
2019-04-14 07:48:11 +02:00
// Always collect analytics on lbry.tv
// @if TARGET='app'
analyticsEnabled = enabled;
2019-04-14 07:48:11 +02:00
// @endif
2018-02-24 01:24:00 +01:00
},
2019-08-14 05:04:08 +02:00
apiLogView: (uri, outpoint, claimId, timeToStart) => {
return new Promise((resolve, reject) => {
if (analyticsEnabled && (isProduction || devInternalApis)) {
const params: {
uri: string,
outpoint: string,
claim_id: string,
time_to_start?: number,
} = {
uri,
outpoint,
claim_id: claimId,
};
// lbry.tv streams from AWS so we don't care about the time to start
if (timeToStart && !IS_WEB) {
params.time_to_start = timeToStart;
}
resolve(Lbryio.call('file', 'view', params));
} else {
resolve();
}
});
2018-03-08 06:07:42 +01:00
},
2019-02-05 19:36:40 +01:00
apiLogSearch: () => {
2019-06-20 02:57:51 +02:00
if (analyticsEnabled && isProduction) {
2019-02-05 19:36:40 +01:00
Lbryio.call('event', 'search');
}
},
2019-10-16 23:36:50 +02:00
apiLogPublish: (claimResult: ChannelClaim | StreamClaim) => {
if (analyticsEnabled && isProduction) {
const { permanent_url: uri, claim_id: claimId, txid, nout, signing_channel: signingChannel } = claimResult;
let channelClaimId;
if (signingChannel) {
channelClaimId = signingChannel.claim_id;
}
const outpoint = `${txid}:${nout}`;
2019-10-16 23:36:50 +02:00
const params: LogPublishParams = { uri, claim_id: claimId, outpoint };
if (channelClaimId) {
params['channel_claim_id'] = channelClaimId;
}
2019-10-16 23:36:50 +02:00
Lbryio.call('event', 'publish', params);
}
},
apiSearchFeedback: (query, vote) => {
2019-06-20 02:57:51 +02:00
if (isProduction) {
// We don't need to worry about analytics enabled here because users manually click on the button to provide feedback
Lbryio.call('feedback', 'search', { query, vote });
}
},
2020-01-22 18:19:49 +01:00
videoStartEvent: (claimId, duration) => {
sendGaEvent('Media', 'StartDelay', claimId, duration);
},
videoBufferEvent: (claimId, currentTime) => {
sendGaEvent('Media', 'BufferTimestamp', claimId, currentTime);
},
2019-07-22 01:35:59 +02:00
tagFollowEvent: (tag, following, location) => {
2019-08-15 05:09:34 +02:00
sendGaEvent(following ? 'Tag-Follow' : 'Tag-Unfollow', tag);
2019-07-22 01:35:59 +02:00
},
channelBlockEvent: (uri, blocked, location) => {
2019-08-15 05:09:34 +02:00
sendGaEvent(blocked ? 'Channel-Hidden' : 'Channel-Unhidden', uri);
},
emailProvidedEvent: () => {
2019-08-15 05:09:34 +02:00
sendGaEvent('Engagement', 'Email-Provided');
},
emailVerifiedEvent: () => {
2019-08-15 05:09:34 +02:00
sendGaEvent('Engagement', 'Email-Verified');
},
rewardEligibleEvent: () => {
2019-08-15 05:09:34 +02:00
sendGaEvent('Engagement', 'Reward-Eligible');
},
2019-11-04 16:55:02 +01:00
openUrlEvent: (url: string) => {
sendGaEvent('Engagement', 'Open-Url', url);
},
2019-10-02 20:20:25 +02:00
startupEvent: () => {
sendGaEvent('Startup', 'Startup');
},
readyEvent: (timeToReady: number) => {
sendGaEvent('Startup', 'App-Ready');
sendGaTimingEvent('Startup', 'App-Ready', timeToReady);
},
2018-02-24 01:24:00 +01:00
};
2018-02-16 09:47:52 +01:00
2020-01-22 18:19:49 +01:00
function sendGaEvent(category, action, label, value) {
2019-08-15 05:09:34 +02:00
if (analyticsEnabled && isProduction) {
2019-11-07 16:33:00 +01:00
ReactGA.event(
{
category,
action,
...(label ? { label } : {}),
2020-01-22 18:19:49 +01:00
...(value ? { value } : {}),
2019-11-07 16:33:00 +01:00
},
[SECOND_TRACKER_NAME]
);
2019-08-15 05:09:34 +02:00
}
}
2019-10-02 20:20:25 +02:00
function sendGaTimingEvent(category: string, action: string, timeInMs: number) {
if (analyticsEnabled && isProduction) {
2019-11-07 16:33:00 +01:00
ReactGA.timing(
{
category,
variable: action,
value: timeInMs,
},
[SECOND_TRACKER_NAME]
);
2019-10-02 20:20:25 +02:00
}
}
let gaTrackers = [];
2019-04-11 20:22:47 +02:00
if (!IS_WEB) {
gaTrackers.push({
trackingId: DESKTOP_UA_ID,
});
} else {
gaTrackers.push({
trackingId: LBRY_TV_UA_ID,
});
const { search } = window.location;
const urlParams = new URLSearchParams(search);
2019-11-06 18:18:15 +01:00
const isPirateBayUser = urlParams.get('utm_source') === 'PB';
if (!isPirateBayUser) {
gaTrackers.push({
trackingId: LBRY_TV_MINUS_PIRATE_BAY_UA_ID,
2019-11-07 16:33:00 +01:00
gaOptions: {
name: SECOND_TRACKER_NAME,
},
});
}
}
2019-05-14 22:35:49 +02:00
ReactGA.initialize(gaTrackers, {
2019-04-09 23:21:00 +02:00
testMode: process.env.NODE_ENV !== 'production',
2019-05-14 22:35:49 +02:00
cookieDomain: 'auto',
2019-10-02 20:20:25 +02:00
siteSpeedSampleRate: 100,
2019-08-15 05:09:34 +02:00
// un-comment to see events as they are sent to google
// debug: true,
2019-04-09 23:21:00 +02:00
});
2019-04-01 16:30:19 +02:00
// Manually call the first page view
2019-04-09 23:21:00 +02:00
// React Router doesn't include this on `history.listen`
2019-07-09 18:18:06 +02:00
// @if TARGET='web'
2019-04-09 23:21:00 +02:00
analytics.pageView(window.location.pathname + window.location.search);
2019-07-09 18:18:06 +02:00
// @endif
2019-04-01 16:30:19 +02:00
2019-05-14 22:35:49 +02:00
// @if TARGET='app'
ReactGA.set({ checkProtocolTask: null });
ReactGA.set({ location: 'https://lbry.tv' });
analytics.pageView(window.location.pathname.split('.html')[1] + window.location.search || '/');
// @endif;
2019-04-01 16:30:19 +02:00
// Listen for url changes and report
2019-04-09 23:21:00 +02:00
// This will include search queries
history.listen(location => {
2019-04-15 05:49:50 +02:00
const { pathname, search } = location;
2019-04-14 07:48:11 +02:00
2019-04-15 05:49:50 +02:00
const page = `${pathname}${search}`;
analytics.pageView(page);
2019-04-09 23:21:00 +02:00
});
2019-04-01 16:30:19 +02:00
2018-02-16 09:47:52 +01:00
export default analytics;