Revert "Revert "added referrer to serve event analytics""
This reverts commit b569bfdca6
.
This commit is contained in:
parent
b569bfdca6
commit
cf7310adad
1 changed files with 24 additions and 15 deletions
|
@ -9,8 +9,9 @@ function createServeEventParams (headers, ip, originalUrl) {
|
|||
eventLabel : originalUrl,
|
||||
ipOverride : ip,
|
||||
userAgentOverride: headers['user-agent'],
|
||||
documentReferrer : headers['referer'],
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
function createPublishTimingEventParams (category, variable, label, startTime, endTime) {
|
||||
const duration = endTime - startTime;
|
||||
|
@ -20,7 +21,7 @@ function createPublishTimingEventParams (category, variable, label, startTime, e
|
|||
userTimingTime : duration,
|
||||
userTimingLabel : label,
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
function sendGoogleAnalyticsEvent (ip, params) {
|
||||
const visitorId = ip.replace(/\./g, '-');
|
||||
|
@ -29,8 +30,9 @@ function sendGoogleAnalyticsEvent (ip, params) {
|
|||
if (err) {
|
||||
logger.error('Google Analytics Event Error >>', err);
|
||||
}
|
||||
logger.debug(`Event successfully sent to google analytics`);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
function sendGoogleAnalyticsTiming (visitorId, params) {
|
||||
const visitor = ua(googleId, visitorId, { strictCidFormat: false, https: true });
|
||||
|
@ -40,18 +42,25 @@ function sendGoogleAnalyticsTiming (visitorId, params) {
|
|||
}
|
||||
logger.debug(`Timing event successfully sent to google analytics`);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
sendGAServeEvent (headers, ip, originalUrl) {
|
||||
function sendGAServeEvent (headers, ip, originalUrl) {
|
||||
logger.debug('headers:', headers);
|
||||
const params = createServeEventParams(headers, ip, originalUrl);
|
||||
sendGoogleAnalyticsEvent(ip, params);
|
||||
},
|
||||
sendGATimingEvent (category, variable, label, startTime, endTime) {
|
||||
}
|
||||
|
||||
function sendGATimingEvent (category, variable, label, startTime, endTime) {
|
||||
const params = createPublishTimingEventParams(category, variable, label, startTime, endTime);
|
||||
sendGoogleAnalyticsTiming(title, params);
|
||||
},
|
||||
chooseGaLbrynetPublishLabel ({ channel_name: channelName, channel_id: channelId }) {
|
||||
}
|
||||
|
||||
function chooseGaLbrynetPublishLabel ({ channel_name: channelName, channel_id: channelId }) {
|
||||
return (channelName || channelId ? 'PUBLISH_IN_CHANNEL_CLAIM' : 'PUBLISH_ANONYMOUS_CLAIM');
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
sendGAServeEvent,
|
||||
sendGATimingEvent,
|
||||
chooseGaLbrynetPublishLabel,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue