2017-06-28 05:25:36 +02:00
|
|
|
const logger = require('winston');
|
2017-06-30 02:52:37 +02:00
|
|
|
const ua = require('universal-analytics');
|
|
|
|
const config = require('config');
|
2017-06-28 05:25:36 +02:00
|
|
|
const db = require('../models');
|
2017-06-30 02:52:37 +02:00
|
|
|
const googleApiKey = config.get('AnalyticsConfig.GoogleId');
|
2017-06-28 05:25:36 +02:00
|
|
|
|
|
|
|
module.exports = {
|
2017-07-04 03:27:35 +02:00
|
|
|
postToStats (action, url, ipAddress, result) {
|
2017-06-30 23:37:47 +02:00
|
|
|
logger.silly(`creating ${action} record for statistics db`);
|
2017-06-30 02:52:37 +02:00
|
|
|
// make sure the result is a string
|
|
|
|
if (result && (typeof result !== 'string')) {
|
|
|
|
result = result.toString();
|
|
|
|
}
|
|
|
|
// // make sure the ip address(es) are a string
|
|
|
|
if (ipAddress && (typeof ipAddress !== 'string')) {
|
|
|
|
ipAddress = ipAddress.toString();
|
|
|
|
}
|
|
|
|
// create record in the db
|
|
|
|
db.Stats.create({
|
|
|
|
action,
|
|
|
|
url,
|
|
|
|
ipAddress,
|
|
|
|
result,
|
|
|
|
})
|
|
|
|
.then()
|
|
|
|
.catch(error => {
|
|
|
|
logger.error('sequelize error', error);
|
|
|
|
});
|
|
|
|
},
|
2017-07-05 18:26:22 +02:00
|
|
|
sendGoogleAnalytics (action, headers, ip, originalUrl) {
|
2017-06-30 02:52:37 +02:00
|
|
|
const visitorId = ip.replace(/\./g, '-');
|
|
|
|
const visitor = ua(googleApiKey, visitorId, { strictCidFormat: false, https: true });
|
2017-07-05 18:26:22 +02:00
|
|
|
let params;
|
2017-06-30 02:52:37 +02:00
|
|
|
switch (action) {
|
|
|
|
case 'serve':
|
2017-07-05 18:26:22 +02:00
|
|
|
params = {
|
|
|
|
ec : 'serve',
|
|
|
|
ea : originalUrl,
|
|
|
|
uip: ip,
|
|
|
|
ua : headers['user-agent'],
|
|
|
|
ul : headers['accept-language'],
|
|
|
|
};
|
2017-06-30 02:52:37 +02:00
|
|
|
break;
|
|
|
|
case 'publish':
|
2017-07-05 18:26:22 +02:00
|
|
|
params = {
|
|
|
|
ec : 'publish',
|
|
|
|
ea : originalUrl,
|
|
|
|
uip: ip,
|
|
|
|
ua : headers['user-agent'],
|
|
|
|
ul : headers['accept-language'],
|
|
|
|
};
|
2017-06-30 02:52:37 +02:00
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2017-07-05 18:26:22 +02:00
|
|
|
visitor.event(params, (err) => {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Google Analytics Event Error >>', err);
|
|
|
|
}
|
|
|
|
});
|
2017-06-30 02:52:37 +02:00
|
|
|
},
|
2017-07-04 03:27:35 +02:00
|
|
|
getStatsSummary () {
|
2017-06-29 23:34:23 +02:00
|
|
|
logger.debug('retrieving site statistics');
|
2017-06-28 05:25:36 +02:00
|
|
|
const deferred = new Promise((resolve, reject) => {
|
2017-06-29 23:34:23 +02:00
|
|
|
// get the raw statistics data
|
|
|
|
db.Stats
|
2017-06-28 05:25:36 +02:00
|
|
|
.findAll()
|
|
|
|
.then(data => {
|
|
|
|
const resultHashTable = {};
|
2017-06-28 08:11:51 +02:00
|
|
|
let totalServe = 0;
|
2017-06-28 05:25:36 +02:00
|
|
|
let totalPublish = 0;
|
|
|
|
let totalShow = 0;
|
|
|
|
let totalCount = 0;
|
|
|
|
let totalSuccess = 0;
|
|
|
|
let totalFailure = 0;
|
|
|
|
// sumarise the data
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
|
let key = data[i].action + data[i].url;
|
|
|
|
totalCount += 1;
|
|
|
|
switch (data[i].action) {
|
2017-06-28 08:15:43 +02:00
|
|
|
case 'serve':
|
2017-06-28 08:11:51 +02:00
|
|
|
totalServe += 1;
|
2017-06-28 05:25:36 +02:00
|
|
|
break;
|
|
|
|
case 'publish':
|
|
|
|
totalPublish += 1;
|
|
|
|
break;
|
|
|
|
case 'show':
|
|
|
|
totalShow += 1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
if (resultHashTable[key]) {
|
|
|
|
resultHashTable[key]['count'] += 1;
|
|
|
|
if (data[i].result === 'success') {
|
|
|
|
resultHashTable[key]['success'] += 1;
|
|
|
|
totalSuccess += 1;
|
|
|
|
} else {
|
|
|
|
resultHashTable[key]['failure'] += 1;
|
|
|
|
totalFailure += 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
resultHashTable[key] = {
|
|
|
|
action : data[i].action,
|
|
|
|
url : data[i].url,
|
|
|
|
count : 1,
|
|
|
|
success: 0,
|
|
|
|
failure: 0,
|
|
|
|
};
|
|
|
|
if (data[i].result === 'success') {
|
|
|
|
resultHashTable[key]['success'] += 1;
|
|
|
|
totalSuccess += 1;
|
|
|
|
} else {
|
|
|
|
resultHashTable[key]['failure'] += 1;
|
|
|
|
totalFailure += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const percentSuccess = Math.round(totalSuccess / totalCount * 100);
|
|
|
|
// return results
|
2017-06-28 08:11:51 +02:00
|
|
|
resolve({ records: resultHashTable, totals: { totalServe, totalPublish, totalShow, totalCount, totalSuccess, totalFailure }, percentSuccess });
|
2017-06-28 05:25:36 +02:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
logger.error('sequelize error', error);
|
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return deferred;
|
|
|
|
},
|
|
|
|
};
|