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'
|
2019-08-14 18:28:13 +02:00
|
|
|
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';
|
2019-09-02 20:08:29 +02:00
|
|
|
const devInternalApis = process.env.LBRY_API_URL;
|
2019-11-04 19:36:37 +01:00
|
|
|
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';
|
|
|
|
|
|
|
|
// @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 = {
|
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,
|
2019-09-18 20:41:20 +02:00
|
|
|
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,
|
2019-08-14 18:28:13 +02:00
|
|
|
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 = {
|
2019-10-15 01:17:24 +02:00
|
|
|
uri: string,
|
|
|
|
claim_id: string,
|
|
|
|
outpoint: string,
|
2019-10-12 03:55:54 +02:00
|
|
|
channel_claim_id?: string,
|
|
|
|
};
|
|
|
|
|
2019-04-01 16:30:19 +02:00
|
|
|
let analyticsEnabled: boolean = true;
|
2018-02-16 09:47:52 +01:00
|
|
|
const analytics: Analytics = {
|
2019-04-01 16:30:19 +02:00
|
|
|
pageView: path => {
|
2018-02-24 01:24:00 +01:00
|
|
|
if (analyticsEnabled) {
|
2019-05-14 22:35:49 +02:00
|
|
|
ReactGA.pageview(path);
|
2018-02-16 09:47:52 +01:00
|
|
|
}
|
|
|
|
},
|
2019-07-22 04:28:49 +02:00
|
|
|
setUser: userId => {
|
|
|
|
if (analyticsEnabled && userId) {
|
2019-08-14 18:28:13 +02:00
|
|
|
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
|
|
|
});
|
2019-08-14 18:28:13 +02:00
|
|
|
// @endif
|
2019-07-22 04:28:49 +02:00
|
|
|
}
|
2018-02-16 10:16:50 +01: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'
|
2018-02-16 10:16:50 +01:00
|
|
|
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) => {
|
2019-09-18 20:41:20 +02:00
|
|
|
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,
|
|
|
|
};
|
2018-08-03 17:54:10 +02:00
|
|
|
|
2019-09-18 20:41:20 +02:00
|
|
|
// lbry.tv streams from AWS so we don't care about the time to start
|
|
|
|
if (timeToStart && !IS_WEB) {
|
|
|
|
params.time_to_start = timeToStart;
|
|
|
|
}
|
2018-08-03 17:54:10 +02:00
|
|
|
|
2019-09-18 20:41:20 +02:00
|
|
|
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) => {
|
2019-10-12 03:55:54 +02:00
|
|
|
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 };
|
2019-10-12 03:55:54 +02:00
|
|
|
if (channelClaimId) {
|
|
|
|
params['channel_claim_id'] = channelClaimId;
|
|
|
|
}
|
2019-10-16 23:36:50 +02:00
|
|
|
Lbryio.call('event', 'publish', params);
|
2019-10-12 03:55:54 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-02-21 23:45:17 +01:00
|
|
|
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 });
|
|
|
|
}
|
2019-02-21 23:45:17 +01:00
|
|
|
},
|
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
|
|
|
},
|
2019-07-08 22:54:58 +02:00
|
|
|
channelBlockEvent: (uri, blocked, location) => {
|
2019-08-15 05:09:34 +02:00
|
|
|
sendGaEvent(blocked ? 'Channel-Hidden' : 'Channel-Unhidden', uri);
|
2019-07-08 22:54:58 +02:00
|
|
|
},
|
2019-08-14 18:28:13 +02:00
|
|
|
emailProvidedEvent: () => {
|
2019-08-15 05:09:34 +02:00
|
|
|
sendGaEvent('Engagement', 'Email-Provided');
|
2019-08-14 18:28:13 +02:00
|
|
|
},
|
|
|
|
emailVerifiedEvent: () => {
|
2019-08-15 05:09:34 +02:00
|
|
|
sendGaEvent('Engagement', 'Email-Verified');
|
2019-08-14 18:28:13 +02:00
|
|
|
},
|
|
|
|
rewardEligibleEvent: () => {
|
2019-08-15 05:09:34 +02:00
|
|
|
sendGaEvent('Engagement', 'Reward-Eligible');
|
2019-08-14 18:28:13 +02:00
|
|
|
},
|
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
|
|
|
|
2019-11-04 16:55:02 +01:00
|
|
|
function sendGaEvent(category, action, label) {
|
2019-08-15 05:09:34 +02:00
|
|
|
if (analyticsEnabled && isProduction) {
|
|
|
|
ReactGA.event({
|
|
|
|
category,
|
|
|
|
action,
|
2019-11-04 16:55:02 +01:00
|
|
|
...(label ? { label } : {}),
|
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) {
|
|
|
|
ReactGA.timing({
|
|
|
|
category,
|
|
|
|
variable: action,
|
|
|
|
value: timeInMs,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:36:37 +01:00
|
|
|
let gaTrackers = [];
|
2019-04-11 20:22:47 +02:00
|
|
|
|
2019-11-04 19:36:37 +01: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';
|
2019-11-04 19:36:37 +01:00
|
|
|
|
|
|
|
if (!isPirateBayUser) {
|
|
|
|
gaTrackers.push({
|
|
|
|
trackingId: LBRY_TV_MINUS_PIRATE_BAY_UA_ID,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-05-14 22:35:49 +02:00
|
|
|
|
2019-11-04 19:36:37 +01: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;
|