2016-07-28 03:48:13 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
const sysDb = require('./database.js').dbs.system;
|
2018-11-23 21:47:18 +00:00
|
|
|
const {
|
|
|
|
getISOTimestampString
|
|
|
|
} = require('./database.js');
|
2016-07-28 03:48:13 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// deps
|
|
|
|
const _ = require('lodash');
|
2016-07-28 03:48:13 +00:00
|
|
|
|
|
|
|
/*
|
2018-06-23 03:26:46 +00:00
|
|
|
System Event Log & Stats
|
|
|
|
------------------------
|
2018-01-15 19:22:11 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
System & user specific:
|
|
|
|
* Events for generating various statistics, logs such as last callers, etc.
|
|
|
|
* Stats such as counters
|
2016-07-28 03:48:13 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
User specific stats are simply an alternate interface to user properties, while
|
|
|
|
system wide entries are handled on their own. Both are read accessible non-blocking
|
|
|
|
making them easily available for MCI codes for example.
|
2016-07-28 03:48:13 +00:00
|
|
|
*/
|
|
|
|
class StatLog {
|
2018-06-22 05:15:04 +00:00
|
|
|
constructor() {
|
|
|
|
this.systemStats = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
init(cb) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Load previous state/values of |this.systemStats|
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
sysDb.each(
|
|
|
|
`SELECT stat_name, stat_value
|
2018-06-23 03:26:46 +00:00
|
|
|
FROM system_stat;`,
|
2018-06-22 05:15:04 +00:00
|
|
|
(err, row) => {
|
|
|
|
if(row) {
|
|
|
|
self.systemStats[row.stat_name] = row.stat_value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get KeepDays() {
|
|
|
|
return {
|
|
|
|
Forever : -1,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
get KeepType() {
|
|
|
|
return {
|
2018-06-23 03:26:46 +00:00
|
|
|
Forever : 'forever',
|
|
|
|
Days : 'days',
|
|
|
|
Max : 'max',
|
|
|
|
Count : 'max',
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
get Order() {
|
|
|
|
return {
|
2018-06-23 03:26:46 +00:00
|
|
|
Timestamp : 'timestamp_asc',
|
|
|
|
TimestampAsc : 'timestamp_asc',
|
|
|
|
TimestampDesc : 'timestamp_desc',
|
|
|
|
Random : 'random',
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-26 02:05:16 +00:00
|
|
|
setNonPersistentSystemStat(statName, statValue) {
|
2018-06-22 05:15:04 +00:00
|
|
|
this.systemStats[statName] = statValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
setSystemStat(statName, statValue, cb) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// live stats
|
2018-06-22 05:15:04 +00:00
|
|
|
this.systemStats[statName] = statValue;
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// persisted stats
|
2018-06-22 05:15:04 +00:00
|
|
|
sysDb.run(
|
|
|
|
`REPLACE INTO system_stat (stat_name, stat_value)
|
2018-06-23 03:26:46 +00:00
|
|
|
VALUES (?, ?);`,
|
2018-06-22 05:15:04 +00:00
|
|
|
[ statName, statValue ],
|
|
|
|
err => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// cb optional - callers may fire & forget
|
2018-06-22 05:15:04 +00:00
|
|
|
if(cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
getSystemStat(statName) { return this.systemStats[statName]; }
|
|
|
|
|
|
|
|
getSystemStatNum(statName) {
|
|
|
|
return parseInt(this.getSystemStat(statName)) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
incrementSystemStat(statName, incrementBy, cb) {
|
|
|
|
incrementBy = incrementBy || 1;
|
|
|
|
|
|
|
|
let newValue = parseInt(this.systemStats[statName]);
|
|
|
|
if(newValue) {
|
|
|
|
if(!_.isNumber(newValue)) {
|
|
|
|
return cb(new Error(`Value for ${statName} is not a number!`));
|
|
|
|
}
|
|
|
|
|
|
|
|
newValue += incrementBy;
|
|
|
|
} else {
|
|
|
|
newValue = incrementBy;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.setSystemStat(statName, newValue, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// User specific stats
|
|
|
|
// These are simply convience methods to the user's properties
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
setUserStat(user, statName, statValue, cb) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// note: cb is optional in PersistUserProperty
|
2018-06-22 05:15:04 +00:00
|
|
|
return user.persistProperty(statName, statValue, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
getUserStat(user, statName) {
|
|
|
|
return user.properties[statName];
|
|
|
|
}
|
|
|
|
|
|
|
|
getUserStatNum(user, statName) {
|
|
|
|
return parseInt(this.getUserStat(user, statName)) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
incrementUserStat(user, statName, incrementBy, cb) {
|
|
|
|
incrementBy = incrementBy || 1;
|
|
|
|
|
|
|
|
let newValue = parseInt(user.properties[statName]);
|
|
|
|
if(newValue) {
|
|
|
|
if(!_.isNumber(newValue)) {
|
|
|
|
return cb(new Error(`Value for ${statName} is not a number!`));
|
|
|
|
}
|
|
|
|
|
|
|
|
newValue += incrementBy;
|
|
|
|
} else {
|
|
|
|
newValue = incrementBy;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.setUserStat(user, statName, newValue, cb);
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// the time "now" in the ISO format we use and love :)
|
2018-11-23 21:47:18 +00:00
|
|
|
get now() {
|
|
|
|
return getISOTimestampString();
|
|
|
|
}
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
appendSystemLogEntry(logName, logValue, keep, keepType, cb) {
|
|
|
|
sysDb.run(
|
|
|
|
`INSERT INTO system_event_log (timestamp, log_name, log_value)
|
2018-06-23 03:26:46 +00:00
|
|
|
VALUES (?, ?, ?);`,
|
2018-06-22 05:15:04 +00:00
|
|
|
[ this.now, logName, logValue ],
|
|
|
|
() => {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Handle keep
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(-1 === keep) {
|
|
|
|
if(cb) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(keepType) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// keep # of days
|
2018-06-22 05:15:04 +00:00
|
|
|
case 'days' :
|
|
|
|
sysDb.run(
|
|
|
|
`DELETE FROM system_event_log
|
2018-06-23 03:26:46 +00:00
|
|
|
WHERE log_name = ? AND timestamp <= DATETIME("now", "-${keep} day");`,
|
2018-06-22 05:15:04 +00:00
|
|
|
[ logName ],
|
|
|
|
err => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// cb optional - callers may fire & forget
|
2018-06-22 05:15:04 +00:00
|
|
|
if(cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'count':
|
|
|
|
case 'max' :
|
2018-06-23 03:26:46 +00:00
|
|
|
// keep max of N/count
|
2018-06-22 05:15:04 +00:00
|
|
|
sysDb.run(
|
|
|
|
`DELETE FROM system_event_log
|
2018-06-23 03:26:46 +00:00
|
|
|
WHERE id IN(
|
|
|
|
SELECT id
|
|
|
|
FROM system_event_log
|
|
|
|
WHERE log_name = ?
|
|
|
|
ORDER BY id DESC
|
|
|
|
LIMIT -1 OFFSET ${keep}
|
|
|
|
);`,
|
2018-06-22 05:15:04 +00:00
|
|
|
[ logName ],
|
|
|
|
err => {
|
|
|
|
if(cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'forever' :
|
|
|
|
default :
|
2018-06-23 03:26:46 +00:00
|
|
|
// nop
|
2018-06-22 05:15:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
getSystemLogEntries(logName, order, limit, cb) {
|
|
|
|
let sql =
|
2018-06-23 03:26:46 +00:00
|
|
|
`SELECT timestamp, log_value
|
|
|
|
FROM system_event_log
|
|
|
|
WHERE log_name = ?`;
|
2016-07-28 03:48:13 +00:00
|
|
|
|
2018-06-22 05:15:04 +00:00
|
|
|
switch(order) {
|
|
|
|
case 'timestamp' :
|
|
|
|
case 'timestamp_asc' :
|
|
|
|
sql += ' ORDER BY timestamp ASC';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'timestamp_desc' :
|
|
|
|
sql += ' ORDER BY timestamp DESC';
|
|
|
|
break;
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
case 'random' :
|
2018-06-22 05:15:04 +00:00
|
|
|
sql += ' ORDER BY RANDOM()';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!cb && _.isFunction(limit)) {
|
2018-06-23 03:26:46 +00:00
|
|
|
cb = limit;
|
|
|
|
limit = 0;
|
2018-06-22 05:15:04 +00:00
|
|
|
} else {
|
|
|
|
limit = limit || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(0 !== limit) {
|
|
|
|
sql += ` LIMIT ${limit}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
sql += ';';
|
|
|
|
|
|
|
|
sysDb.all(sql, [ logName ], (err, rows) => {
|
|
|
|
return cb(err, rows);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
appendUserLogEntry(user, logName, logValue, keepDays, cb) {
|
|
|
|
sysDb.run(
|
2018-07-21 20:32:06 +00:00
|
|
|
`INSERT INTO user_event_log (timestamp, user_id, session_id, log_name, log_value)
|
|
|
|
VALUES (?, ?, ?, ?, ?);`,
|
|
|
|
[ this.now, user.userId, user.sessionId, logName, logValue ],
|
|
|
|
err => {
|
|
|
|
if(err) {
|
|
|
|
if(cb) {
|
|
|
|
cb(err);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Handle keepDays
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(-1 === keepDays) {
|
|
|
|
if(cb) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sysDb.run(
|
|
|
|
`DELETE FROM user_event_log
|
2018-06-23 03:26:46 +00:00
|
|
|
WHERE user_id = ? AND log_name = ? AND timestamp <= DATETIME("now", "-${keepDays} day");`,
|
2018-06-22 05:15:04 +00:00
|
|
|
[ user.userId, logName ],
|
|
|
|
err => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// cb optional - callers may fire & forget
|
2018-06-22 05:15:04 +00:00
|
|
|
if(cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-07-21 20:32:06 +00:00
|
|
|
|
|
|
|
initUserEvents(cb) {
|
|
|
|
//
|
|
|
|
// We map some user events directly to user stat log entries such that they
|
|
|
|
// are persisted for a time.
|
|
|
|
//
|
|
|
|
const Events = require('./events.js');
|
|
|
|
const systemEvents = Events.getSystemEvents();
|
|
|
|
|
|
|
|
const interestedEvents = [
|
|
|
|
systemEvents.NewUser,
|
|
|
|
systemEvents.UserUpload, systemEvents.UserDownload,
|
|
|
|
systemEvents.UserPostMessage, systemEvents.UserSendMail,
|
|
|
|
systemEvents.UserRunDoor,
|
|
|
|
];
|
|
|
|
|
|
|
|
Events.addListenerMultipleEvents(interestedEvents, (eventName, event) => {
|
|
|
|
this.appendUserLogEntry(
|
|
|
|
event.user,
|
|
|
|
'system_event',
|
|
|
|
eventName.replace(/^codes\.l33t\.enigma\.system\./, ''), // strip package name prefix
|
|
|
|
90
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
}
|
2016-07-28 03:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = new StatLog();
|