lbry-desktop/ui/analytics.js

271 lines
8.4 KiB
JavaScript
Raw Normal View History

2018-02-16 09:47:52 +01:00
// @flow
2022-10-25 18:56:38 +02:00
/*
Removed Watchman (internal view tracking) code.
This file may eventually implement cantina
Refer to 0cc0e213a5c5bf9e2a76316df5d9da4b250a13c3 for initial integration commit
refer to ___ for removal commit.
*/
2018-09-24 05:44:42 +02:00
import { Lbryio } from 'lbryinc';
2020-02-14 19:58:09 +01:00
import * as Sentry from '@sentry/browser';
2020-05-29 17:11:50 +02:00
import MatomoTracker from '@datapunt/matomo-tracker-js';
2019-04-09 23:21:00 +02:00
import { history } from './store';
import Native from 'native';
import ElectronCookies from '@meetfranz/electron-cookies';
2020-02-12 05:59:30 +01:00
import { generateInitialUrl } from 'util/url';
import { MATOMO_ID, MATOMO_URL } from 'config';
2018-02-16 09:47:52 +01:00
2019-06-20 02:57:51 +02:00
const isProduction = process.env.NODE_ENV === 'production';
2021-07-28 17:03:16 +02:00
const devInternalApis = process.env.LBRY_API_URL && process.env.LBRY_API_URL.includes('dev');
export const SHARE_INTERNAL = 'shareInternal';
const SHARE_THIRD_PARTY = 'shareThirdParty';
2020-05-15 21:12:11 +02:00
if (isProduction) {
ElectronCookies.enable({
origin: 'https://lbry.tv',
2020-05-15 21:12:11 +02:00
});
}
2019-06-20 02:57:51 +02:00
2018-02-16 09:47:52 +01:00
type Analytics = {
2021-04-07 07:40:34 +02:00
error: (string) => Promise<any>,
2020-05-21 17:38:28 +02:00
sentryError: ({} | string, {}) => Promise<any>,
2020-11-16 20:09:00 +01:00
pageView: (string, ?string) => void,
2021-04-07 07:40:34 +02:00
setUser: (Object) => void,
toggleInternal: (boolean, ?boolean) => void,
apiLogView: (string, string, string, ?number, ?() => void) => Promise<any>,
2019-10-16 23:36:50 +02:00
apiLogPublish: (ChannelClaim | StreamClaim) => void,
apiSyncTags: ({}) => void,
2020-05-29 17:11:50 +02:00
tagFollowEvent: (string, boolean, ?string) => void,
playerLoadedEvent: (?boolean) => void,
2020-11-26 22:06:58 +01:00
playerStartedEvent: (?boolean) => void,
videoStartEvent: (string, number, string, number, string, any, number) => void,
videoIsPlaying: (boolean, any) => void,
2020-08-07 22:59:20 +02:00
videoBufferEvent: (
StreamClaim,
{
timeAtBuffer: number,
bufferDuration: number,
bitRate: number,
duration: number,
2021-01-05 22:29:04 +01:00
userId: string,
playerPoweredBy: string,
readyState: number,
}
) => Promise<any>,
emailProvidedEvent: () => void,
emailVerifiedEvent: () => void,
rewardEligibleEvent: () => void,
2019-10-02 20:20:25 +02:00
startupEvent: () => void,
2021-04-07 07:40:34 +02:00
purchaseEvent: (number) => void,
readyEvent: (number) => void,
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,
};
2022-01-07 20:02:33 +01:00
let internalAnalyticsEnabled: boolean = false;
if (window.localStorage.getItem(SHARE_INTERNAL) === 'true') internalAnalyticsEnabled = true;
2020-01-02 23:30:58 +01:00
2018-02-16 09:47:52 +01:00
const analytics: Analytics = {
// receive buffer events from tracking plugin and save buffer amounts and times for backend call
videoBufferEvent: async (claim, data) => {
2022-10-25 18:56:38 +02:00
// stub
},
/**
* Is told whether video is being started or paused, and adjusts interval accordingly
* @param {boolean} isPlaying - Whether video was started or paused
* @param {object} passedPlayer - VideoJS Player object
*/
videoIsPlaying: (isPlaying, passedPlayer) => {
2022-10-25 18:56:38 +02:00
// stub
},
videoStartEvent: (claimId, timeToStartVideo, poweredBy, passedUserId, canonicalUrl, passedPlayer, videoBitrate) => {
2022-01-07 20:02:33 +01:00
// sendPromMetric('time_to_start', duration);
sendMatomoEvent('Media', 'TimeToStart', claimId, timeToStartVideo);
},
2021-04-07 07:40:34 +02:00
error: (message) => {
return new Promise((resolve) => {
if (internalAnalyticsEnabled && isProduction) {
2020-02-14 19:58:09 +01:00
return Lbryio.call('event', 'desktop_error', { error_message: message }).then(() => {
resolve(true);
});
} else {
resolve(false);
}
});
},
sentryError: (error, errorInfo) => {
2021-04-07 07:40:34 +02:00
return new Promise((resolve) => {
if (internalAnalyticsEnabled && isProduction) {
2021-04-07 07:40:34 +02:00
Sentry.withScope((scope) => {
2020-02-14 19:58:09 +01:00
scope.setExtras(errorInfo);
const eventId = Sentry.captureException(error);
resolve(eventId);
});
} else {
resolve(null);
}
});
},
2020-11-13 03:43:44 +01:00
pageView: (path, search) => {
if (internalAnalyticsEnabled) {
2020-11-16 20:09:00 +01:00
const params: { href: string, customDimensions?: Array<{ id: number, value: ?string }> } = { href: `${path}` };
2020-11-13 03:43:44 +01:00
const dimensions = [];
const searchParams = search && new URLSearchParams(search);
if (searchParams && searchParams.get('src')) {
dimensions.push({ id: 1, value: searchParams.get('src') });
}
if (dimensions.length) {
params['customDimensions'] = dimensions;
}
MatomoInstance.trackPageView(params);
2020-05-29 17:11:50 +02:00
}
2018-02-16 09:47:52 +01:00
},
2021-04-07 07:40:34 +02:00
setUser: (userId) => {
2020-06-02 22:52:34 +02:00
if (internalAnalyticsEnabled && userId) {
2020-07-06 16:18:01 +02:00
window._paq.push(['setUserId', String(userId)]);
Native.getAppVersionInfo().then(({ localVersion }) => {
2020-06-02 22:52:34 +02:00
sendMatomoEvent('Version', 'Desktop-Version', localVersion);
2019-07-22 04:28:49 +02:00
});
}
},
toggleInternal: (enabled: boolean): void => {
internalAnalyticsEnabled = enabled;
window.localStorage.setItem(SHARE_INTERNAL, enabled);
2018-02-24 01:24:00 +01:00
},
toggleThirdParty: (enabled: boolean): void => {
window.localStorage.setItem(SHARE_THIRD_PARTY, enabled);
},
2019-08-14 05:04:08 +02:00
apiLogView: (uri, outpoint, claimId, timeToStart) => {
return new Promise((resolve, reject) => {
if (internalAnalyticsEnabled && (isProduction || devInternalApis)) {
const params: {
uri: string,
outpoint: string,
claim_id: string,
time_to_start?: number,
} = {
uri,
outpoint,
claim_id: claimId,
};
2022-01-07 20:02:33 +01:00
if (timeToStart) {
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: () => {
if (internalAnalyticsEnabled && 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) => {
2020-07-23 16:22:57 +02:00
// Don't check if this is production so channels created on localhost are still linked to user
if (internalAnalyticsEnabled) {
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);
}
},
2021-04-07 07:40:34 +02:00
apiSyncTags: (params) => {
if (internalAnalyticsEnabled && isProduction) {
Lbryio.call('content_tags', 'sync', params);
}
},
2021-04-12 18:43:47 +02:00
adsFetchedEvent: () => {
sendMatomoEvent('Media', 'AdsFetched');
},
adsReceivedEvent: (response) => {
sendMatomoEvent('Media', 'AdsReceived', JSON.stringify(response));
},
adsErrorEvent: (response) => {
sendMatomoEvent('Media', 'AdsError', JSON.stringify(response));
},
2021-04-07 07:40:34 +02:00
playerLoadedEvent: (embedded) => {
sendMatomoEvent('Player', 'Loaded', embedded ? 'embedded' : 'onsite');
},
2021-04-07 07:40:34 +02:00
playerStartedEvent: (embedded) => {
2020-11-26 22:06:58 +01:00
sendMatomoEvent('Player', 'Started', embedded ? 'embedded' : 'onsite');
},
2020-05-29 17:11:50 +02:00
tagFollowEvent: (tag, following) => {
sendMatomoEvent('Tag', following ? 'Tag-Follow' : 'Tag-Unfollow', tag);
2019-07-22 01:35:59 +02:00
},
channelBlockEvent: (uri, blocked, location) => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent(blocked ? 'Channel-Hidden' : 'Channel-Unhidden', uri);
},
emailProvidedEvent: () => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Engagement', 'Email-Provided');
},
emailVerifiedEvent: () => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Engagement', 'Email-Verified');
},
rewardEligibleEvent: () => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Engagement', 'Reward-Eligible');
},
2019-11-04 16:55:02 +01:00
openUrlEvent: (url: string) => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Engagement', 'Open-Url', url);
2019-11-04 16:55:02 +01:00
},
2020-03-12 17:36:45 +01:00
trendingAlgorithmEvent: (trendingAlgorithm: string) => {
2020-06-02 22:52:34 +02:00
sendMatomoEvent('Engagement', 'Trending-Algorithm', trendingAlgorithm);
2020-03-12 17:36:45 +01:00
},
2019-10-02 20:20:25 +02:00
startupEvent: () => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Startup', 'Startup');
2019-10-02 20:20:25 +02:00
},
readyEvent: (timeToReady: number) => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Startup', 'App-Ready', 'Time', timeToReady);
2019-10-02 20:20:25 +02:00
},
2020-05-21 17:38:28 +02:00
purchaseEvent: (purchaseInt: number) => {
2020-05-29 17:11:50 +02:00
sendMatomoEvent('Purchase', 'Purchase-Complete', 'someLabel', purchaseInt);
2020-05-21 17:38:28 +02:00
},
2018-02-24 01:24:00 +01:00
};
2018-02-16 09:47:52 +01:00
2020-05-29 17:11:50 +02:00
function sendMatomoEvent(category, action, name, value) {
if (internalAnalyticsEnabled) {
2020-05-29 17:11:50 +02:00
const event = { category, action, name, value };
MatomoInstance.trackEvent(event);
}
}
const MatomoInstance = new MatomoTracker({
urlBase: MATOMO_URL,
siteId: MATOMO_ID, // optional, default value: `1`
});
analytics.pageView(generateInitialUrl(window.location.hash));
2019-05-14 22:35:49 +02:00
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
2021-04-07 07:40:34 +02:00
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}`;
2020-11-13 03:43:44 +01:00
analytics.pageView(page, search);
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;