updated GA publish timing events
This commit is contained in:
parent
16cb329e53
commit
c58ea8bc80
4 changed files with 73 additions and 76 deletions
63
helpers/googleAnalytics.js
Normal file
63
helpers/googleAnalytics.js
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
const logger = require('winston');
|
||||||
|
const ua = require('universal-analytics');
|
||||||
|
const config = require('../config/speechConfig.js');
|
||||||
|
const googleApiKey = config.analytics.googleId;
|
||||||
|
|
||||||
|
function createServeEventParams (headers, ip, originalUrl) {
|
||||||
|
return {
|
||||||
|
ec : 'serve',
|
||||||
|
ea : originalUrl,
|
||||||
|
uip: ip,
|
||||||
|
ua : headers['user-agent'],
|
||||||
|
ul : headers['accept-language'],
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
function createPublishTimingEventParams (label, startTime, endTime, ip, headers) {
|
||||||
|
const durration = endTime - startTime;
|
||||||
|
return {
|
||||||
|
userTimingCategory : 'lbrynet',
|
||||||
|
userTimingVariableName: 'publish',
|
||||||
|
userTimingTime : durration,
|
||||||
|
userTimingLabel : label,
|
||||||
|
uip : ip,
|
||||||
|
ua : headers['user-agent'],
|
||||||
|
ul : headers['accept-language'],
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
function sendGoogleAnalyticsEvent (ip, params) {
|
||||||
|
const visitorId = ip.replace(/\./g, '-');
|
||||||
|
const visitor = ua(googleApiKey, visitorId, { strictCidFormat: false, https: true });
|
||||||
|
visitor.event(params, (err) => {
|
||||||
|
if (err) {
|
||||||
|
logger.error('Google Analytics Event Error >>', err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function sendGoogleAnalyticsTiming (ip, params) {
|
||||||
|
const visitorId = ip.replace(/\./g, '-');
|
||||||
|
const visitor = ua(googleApiKey, visitorId, { strictCidFormat: false, https: true });
|
||||||
|
visitor.timing(params, (err) => {
|
||||||
|
if (err) {
|
||||||
|
logger.error('Google Analytics Event Error >>', err);
|
||||||
|
}
|
||||||
|
logger.debug(`Timing event successfully sent to google analytics`);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
sendGAServeEvent (headers, ip, originalUrl) {
|
||||||
|
const params = createServeEventParams(headers, ip, originalUrl);
|
||||||
|
sendGoogleAnalyticsEvent(ip, params);
|
||||||
|
},
|
||||||
|
sendGAAnonymousPublishTiming (headers, ip, originalUrl, startTime, endTime) {
|
||||||
|
const params = createPublishTimingEventParams('anonymous', startTime, endTime, ip, headers);
|
||||||
|
sendGoogleAnalyticsTiming(ip, params);
|
||||||
|
},
|
||||||
|
sendGAChannelPublishTiming (headers, ip, originalUrl, startTime, endTime) {
|
||||||
|
const params = createPublishTimingEventParams('anonymous', startTime, endTime, ip, headers);
|
||||||
|
sendGoogleAnalyticsTiming(ip, params);
|
||||||
|
},
|
||||||
|
};
|
|
@ -1,4 +1,3 @@
|
||||||
const constants = require('../constants');
|
|
||||||
const logger = require('winston');
|
const logger = require('winston');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const { site, wallet } = require('../config/speechConfig.js');
|
const { site, wallet } = require('../config/speechConfig.js');
|
||||||
|
@ -177,11 +176,4 @@ module.exports = {
|
||||||
nsfw,
|
nsfw,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
returnPublishTimingActionType (channelName) {
|
|
||||||
if (channelName) {
|
|
||||||
return constants.PUBLISH_IN_CHANNEL_CLAIM;
|
|
||||||
} else {
|
|
||||||
return constants.PUBLISH_ANONYMOUS_CLAIM;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,22 +1,7 @@
|
||||||
const constants = require('../constants');
|
|
||||||
const logger = require('winston');
|
const logger = require('winston');
|
||||||
const ua = require('universal-analytics');
|
|
||||||
const config = require('../config/speechConfig.js');
|
|
||||||
const googleApiKey = config.analytics.googleId;
|
|
||||||
const db = require('../models');
|
const db = require('../models');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
createPublishTimingEventParams (publishDurration, ip, headers, label) {
|
|
||||||
return {
|
|
||||||
userTimingCategory : 'lbrynet',
|
|
||||||
userTimingVariableName: 'publish',
|
|
||||||
userTimingTime : publishDurration,
|
|
||||||
userTimingLabel : label,
|
|
||||||
uip : ip,
|
|
||||||
ua : headers['user-agent'],
|
|
||||||
ul : headers['accept-language'],
|
|
||||||
};
|
|
||||||
},
|
|
||||||
postToStats (action, url, ipAddress, name, claimId, result) {
|
postToStats (action, url, ipAddress, name, claimId, result) {
|
||||||
logger.debug('action:', action);
|
logger.debug('action:', action);
|
||||||
// make sure the result is a string
|
// make sure the result is a string
|
||||||
|
@ -50,46 +35,4 @@ module.exports = {
|
||||||
logger.error('Sequelize error >>', error);
|
logger.error('Sequelize error >>', error);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
sendGoogleAnalyticsEvent (action, headers, ip, originalUrl) {
|
|
||||||
const visitorId = ip.replace(/\./g, '-');
|
|
||||||
const visitor = ua(googleApiKey, visitorId, { strictCidFormat: false, https: true });
|
|
||||||
let params;
|
|
||||||
switch (action) {
|
|
||||||
case 'SERVE':
|
|
||||||
params = {
|
|
||||||
ec : 'serve',
|
|
||||||
ea : originalUrl,
|
|
||||||
uip: ip,
|
|
||||||
ua : headers['user-agent'],
|
|
||||||
ul : headers['accept-language'],
|
|
||||||
};
|
|
||||||
break;
|
|
||||||
default: break;
|
|
||||||
}
|
|
||||||
visitor.event(params, (err) => {
|
|
||||||
if (err) {
|
|
||||||
logger.error('Google Analytics Event Error >>', err);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
sendGoogleAnalyticsTiming (action, headers, ip, originalUrl, startTime, endTime) {
|
|
||||||
const visitorId = ip.replace(/\./g, '-');
|
|
||||||
const visitor = ua(googleApiKey, visitorId, { strictCidFormat: false, https: true });
|
|
||||||
const durration = endTime - startTime;
|
|
||||||
let params;
|
|
||||||
switch (action) {
|
|
||||||
case constants.PUBLISH_ANONYMOUS_CLAIM:
|
|
||||||
case constants.PUBLISH_IN_CHANNEL_CLAIM:
|
|
||||||
logger.verbose(`${action} completed successfully in ${durration}ms`);
|
|
||||||
params = module.exports.createPublishTimingEventParams(durration, ip, headers, action);
|
|
||||||
break;
|
|
||||||
default: break;
|
|
||||||
}
|
|
||||||
visitor.timing(params, (err) => {
|
|
||||||
if (err) {
|
|
||||||
logger.error('Google Analytics Event Error >>', err);
|
|
||||||
}
|
|
||||||
logger.debug(`${action} timing event successfully sent to google analytics`);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,9 +5,9 @@ const multipartMiddleware = multipart({uploadDir: files.uploadDirectory});
|
||||||
const db = require('../models');
|
const db = require('../models');
|
||||||
const { checkClaimNameAvailability, checkChannelAvailability, publish } = require('../controllers/publishController.js');
|
const { checkClaimNameAvailability, checkChannelAvailability, publish } = require('../controllers/publishController.js');
|
||||||
const { getClaimList, resolveUri, getClaim } = require('../helpers/lbryApi.js');
|
const { getClaimList, resolveUri, getClaim } = require('../helpers/lbryApi.js');
|
||||||
const { createPublishParams, parsePublishApiRequestBody, parsePublishApiRequestFiles, parsePublishApiChannel, addGetResultsToFileData, createFileData, returnPublishTimingActionType } = require('../helpers/publishHelpers.js');
|
const { createPublishParams, parsePublishApiRequestBody, parsePublishApiRequestFiles, parsePublishApiChannel, addGetResultsToFileData, createFileData } = require('../helpers/publishHelpers.js');
|
||||||
const errorHandlers = require('../helpers/errorHandlers.js');
|
const errorHandlers = require('../helpers/errorHandlers.js');
|
||||||
const { sendGoogleAnalyticsTiming } = require('../helpers/statsHelpers.js');
|
const { sendGAAnonymousPublishTiming, sendGAChannelPublishTiming } = require('../helpers/googleAnalytics.js');
|
||||||
const { authenticateIfNoUserToken } = require('../auth/authentication.js');
|
const { authenticateIfNoUserToken } = require('../auth/authentication.js');
|
||||||
const { getChannelData, getChannelClaims, getClaimId } = require('../controllers/serveController.js');
|
const { getChannelData, getChannelClaims, getClaimId } = require('../controllers/serveController.js');
|
||||||
|
|
||||||
|
@ -134,12 +134,10 @@ module.exports = (app) => {
|
||||||
app.post('/api/claim/publish', multipartMiddleware, ({ body, files, headers, ip, originalUrl, user }, res) => {
|
app.post('/api/claim/publish', multipartMiddleware, ({ body, files, headers, ip, originalUrl, user }, res) => {
|
||||||
logger.debug('api/claim-publish body:', body);
|
logger.debug('api/claim-publish body:', body);
|
||||||
logger.debug('api/claim-publish files:', files);
|
logger.debug('api/claim-publish files:', files);
|
||||||
// record the start time of the request and create variable for storing the action type
|
|
||||||
const publishStartTime = Date.now();
|
|
||||||
logger.debug('publish request started @', publishStartTime);
|
|
||||||
let timingActionType;
|
|
||||||
// define variables
|
// define variables
|
||||||
let name, fileName, filePath, fileType, nsfw, license, title, description, thumbnail, channelName, channelPassword;
|
let name, fileName, filePath, fileType, nsfw, license, title, description, thumbnail, channelName, channelPassword;
|
||||||
|
// record the start time of the request
|
||||||
|
const publishStartTime = Date.now();
|
||||||
// validate the body and files of the request
|
// validate the body and files of the request
|
||||||
try {
|
try {
|
||||||
// validateApiPublishRequest(body, files);
|
// validateApiPublishRequest(body, files);
|
||||||
|
@ -166,8 +164,6 @@ module.exports = (app) => {
|
||||||
return createPublishParams(filePath, name, title, description, license, nsfw, thumbnail, channelName);
|
return createPublishParams(filePath, name, title, description, license, nsfw, thumbnail, channelName);
|
||||||
})
|
})
|
||||||
.then(publishParams => {
|
.then(publishParams => {
|
||||||
// set the timing event type for reporting
|
|
||||||
timingActionType = returnPublishTimingActionType(publishParams.channel_name);
|
|
||||||
// publish the asset
|
// publish the asset
|
||||||
return publish(publishParams, fileName, fileType);
|
return publish(publishParams, fileName, fileType);
|
||||||
})
|
})
|
||||||
|
@ -182,10 +178,13 @@ module.exports = (app) => {
|
||||||
lbryTx : result,
|
lbryTx : result,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
// log the publish end time
|
// record the publish end time and send to google analytics
|
||||||
const publishEndTime = Date.now();
|
const publishEndTime = Date.now();
|
||||||
logger.debug('publish request completed @', publishEndTime);
|
if (channelName) {
|
||||||
sendGoogleAnalyticsTiming(timingActionType, headers, ip, originalUrl, publishStartTime, publishEndTime);
|
sendGAChannelPublishTiming(headers, ip, originalUrl, publishStartTime, publishEndTime);
|
||||||
|
} else {
|
||||||
|
sendGAAnonymousPublishTiming(headers, ip, originalUrl, publishStartTime, publishEndTime);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
errorHandlers.handleErrorResponse(originalUrl, ip, error, res);
|
errorHandlers.handleErrorResponse(originalUrl, ip, error, res);
|
||||||
|
|
Loading…
Reference in a new issue